/* General Body & Typography */
:root {
    /* Brand Colors (Based on your image, adjusted slightly for consistency) */
    --primary-blue: #004AAD; /* Deep blue for header, main background */
    --secondary-green: #00B050; /* Vibrant green for CTAs, highlights */
    --light-grey-bg: #F7F9FC; /* Light background for sections */
    --dark-text: #2C3E50; /* Dark text for readability */
    --light-text: #596D7D; /* Lighter text for paragraphs */
    --border-color: #E0E6EF;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.2);

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-grey-bg);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.primary-cta {
    background-color: var(--secondary-green);
    color: #fff;
    box-shadow: var(--shadow-light);
}

.primary-cta:hover {
    background-color: #008D40; /* Slightly darker green */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-green);
    border-radius: 2px;
}

/* Header Section */
.main-header {
    background-color: var(--dark-text); /* Matched to the VCspaces header background */
    color: #fff;
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-light);
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-lg); /* Increased gap for menu items */
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    position: relative;
}

.main-nav a:hover {
    color: var(--secondary-green);
}

.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-icon {
    font-size: 0.7em;
    margin-left: 5px;
}

.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: var(--shadow-medium);
    border-radius: 5px;
    min-width: 180px;
    z-index: 1;
    top: 100%; /* Position below the parent link */
    left: 0;
    padding: var(--spacing-sm) 0;
}

.main-nav .dropdown-menu a {
    color: var(--dark-text);
    padding: 10px var(--spacing-md);
    display: block;
    white-space: nowrap;
    font-weight: 400;
    font-size: 0.9em;
}

.main-nav .dropdown-menu a:hover {
    background-color: var(--light-grey-bg);
    color: var(--primary-blue);
}

.main-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.contact-info {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.9em;
    font-weight: 500;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info a:hover {
    color: var(--secondary-green);
}

.contact-info i {
    margin-right: 5px;
    color: var(--secondary-green); /* Green icons */
}


/* Hero Section */
.hero-section {
    background-color: var(--primary-blue);
    padding: var(--spacing-xl) 0 120px 0; /* More padding at bottom to accommodate search bar area */
    color: #fff;
    position: relative;
    overflow: hidden; /* Ensure floating form doesn't overflow */
    min-height: 700px; /* Ensure hero section has enough height */
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/1920x1080/004AAD/FFFFFF?text=Geometric+Blue+Pattern') no-repeat center center/cover; /* Subtle pattern like VCspaces */
    opacity: 0.1; /* Adjust opacity as needed */
    z-index: 0;
}

.hero-content-wrapper {
    display: flex;
    justify-content: space-between; /* Space between content and form */
    align-items: flex-start; /* Align content to the top */
    gap: var(--spacing-lg);
    position: relative; /* For z-index of main content and form */
    z-index: 1; /* Ensure content is above overlay */
}

.hero-main-content {
    flex: 2; /* Allows main content to take more space */
    min-width: 450px;
    max-width: 700px; /* Max width for readability */
    text-align: left; /* Left align text */
    padding-top: var(--spacing-md); /* Offset for visual balance */
}

.hero-main-content .we-are {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--secondary-green); /* Green text as in VCspaces */
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-main-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em; /* Adjusted to fit the VCspaces style */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm); /* Adjusted margin */
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.hero-main-content .hero-tagline {
    font-size: 1.1em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg); /* Adjusted margin */
}

.hero-main-content .hero-tagline span {
    font-weight: 700;
    color: var(--secondary-green);
}

/* Hero Service Boxes (newly added) */
.hero-service-boxes {
    display: flex;
    justify-content: flex-start; /* Align to the left */
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}


.search-bar {
    display: flex;
    width: 100%;
    max-width: 600px; /* Max width for search bar */
    margin: 0 0 var(--spacing-lg) 0; /* Left-aligned */
    background-color: #fff;
    border-radius: 50px; /* Pill shape */
    padding: 8px; /* Inner padding for inputs/button */
    box-shadow: var(--shadow-medium);
}

.search-bar input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 10px var(--spacing-md);
    font-size: 1.1em;
    border-radius: 50px 0 0 50px;
    color: var(--dark-text);
}

.search-bar button {
    background-color: var(--primary-blue); /* Blue button as per new image */
    color: #fff;
    border: none;
    border-radius: 50%; /* Circular button */
    width: 50px;
    height: 50px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* Prevent button from shrinking */
}

.search-bar button:hover {
    background-color: #003A80; /* Darker blue on hover */
}

.popular-locations h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: #fff; /* Keep white for readability */
}

.location-grid {
    display: flex;
    justify-content: flex-start; /* Left-align the locations */
    flex-wrap: wrap;
    gap: var(--spacing-md) var(--spacing-lg); /* Adjusted gap */
}

.location-item {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: var(--spacing-sm);
    width: 90px; /* Fixed width for consistent grid */
    height: 90px; /* Fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.location-item img {
    width: 50px; /* Icon size */
    height: 50px;
    object-fit: contain; /* Ensure images fit */
    margin-bottom: var(--spacing-xs);
}

.location-item span {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85em;
    font-weight: 600;
    color: var(--dark-text);
}

.location-item.view-all {
    background-color: var(--primary-blue);
    color: #fff;
}
.location-item.view-all .plus-icon {
    font-size: 1.8em;
    margin-bottom: var(--spacing-xs);
    color: #fff;
}
.location-item.view-all span {
    color: #fff;
}

.hero-main-content .instant-setup-note {
    font-size: 1.05em;
    color: #fff;
    font-weight: 600;
    margin-top: var(--spacing-lg);
}

.hero-main-content .instant-setup-note i {
    color: var(--secondary-green);
    margin-right: 8px;
}


/* Floating Inquiry Form */
.inquiry-form-floating {
    background-color: #fff;
    border-radius: 15px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-strong);
    width: 100%;
    max-width: 400px; /* Consistent width */
    flex-shrink: 0; /* Prevent it from shrinking */
    margin-top: 0; /* Align to the top with hero content */
    position: sticky; /* Make it sticky */
    top: var(--spacing-md); /* Distance from top when sticky */
}

.inquiry-form-floating h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em; /* Adjusted for this smaller form */
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.inquiry-form-floating p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9em;
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.hero-contact-form label {
    display: block;
    text-align: left;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9em;
}
.hero-contact-form label .required {
    color: #dc3545; /* Red asterisk */
    margin-left: 3px;
}

.hero-contact-form input[type="text"],
.hero-contact-form input[type="tel"],
.hero-contact-form input[type="email"] {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95em;
    color: var(--dark-text);
    background-color: #fcfcfc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-contact-form input:focus {
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(0, 176, 80, 0.2);
    outline: none;
}

.hero-submit-btn {
    width: 100%;
    margin-top: var(--spacing-sm);
    padding: 12px 0;
    font-size: 1.05em;
    border-radius: 10px;
    font-weight: 700;
}


/* Fixed CTA Buttons (Right Side) */
.fixed-cta-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1001;
}

