/* Saklı Bahçe Esenköy - Kamp Alanı Sayfası Özel Stilleri */
/* Doğa + deniz + kamp ateşi temalı, mevcut tasarım sisteminin uzantısı */

/* Global Overflow Fix */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ============================================ */
/* BREADCRUMB */
/* ============================================ */
.breadcrumb-nav {
    padding-top: 6rem;
    padding-bottom: 1rem;
    background: linear-gradient(135deg, rgba(75, 103, 88, 0.05), rgba(179, 69, 18, 0.05));
}

.breadcrumb-nav ol li {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */
.camping-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.camping-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 83, 69, 0.85) 0%,
        rgba(75, 103, 88, 0.6) 50%,
        rgba(138, 52, 14, 0.7) 100%
    );
    z-index: 1;
}

.camping-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at top right,
        rgba(212, 175, 55, 0.15) 0%,
        transparent 60%
    );
    z-index: 1;
    animation: heroAmbient 8s ease-in-out infinite alternate;
}

@keyframes heroAmbient {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* Hero floating particles (kamp ateşi parçacıkları efekti) */
.camping-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6), transparent);
    pointer-events: none;
    animation: particleFloat 10s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -100px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(-40px, -50px) scale(1.1);
        opacity: 0.7;
    }
}

.hero-badge-camping {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: heroFloat 4s ease-in-out infinite;
}

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

.camping-hero h1 {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.camping-hero h1 .accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.camping-hero p.lead {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Hero CTA Buttons */
.hero-cta-camping {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.btn-camping-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(179, 69, 18, 0.45);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-camping-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.7s;
}

.btn-camping-primary:hover::before { left: 100%; }
.btn-camping-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(179, 69, 18, 0.6);
}

.btn-camping-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.45);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-camping-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.6);
}

.btn-camping-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-camping-outline:hover {
    background: white;
    color: var(--secondary-dark);
    transform: translateY(-3px) scale(1.03);
}

/* Hero stats strip */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: center;
    color: white;
}

.hero-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.875rem;
    opacity: 0.85;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hero-stat .num { font-size: 1.75rem; }
}

/* Scroll indicator */
.scroll-indicator-camping {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    z-index: 5;
}

.scroll-indicator-camping::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    animation: scrollWheelCamping 2s infinite ease-in-out;
}

@keyframes scrollWheelCamping {
    0%, 100% { opacity: 0.4; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 14px); }
}

/* ============================================ */
/* QUICK INFO STRIP */
/* ============================================ */
.quick-info-strip {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-info-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(75, 103, 88, 0.08);
    position: relative;
    overflow: hidden;
}

.quick-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(179, 69, 18, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
}

.quick-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.quick-info-card:hover::before { opacity: 1; }

.quick-info-card .icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 10px 25px rgba(75, 103, 88, 0.3);
}

.quick-info-card:hover .icon-wrap {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 14px 35px rgba(75, 103, 88, 0.5);
}

