/* 1. THE FOUNDATION - Applies to every page */
    :root { 
        --navy: #003366; 
        --gold: #FFCC00; 
        --light-bg: #f8f9fa;
    }

    * { 
        margin: 0; 
        padding: 0; 
        box-sizing: border-box; 
    }

    body { 
        font-family: 'Plus Jakarta Sans', sans-serif; 
        line-height: 1.6; 
        background: var(--light-bg); 
        overflow-x: hidden; /* Prevents horizontal scrolling on mobile */
    }

    /* 2. THE RESPONSIVE CONTAINER - Use this for every section */
    .container {
        width: 100%;
        padding: 0 5%; /* Small padding for mobile */
        margin: 0 auto;
        max-width: 1200px; /* Limits width on big screens */
    }

    /* 3. RESPONSIVE NAVIGATION */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
        background: white;
        border-bottom: 3px solid var(--gold);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .nav-links {
        display: none; /* Hide links on mobile - use a burger menu or simple buttons */
    }

    /* 4. RESPONSIVE GRID (The Magic) */
    /* On Mobile: Elements stack. On Desktop: They go side-by-side */
    .row {
        display: flex;
        flex-direction: column; /* Stacked by default */
        gap: 20px;
    }

    /* 5. BREAKPOINTS (Tablet & Desktop) */
    @media (min-width: 768px) {
        .container { padding: 0 8%; }
        
        .row { 
            flex-direction: row; /* Switch to side-by-side */
            align-items: flex-start;
        }

        .nav-links { 
            display: flex; 
            list-style: none; 
            gap: 25px; 
        }

        /* Helper classes for layout */
        .col-half { flex: 1; }
    }

    /* 6. RESPONSIVE IMAGES & MEDIA */
    img, video {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* 7. TEXT SIZES - Fluid Typography */
    h1 { font-size: 1.8rem; }
    @media (min-width: 768px) {
        h1 { font-size: 3rem; }
    }

.seo-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 5px 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
}

.stat-item h2 {
    display: inline-block;
    color: var(--gold);
    font-size: 2rem;
    margin: 0;
}

.stat-item span {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.85rem;
    color: #ccc;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gallery-section {
    background: var(--white);
    padding: 80px 8%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.swiper {
    width: 100%;
    padding-bottom: 50px !important;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 350px; /* Adjust based on preference */
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.swiper-slide:hover img {
    transform: scale(1.1);
}

/* Custom Gold Pagination */
.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}
/* --- 1. GLOBAL COLORS --- */
:root {
    --navy: #111421;    /* The deep blue/black background */
    --gold: #FFCC00;    /* Your signature gold color */
    --book-blue: #003366; /* The navy color for your button */
}

/* --- 2. THE NAVIGATION MENU --- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #111421; /* Dark text for a white header */
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent; /* Invisible line by default */
    transition: 0.3s;
}

/* THE FIX: This makes the yellow line appear on the current page */
.nav-links a.active {
    border-bottom: 2px solid var(--gold) !important;
}

/* --- 3. THE BOOK NOW BUTTON --- */
.btn-book {
    display: inline-block;
    background-color: var(--book-blue);
    color: #FFFFFF;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    vertical-align: middle;
}
/* About Page Layout */
.about-hero {
    padding: 80px 10%;
    background-color: var(--navy);
    text-align: center;
    border-bottom: 4px solid var(--gold);
}

.about-section {
    padding: 60px 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #ffffff;
    color: #111421;
}

.about-main-text {
    flex: 1.5;
    min-width: 320px;
}

.about-sidebar {
    flex: 1;
    min-width: 300px;
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
}

.trust-badge {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--navy);
    padding: 10px 20px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.location-chip {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 4px;
    font-size: 0.85rem;
}
/* Gallery Slider Container */
.gallery-container {
    overflow: hidden;
    padding: 40px 0;
    background: #fff;
}

/* The Sliding Row */
.slider-row {
    display: flex;
    width: calc(250px * 10); /* Adjust based on image count */
    animation: scroll 30s linear infinite;
    gap: 20px;
    margin-bottom: 20px;
}

/* Reverse direction for the middle row */
.row-reverse {
    animation: scroll-reverse 30s linear infinite;
}

.slider-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--gold);
}

/* Animations */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

@keyframes scroll-reverse {
    0% { transform: translateX(calc(-250px * 5)); }
    100% { transform: translateX(0); }
}
/* Service Page Styles */
.service-hero {
    padding: 80px 10%;
    background-color: var(--navy);
    text-align: center;
    border-bottom: 4px solid var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 60px 10%;
    background: #f9f9f9;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-top: 5px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
    color: #555;
}

.service-card li::before {
    content: "⚡";
    margin-right: 10px;
}
/* Contact Page Layout */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 10%;
    background-color: #fff;
}

.contact-info {
    flex: 1;
    min-width: 320px;
    color: #111421;
}

.contact-form-container {
    flex: 1.2;
    min-width: 320px;
    background: #f4f4f4;
    padding: 40px;
    border-radius: 12px;
    border-top: 5px solid #FFCC00;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    background: #FFCC00;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}
/* Areas We Cover Layout */
.areas-container {
    padding: 60px 10%;
    background-color: #fff;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.region-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    border-left: 6px solid var(--gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.region-card h3 {
    color: var(--navy);
    margin-top: 0;
    font-size: 1.4rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.town-list {
    list-style: none;
    padding: 0;
    line-height: 2;
    color: #444;
    font-weight: 500;
}

.town-list li::before {
    content: "📍";
    margin-right: 8px;
}

/* Map Section Layout */
.map-section {
    background-color: var(--white);
    padding: 60px 8%;
    display: flex;
    align-items: center; /* Centers items vertically */
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; /* Allows stacking on mobile */
}

.map-text-content {
    flex: 1; /* Takes up 50% space */
    min-width: 300px;
}

.map-text-content h2 {
    color: var(--gold);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.map-text-content p {
    color: var(--white);
    font-size: 1.1rem;
    opacity: 0.9;
}

.map-visual {
    flex: 1.2; /* Makes the map slightly larger than the text */
    min-width: 350px;
    height: 450px; /* Adjust height as needed */
    border: 4px solid var(--gold);
    border-radius: 15px;
    overflow: hidden;
}

.map-visual iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