.fixed-cta-buttons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-green);
    color: #fff;
    text-align: center;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px 0 0 5px;
    margin-bottom: 2px; /* Small gap between buttons */
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.fixed-cta-buttons a:hover {
    background-color: #008D40;
}

.fixed-cta-buttons a i {
    font-size: 1.5em;
    margin-bottom: 3px;
}

/* Floating Quotation/Chat Buttons (Bottom Left) */
.floating-quotation-chat {
    position: fixed;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.floating-quotation-chat button {
    display: flex;
    align-items: center;
    background-color: var(--secondary-green);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 30px; /* More rounded pill shape */
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.floating-quotation-chat button:hover {
    background-color: #008D40;
    transform: translateY(-3px);
}

.floating-quotation-chat .quotation-btn i {
    margin-right: 8px;
    font-size: 1.1em;
}

.floating-quotation-chat .chat-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-grey-bg); /* Use light grey background */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    justify-content: center;
}

.pricing-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    /* Remove overflow: hidden if it was here, or handle it carefully */
    overflow: visible; /* Ensure content like badges are not clipped */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative; /* Essential for positioning children like badges */
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular-plan {
    border: 3px solid var(--secondary-green); /* Highlight for popular plan */
    transform: scale(1.02); /* Slightly larger */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.pricing-card.popular-plan:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.pricing-card .card-header {
    background-color: var(--primary-blue); /* Blue background for header */
    color: #fff;
    padding: var(--spacing-md) 0 var(--spacing-lg) 0;
    /* position: relative; /* Already set on .pricing-card, not needed here */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    /* Add extra top padding to make space for the badge if it's still clipping */
    padding-top: calc(var(--spacing-md) + 20px); /* Add space for the badge */
}

.pricing-card .card-header .starting-price-tag,
.pricing-card .card-header .most-popular-tag {
    background-color: #dc3545; /* Red tag */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    position: absolute;
    /* Adjust top to be relative to the pricing-card, not card-header */
    top: -15px; /* Keep this to position it slightly above the card */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10; /* Ensure it's on top of other elements */
    white-space: nowrap; /* Prevent text from wrapping */
}

.pricing-card .card-header .most-popular-tag {
    background-color: var(--secondary-green); /* Green for popular tag */
}

.pricing-card .price-display {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    font-weight: 800;
    margin-top: var(--spacing-md);
    line-height: 1;
}
.pricing-card .price-display .currency {
    font-size: 0.6em;
    vertical-align: super;
}
.pricing-card .price-display .per-month {
    font-size: 0.4em;
    font-weight: 500;
    vertical-align: baseline;
    margin-left: 5px;
}

.pricing-card .billed-annually {
    font-size: 0.8em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-xs);
    display: block;
}

.pricing-card .card-body {
    padding: var(--spacing-lg) var(--spacing-md);
    background-color: #fff;
    flex-grow: 1; /* Allows body to expand */
    display: flex;
    flex-direction: column;
}

.pricing-card .card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.pricing-card .card-body .plan-description {
    font-size: 0.95em;
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
    flex-grow: 1; /* Allows description to take available space */
}

.pricing-card .card-body .ideal-for {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: var(--spacing-sm);
    text-align: left;
}

.pricing-card .card-body ul {
    text-align: left;
    margin-top: var(--spacing-sm);
}

.pricing-card .card-body ul li {
    font-size: 0.9em;
    color: var(--dark-text);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}
.pricing-card .card-body ul li i {
    color: var(--secondary-green);
    margin-right: 10px;
    font-size: 1.1em;
    margin-top: 2px; /* Adjust icon alignment */
}

/* Responsive adjustments for Pricing Section */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }
    .pricing-card .card-header .starting-price-tag,
    .pricing-card .card-header .most-popular-tag {
        top: -10px; /* Slightly adjust for smaller screens */
        font-size: 0.8em;
        padding: 4px 12px;
    }
    .pricing-card .price-display {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }
    .pricing-card {
        margin: auto; /* Center cards if they don't fill grid */
    }
    .pricing-card .card-body h3 {
        font-size: 1.3em;
    }
    .pricing-card .card-body .plan-description {
        font-size: 0.85em;
    }
    .pricing-card .card-body ul li {
        font-size: 0.8em;
    }
    .pricing-card .card-header .starting-price-tag,
    .pricing-card .card-header .most-popular-tag {
        top: -8px; /* Further adjust for smaller screens */
        font-size: 0.75em;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Stack on very small screens */
    }
    .pricing-card {
        max-width: 320px; /* Constrain width of stacked cards */
        margin: 0 auto; /* Center individual cards */
    }
    .pricing-card .card-header .starting-price-tag,
    .pricing-card .card-header .most-popular-tag {
        top: -6px; /* Final adjustment for very small screens */
        font-size: 0.7em;
        padding: 2px 8px;
    }
}

/* Locations Section */
.locations-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-grey-bg);
}

.location-grid-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    justify-content: center;
}

.location-display-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.location-display-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.location-display-item img {
    width: 100%;
    height: 180px; /* Fixed height for image consistency */
    object-fit: cover;
    display: block;
}

.location-display-item .location-info {
    padding: var(--spacing-md);
}

.location-display-item .location-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.location-display-item .location-info p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9em;
    color: var(--light-text);
}

/* About Us Section */
.about-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff; /* Changed to white for contrast */
}

.about-content-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    box-shadow: var(--shadow-medium);
    border-radius: 15px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.about-text-content {
    flex: 2;
    min-width: 300px;
    padding-left: var(--spacing-md);
}

.about-text-content .section-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--secondary-green);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text-content .section-title-left {
    text-align: left;
    margin-bottom: var(--spacing-md);
    padding-bottom: 0; /* Remove underline for this title */
}
.about-text-content .section-title-left::after {
    display: none; /* Hide underline for this specific title */
}


.about-text-content p {
    font-size: 1em;
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
}

.about-btn {
    margin-top: var(--spacing-md);
    padding: 12px 30px;
    font-size: 1.05em;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-grey-bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-item {
    background-color: #fff;
    border-radius: 15px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-item .feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--spacing-md) auto;
    box-shadow: var(--shadow-light);
}
.feature-item .feature-icon i {
    font-size: 2.2em;
    color: #fff;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    font-size: 0.95em;
    color: var(--light-text);
}

/* Reviews/Testimonials Section */
.reviews-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff; /* White background for this section */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    justify-content: center;
}

.review-card {
    background-color: var(--light-grey-bg); /* Lighter background for the card itself */
    border-radius: 15px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push client info to bottom */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-card .stars {
    color: #FFD700; /* Gold color for stars */
    font-size: 1.2em;
    margin-bottom: var(--spacing-md);
}

.review-card .stars i {
    margin: 0 2px;
}

.review-card .review-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05em;
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-style: italic; /* Italicize review text */
}

.review-card .reviewer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: auto; /* Push to bottom */
    margin-bottom: var(--spacing-xs);
}

.review-card .reviewer-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85em;
    color: var(--light-text);
}