.quick-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.quick-info-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ============================================ */
/* SECTION COMMONS */
/* ============================================ */
.section-camping {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-badge-camping {
    display: inline-flex;
    align-items: center;
    background: rgba(75, 103, 88, 0.1);
    color: var(--secondary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge-camping.primary {
    background: rgba(179, 69, 18, 0.1);
    color: var(--primary);
}

.section-badge-camping.gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
}

.section-title-camping {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.15;
}

.section-title-camping .accent {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.section-desc-camping {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Floating background blobs */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.bg-blob.blob-primary { background: rgba(179, 69, 18, 0.08); }
.bg-blob.blob-secondary { background: rgba(75, 103, 88, 0.08); }
.bg-blob.blob-gold { background: rgba(212, 175, 55, 0.08); }

/* ============================================ */
/* STORY SECTION */
/* ============================================ */
.story-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.story-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-image-wrap:hover img {
    transform: scale(1.06);
}

.story-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(75, 103, 88, 0.3));
}

.story-floating-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.story-floating-tag .top {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
}

.story-floating-tag .bottom {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.story-list {
    list-style: none;
    padding: 0;
    margin-top: 28px;
}

.story-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #374151;
}

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

.story-list li i {
    color: var(--secondary);
    background: rgba(75, 103, 88, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================ */
/* AMENITIES GRID */
/* ============================================ */
.amenity-card {
    background: white;
    border-radius: 22px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s;
    filter: blur(20px);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(179, 69, 18, 0.15);
    border-color: rgba(179, 69, 18, 0.2);
}

.amenity-card:hover::before {
    opacity: 0.4;
    transform: scale(1.5);
}

.amenity-card .ic {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.65rem;
    box-shadow: 0 10px 25px rgba(179, 69, 18, 0.3);
    transition: all 0.4s;
}

.amenity-card:hover .ic {
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 14px 35px rgba(179, 69, 18, 0.5);
}

.amenity-card.green .ic {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    box-shadow: 0 10px 25px rgba(75, 103, 88, 0.3);
}

.amenity-card.green:hover { box-shadow: 0 25px 60px rgba(75, 103, 88, 0.15); }
.amenity-card.green:hover .ic { box-shadow: 0 14px 35px rgba(75, 103, 88, 0.5); }
.amenity-card.green::before { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); }

.amenity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================ */
/* PRICING SECTION */
/* ============================================ */
.pricing-section {
    background: linear-gradient(180deg, #fafaf7, white);
}

.price-card {
    background: white;
    border-radius: 28px;
    padding: 42px 32px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-light);
}

.price-card:hover::before { transform: scaleX(1); }

.price-card.featured {
    background: linear-gradient(135deg, white, #fff8ed);
    border-color: var(--primary);
    transform: scale(1.04);
    box-shadow: 0 25px 70px rgba(179, 69, 18, 0.15);
}

.price-card.featured::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(1);
}

.price-card.featured:hover {
    transform: scale(1.04) translateY(-12px);
    box-shadow: 0 35px 90px rgba(179, 69, 18, 0.25);
}

.price-card.premium {
    background: linear-gradient(135deg, white, #fffbf0);
    border-color: var(--gold);
}

.price-card.premium::before {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(1);
}

.price-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(179, 69, 18, 0.4);
    z-index: 5;
}

.price-premium-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: #2a1c00;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
    z-index: 5;
}

.price-card .ic-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.price-card.featured .ic-wrap {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.price-card.premium .ic-wrap {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: #2a1c00;
}

.price-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 8px;
}

.price-card .subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.price-amount {
    text-align: center;
    margin-bottom: 28px;
    padding: 20px 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.price-amount .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b7280;
    vertical-align: top;
}

.price-amount .amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.price-card.featured .price-amount .amount { color: var(--primary); }
.price-card.premium .price-amount .amount { color: var(--gold-dark); }

.price-amount .period {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 8px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
    flex: 1;
}

.price-features li {
    padding: 10px 0;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.price-features li i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

.price-card.featured .price-features li i { color: var(--primary); }
.price-card.premium .price-features li i { color: var(--gold-dark); }

.price-features li.disabled {
    color: #9ca3af;
    text-decoration: line-through;
}

.price-features li.disabled i { color: #d1d5db; }

.price-cta {
    width: 100%;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    text-align: center;
    display: block;
}

.price-cta:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(75, 103, 88, 0.3);
}

.price-card.featured .price-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: white;
}

.price-card.featured .price-cta:hover {
    box-shadow: 0 15px 35px rgba(179, 69, 18, 0.5);
}

.price-card.premium .price-cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-color: transparent;
    color: #2a1c00;
}

.price-card.premium .price-cta:hover {
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

@media (max-width: 1024px) {
    .price-card.featured { transform: scale(1); }
    .price-card.featured:hover { transform: translateY(-12px); }
}

/* ============================================ */
/* PRICE CALCULATOR */
/* ============================================ */
.calculator-wrap {
    background: linear-gradient(135deg, white, #fafaf7);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(75, 103, 88, 0.1);
    position: relative;
    overflow: hidden;
}

.calculator-wrap::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(179, 69, 18, 0.05), transparent);
    border-radius: 50%;
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .calc-row { grid-template-columns: 1fr; gap: 24px; }
    .calculator-wrap { padding: 28px 22px; }
}

.calc-field label {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.calc-field label i {
    color: var(--primary);
    margin-right: 8px;
}

.calc-people-control {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.calc-people-control:hover { border-color: var(--secondary-light); }

.calc-people-control button {
    width: 56px;
    height: 56px;
    background: rgba(75, 103, 88, 0.08);
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
    flex-shrink: 0;
}

.calc-people-control button:hover {
    background: var(--secondary);
    color: white;
}

.calc-people-control input {
    flex: 1;
    border: none;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    background: transparent;
    padding: 0 8px;
    font-family: 'Playfair Display', serif;
}

.calc-people-control input:focus { outline: none; }

.calc-tent-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 480px) {
    .calc-tent-options { grid-template-columns: 1fr; }
}

.calc-tent-options input { display: none; }

.calc-tent-options label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    margin-bottom: 0;
}

.calc-tent-options label i {
    font-size: 1.4rem;
    color: var(--secondary);
    margin: 0 0 8px;
}

.calc-tent-options label span.title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.calc-tent-options label span.fee {
    font-size: 0.75rem;
    color: #6b7280;
}

.calc-tent-options input:checked + label {
    background: linear-gradient(135deg, rgba(179, 69, 18, 0.05), rgba(212, 87, 26, 0.05));
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(179, 69, 18, 0.15);
    transform: translateY(-2px);
}

.calc-tent-options input:checked + label i { color: var(--primary); }

/* Calculator result */
.calc-result {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    color: white;
    border-radius: 22px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-result::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.2), transparent 60%);
}

.calc-result-label {
    font-size: 0.875rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.calc-result-amount {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-light), white);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

@media (max-width: 768px) { .calc-result-amount { font-size: 3rem; } }

