/* =========================================
   1. VARIABLES & SETUP
   ========================================= */
   :root {
    /* --- BRAND PALETTE --- */
    --primary: #26528C;       /* H.O.W. Blue */
    --primary-dark: #1c3d6e;  /* Darker Blue */
    --secondary: #6DA043;     /* H.O.W. Green */
    --accent: #F29124;        /* H.O.W. Orange */
    
    /* --- THEME COLORS --- */
    --bg-body: #EFF4F7;       /* Cool Grey/Blue Background */
    --bg-white: #ffffff;      /* White for Content Islands */
    
    --text-dark: #2C3E50;     
    --text-light: #5d6d7e;    

    /* --- LAYOUT SETTINGS --- */
    --border-radius: 30px;    
    --container-width: 1200px;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* Global Reset */
html { scroll-behavior: smooth; }
body { 
    font-family: 'Mulish', sans-serif; 
    margin: 0; padding: 0; 
    color: var(--text-dark); 
    background-color: var(--bg-body); 
    line-height: 1.7;
    overflow-x: hidden; 
}

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

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif; 
    font-weight: 700;
    margin-top: 0;
    line-height: 1.2;
    color: var(--primary);
}

/* Default H1 (Homepage Hero) */
h1 { font-size: clamp(3rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 20px; }

/* =========================================
   3. BUTTONS
   ========================================= */
.btn, .btn-primary, .btn-accent, .btn-booking {
    display: inline-block; 
    padding: 16px 36px; 
    border-radius: 50px;
    text-decoration: none; 
    font-weight: 700; 
    font-size: 0.95rem;
    letter-spacing: 0.5px; 
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary, .btn-submit { 
    background: var(--primary); color: white; 
    box-shadow: 0 4px 15px rgba(38, 82, 140, 0.2);
}
.btn-primary:hover, .btn-submit:hover { 
    background: var(--primary-dark); 
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(38, 82, 140, 0.4); 
}

.btn-accent { 
    background: var(--accent); color: white; 
    box-shadow: 0 4px 15px rgba(242, 145, 36, 0.2);
}
.btn-accent:hover { 
    background: #d67e1b; 
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(242, 145, 36, 0.4); 
}

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

/* =========================================
   4. HEADER (Solid White & Visible)
   ========================================= */
header {
    padding: 15px 5%; 
    position: fixed; top: 0; width: 90%; left: 5%; 
    z-index: 1000;
    display: flex; justify-content: center;
}

.nav-container {
    background: #ffffff; 
    border: 1px solid rgba(38, 82, 140, 0.15); 
    box-shadow: 0 15px 40px rgba(38, 82, 140, 0.12); 
    padding: 10px 30px; 
    border-radius: 50px;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; 
}

.logo-box { display: block; text-decoration: none; }
.logo-box img { 
    height: 75px; /* Large visible logo */
    width: auto; 
    display: block; 
}

.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-links a { 
    text-decoration: none; color: var(--text-dark); 
    font-weight: 600; font-size: 0.9rem; 
    padding: 10px 20px; border-radius: 20px; transition: 0.3s; 
}
.nav-links a:hover { background: rgba(38, 82, 140, 0.08); color: var(--primary); }

.nav-cta { 
    background: var(--secondary) !important; color: white !important; 
    padding: 12px 28px !important; border-radius: 30px !important; 
}
.nav-cta:hover { 
    background: #5b8a36 !important; 
    box-shadow: 0 5px 15px rgba(109, 160, 67, 0.3); 
}

.mobile-toggle { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

/* =========================================
   5. HOMEPAGE HERO (Full Width)
   ========================================= */
.hero-wrapper {
    position: relative; height: 95vh; width: 100%;
    background: var(--bg-white); 
    border-radius: 0 0 60px 60px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.03); 
    overflow: hidden;
    display: flex; align-items: center; justify-content: flex-start; 
    margin-bottom: 50px;
}

.hero-bg {
    position: absolute; top: 0; left: 0; 
    width: 100%; height: 100%;
    background: url('https://images.pexels.com/photos/7551608/pexels-photo-7551608.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    z-index: 1;
}

/* White Fade Gradient on the Left */
.hero-bg::after { 
    content:''; position: absolute; inset: 0; 
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 35%, 
        rgba(255, 255, 255, 0) 100%); 
}

.hero-content { 
    position: relative; z-index: 2; width: 100%; max-width: var(--container-width); 
    padding: 0 5%; display: flex; align-items: center; pointer-events: none; 
}

.hero-text-box { max-width: 600px; pointer-events: auto; }
.hero-tag { 
    display: inline-block; background: rgba(38, 82, 140, 0.1); color: var(--primary); 
    padding: 8px 16px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; 
    margin-bottom: 20px; letter-spacing: 1px; 
}

/* =========================================
   6. SUB-PAGE BANNERS (The Fix)
   ========================================= */
.page-banner {
    background: var(--primary); 
    color: white;
    /* PUSHED DOWN to 220px to clear the fixed header */
    padding: 220px 10% 80px 10%; 
    text-align: center;
    border-radius: 0 0 60px 60px; 
    margin-bottom: 50px;
    position: relative;
}

/* Smaller H1 for sub-pages so it doesn't look huge */
.page-banner h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 10px;
    color: white;
}

.page-banner p { color: rgba(255,255,255,0.85); }

/* Special Hero for Holiday Page */
.holiday-hero {
    position: relative; 
    padding: 220px 10% 100px 10%; /* Same push down */
    text-align: center; color: white;
    background: radial-gradient(circle, rgba(38, 82, 140, 0.7) 0%, rgba(38, 82, 140, 0.8) 100%), 
                url('https://images.pexels.com/photos/2104882/pexels-photo-2104882.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover; background-attachment: fixed; background-position: center;
    border-radius: 0 0 60px 60px; 
    margin-bottom: 50px;
}

/* =========================================
   7. FLOATING CARDS & GRIDS
   ========================================= */
.features-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; 
    max-width: var(--container-width); 
    margin: -140px auto 100px auto; 
    position: relative; z-index: 10; padding: 0 5%;
}

.card, .benefit-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(38, 82, 140, 0.05); 
    border-bottom: 5px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(38, 82, 140, 0.05);
    transition: all 0.3s ease;
}
.card:hover, .benefit-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(38, 82, 140, 0.15); }