/* Footer Section */
.main-footer {
    background-color: var(--dark-text); /* Dark background as in the image */
    color: #fff;
    padding: var(--spacing-xl) 0 var(--spacing-md) 0; /* More padding at top, less at bottom */
    font-family: 'Open Sans', sans-serif;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Small green line at the top of the footer */
    background-color: var(--secondary-green);
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-lg); /* Space above the bottom copyright */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
    margin-bottom: var(--spacing-md);
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--secondary-green); /* Green titles */
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 5px;
}
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-blue); /* Blue underline */
    border-radius: 2px;
}

.footer-column ul {
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary-green);
}

.footer-newsletter p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    display: flex;
    margin-bottom: var(--spacing-sm);
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 0.9em;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--secondary-green);
}

.newsletter-form button {
    background-color: var(--primary-blue);
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #fff;
    font-size: 1em;
}
.newsletter-form button:hover {
    background-color: #003A80;
}

.footer-newsletter .spam-note {
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-address .footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-contact-address .footer-logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    display: block;
}
.footer-contact-address p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}
.footer-contact-address p a {
    color: rgba(255, 255, 255, 0.8);
}
.footer-contact-address p a:hover {
    color: var(--secondary-green);
}
.footer-contact-address h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--secondary-green);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    position: static; /* Remove the ::after underline for these specific h3s */
    padding-bottom: 0;
}
.footer-contact-address h3::after {
    display: none;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
}

.footer-bottom p {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-md);
}

.footer-locations {
    margin-top: var(--spacing-md);
    text-align: left; /* Align text left within the bottom section */
}

.footer-locations h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: var(--secondary-green);
    margin-bottom: var(--spacing-sm);
}

