:root {
    --navy: #002366;
    --green: #2ecc71;
    --light-bg: #f4f7f9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }

/* --- Header Layout --- */
header { 
    background: white; padding: 10px 5%; display: flex; justify-content: space-between; 
    align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    position: sticky; top: 0; z-index: 1000;
}
.logo-area img { height: 60px; width: auto; display: block; }
.logo-area { flex: 0 0 auto; }

.nav-menu { display: flex; align-items: center; gap: 20px; }
.nav-menu a { text-decoration: none; color: var(--navy); font-weight: 700; transition: 0.3s; }
.nav-menu a:hover { color: var(--green); }
.cta-nav { background: var(--green); color: white !important; padding: 12px 25px; border-radius: 50px; }
/* Use .main-header instead of 'header' tag to avoid conflicts */
.main-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 5%; 
    background: white; 
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.main-header { flex-wrap: wrap; }
/* Dropdown */
.dropdown { position: relative; }
.dropdown-content { 
    display: none; position: absolute; background: white; 
    min-width: 220px; box-shadow: 0 8px 16px rgba(0,0,0,0.2); 
    top: 100%; left: 0; z-index: 1000;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { padding: 10px; display: block; color: var(--navy); }

/* Hero */
.hero { 
    height: 80vh; background: linear-gradient(rgba(0,35,102,0.8), rgba(0,35,102,0.8)), url('hero-car.jpg') center/cover; 
    display: flex; flex-direction: column; justify-content: center; align-items: center; 
    color: white; text-align: center; padding: 0 5%;
}

/* Grid & Cards - Mobile Optimized */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; padding: 40px 5%; }
.card { padding: 30px; background: white; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; border-top: 5px solid var(--navy); }

/* Booking Form - Mobile Optimized */
.form-card { width: 95%; max-width: 800px; margin: 30px auto; padding: 30px; border-radius: 20px; background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
input, select, textarea { width: 100%; padding: 15px; margin: 8px 0; border: 1px solid #ddd; border-radius: 10px; }
.submit-btn { background: var(--green); color: white; padding: 18px; border: none; width: 100%; font-weight: bold; cursor: pointer; border-radius: 10px; }

/* Responsive Slider Container */
.mySwiper { 
    width: 100%; 
    aspect-ratio: 21 / 9; /* Perfect wide-screen ratio */
    max-height: 80vh; 
}

/* Add this to style.css */
.contact-link:hover {
    color: #4CAF50 !important; /* Changes color to your brand green on hover */
    transition: 0.3s;
}

/* Container for contact items */
.header-contact {
    display: flex;
    flex-direction: row; /* Side-by-side on desktop */
    flex-wrap: wrap;
    font-size: 14px;     /* Better readability */
    gap: 20px;           /* Spacing between phone and email */
    padding: 10px 5%;
    background: transparent; /* No background */
    flex: 2; /* This makes it expand and push the button */
    align-items: center; /* Centers text horizontally */
    justify-content: center; /* Centers contact between logo and button */
}

/* Individual link style - No background */
.contact-item {
    text-decoration: none;
    color: #002366;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

/* Removes background from icons */
.contact-item i {
    color: #002366; 
    background: transparent; 
    font-size: 14px;
}

/* MOBILE RESPONSIVENESS: Force stack on small screens */
@media (max-width: 768px) {
    .header-contact {
        flex-direction: column; /* Stacks items vertically */
        font-size: 11px;        /* Smaller to save space on phones */
        align-items: center;
        gap: 5px;
        padding: 10px;
        order: 3; /* Moves this below the logo */
        width: 100%;
        align-items: center;
        margin-top: 10px;
    }
}

/* Right side menu toggle */
.menu-right {
    display: flex;
    justify-content: flex-end; /* This forces the button to the right */
    flex: 0 0 auto;
}

/* Right side group: Contact + Button */
.header-right-group {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between contact and menu button */
    flex-grow: 1;
    justify-content: flex-end; /* This pushes everything to the right */
}

/* Ensure the image fills the space without gaps */
.hero-slide { 
    background-size: cover !important; 
    background-position: center !important; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
}
.slide-content h1 { font-size: 3.5rem; margin-bottom: 10px; }
.slide-content p { font-size: 1.5rem; }

/* Mobile Responsiveness */
@media (min-width: 769px) { .menu-toggle { display: none !important; } }

/* Hide contact info in header on mobile to prevent clutter */
@media (max-width: 768px) {
    header { 
        display: flex !important; 
        flex-direction: row !important; /* Forces items into one row */
        justify-content: space-between; 
        align-items: center; 
        padding: 10px;
    }
    /* Right side group: Contact + Button */
.header-contact { 
        display: flex;
        flex-direction: column; 
        justify-content: center;
        font-size: 8px; /* Smaller text for mobile */
        flex: 1; /* Allows it to shrink on small screens */
        align-items: center; /* Centers text horizontally */
        width: 100%;
        gap: 2px;
        order: 2; /* Keeps it between logo and button */
        margin-top: 0;
    }
    .logo-area { order: 1; }
    .menu-toggle { order: 3; display: block !important; }
    .nav-menu { 
        display: none; flex-direction: column; width: 100%; background: white; 
        padding: 20px; position: absolute; top: 80px; left: 0; 
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-menu.active { display: flex; }
    
    /* Force the hamburger button to the right */
.menu-toggle {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Locks it to the right */
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}
   
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .header-contact { font-size: 9px; }
    .logo-area img { height: 40px; }

<style>
@media (max-width: 600px) {
    .cat-card { width: 45% !important; }
}
</style>