.calc-result-amount .cur { font-size: 1.5rem; opacity: 0.9; vertical-align: top; }

.calc-result-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 18px;
    font-size: 0.875rem;
    opacity: 0.9;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.calc-result-meta span i { color: var(--gold-light); margin-right: 6px; }

.calc-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ============================================ */
/* HOW IT WORKS */
/* ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
}

@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
}

.step-card {
    background: white;
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.5s;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
}

.step-num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(179, 69, 18, 0.4);
}

.step-card .ic {
    width: 80px;
    height: 80px;
    margin: 16px auto 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(75, 103, 88, 0.1), rgba(75, 103, 88, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 2rem;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.step-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Connector line between steps (desktop) */
@media (min-width: 1024px) {
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 16%;
        right: 16%;
        height: 2px;
        background: repeating-linear-gradient(90deg, rgba(179, 69, 18, 0.3) 0 10px, transparent 10px 20px);
        z-index: -1;
    }
}

/* ============================================ */
/* RULES */
/* ============================================ */
.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

@media (max-width: 768px) { .rules-grid { grid-template-columns: 1fr; gap: 20px; } }

.rules-card {
    background: white;
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
    border-top: 5px solid;
}

.rules-card.allowed { border-color: #16a34a; }
.rules-card.forbidden { border-color: #dc2626; }

.rules-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.rules-card.allowed h3 i { color: #16a34a; }
.rules-card.forbidden h3 i { color: #dc2626; }

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

.rules-card ul li {
    padding: 12px 0;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.5;
}

.rules-card ul li:last-child { border-bottom: none; }

.rules-card ul li i {
    margin-top: 4px;
    flex-shrink: 0;
    width: 20px;
}

.rules-card.allowed ul li i { color: #16a34a; }
.rules-card.forbidden ul li i { color: #dc2626; }

/* ============================================ */
/* GALLERY */
/* ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(31, 41, 55, 0.85));
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .overlay { opacity: 1; }

.gallery-item .overlay h4 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

.gallery-item .zoom-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.4s;
}

.gallery-item:hover .zoom-icon { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    padding: 20px;
}

.lightbox-overlay.open { opacity: 1; visibility: visible; }

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    transition: transform 0.4s;
}

.lightbox-overlay.open img { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg) scale(1.05);
}

/* ============================================ */
/* CROSS-LINK SERVICES */
/* ============================================ */
.cross-link-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
}

.cross-link-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.cross-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.cross-link-card:hover img { transform: scale(1.1); }

.cross-link-card .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85));
}

.cross-link-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    color: white;
    z-index: 2;
}

.cross-link-card .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cross-link-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cross-link-card p {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 16px;
}

.cross-link-card .arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.cross-link-card:hover .arrow { gap: 14px; }

/* ============================================ */
/* FAQ */
/* ============================================ */
.faq-item {
    background: white;
    border-radius: 18px;
    margin-bottom: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s;
}

.faq-item:hover { box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08); }
.faq-item.open { box-shadow: 0 16px 45px rgba(179, 69, 18, 0.12); border-color: rgba(179, 69, 18, 0.2); }

.faq-question {
    width: 100%;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }

.faq-question .toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(179, 69, 18, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    flex-shrink: 0;
}

.faq-item.open .faq-question .toggle {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding: 0 26px 22px;
    color: #4b5563;
    line-height: 1.7;
}

/* ============================================ */
/* MAP */
/* ============================================ */
.map-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    aspect-ratio: 16 / 8;
}

@media (max-width: 768px) { .map-wrap { aspect-ratio: 4 / 5; } }

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    background: white;
    border-radius: 18px;
    padding: 22px 26px;
    max-width: 320px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

@media (max-width: 768px) {
    .map-info-overlay { left: 12px; right: 12px; top: 12px; max-width: none; padding: 16px 18px; }
}

.map-info-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.map-info-overlay p {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.55;
    margin-bottom: 12px;
}

.map-info-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
}

.map-info-overlay a:hover { color: var(--primary); }

/* ============================================ */
/* FINAL CTA BANNER */
/* ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

@media (max-width: 768px) { .final-cta { padding: 48px 24px; border-radius: 24px; } }

.final-cta::before,
.final-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.final-cta::before {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.2);
}

.final-cta::after {
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: rgba(179, 69, 18, 0.25);
}

.final-cta > * { position: relative; z-index: 2; }

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.final-cta h2 .accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.final-cta p {
    font-size: 1.125rem;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.65;
}

.final-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================ */
/* ANIMATION ON SCROLL */
/* ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* RESPONSIVE TWEAKS */
/* ============================================ */
@media (max-width: 1024px) {
    .section-camping { padding: 70px 0; }
    .quick-info-strip { margin-top: -30px; }
}

@media (max-width: 768px) {
    .section-camping { padding: 60px 0; }
    .camping-hero { background-attachment: scroll; min-height: 90vh; }
    .quick-info-strip { margin-top: 0; padding-top: 40px; }
    .calculator-wrap { padding: 24px 18px; }
}
