.contact-info-item a {
    color: var(--primary);
    font-weight: 600;
}

.contact-info-item a:hover {
    text-decoration: underline;
}
.about-page {
    padding-bottom: 120px;
}

.about-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-hero-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.about-hero-media img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    min-height: 320px;
}

.about-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.about-stats li {
    list-style: none;
    font-weight: 600;
    color: var(--primary);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.mission-card,
.vision-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
/* ============================================
   MODERN & PROFESSIONAL DESIGN
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #102542;
    --primary-dark: #0b182c;
    --primary-light: #1d3a62;
    --secondary: #0ea5e9;
    --accent: #b81e24;
    --success: #10b981;
    --danger: #b81e24;
    --warning: #f59e0b;
    
    --text-dark: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;
    
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-gray);
    border-color: var(--text-light);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a:focus::after {
    width: 100%;
}

.nav a:hover {
    color: var(--primary);
}

/* Mobil menü elementleri - web'de görünmez */
.nav-logo-mobile,
.nav-contact-mobile {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-slider-section {
    padding: 0 0 40px;
    background: var(--bg-white);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 660px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.8s ease, transform 1s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(16,37,66,0.85) 0%, rgba(16,37,66,0.2) 70%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    min-height: 660px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 60px;
    color: var(--bg-white);
}

.hero-card {
    background: rgba(16, 37, 66, 0.78);
    padding: 38px 48px;
    border-radius: var(--radius-lg);
    max-width: 620px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(4px);
}

.hero-slide-content .hero-title,
.hero-slide-content .hero-subtitle,
.hero-slide-content .badge {
    color: var(--bg-white);
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn-whatsapp {
    background: #ffffff;
    color: var(--primary);
    border: none;
    box-shadow: var(--shadow);
}

.btn-whatsapp:hover {
    background: #f1f5f9;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dots button.active,
.slider-dots button:hover {
    background: var(--bg-white);
    transform: scale(1.2);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading.align-left {
    text-align: left;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-label::after,
.section-label::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    opacity: 0.2;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

/* ============================================
   CAMP CARDS
   ============================================ */

.camp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.kamplar-page {
    padding-bottom: 70px;
}

.camp-filter {
    margin-bottom: 50px;
}

.filter-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(16, 37, 66, 0.03) 0%, rgba(16, 37, 66, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(16, 37, 66, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    padding: 12px 18px;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    min-width: 220px;
}

.filter-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 37, 66, 0.1);
}

.filter-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.filter-select {
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    flex: 1;
    padding: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23102542' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 24px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    padding: 12px 18px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.filter-checkbox:hover {
    border-color: var(--primary);
    background: rgba(16, 37, 66, 0.02);
}

.filter-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: var(--bg-white);
}

.filter-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.filter-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

.filter-actions {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.filter-btn,
.filter-clear {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.filter-btn svg,
.filter-clear svg {
    flex-shrink: 0;
}

#kamplar {
    margin-bottom: 80px;
}

#rezervasyon {
    margin-top: 70px;
    margin-bottom: 80px;
}

.camp-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.camp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.camp-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.camp-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.early-badge {
    display: inline-block;
    background: var(--danger);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.location-badge {
    background: #e0e7ff;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.camp-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.camp-card p {
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.camp-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-light);
}

.camp-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.camp-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ============================================
   MEDIA SECTION
   ============================================ */

.media-section {
    background: var(--bg-white);
}

.media-marquee {
    overflow: hidden;
    width: 100%;
    padding-bottom: 40px;
}

.media-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: mediaScroll 30s linear infinite;
}

.media-item {
    width: 260px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.media-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.media-item span {
    padding: 12px 14px;
    font-weight: 600;
    color: var(--text);
}

/* ============================================
   REFERENCES SECTION
   ============================================ */

.references-section {
    background: var(--bg-light);
    padding: 60px 0;
    margin-top: 80px;
}

.references-marquee {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
    position: relative;
}

.references-marquee::before,
.references-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.references-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.references-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.references-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: referencesScroll 40s linear infinite;
}

.references-track:hover {
    animation-play-state: paused;
}

.reference-item {
    width: 200px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.reference-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.reference-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

@keyframes referencesScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   RESERVATION FORM
   ============================================ */

.reservation {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.reservation-image {
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 280px;
}

.reservation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reservation-details h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.reservation-details p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.reservation-form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-lg);
}

.contact-grid {
    grid-template-columns: 1fr 1fr;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    background: var(--bg-light);
    padding: 16px;
    border-radius: 14px;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.social-media-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-dark, #0a1a2e);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 37, 66, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

#cocuk-yaslari {
    margin-bottom: 20px;
}

.child-age-input {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    width: 100%;
    margin-bottom: 12px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   CAMP DETAIL PAGE
   ============================================ */

.camp-detail {
    padding: 40px 0;
}

.camp-detail-layout {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 40px;
    align-items: start;
}

.camp-detail-left {
    max-width: 100%;
}

.camp-image-small {
    margin-bottom: 24px;
}

.camp-image-small img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.camp-detail-info {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.camp-detail-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.camp-detail-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.camp-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.camp-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 1rem;
}

.camp-info-list li:last-child {
    border-bottom: none;
}

.camp-info-list li strong {
    color: var(--text-dark);
    margin-right: 8px;
}

.camp-detail-right {
    position: sticky;
    top: 100px;
}

.reservation-form-narrow {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.reservation-form-narrow h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.reservation-form-narrow .form-group label small {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85em;
    margin-left: 4px;
}

.camp-quick-reservation {
    margin-top: 24px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.camp-quick-reservation h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}

.camp-quick-reservation .contact-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.camp-quick-reservation .contact-cta .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card ul li {
    padding: 12px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 28px;
}

.about-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

.newsletter-simple {
    margin-top: 24px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 0;
}

.newsletter-form input {
    flex: 1;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 18px;
    font: inherit;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form button {
    border: none;
    border-radius: 8px;
    padding: 14px 18px;
    font-weight: 600;
    background: var(--bg-white);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 50px;
}

.newsletter-form button:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.newsletter-form button:active {
    transform: translateY(0);
}

.footer-boomerang {
    display: block;
    margin: 0 auto 10px;
    max-height: 40px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mediaScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-slide-content {
        min-height: 560px;
        padding: 40px;
    }
    
    .reservation {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }

    .camp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
        padding: 16px 0;
        position: relative;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        padding: 24px 32px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: flex;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    /* Mobil menü logo */
    .nav-logo-mobile {
        display: none;
        width: 100%;
        padding: 20px 0;
        margin-bottom: 24px;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-logo-mobile img {
        max-width: 160px;
        height: auto;
    }
    
    /* Mobil menü iletişim butonları */
    .nav-contact-mobile {
        display: none;
        width: 100%;
        margin-top: auto;
        padding-top: 24px;
        border-top: 1px solid var(--border);
        gap: 12px;
        flex-direction: column;
    }
    
    .btn-whatsapp-mobile,
    .btn-email-mobile {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
        transition: var(--transition);
    }
    
    .btn-whatsapp-mobile {
        background: #25D366;
        color: white;
    }
    
    .btn-whatsapp-mobile:hover {
        background: #20BA5A;
        transform: translateY(-2px);
    }
    
    .btn-email-mobile {
        background: var(--primary);
        color: white;
    }
    
    .btn-email-mobile:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 999;
    }
    
    .nav.open ~ .nav-overlay,
    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
    
    .nav.open {
        transform: translateX(0);
    }
    
    .nav.open .nav-logo-mobile,
    .nav.open .nav-contact-mobile {
        display: flex !important;
    }
    
    .nav.open::before {
        opacity: 1;
        pointer-events: all;
    }
    
    /* Mobil menü linkleri - sadece direkt child linkler */
    .nav > a:not(.btn-whatsapp-mobile):not(.btn-email-mobile) {
        width: 100%;
        padding: 16px 20px;
        font-size: 17px;
        font-weight: 600;
        color: var(--text-dark);
        border-radius: var(--radius);
        margin-bottom: 8px;
        transition: var(--transition);
        position: relative;
    }
    
    .nav > a:not(.btn-whatsapp-mobile):not(.btn-email-mobile)::after {
        display: none;
    }
    
    .nav > a:not(.btn-whatsapp-mobile):not(.btn-email-mobile):hover,
    .nav > a:not(.btn-whatsapp-mobile):not(.btn-email-mobile):active {
        background: var(--bg-light);
        color: var(--primary);
        transform: translateX(4px);
    }
    
    .header-actions {
        display: none;
    }
    
    .nav.open ~ .header-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }
    
    .nav.open ~ .header-actions .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
        background: var(--primary);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
        background: var(--primary);
    }
    
section {
    padding: 50px 0;
}
    
    .hero-slider-section {
        padding: 30px 0 50px;
    }
    
    .hero-slide-content {
        padding: 24px 20px;
        min-height: 520px;
    }
    
    .hero-card {
        padding: 24px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .camp-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation {
        padding: 30px 20px;
    }
    
    .reservation-form {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
    }

    .camp-detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .camp-detail-right {
        position: static;
    }

    .camp-image-small img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .contact-cta {
        flex-direction: column;
    }
    
    .contact-cta .btn {
        width: 100%;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: none;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    border: none;
    text-decoration: none;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation-delay: 0s;
}

.floating-btn-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
}

.floating-btn-scroll {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    animation-delay: 0.5s;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-btn-scroll.visible {
    opacity: 1;
    visibility: visible;
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    z-index: 1;
    position: relative;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}