.footer-locations p {
    font-size: 0.8em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .main-header .main-nav ul {
        gap: var(--spacing-md); /* Reduce gap for smaller screens */
    }
    .main-header .contact-info {
        gap: var(--spacing-sm);
        font-size: 0.8em;
    }
    .main-header .contact-info i {
        margin-right: 3px;
    }

    .hero-content-wrapper {
        flex-direction: column; /* Stack content and form */
        align-items: center; /* Center items */
        text-align: center; /* Center text within hero main content */
    }
    .hero-main-content {
        max-width: 90%;
        min-width: unset;
        padding-top: 0;
        text-align: center; /* Center text for smaller screens */
    }
    .hero-main-content h1 {
        font-size: 3em;
        margin-bottom: var(--spacing-md);
    }
    .hero-tagline {
        font-size: 1em !important; /* Ensure smaller font size */
    }
    .hero-service-boxes {
        justify-content: center; /* Center service boxes */
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }
    .service-box-item {
        min-width: 120px;
        flex: unset; /* Don't force growth */
    }
    .service-box-item i {
        font-size: 1.8em;
    }
    .service-box-item span {
        font-size: 0.85em;
    }

    .search-bar {
        max-width: 500px;
        margin: 0 auto var(--spacing-lg) auto; /* Center on smaller screens */
    }
    .search-bar input {
        font-size: 1em;
        padding: 8px 12px;
    }
    .search-bar button {
        width: 45px;
        height: 45px;
        font-size: 1.1em;
    }
    .popular-locations h4 {
        font-size: 1em;
    }
    .location-grid {
        gap: var(--spacing-sm);
        justify-content: center; /* Center locations on smaller screens */
    }
    .location-item {
        width: 80px;
        height: 80px;
        padding: var(--spacing-xs);
    }
    .location-item img {
        width: 40px;
        height: 40px;
    }
    .location-item span {
        font-size: 0.8em;
    }

    .inquiry-form-floating {
        padding: var(--spacing-md);
        max-width: 400px;
        width: 90%;
    }

    .inquiry-form-floating h3 {
        font-size: 1.6em;
    }
    .inquiry-form-floating p {
        font-size: 0.85em;
    }
    .hero-contact-form label {
        font-size: 0.8em;
    }
    .hero-contact-form input {
        padding: 8px 12px;
        font-size: 0.9em;
    }
    .hero-submit-btn {
        padding: 10px 0;
        font-size: 1em;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }
    .pricing-card .card-header .starting-price-tag,
    .pricing-card .card-header .most-popular-tag {
        top: -10px;
        font-size: 0.8em;
        padding: 4px 12px;
    }
    .pricing-card .price-display {
        font-size: 2.5em;
    }

    .location-grid-display {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .about-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        min-width: unset;
        width: 80%;
        max-width: 500px;
    }
    .about-text-content {
        padding-left: 0;
        text-align: center;
    }
    .about-text-content .section-title-left {
        text-align: center;
    }

    .about-text-content p {
        font-size: 0.9em;
    }
    .about-btn {
        padding: 10px 25px;
        font-size: 1em;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }
    .feature-item {
        padding: var(--spacing-md);
    }
    .feature-item .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--spacing-sm);
    }
    .feature-item .feature-icon i {
        font-size: 1.8em;
    }
    .feature-item h3 {
        font-size: 1.2em;
    }
    .feature-item p {
        font-size: 0.85em;
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }
    .review-card {
        padding: var(--spacing-md);
    }
    .review-card .stars {
        font-size: 1.1em;
    }
    .review-card .review-text {
        font-size: 0.95em;
    }
    .review-card .reviewer-name {
        font-size: 1em;
    }
    .review-card .reviewer-title {
        font-size: 0.8em;
    }

    .footer-content-grid {
        gap: var(--spacing-lg);
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-header .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    .main-header .main-nav {
        width: 100%;
    }
    .main-nav .dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
    }
    .main-nav .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    .main-header .contact-info {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-sm);
    }

    .hero-main-content h1 {
        font-size: 2.5em;
        letter-spacing: -0.5px;
    }
    .hero-service-boxes {
        gap: var(--spacing-sm);
    }
    .service-box-item {
        min-width: 100px;
    }
    .service-box-item i {
        font-size: 1.5em;
    }
    .service-box-item span {
        font-size: 0.8em;
    }
    .search-bar {
        width: 90%;
    }
    .search-bar input {
        font-size: 1em;
        padding: 8px 12px;
    }
    .search-bar button {
        width: 45px;
        height: 45px;
        font-size: 1.1em;
    }
    .popular-locations h4 {
        font-size: 1em;
    }
    .location-grid {
        gap: var(--spacing-sm);
        justify-content: center; /* Center locations on smaller screens */
    }
    .location-item {
        width: 80px;
        height: 80px;
        padding: var(--spacing-xs);
    }
    .location-item img {
        width: 40px;
        height: 40px;
    }
    .location-item span {
        font-size: 0.8em;
    }

    .inquiry-form-floating {
        padding: var(--spacing-md);
    }
    .inquiry-form-floating h3 {
        font-size: 1.6em;
    }
    .inquiry-form-floating p {
        font-size: 0.85em;
    }
    .hero-contact-form label {
        font-size: 0.8em;
    }
    .hero-contact-form input {
        padding: 8px 12px;
        font-size: 0.9em;
    }
    .hero-submit-btn {
        padding: 10px 0;
        font-size: 1em;
    }

    .fixed-cta-buttons a {
        width: 50px;
        height: 50px;
        font-size: 0.65em;
    }
    .fixed-cta-buttons a i {
        font-size: 1.3em;
    }

    .floating-quotation-chat {
        bottom: var(--spacing-sm);
        left: var(--spacing-sm);
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    .floating-quotation-chat button {
        padding: 10px 15px;
        font-size: 0.8em;
    }
    .floating-quotation-chat .chat-btn img {
        width: 16px;
        height: 16px;
    }

    .section-title {
        font-size: 2em;
        margin-bottom: var(--spacing-md);
    }
    .pricing-card {
        margin: auto; /* Center cards if they don't fill grid */
    }
    .pricing-card .card-body h3 {
        font-size: 1.3em;
    }
    .pricing-card .card-body .plan-description {
        font-size: 0.85em;
    }
    .pricing-card .card-body ul li {
        font-size: 0.8em;
    }

    .location-grid-display {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .location-display-item img {
        height: 150px;
    }
    .location-display-item .location-info h3 {
        font-size: 1.1em;
    }
    .location-display-item .location-info p {
        font-size: 0.8em;
    }

    .about-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        min-width: unset;
        width: 80%;
        max-width: 500px;
    }
    .about-text-content {
        padding-left: 0;
    }
    .about-text-content .section-title-left {
        text-align: center;
    }

    .about-text-content p {
        font-size: 0.9em;
    }
    .about-btn {
        padding: 10px 25px;
        font-size: 1em;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }
    .feature-item {
        padding: var(--spacing-md);
    }
    .feature-item .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--spacing-sm);
    }
    .feature-item .feature-icon i {
        font-size: 1.8em;
    }
    .feature-item h3 {
        font-size: 1.2em;
    }
    .feature-item p {
        font-size: 0.85em;
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }
    .review-card {
        padding: var(--spacing-sm);
    }
    .review-card .stars {
        font-size: 1em;
    }
    .review-card .review-text {
        font-size: 0.9em;
    }
    .review-card .reviewer-name {
        font-size: 0.95em;
    }
    .review-card .reviewer-title {
        font-size: 0.8em;
    }

    .footer-content-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        text-align: center; /* Center content in columns */
    }
    .footer-column h3 {
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-column ul {
        text-align: center;
    }
    .newsletter-form {
        max-width: 350px; /* Limit width of form */
        margin: 0 auto var(--spacing-md) auto;
    }
    .footer-contact-address .footer-logo a {
        font-size: 1.8em;
        text-align: center;
    }
    .footer-contact-address p {
        text-align: center;
    }
    .footer-contact-address h3 {
        text-align: center;
    }
    .footer-locations {
        text-align: center; /* Center location text */
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: var(--spacing-xs) 0;
    }
    .logo a {
        font-size: 1.5em;
    }
    .main-nav ul {
        gap: var(--spacing-xs);
    }
    .main-nav a {
        font-size: 0.85em;
    }
    .main-header .contact-info {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-xs);
    }

    .hero-section {
        padding: var(--spacing-lg) 0 80px 0;
        min-height: auto;
    }
    .hero-main-content h1 {
        font-size: 2em;
    }
    .hero-main-content .hero-tagline {
        font-size: 0.9em !important;
    }
    .hero-service-boxes {
        flex-direction: column; /* Stack vertically on very small screens */
        align-items: center;
        gap: var(--spacing-sm);
    }
    .service-box-item {
        min-width: unset;
        width: 80%; /* Make them take more width when stacked */
    }
    .service-box-item i {
        font-size: 1.5em;
    }
    .service-box-item span {
        font-size: 0.8em;
    }
    .search-bar {
        padding: 5px;
    }
    .search-bar input {
        font-size: 0.9em;
        padding: 8px 10px;
    }
    .search-bar button {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
    .popular-locations h4 {
        font-size: 1em;
    }
    .location-grid {
        gap: var(--spacing-xs);
    }
    .location-item {
        width: 70px;
        height: 70px;
    }
    .location-item img {
        width: 35px;
        height: 35px;
    }
    .location-item span {
        font-size: 0.75em;
    }

    .inquiry-form-floating {
        padding: var(--spacing-sm);
        max-width: 95%;
    }
    .inquiry-form-floating h3 {
        font-size: 1.4em;
    }
    .inquiry-form-floating p {
        font-size: 0.8em;
    }
    .hero-contact-form label {
        font-size: 0.8em;
    }
    .hero-contact-form input {
        font-size: 0.85em;
    }
    .hero-submit-btn {
        font-size: 0.9em;
    }

    .section-title {
        font-size: 1.8em;
    }
    .pricing-grid {
        grid-template-columns: 1fr; /* Stack on very small screens */
    }
    .location-grid-display {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .about-image {
        width: 100%;
        border-radius: 10px;
    }
    .about-text-content p {
        font-size: 0.85em;
    }
    .about-btn {
        padding: 8px 20px;
        font-size: 0.9em;
    }

    .why-choose-grid {
        grid-template-columns: 1fr; /* Stack on very small screens */
    }
    .feature-item {
        padding: var(--spacing-sm);
    }
    .feature-item .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: var(--spacing-sm);
    }
    .feature-item .feature-icon i {
        font-size: 1.5em;
    }
    .feature-item h3 {
        font-size: 1.1em;
    }
    .feature-item p {
        font-size: 0.8em;
    }

    .reviews-grid {
        grid-template-columns: 1fr; /* Stack on very small screens */
    }
    .review-card {
        padding: var(--spacing-sm);
    }
    .review-card .stars {
        font-size: 0.9em;
    }
    .review-card .review-text {
        font-size: 0.85em;
    }
    .review-card .reviewer-name {
        font-size: 0.9em;
    }
    .review-card .reviewer-title {
        font-size: 0.7em;
    }

    .footer-content-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        text-align: center; /* Center content in columns */
    }
    .footer-column h3 {
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-column ul {
        text-align: center;
    }
    .newsletter-form {
        max-width: 350px; /* Limit width of form */
        margin: 0 auto var(--spacing-md) auto;
    }
    .footer-contact-address .footer-logo a {
        font-size: 1.8em;
        text-align: center;
    }
    .footer-contact-address p {
        text-align: center;
    }
    .footer-contact-address h3 {
        text-align: center;
    }
    .footer-locations {
        text-align: center; /* Center location text */
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0; /* Consistent section padding */
    background-color: var(--light-grey-bg); /* Light background for the section */
    font-family: 'Open Sans', sans-serif; /* Default font for text */
}

.faq-accordion {
    max-width: 900px; /* Max width for the accordion container */
    margin: 0 auto; /* Center the accordion on the page */
}

.accordion-item {
   background-color: #fff; /* White background for each FAQ item */
    border-radius: 10px; /* Rounded corners for the item card */
    margin-bottom: var(--spacing-md); /* Space between accordion items */
    box-shadow: var(--shadow-small); /* Subtle shadow for depth */
    overflow: hidden; /* Ensures content transitions smoothly and doesn't spill out */
    border: 1px solid #e0e0e0; /* A subtle border for definition, adjust color as per your var(--border-color) */
}

.accordion-header {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg); /* Padding inside the header */
    background-color: var(--primary-blue); /* Primary brand blue for the header */
    color: #000; /* White text for header */
    font-family: 'Montserrat', sans-serif; /* Montserrat for headings */
    font-size: 1.15em; /* Font size for the question */
    font-weight: 600; /* Semi-bold text */
    text-align: left;
    border: none; /* Remove default button border */
    cursor: pointer; /* Indicate interactivity */
    display: flex;
    justify-content: space-between; /* Puts question on left, icon on right */
    align-items: center; /* Vertically align content */
    transition: background-color 0.3s ease, border-radius 0.3s ease; /* Smooth transitions */
    border-radius: 10px; /* Rounded corners for the header */

    /* Fix for white box on hover/focus */
    outline: none; /* Remove default focus outline */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile for a cleaner click */
}

