/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* --- BRAND VARIABLES --- */
:root {
    --primary-blue: #113352;
    --accent-green: #79c34b;
    --accent-blue: #3498db;
    --light-gray: #f4f7f6;
    --white: #ffffff;
    --text-dark: #333333;
    --transition: all 0.3s ease;
}

/* --- RESET & GLOBAL STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
    overflow-x: hidden;
}

/* --- UPDATED NAVIGATION --- */
nav {
    background: var(--white);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.logo-container img {
    height: 50px; /* Adjust height for mobile */
    width: auto;
}

/* --- UPDATED MOBILE RESPONSIVE (Fixes the overlapping) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        order: 2; /* Moves icon to the right */
    }

    .logo-container {
        order: 1; /* Keeps logo on the left */
    }

    .nav-links {
        display: none; /* Hides links by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        gap: 15px;
    }

    .nav-links.active {
        display: flex; /* Shows links when hamburger is clicked */
    }

    /* Adjust the Book Online button inside the menu */
    .nav-links li .btn {
        width: 100%;
        text-align: center;
    }
}

/* --- BUTTONS --- */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn-green { background: var(--accent-green); color: var(--white) !important; }
.btn-green:hover { background: #619e3c; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(121,195,75,0.3); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary-blue); }

/* --- HERO SECTION --- */
.hero-creative {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    width: 100%;
    min-height: 80vh;
    padding: 100px 8%;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(17,51,82,0.7), rgba(17,51,82,0.7)); /* Smooth overlay */
}

.hero-content { max-width: 700px; color: white; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.text-gradient { color: var(--accent-green); }
.badge { background: var(--accent-green); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 15px; display: inline-block; }
.hero-btns { display: flex; gap: 15px; margin-top: 20px; }

/* --- STATS BAR --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    padding: 30px;
    width: 90%;
    max-width: 1200px;
    margin: -50px auto 0;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}
.stat-item { text-align: center; border-right: 1px solid #eee; }
.stat-item:last-child { border-right: none; }
.stat-item h2 { color: var(--accent-green); font-size: 2.2rem; }
.stat-item p { font-weight: 600; color: var(--primary-blue); font-size: 0.9rem; }

/* --- SECTIONS --- */
section { padding: 80px 8%; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 10px; }
.section-title div { width: 70px; height: 4px; background: var(--accent-green); margin: 0 auto 15px; border-radius: 2px; }

/* --- PROCESS GRID --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.process-step:hover { transform: translateY(-10px); }
.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.process-step i { font-size: 2.5rem; color: var(--accent-blue); margin-bottom: 20px; }

/* --- WHY US --- */
.why-us { display: flex; align-items: center; gap: 60px; background: #fff; }
.why-content { flex: 1; }
.why-image { flex: 1; text-align: center; }
.why-image img { width: 100%; max-width: 500px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.check-list i { color: var(--accent-green); font-size: 1.2rem; }

/* --- WHATSAPP & FOOTER --- */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: white;
    width: 60px; height: 60px; border-radius: 50px; text-align: center; font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2); display: flex; align-items: center;
    justify-content: center; text-decoration: none; z-index: 1000; transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

footer { background: var(--primary-blue); color: white; padding: 40px 5%; text-align: center; }
footer h2 { display: inline; color: var(--accent-green); }
footer a { text-decoration: none; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px; left: 0; width: 100%;
        background: var(--white);
        padding: 30px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }
    .nav-links.active { display: flex; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-btns { flex-direction: column; }
    .stats-bar { grid-template-columns: 1fr 1fr; gap: 20px; width: 95%; margin-top: -30px; }
    .stat-item { border-right: none; }
    .why-us { flex-direction: column; text-align: center; padding: 40px 5%; }
    .check-list li { justify-content: center; }
    section { padding: 60px 5%; }
}

@media (max-width: 480px) {
    .stats-bar { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.8rem; }
}