.feature-icon, .benefit-card i {
    width: 60px; height: 60px; 
    background: rgba(109, 160, 67, 0.1); color: var(--secondary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-size: 1.5rem; margin-bottom: 20px;
}

/* =========================================
   8. CONTENT ISLANDS (Sections)
   ========================================= */
.split-section, .contact-container {
    display: flex; align-items: center; gap: 80px; 
    padding: 80px; 
    max-width: 1200px; 
    margin: 80px auto; 
    background: var(--bg-white); 
    border-radius: 40px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.03); 
    box-sizing: border-box;
}

.contact-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }

/* BLUE HIGHLIGHT SECTION (Philosophy) */
.split-section.highlight-blue {
    background: var(--primary);
    color: white;
}
.split-section.highlight-blue h2 { color: white !important; }
.split-section.highlight-blue h4 { color: var(--accent) !important; opacity: 1; }
.split-section.highlight-blue p { color: rgba(255, 255, 255, 0.9); }
.split-section.highlight-blue .link-arrow { color: white; border-bottom: 2px solid var(--secondary); }
.split-section.highlight-blue .organic-img {
    box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.2); 
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.split-visual, .contact-info { flex: 1; position: relative; }
.split-text, .booking-form { flex: 1; }

.organic-img {
    width: 100%; height: 450px; object-fit: cover;
    border-radius: 200px 200px 24px 24px; 
    box-shadow: 20px 20px 0px rgba(242, 145, 36, 0.15); 
}

.reverse-layout { flex-direction: row-reverse; }
.reverse-layout .organic-img { 
    border-radius: 24px 24px 200px 200px; 
    box-shadow: -20px 20px 0px rgba(38, 82, 140, 0.15); 
}

/* =========================================
   9. FORMS
   ========================================= */
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea { 
    width: 100%; padding: 14px; 
    border: 1px solid #ddd; border-radius: 12px; 
    font-family: inherit; font-size: 15px; 
    background: #f9f9f9; box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--secondary); background: white;
    box-shadow: 0 0 0 4px rgba(109, 160, 67, 0.1);
}

/* =========================================
   10. FOOTER & CTA
   ========================================= */
.soul-train-section {
    position: relative; padding: 100px 10%; text-align: center; color: white;
    background: radial-gradient(circle, rgba(38, 82, 140, 0.85) 0%, rgba(38, 82, 140, 0.95) 100%), 
                url('https://images.pexels.com/photos/2104882/pexels-photo-2104882.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover; background-attachment: fixed; background-position: center;
    border-radius: 40px; margin: 50px auto; max-width: 1300px;
    box-shadow: 0 20px 50px rgba(38, 82, 140, 0.2);
}

footer {
    background: var(--primary); color: #ecf0f1; 
    padding: 80px 10% 40px 10%; margin-top: 100px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-col h4 { color: var(--accent); margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 10px; transition: 0.3s; }
.footer-col a:hover { color: var(--accent); padding-left: 5px; }

/* =========================================
   11. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    header { width: 100%; left: 0; padding: 15px; }
    .nav-container { padding: 15px 20px; }
    .mobile-toggle { display: block; }
    
    .nav-links {
        position: absolute; top: 90px; left: 0; width: 100%;
        background: white; flex-direction: column; padding: 30px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-radius: 0 0 24px 24px;
        display: none; 
    }
    .nav-links.active { display: flex; }
    .logo-box img { height: 60px; } 

    .hero-wrapper { height: auto; padding: 150px 0 100px 0; flex-direction: column-reverse; border-radius: 0 0 40px 40px; }
    .hero-bg { position: relative; width: 100%; height: 300px; border-radius: 0; margin-bottom: -80px; }
    .hero-bg::after { background: linear-gradient(to top, var(--bg-white), transparent); }
    .hero-content { text-align: center; justify-content: center; }
    
    .page-banner { padding-top: 150px; } /* Less padding needed on mobile */
    .features-grid { margin-top: -60px; gap: 20px; }
    .card { padding: 30px; }
    
    .split-section, .contact-container { 
        flex-direction: column; display: flex;
        padding: 40px 25px; margin: 40px 5%; width: 90%; 
    }
    .organic-img { height: 300px; width: 100%; border-radius: 24px; }
    
    .soul-train-section, .holiday-hero { background-attachment: scroll; width: 90%; box-sizing: border-box; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
/* =========================================
   12. FLOATING WHATSAPP BUTTON
   ========================================= */
   .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000; /* Ensures it stays on top of everything */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E; /* Darker green on hover */
    transform: scale(1.1); /* Slight zoom effect */
    color: white;
}

/* Optional: Pulse Animation to catch attention */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-green 2s infinite;
}

/* Adjust for Mobile so it doesn't cover content */
@media (max-width: 992px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}
/* =========================================
   13. SCROLL ANIMATIONS
   ========================================= */
/* The starting state (invisible and slightly lower) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* The active state (visible and in place) */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}