.accordion-header:hover {
    background-color: var(--dark-blue); /* Darker blue on hover */
}

/* Ensure no visual artifacts on active/focus states */
.accordion-header:active,
.accordion-header:focus {
    outline: none;
    box-shadow: none;
}

.accordion-header i {
    font-size: 1em; /* Icon size */
    transition: transform 0.3s ease; /* Smooth rotation for icon */
    margin-left: var(--spacing-sm); /* Space between text and icon */
}

.accordion-header.active {
    border-bottom-left-radius: 0; /* Straight bottom corners when active to blend with content */
    border-bottom-right-radius: 0;
}

.accordion-header.active i {
    transform: rotate(180deg); /* Rotate icon when active/open */
}

.accordion-content {
    padding: 0 var(--spacing-lg); /* Initial horizontal padding */
    max-height: 0; /* Essential for collapse/expand animation */
    overflow: hidden; /* Hide overflow during transition */
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* Smooth transition for height and padding */
    background-color: #f9f9f9; /* Light background for the answer content */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.accordion-content p,
.accordion-content ul {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text); /* Darker text for readability */
    font-size: 0.95em;
    line-height: 1.6;
    padding-bottom: var(--spacing-md); /* Padding at the bottom of the content text/list */
    margin-top: var(--spacing-md); /* Add top margin for text/lists within content */
}

.accordion-content ul {
    list-style: none; /* Remove default list style */
    padding-left: 0; /* Remove default left padding */
    margin-bottom: 0;
}

.accordion-content ul li {
    position: relative;
    padding-left: 25px; /* Space for custom bullet */
    margin-bottom: 8px; /* Space between list items */
}

.accordion-content ul li:last-child {
    margin-bottom: 0; /* No bottom margin for the last list item */
}

.accordion-content ul li:before {
    content: '\2022'; /* Unicode for a bullet point */
    color: var(--secondary-green); /* Green bullet, matching brand color */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
    top: 0; /* Align bullet with text */
}

