/* ===== IKOBE MOMENTS - Stunning Cultural Design ===== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Dancing+Script:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Exact Colors from Flyer */
    --olive-primary: #8B8B4B;
    --olive-dark: #6E6E3A;
    --olive-light: #A4A45C;
    --forest-green: #3D5A3D;
    --forest-dark: #2C4A2C;
    --mountain-mist: #7A8B7A;

    /* Cream & Neutrals */
    --cream: #F5F1E8;
    --cream-light: #FDFBF7;
    --cream-dark: #E8E2D5;
    --paper-torn: #F0EBE0;

    /* Text Colors */
    --text-dark: #2C2C2C;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --text-white: #FFFFFF;

    /* Accents */
    --gold-accent: #C4A962;
    --whatsapp: #25D366;

    /* Typography */
    --font-script: 'Dancing Script', cursive;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(245, 241, 232, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-family: var(--font-script);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 2px 3px 6px rgba(0,0,0,0.4);
    line-height: 1;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo-main {
    color: var(--olive-dark);
    text-shadow: none;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.navbar.scrolled .logo-tagline {
    color: var(--text-medium);
    text-shadow: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--olive-primary) !important;
    color: var(--text-white) !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 50px;
    text-shadow: none !important;
    box-shadow: 0 4px 15px rgba(139, 139, 75, 0.4);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--olive-dark) !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--olive-dark);
}

/* ===== HERO SECTION - Mountain Landscape ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg,
            rgba(61, 90, 61, 0.3) 0%,
            rgba(61, 90, 61, 0.2) 30%,
            rgba(139, 139, 75, 0.1) 60%,
            rgba(245, 241, 232, 0.95) 90%,
            rgba(245, 241, 232, 1) 100%
        ),
        /* SVG Mountain Landscape */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%237A8B7A'/%3E%3Cstop offset='30%25' style='stop-color:%238FA08F'/%3E%3Cstop offset='60%25' style='stop-color:%23A8B5A0'/%3E%3Cstop offset='100%25' style='stop-color:%23C5CFC0'/%3E%3C/linearGradient%3E%3ClinearGradient id='mist' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23ffffff;stop-opacity:0'/%3E%3Cstop offset='100%25' style='stop-color:%23ffffff;stop-opacity:0.4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23sky)' width='1440' height='900'/%3E%3C!-- Distant mountains --%3E%3Cpath d='M0,350 Q150,280 300,350 T600,320 T900,380 T1200,340 T1440,360 L1440,900 L0,900 Z' fill='%233D5A3D' opacity='0.4'/%3E%3Cpath d='M0,400 Q200,320 400,400 T800,360 T1100,420 T1440,380 L1440,900 L0,900 Z' fill='%234A6B4A' opacity='0.5'/%3E%3C!-- Middle mountains --%3E%3Cpath d='M0,450 Q250,380 500,450 T900,420 T1200,480 T1440,440 L1440,900 L0,900 Z' fill='%235A7D5A' opacity='0.6'/%3E%3Cpath d='M0,500 Q300,440 550,500 T950,470 T1250,530 T1440,500 L1440,900 L0,900 Z' fill='%236B8D6B' opacity='0.6'/%3E%3C!-- Foreground hills --%3E%3Cpath d='M0,560 Q350,500 600,560 T1000,530 T1300,590 T1440,560 L1440,900 L0,900 Z' fill='%237A9D7A' opacity='0.7'/%3E%3Cpath d='M0,620 Q400,570 700,620 T1100,600 T1440,640 L1440,900 L0,900 Z' fill='%238BAD8B' opacity='0.5'/%3E%3C!-- Mist layer --%3E%3Crect fill='url(%23mist)' y='400' width='1440' height='300' opacity='0.3'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    max-width: 900px;
}

.hero-logo {
    margin-bottom: var(--space-lg);
}

.hero-brand {
    font-family: var(--font-script);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 3px 5px 15px rgba(0,0,0,0.3);
    line-height: 0.85;
    margin-bottom: var(--space-xs);
}

.hero-brand span {
    display: block;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    letter-spacing: 4px;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.3);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: var(--space-lg) 0 var(--space-md);
    line-height: 1.4;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--olive-dark);
    margin-bottom: var(--space-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--olive-primary);
    color: var(--text-white);
    box-shadow: 0 8px 25px rgba(139, 139, 75, 0.4);
}

.btn-primary:hover {
    background: var(--olive-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 139, 75, 0.5);
}

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

.btn-secondary:hover {
    background: var(--olive-primary);
    color: var(--text-white);
}

/* ===== IMIGONGO BORDER PATTERNS ===== */
.imigongo-border {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
    z-index: 10;
}

.imigongo-border svg {
    width: 100%;
    height: 50px;
    display: block;
}

.imigongo-border.imigongo-dark {
    margin-top: 0;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-label {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--olive-primary);
    margin-bottom: var(--space-xs);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Decorative Line */
.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--olive-primary), transparent);
}

.decorative-line .icon {
    color: var(--olive-primary);
    font-size: 1.2rem;
}

/* ===== ABOUT / SERVICES SECTION ===== */
.about-section {
    background: var(--cream);
    padding: var(--space-xl) 0 var(--space-xxl);
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.about-intro p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: var(--cream-light);
    border-radius: 20px;
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 139, 75, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--olive-primary), var(--gold-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 139, 75, 0.15);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--olive-light), var(--olive-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: 0 10px 30px rgba(139, 139, 75, 0.3);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--text-white);
    stroke-width: 1.5;
    fill: none;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== EXPERIENCES SECTION ===== */
.experiences-section {
    background: var(--cream-dark);
    padding: var(--space-xl) 0;
    position: relative;
}

/* Torn edge top */
.experiences-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 Q40,20 80,35 T160,25 T240,40 T320,22 T400,38 T480,24 T560,42 T640,20 T720,36 T800,26 T880,44 T960,18 T1040,38 T1120,24 T1200,40 T1280,22 T1360,36 T1440,28 L1440,60 L0,60 Z' fill='%23E8E2D5'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    z-index: 1;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

/* ===== EXPERIENCE CARDS - Olive Green Style ===== */
.experience-card {
    background: var(--cream-light);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.experience-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(139, 139, 75, 0.25);
}

.experience-card.featured {
    border: 3px solid var(--olive-primary);
}

.card-image {
    height: 220px;
    background: var(--olive-primary);
    position: relative;
    overflow: hidden;
}

.card-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-card:hover .card-image-bg {
    transform: scale(1.1);
}

/* Olive overlay matching flyer */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--olive-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-md);
    text-align: center;
}

.card-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-overlay .price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-accent);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    padding: var(--space-md);
}

.card-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.card-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.card-features span {
    background: rgba(139, 139, 75, 0.1);
    color: var(--olive-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(139, 139, 75, 0.15);
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.card-price .currency {
    font-size: 1rem;
    color: var(--olive-primary);
    font-weight: 600;
}

.card-price .amount {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card-price .per {
    font-size: 0.85rem;
    color: var(--text-light);
}

.btn-book {
    background: var(--olive-primary);
    color: var(--text-white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--cream);
    padding: var(--space-xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: var(--space-sm);
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.gallery-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-bg {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-bg::after {
    opacity: 1;
}

.gallery-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-green) 50%, var(--olive-dark) 100%);
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

/* Decorative pattern */
.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
    position: relative;
    z-index: 2;
}

.booking-info {
    color: var(--cream);
}

.booking-info .section-label {
    color: var(--olive-light);
}

.booking-info .section-title {
    color: var(--cream);
}

.booking-info .section-desc {
    color: rgba(255,255,255,0.8);
}

.booking-features {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--cream);
    font-size: 1rem;
}

.booking-feature svg {
    width: 24px;
    height: 24px;
    stroke: var(--olive-light);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.booking-contact {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.booking-contact h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--cream);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--olive-light);
    stroke-width: 2;
    fill: none;
}

/* Booking Form */
.booking-form-card {
    background: var(--cream-light);
    border-radius: 24px;
    padding: var(--space-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid rgba(139, 139, 75, 0.2);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--cream-light);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--olive-primary);
    box-shadow: 0 0 0 4px rgba(139, 139, 75, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    align-items: end;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    background: var(--whatsapp);
    color: var(--text-white);
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--space-xs);
    width: 100%;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--cream);
    padding: var(--space-xl) 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-lg);
}

.footer-brand .logo-main {
    color: var(--cream);
    text-shadow: none;
    font-size: 2rem;
}

.footer-brand .logo-tagline {
    color: var(--olive-light);
    text-shadow: none;
}

.footer-brand p {
    margin-top: var(--space-sm);
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--olive-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--olive-light);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.footer-bottom {
    border-top: 1px solid rgba(139, 139, 75, 0.2);
    padding: var(--space-md) 0;
    text-align: center;
}

.footer-tagline {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--olive-light);
    margin-bottom: var(--space-xs);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) { grid-column: span 2; }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-sm);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text-dark) !important;
        text-shadow: none !important;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-brand {
        font-size: 3.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin: var(--space-sm) auto 0;
    }

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

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

    .gallery-item,
    .gallery-item:nth-child(1) {
        grid-column: span 1 !important;
        height: 180px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-content {
    animation: fadeInUp 1.2s ease-out;
}

.feature-card,
.experience-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.experience-card:nth-child(1) { animation-delay: 0.1s; }
.experience-card:nth-child(2) { animation-delay: 0.2s; }
.experience-card:nth-child(3) { animation-delay: 0.3s; }

/* ===== IMIGONGO DIVIDER - Authentic Zigzag Pattern ===== */
.imigongo-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: var(--space-md) 0;
}

.imigongo-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* ===== CLEAN GALLERY ===== */
.gallery-section {
    background: var(--cream);
    padding: var(--space-xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px;
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item.gallery-wide {
    grid-column: span 1;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 139, 75, 0.25);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
}

/* ===== RESPONSIVE GALLERY ===== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px;
    }

    .gallery-item.gallery-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item,
    .gallery-item.gallery-wide {
        grid-column: span 1;
        height: 220px;
    }
}