/* Responsive Adjustments for FAQ Section */
@media (max-width: 768px) {
    .faq-accordion {
        max-width: 100%; /* Allow accordion to take full width on smaller screens */
        padding: 0 var(--spacing-md); /* Add some side padding */
    }

    .accordion-header {
        font-size: 1em; /* Slightly smaller font for questions */
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .accordion-content {
        padding: 0 var(--spacing-md);
    }

    .accordion-content p,
    .accordion-content ul {
        font-size: 0.9em; /* Slightly smaller font for answers */
    }
}

@media (max-width: 480px) {
    .accordion-header {
        font-size: 0.9em; /* Even smaller font on very small screens */
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .accordion-content {
        padding: 0 var(--spacing-sm);
    }
}

/* New CSS for hiding FAQs and the "View More" button */
.hidden-faqs {
    display: none; /* Initially hide this container */
}

.hidden-faqs.show {
    display: block; /* Show when the "show" class is added by JS */
}

.view-more-container {
    text-align: center;
    margin-top: var(--spacing-lg); /* Space above the button */
}

.view-more-container .btn-primary {
    background-color: var(--primary-blue); /* Or your primary button color */
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.view-more-container .btn-primary:hover {
    background-color: var(--dark-blue); /* Darker blue on hover */
}


/* Process Section */
.process-section {
    padding: var(--spacing-xl) 0;
    background-color: #f8f8f8; /* A very light grey background */
    text-align: center;
    position: relative; /* Needed for absolute positioning of flow elements if chosen */
}

.process-section .section-title {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-blue);
}

.process-section .section-description {
    font-size: 1.1em;
    color: var(--dark-text);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    justify-content: center;
    position: relative; /* Crucial for positioning the flow line/arrows */
    padding: var(--spacing-lg) 0; /* Add padding to make space for the line */
}

/* --- Flow Line/Arrow Styling (Horizontal) --- */
.process-grid::before {
    content: '';
    position: absolute;
    top: 50%; /* Position roughly in the middle of the steps vertically */
    left: var(--spacing-lg); /* Start from the left edge of the grid items */
    right: var(--spacing-lg); /* End at the right edge */
    height: 3px; /* Thickness of the line */
    background-color: #ddd; /* Light grey line color */
    transform: translateY(-50%);
    z-index: 0; /* Ensure it's behind the steps */
}

/* Specific styling for the circles/indicators on the line */
.process-step {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-small);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Needed for positioning the step-counter */
    z-index: 1; /* Ensure steps are above the line */
    /* Add padding-top to make space for the step-counter */
    padding-top: calc(var(--spacing-lg) + 30px); /* Adjust based on step-counter size */
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-counter {
    position: absolute;
    top: -20px; /* Position above the card, adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-green); /* A contrasting color for the number */
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff; /* White border to make it pop */
    z-index: 2; /* Ensure number is on top */
}

.step-icon-container {
    background-color: var(--primary-blue); /* Primary blue background for icon */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 2.2em;
    color: #fff; /* White icon */
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    font-size: 0.95em;
    color: var(--light-text);
    line-height: 1.5;
}

.process-note {
    background-color: var(--secondary-green); /* Green background for the note */
    color: #fff;
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-top: var(--spacing-xl);
    display: inline-flex; /* Use inline-flex to shrink-wrap content */
    align-items: center;
    justify-content: center;
    max-width: 600px; /* Constrain width of the note */
    box-shadow: var(--shadow-small);
}

.process-note i {
    font-size: 1.5em;
    margin-right: 10px;
}

.process-note p {
    font-size: 1.1em;
    font-weight: 500;
    margin: 0; /* Remove default paragraph margin */
}

/* Responsive adjustments for Process Section */
@media (max-width: 1024px) {
    .process-grid::before {
        left: var(--spacing-md);
        right: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr; /* Stack steps on smaller screens */
        gap: var(--spacing-lg); /* Maintain gap between stacked items */
    }

    /* --- Flow Line/Arrow Styling (Vertical for stacked layout) --- */
    .process-grid::before {
        left: 50%; /* Center the line horizontally */
        top: var(--spacing-lg); /* Start below the first step */
        bottom: var(--spacing-lg); /* End above the last step */
        width: 3px; /* Thickness of the line */
        height: calc(100% - (2 * var(--spacing-lg))); /* Adjust height */
        transform: translateX(-50%); /* Center vertically */
    }

    .process-step {
        padding: var(--spacing-md);
        padding-top: calc(var(--spacing-md) + 25px); /* Adjust for smaller step-counter */
    }
    .step-counter {
        top: -15px; /* Adjust for smaller screens */
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
    .step-icon-container {
        width: 60px;
        height: 60px;
    }
    .step-icon {
        font-size: 1.8em;
    }
    .step-title {
        font-size: 1.2em;
    }
    .step-description {
        font-size: 0.9em;
    }
    .process-note {
        padding: var(--spacing-sm);
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .process-section .section-title {
        font-size: 1.8em;
    }
    .process-section .section-description {
        font-size: 1em;
    }
    .process-note {
        flex-direction: column; /* Stack icon and text on very small screens */
        padding: var(--spacing-sm) var(--spacing-xs);
    }
    .process-note i {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .process-note p {
        font-size: 0.9em;
        text-align: center;
    }
}

/* Best Price Guarantee Section Styling - Extremely Compact Version */
.best-price-guarantee-section {
    background-color: #f8f9fa; /* Light background for contrast */
    padding: 25px 0; /* Significantly reduced vertical padding (from 30px) */
    text-align: center;
    overflow: hidden;
    margin: 30px 0; /* Reduced top/bottom margin for overall section spacing */
        background: #004aad;
}

.best-price-guarantee-section .container {
    max-width: 500px; /* Even narrower container width (from 600px) */
    margin: 0 auto;
    padding: 0 10px; /* Reduced horizontal padding */
}

.guarantee-content {
    padding: 20px; /* Reduced internal padding (from 25px) */
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); /* Lighter shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Further reduced space between elements (from 10px) */
}

.guarantee-icon {
    font-size: 2rem; /* Further reduced icon size (from 2.5rem) */
    color: #28a745;
    margin-bottom: 5px; /* Reduced margin below icon */
}

.section-title {
    font-size: 1.6rem; /* Reduced title size (from 1.9rem) */
    color: #343a40;
    margin-bottom: 10px; /* A bit more space below title */
    line-height: 1.2;
}

.guarantee-offer-text { /* New class for the combined offer text */
    font-size: 0.9rem; /* Reduced font size for the main offer text */
    color: #495057;
    line-height: 1.4;
    margin-bottom: 15px; /* Space before the button */
}

.guarantee-offer-text .highlight {
    color: #dc3545;
    font-weight: bold;
    font-size: 1rem; /* Adjusted highlight font size */
}

.guarantee-btn {
    background-color: #007bff;
    color: white;
    padding: 8px 20px; /* Reduced button padding (from 10px 22px) */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 0.9rem; /* Reduced button font size */
}

.guarantee-btn:hover {
    background-color: #0056b3;
}

/* Responsive adjustments for even smaller screens */
@media (max-width: 768px) {
    .best-price-guarantee-section {
        padding: 15px 0; /* Minimal padding */
        margin: 20px 0;
    }

    .guarantee-content {
        padding: 15px;
        gap: 5px;
    }

    .guarantee-icon {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .guarantee-offer-text {
        font-size: 0.85rem;
    }

    .guarantee-offer-text .highlight {
        font-size: 0.95rem;
    }

    .guarantee-btn {
        padding: 7px 18px;
        font-size: 0.85rem;
    }
}












/* General Styles & Utilities */
:root {
    --primary-blue: #004AAD; /* A deep blue for primary elements */
    --secondary-green: #28a745; /* A vibrant green for accents/CTAs, consistent with pricing table */
    --text-dark: #333;
    --text-light: #666;
    --border-light: #ddd;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --box-shadow-light: rgba(0, 0, 0, 0.08);
    --pricing-card-border: #e0e0e0; /* Border for pricing cards, similar to image_ebbfe5.png */
}

body {
    font-family: 'Poppins', sans-serif; /* Modern, readable font */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none; /* Default to no border, add if specific */
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    border: 1px solid var(--primary-blue);
}

.btn-primary:hover {
    background-color: #003a8d;
    border-color: #003a8d;
}

.highlight-brand {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Header Styles */
.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px var(--box-shadow-light);
    padding:  10px 0 0 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo .logo-space {
    color: var(--secondary-green);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-blue);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.main-nav .has-dropdown {
    position: relative;
}

.main-nav .dropdown-icon {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.main-nav .has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: 0 4px 10px var(--box-shadow-light);
    border-radius: 5px;
    min-width: 250px;
    padding: 10px 0;
    list-style: none;
    z-index: 99;
}

.main-nav .dropdown-menu li {
    width: 100%;
}

.main-nav .dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
    color: var(--text-dark);
}

.main-nav .dropdown-menu li a:hover {
    background-color: var(--bg-light);
}

.main-nav .has-dropdown:hover .dropdown-menu {
    display: block;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact .contact-phone {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem; /* Standard desktop size */
}

.header-contact .contact-phone i {
    margin-right: 5px;
    color: var(--secondary-green);
}

.mobile-contact-phone {
    display: inline;
    text-align: center;
    padding: 10px 10px;
    background-color: #004aad; /* Slightly darker blue for contrast */
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    position: sticky; /* Sticky or fixed, depending on desired behavior */
    top: 0; /* Align to top if sticky/fixed */
    left: 0;
    width: 100%;
    z-index: 90; /* Below main header */
    border-radius: 5px;
}

.mobile-contact-phone i {
    margin-right: 5px;
    color: #000; /* Ensure icon is black */
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    padding: 70px 0 50px; /* Reduced padding from 80px 0 60px */
    overflow: hidden;
    min-height: 65vh; /* Slightly reduced min-height from 70vh */
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M100 0L0 100h100V0zM0 0l100 100V0z" fill="rgba(255,255,255,0.05)" fill-rule="evenodd"%3E%3C/path%3E%3C/svg%3E');
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 1;
}

.hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-main-content {
    flex: 2;
    text-align: left;
    padding-right: 20px;
}

.hero-main-content .we-are {
    font-size: 0.85rem; /* Reduced from 0.9rem */
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(255 159 96);
    margin-bottom: 8px; /* Reduced margin */
}

.hero-main-content h1 {
    font-size: 3rem; /* Reduced from 3.5rem */
    line-height: 1.1;
    margin-bottom: 18px; /* Reduced margin */
    font-weight: 800;
}

.hero-tagline {
    font-size: 1.1rem; /* Reduced from 1.25rem */
    line-height: 1.5;
    margin-bottom: 25px; /* Reduced margin */
    color: rgba(255, 255, 255, 0.9);
}

.hero-service-boxes {
    display: flex;
    gap: 15px; /* Slightly reduced gap from 20px */
    margin-bottom: 30px; /* Reduced margin from 40px */
    flex-wrap: wrap;
    justify-content: flex-start; /* Align left for desktop */
}

.service-box-item {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px; /* Slightly smaller border-radius */
    padding: 12px 18px; /* Reduced padding */
    display: flex;
    align-items: center;
    gap: 8px; /* Reduced gap */
    font-size: 0.95rem; /* Slightly reduced font size */
    font-weight: 500;
    color: var(--bg-white);
    transition: background-color 0.3s ease;
}

.service-box-item i {
    font-size: 1.4rem; /* Slightly reduced icon size */
    color: var(--secondary-green);
}

.service-box-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

/* Modern Search Bar */
.search-bar-modern {
    display: flex;
    background-color: var(--bg-white);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 500px;
    margin-bottom: 20px; /* Reduced margin */
}

.search-bar-modern input {
    flex-grow: 1;
    padding: 12px 20px; /* Slightly reduced padding */
    border: none;
    outline: none;
    font-size: 0.95rem; /* Slightly reduced font size */
    color: var(--text-dark);
    background: transparent;
}

.search-bar-modern input::placeholder {
    color: var(--text-light);
}

.search-bar-modern button {
    background-color: var(--secondary-green);
    color: var(--bg-white);
    border: none;
    padding: 12px 20px; /* Slightly reduced padding */
    cursor: pointer;
    font-size: 0.95rem; /* Slightly reduced font size */
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.search-bar-modern button:hover {
    background-color: #218838;
}

.search-bar-modern button i {
    margin-right: 6px; /* Slightly reduced margin */
}

.instant-setup-note {
    font-size: 0.9rem; /* Reduced from 0.95rem */
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px; /* Reduced gap */
}

.instant-setup-note i {
    color: var(--secondary-green);
    font-size: 1rem; /* Slightly reduced icon size */
}


/* Floating Inquiry Form (from previous code) */
.inquiry-form-floating {
    flex: 1;
    background-color: var(--bg-white);
    padding: 25px; /* Reduced padding from 30px */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); /* Slightly less prominent shadow */
    text-align: left;
    max-width: 380px; /* Slightly smaller max width */
    margin-top: 10px; /* Adjusted margin for better alignment */
}

.inquiry-form-floating h3 {
    font-size: 1.7rem; /* Reduced from 1.8rem */
    color: var(--primary-blue);
    margin-bottom: 12px; /* Reduced margin */
    text-align: center;
}

.inquiry-form-floating p {
    font-size: 0.9rem; /* Reduced from 0.95rem */
    color: var(--text-light);
    margin-bottom: 18px; /* Reduced margin */
    text-align: center;
}

.hero-contact-form label {
    font-size: 0.85rem; /* Reduced from 0.9rem */
    margin-bottom: 4px; /* Reduced margin */
}

.hero-contact-form input {
    padding: 9px; /* Reduced padding */
    margin-bottom: 14px; /* Reduced margin */
    font-size: 0.95rem; /* Slightly reduced font size */
}

.hero-submit-btn {
    padding: 11px; /* Reduced padding */
    font-size: 1.05rem; /* Slightly reduced font size */
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    border-radius: 8px; /* Slightly rounded corners, consistent with pricing table */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for buttons */
}

.hero-submit-btn:hover {
    background-color: #218838;
    border-color: #218838;
}

/* Popular Locations Section */
.popular-locations-section {
    background-color: var(--bg-light);
    padding: 35px 0; /* Slightly reduced padding */
    text-align: center;
}

.popular-locations-title {
    font-size: 1.7rem; /* Reduced from 1.8rem */
    color: var(--text-dark);
    margin-bottom: 25px; /* Reduced margin */
}

.popular-locations-title::after {
    width: 60px; /* Slightly narrower underline */
    margin: 8px auto 0; /* Adjusted margin */
}

.location-grid {
    gap: 15px; /* Reduced gap */
    max-width: 900px; /* Slightly narrower max-width */
}

.location-item {
    padding: 12px; /* Reduced padding */
    border-radius: 8px; /* Slightly smaller border-radius */
    box-shadow: 0 2px 8px var(--box-shadow-light); /* Lighter shadow */
}

.location-item img {
    width: 60px; /* Reduced from 70px */
    height: 60px; /* Reduced from 70px */
    margin-bottom: 8px; /* Reduced margin */
}

.location-item span {
    font-size: 0.95rem; /* Slightly reduced font size */
}

.location-item.view-all {
    background-color: var(--primary-blue);
}

.location-item.view-all:hover {
    background-color: #003a8d;
}

.location-item.view-all .location-chip i {
    font-size: 1.8rem; /* Slightly reduced icon size */
    margin-bottom: 4px; /* Reduced margin */
}

/* Modal Styles (from previous steps, ensure they are present) */
/* (No changes needed for modal styles unless further specific requests) */


/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .header-contact .contact-phone {
        display: none; /* Hide desktop phone number */
    }

    .mobile-contact-phone {
        display: block; /* Show mobile phone number */
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
    }

    .hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px; /* Reduced gap */
    }

    .hero-main-content {
        padding-right: 0;
    }

    .hero-main-content h1 {
        font-size: 2.5rem; /* Further reduced */
    }

    .hero-tagline {
        font-size: 1rem; /* Further reduced */
    }

    .search-bar-modern {
        max-width: 100%;
    }

    .inquiry-form-floating {
        max-width: 100%;
        margin-top: 0;
    }

    .hero-service-boxes {
        justify-content: center;
        gap: 10px; /* Reduced gap for service boxes */
    }

    .service-box-item {
        padding: 10px 15px; /* Further reduced padding */
        font-size: 0.9rem;
    }

    .service-box-item i {
        font-size: 1.2rem;
    }

    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); /* Smaller grid items */
        gap: 10px;
    }
    .location-item img {
        width: 45px;
        height: 45px;
    }
    .location-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 10px 0; /* Smaller header padding */
    }
    .logo a {
        font-size: 1.5rem;
    }
    .header-contact .btn-primary {
        padding: 8px 15px; /* Smaller button on mobile */
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 40px 0 30px;
        min-height: auto; /* Allow height to adjust content */
    }
    .hero-main-content h1 {
        font-size: 2rem;
    }
    .hero-tagline {
        font-size: 0.95rem;
    }
    .hero-service-boxes {
        flex-direction: column;
        gap: 8px;
    }
    .service-box-item {
        width: 100%;
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    .search-bar-modern {
        flex-direction: column;
        border-radius: 10px;
    }
    .search-bar-modern input,
    .search-bar-modern button {
        border-radius: 5px;
        width: 100%;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    .search-bar-modern button {
        margin-top: 8px;
    }
    .instant-setup-note {
        font-size: 0.8rem;
    }
    .inquiry-form-floating {
        padding: 18px;
    }
    .inquiry-form-floating h3 {
        font-size: 1.4rem;
    }
    .inquiry-form-floating p {
        font-size: 0.85rem;
    }
    .hero-contact-form input {
        padding: 8px;
        font-size: 0.9rem;
    }
    .hero-submit-btn {
        padding: 10px;
        font-size: 1rem;
    }

    .popular-locations-title {
        font-size: 1.5rem;
    }
    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
}


/* Improved .service-box-item CSS */
.service-box-item {
    background-color: var(--bg-white); /* Use CSS variable for consistent white background */
    border: 1px solid var(--border-light); /* Add a subtle light border for definition, similar to pricing cards */
    border-radius: 12px; /* Slightly more rounded corners for a modern, softer look, consistent with pricing cards */
    padding: 25px 20px; /* Increased padding for more breathing room and a larger clickable area */
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09); /* Slightly more prominent, yet soft, shadow */
    min-width: 170px; /* Increased minimum width for better visual weight */
    max-width: 200px; /* Added max-width to prevent cards from becoming too wide in a row */
    flex: 1; /* Allows items to grow and distribute space */
    display: flex;
    flex-direction: column; /* Stack icon and text vertically */
    align-items: center;
    justify-content: center; /* Ensures content is centered vertically within the card */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* Added border-color to transition */
    cursor: pointer; /* Indicate interactivity */
}

.service-box-item:hover {
    transform: translateY(-10px); /* More pronounced lift effect on hover for better engagement */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover to emphasize the lift */
    border-color: var(--primary-blue); /* Highlight border with primary brand color on hover */
}

.service-box-item i {
    font-size: 2.5em; /* Larger icon size for more impact and prominence */
    color: var(--primary-blue); /* Consistent primary blue for brand recognition */
    margin-bottom: 12px; /* Increased margin below icon for better separation from text */
    /* Removed 'var(--spacing-sm)' and used a fixed value for direct control */
}

.service-box-item span {
    font-family: 'Poppins', sans-serif; /* Changed to Poppins for consistency with previous recommendations */
    font-size: 1.05em; /* Slightly increased font size for better readability */
    font-weight: 700; /* Bolder font weight for stronger emphasis */
    color: var(--text-dark); /* Using dark text variable for readability */
    line-height: 1.3; /* Added line-height for better text legibility */
}

/* --- Ensure these variables are defined in your :root or a common CSS file --- */
/* Example:
:root {
    --primary-blue: #004AAD;
    --bg-white: #ffffff;
    --border-light: #ddd;
    --text-dark: #333;
    --spacing-md: 20px; // If you still prefer using spacing variables
    --spacing-sm: 10px;
}
*/

/* Responsive Adjustments for service-box-item */
@media (max-width: 992px) {
    .service-box-item {
        padding: 20px 15px; /* Adjust padding for tablets */
        min-width: 140px;
        max-width: 180px;
        border-radius: 10px;
    }
    .service-box-item i {
        font-size: 2.2em;
        margin-bottom: 10px;
    }
    .service-box-item span {
        font-size: 1em;
        font-weight: 600;
    }
}

@media (max-width: 576px) {
    .service-box-item {
        width: 90%; /* Make cards almost full width on small mobiles */
        max-width: 280px; /* Limit max width for very small screens */
        padding: 18px 15px;
        min-width: unset; /* Remove min-width to allow full flexibility */
        border-radius: 8px;
    }
    .service-box-item i {
        font-size: 2em;
        margin-bottom: 8px;
    }
    .service-box-item span {
        font-size: 0.9em;
        font-weight: 600;
    }
}


/* Top Announcement Bar */
.top-announcement-bar {
    background-color: #f8b400; /* A vibrant, eye-catching color, like a golden yellow or orange */
    color: #333; /* Darker text for readability */
    padding: 10px 0;
    text-align: center;
    font-size: 0.95rem; /* Slightly smaller font to fit on one line */
    font-weight: 600;
    position: relative; /* Allows z-index if header is sticky */
    z-index: 101; /* Higher than header to ensure it's on top */
    overflow: hidden; /* Ensure content stays within */
}

.top-announcement-bar .container {
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center;
    gap: 20px; /* Space between text and button */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.top-announcement-bar p {
    margin: 0;
    line-height: 1.4; /* Ensure good line spacing */
}

.top-announcement-bar .announcement-cta {
    background-color: var(--primary-blue); /* Use your brand blue for the CTA button */
    color: var(--bg-white);
    padding: 6px 15px; /* Smaller padding for a compact button */
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem; /* Slightly smaller font for the button */
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap; /* Prevent button text from breaking */
    border: 1px solid var(--primary-blue); /* Add a border for definition */
}

.top-announcement-bar .announcement-cta:hover {
    background-color: #003a8d; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Responsive adjustments for the announcement bar */
@media (max-width: 768px) {
    .top-announcement-bar .container {
        flex-direction: column; /* Stack text and button vertically */
        gap: 8px; /* Reduced gap when stacked */
    }
    .top-announcement-bar p {
        padding: 0 10px; /* Add some horizontal padding for text on small screens */
        text-align: center;
    }
    .top-announcement-bar {
        font-size: 0.85rem; /* Further reduce font size on small screens */
        padding: 8px 0;
    }
    .top-announcement-bar .announcement-cta {
        font-size: 0.8rem; /* Further reduce button font size */
        padding: 5px 12px;
    }
}


/* Hero Alert Badge Statement */
.hero-alert-badge {
    background-color: var(--primary-green); /* Using your primary green for a strong, positive alert */
    color: var(--bg-white); /* White text for contrast */
    padding: 12px 30px; /* Generous padding for a badge look */
    border-radius: 50px; /* Pill-like shape for the badge */
    font-size: 1.5rem; /* Large and prominent font */
    font-weight: 800; /* Extra bold for maximum impact */
    margin-top: 20px; /* Space above */
    margin-bottom: 30px; /* Space below to separate from description */
    display: inline-flex; /* Use flex to align icon and text */
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between star icon and text */
    text-align: center; /* Ensures text is centered if it wraps */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); /* Stronger shadow to make it pop */
    animation: pulseBadge 2s infinite ease-in-out, fadeInScale 1s ease-out forwards; /* Combine animations */
    border: 2px solid rgba(255, 255, 255, 0.5); /* Subtle white border for extra pop */
    max-width: 90%; /* Ensure it doesn't stretch too wide on very large screens */
}

.hero-alert-badge span {
    font-size: 1.8rem; /* Make the star icons larger */
    line-height: 1; /* Align star vertically */
}

.hero-alert-badge strong {
    color: var(--accent-yellow); /* Highlight "Guaranteed Lowest Price" with an accent color like yellow/gold */
    /* If you don't have an accent-yellow variable, use a direct hex like #FFD700 (gold) or #FFFF00 (bright yellow) */
}

/* Keyframe Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); } /* Slight subtle pulse */
    100% { transform: scale(1); }
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-alert-badge {
        font-size: 1.25rem;
        padding: 10px 25px;
        margin-top: 15px;
        margin-bottom: 25px;
        gap: 8px;
    }
    .hero-alert-badge span {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-alert-badge {
        font-size: 1rem;
        padding: 8px 20px;
        margin-top: 10px;
        margin-bottom: 20px;
        border-radius: 40px;
        gap: 5px;
    }
    .hero-alert-badge span {
        font-size: 1.2rem;
    }
    .hero-alert-badge strong {
        display: block; /* Force the bold part to a new line if needed on very small screens */
    }
}