/* CSS RESET & VARIABLES */
:root {
    --primary: #0284c7;
    /* Sky 600 */
    --primary-hover: #0369a1;
    /* Sky 700 */
    --accent: #38bdf8;
    /* Sky 400 */
    --background: #f8fafc;
    /* Slate 50 */
    --surface: #ffffff;
    /* White */
    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #64748b;
    /* Slate 500 */
    --border: #e2e8f0;
    /* Slate 200 */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 15px;
    height: 100%;
    scroll-behavior: smooth;
    background-color: var(--background);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer {
    margin-top: auto;
    flex-shrink: 0;
}

/* UTILITY GRIDS */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 991px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.grid-icon-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 8vw, 3.5rem) !important;
}

h2 {
    font-size: clamp(1.75rem, 6vw, 2.75rem) !important;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem) !important;
}

@media (max-width: 768px) {
    h1 {
        line-height: 1.1;
    }

    .text-gradient {
        display: inline-block;
    }
}

p {
    margin-bottom: 1.5rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section,
.areas-serve,
.faq-section,
.final-promo,
.local-promo-section {
    padding: 60px 0;
}

@media (max-width: 768px) {

    .section,
    .areas-serve,
    .faq-section,
    .final-promo,
    .local-promo-section {
        padding: 40px 0;
    }
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.section-header {
    margin-bottom: 48px;
    text-align: center;
}

.section-header.f-pattern {
    text-align: left;
    margin-left: 0;
    max-width: 800px;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 650px;
    margin: 0 auto;
}

.section-header.f-pattern p {
    margin: 0;
}

/* INTERACTIVITY: SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* INTERACTIVITY: HOVER GLOWS */
.service-card:hover,
.feature-box:hover,
.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(2, 132, 199, 0.2);
    border-color: var(--primary);
}

/* POSTCODE CHECKER WIDGET */
.postcode-checker {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.checker-input-group {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.checker-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.checker-input:focus {
    border-color: var(--primary);
}

#checker-result {
    margin-top: 20px;
    min-height: 24px;
    font-weight: 500;
}

.status-valid {
    color: #10b981;
}

.status-invalid {
    color: #ef4444;
}

/* F-PATTERN LAYOUT UTILS */
.f-pattern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 991px) {
    .f-pattern-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
}

/* HERO INTERACTIVE CONTAINER */
.hero-interactive {
    width: 100%;
}

/* VOUCHER BADGE */
/* Voucher badge is now defined at the bottom for better consolidation */

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-large {
    padding: 12px 28px;
    font-size: 1.125rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: white;
    color: var(--text-main);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-content {
    height: 70px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.slogan {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: -4px;
    line-height: 1.2;
}

@media (max-width: 640px) {
    .slogan {
        display: none;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

/* Blog Post Page Overrides for Transparent Header */
.blog-post-template .navbar:not(.scrolled) {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.blog-post-template .navbar:not(.scrolled) .logo,
.blog-post-template .navbar:not(.scrolled) .nav-links a,
.blog-post-template .navbar:not(.scrolled) .mobile-menu-btn i {
    color: #ffffff;
}

.blog-post-template .navbar:not(.scrolled) .slogan {
    color: rgba(255, 255, 255, 0.7);
}

.blog-post-template .navbar.scrolled {
    background-color: white;
    border-bottom: 1px solid var(--border);
}

/* CENTERED NAVBAR FOR LOCATION PAGES */
.navbar.centered .nav-content {
    justify-content: center;
    gap: clamp(24px, 6vw, 80px);
}

.navbar.centered .logo-wrapper {
    align-items: center !important;
    text-align: center !important;
}

.navbar.centered .logo-wrapper .slogan {
    text-align: center !important;
}

/* Mobile/Tablet Centering for Location Pages */
@media (max-width: 960px) {
    .navbar.centered .nav-content {
        justify-content: space-between !important;
        padding: 0 20px;
    }

    .navbar.centered .logo-wrapper {
        align-items: center !important;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    .navbar.centered .mobile-menu-btn {
        order: 3;
    }
}

.nav-links a:not(.btn) {
    color: var(--text-main);
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-menu-btn i {
    width: 28px;
    height: 28px;
}

@media (max-width: 960px) {
    .mobile-menu-btn {
        display: block;
        order: 3;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        z-index: 1000;
        align-items: center;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar.scrolled .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .navbar.centered .nav-content {
        justify-content: space-between !important;
        padding: 0 24px;
    }

    .navbar.centered .logo-wrapper {
        order: 2;
    }

    .nav-links a:not(.btn) {
        width: auto;
        font-size: 1.25rem;
        text-align: center;
    }

    .nav-links .dropdown {
        width: 100%;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .nav-links .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 10px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        text-align: center;
    }

    .nav-links .dropdown.active .dropdown-content {
        display: block;
    }

    .nav-links .btn {
        width: 100%;
        max-width: 300px;
        margin-top: 20px;
        padding: 16px;
    }
}

/* DROPDOWN MENU */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 240px;
    background-color: var(--surface);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    z-index: 1001;
    overflow: visible;
    padding: 8px 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.dropdown-content a {
    color: var(--text-main) !important;
    padding: 12px 24px;
    display: block;
    font-weight: 500;
}

.dropdown-content a::after {
    display: none !important;
}

.dropdown-content a:hover {
    background-color: #f8fafc;
    color: var(--primary) !important;
}

.dropdown:hover>.dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* NESTED DROPDOWNS (SUB-MENUS) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>a.dropbtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    font-weight: 500;
    color: var(--text-main) !important;
    cursor: pointer;
}

.dropdown-submenu>a.dropbtn:hover {
    background-color: #f8fafc;
    color: var(--primary) !important;
}

.dropdown-submenu>.dropdown-content {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 0;
    transform: translateX(10px);
    min-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    background-color: var(--surface);
}

.dropdown-submenu:hover>.dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/* Ensure the parent dropdown stays visible when hovering submenu */
.dropdown-content:has(.dropdown-submenu:hover) {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .dropdown-submenu>.dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        transform: none;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-submenu.active>.dropdown-content {
        display: block;
    }
}

/* MEGA MENU STYLES */
.mega-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 1000px;
    /* Wider for 4 columns */
    background-color: var(--surface);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    z-index: 1001;
    padding: 30px;
    transition: all 0.2s ease;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dropdown:hover>.mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mega-column h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-family: 'Outfit';
    border-bottom: 2px solid #f0fdf4;
    padding-bottom: 8px;
    font-weight: 700;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 6px;
}

.mega-column ul li.hidden-location {
    display: none !important;
}

.mega-column ul li.hidden-location.show {
    display: block !important;
}

.mega-column ul li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: block;
    padding: 2px 0;
}

.mega-column ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.mega-load-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    background: #f0fdf4;
    padding: 4px 12px;
    border-radius: 100px;
    transition: all 0.2s;
    border: 1px solid #dcfce7;
}

.mega-load-more:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 960px) {
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        display: none;
        /* Hidden by default on mobile, handled by mobile-menu logic */
        grid-template-columns: 1fr;
        padding: 20px;
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .dropdown.active>.mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* FOOTER SUB-DROPDOWN */
.footer-sub-dropdown summary {
    list-style: none;
}

.footer-sub-dropdown summary::-webkit-details-marker {
    display: none;
}

.footer-sub-dropdown[open] summary i {
    transform: rotate(180deg);
}

/* BREADCRUMBS */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs .separator {
    color: #cbd5e1;
    font-size: 0.8rem;
}

.breadcrumbs .current {
    color: var(--text-main);
    font-weight: 500;
}

.breadcrumbs-dark a,
.breadcrumbs-dark .current,
.breadcrumbs-dark .separator {
    color: rgba(255, 255, 255, 0.9) !important;
}

.breadcrumbs-dark a:hover {
    color: white !important;
}

.breadcrumbs-dark .separator {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 0.85rem;
        gap: 8px;
        margin-bottom: 20px;
    }
}

/* HERO SECTION */
.hero {
    padding-top: 160px;
    padding-bottom: 96px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent);
    filter: blur(100px);
    opacity: 0.1;
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #bae6fd;
    color: var(--primary-hover);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 3.25rem;
    margin-bottom: 24px;
    color: #0c4a6e;
}

.hero-text p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-markers {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #334155;
}

.icon-success {
    color: #10b981;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.overlay-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 20;
}

.star-filled {
    color: #fbbf24;
    fill: #fbbf24;
    width: 20px;
    height: 20px;
}

.overlay-card p {
    font-weight: 500;
    margin: 12px 0 8px;
    font-style: italic;
    font-size: 0.95rem;
}

.overlay-card span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--surface);
    padding: 40px;
    text-align: left;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border);
}

.service-card.focus {
    background-color: var(--primary);
    color: white;
    transform: scale(1.05);
}

.service-card.focus:hover {
    transform: scale(1.05) translateY(-5px);
}

.service-card.focus h3,
.service-card.focus p {
    color: white;
}

.service-card.focus .icon-wrapper {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: #f0f9ff;
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
}

/* FEATURE / COMMITMENT */
.dark-bg {
    background-color: #f1f5f9;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.feature-image-wrapper {
    position: relative;
    padding-right: 24px;
    padding-bottom: 24px;
}

.feature-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.decoration-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: var(--accent);
    border-radius: var(--radius-lg);
    z-index: 1;
    opacity: 0.2;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.commitments-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.commitments-list li {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.commitments-list i {
    color: var(--primary);
    background-color: #e0f2fe;
    padding: 12px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.commitments-list div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.commitments-list strong {
    font-size: 1.25rem;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.commitments-list span {
    color: var(--text-muted);
}

/* PROCESS (How it works) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-grid::before {
        display: none;
    }
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--surface);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    border-radius: 50%;
    margin: 0 auto 32px;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-muted);
}

/* TESTIMONIALS */
.light-bg {
    background-color: var(--surface);
}

/* Areas We Serve Slider */
.areas-serve {
    padding: 100px 0;
    position: relative;
    background: #ffffff !important;
    overflow: hidden;
}

.areas-serve .section-title {
    color: #0f172a;
    margin-bottom: 16px;
    font-size: 2.75rem;
}

.areas-serve .section-subtitle {
    color: #475569;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.areas-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 60px auto 0;
    z-index: 2;
}

.areas-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.area-slide {
    flex: 0 0 25%;
    padding: 0 20px;
}

.area-slide-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 310px;
}

@media (max-width: 991px) {
    .area-slide-content {
        grid-template-columns: 1fr;
    }

    .area-map-container {
        height: 300px;
        min-height: 300px;
    }

    .area-info-container {
        padding: 30px;
    }

    .area-info-container h3 {
        font-size: 2rem;
    }
}

.area-map-container {
    height: 100%;
    min-height: 250px;
    position: relative;
}

.area-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.area-info-container {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.area-info-container .badge {
    align-self: flex-start;
    margin-bottom: 24px;
    background: #e0f2fe;
    color: #0369a1;
}

.area-info-container h3 {
    font-size: 2.75rem;
    margin-bottom: 16px;
    color: #0c4a6e;
    font-family: 'Outfit', sans-serif;
}

.area-info-container p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.6;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
}

.area-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2);
}

.area-link i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.area-link:hover i {
    color: white;
}

.more-cities {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.more-cities.active {
    display: grid;
    opacity: 1;
    margin-top: 12px;
    margin-bottom: 12px;
}

.more-cities.active {
    max-height: 1000px;
    opacity: 1;
    margin-top: 12px;
    margin-bottom: 12px;
}

.btn-show-more {
    grid-column: 1 / -1;
    background: none;
    border: 1px dashed var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: fit-content;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-show-more:hover {
    background: rgba(2, 132, 199, 0.05);
    border-style: solid;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.1);
}

.areas-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.areas-dots .dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
}

.areas-dots .dot.active {
    background: white;
    width: 35px;
    border-radius: 100px;
}

@media (max-width: 1100px) {
    .area-slide-content {
        grid-template-columns: 1fr;
    }

    .area-map-container {
        height: 350px;
        min-height: 350px;
    }

    .area-info-container {
        padding: 40px 30px;
    }

    .area-info-container h3 {
        font-size: 2rem;
    }
}

.area-link:hover i {
    color: white;
}

/* Dots Styling for Areas Slider */
.slider-dots.areas-dots {
    margin-top: 40px;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .area-slide-content {
        grid-template-columns: 1fr;
    }

    .area-map-container {
        min-height: 300px;
    }

    .area-info-container {
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .area-info-container {
        padding: 30px 20px;
    }

    .area-info-container h3 {
        font-size: 2rem;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.promo-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.promo-actions .btn,
.btn-promo-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    min-width: 200px;
    justify-content: center;
}

.btn-promo-call {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.2);
}

.btn-promo-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.3);
}

.local-promo-section {
    background: #ffffff;
    color: var(--text-main);
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.promo-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.usp-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.usp-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #94a3b8;
}

.usp-list i {
    color: #38bdf8;
    width: 20px;
}

.review-card-mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
    margin-top: 24px;
}

.review-card-mini .stars {
    color: #fbbf24;
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.review-card-mini p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #e2e8f0;
}

.review-card-mini .reviewer {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .promo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 32px;
}

.testimonial-card {
    background-color: var(--background);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex: 0 0 calc(33.333% - 21.33px);
    width: calc(33.333% - 21.33px);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
    }
}

.testimonial-card p {
    font-size: 1.125rem;
    font-style: italic;
    margin: 24px 0;
    color: var(--text-main);
}

.rating {
    display: flex;
    gap: 4px;
    color: #f59e0b;
}

.star-filled {
    fill: #f59e0b;
    color: #f59e0b;
    width: 20px;
    height: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-control-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.slider-control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--surface);
    color: var(--text-muted);
    border-color: var(--border);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 100px;
}

/* BLOG SECTION */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    line-height: 1.4;
    color: var(--text-main);
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.read-more i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(4px);
}

/* BOOKING SECTION */
.booking-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: start;
}

.booking-form-wrapper {
    background: var(--surface);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.booking-form-wrapper .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.booking-form-wrapper .section-header p {
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: var(--background);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.form-success {
    margin-top: 24px;
    padding: 16px;
    background-color: #d1fae5;
    color: #065f46;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    border: 1px solid #34d399;
}

.booking-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, #0c4a6e 100%);
    color: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: left;
}

.booking-info-card h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.booking-info-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.booking-info-card a:not(.btn) {
    color: white !important;
    text-decoration: underline;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
}

.contact-list strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.contact-list span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #0c4a6e 100%);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 500px;
}

.cta-banner a:not(.btn) {
    color: white !important;
    text-decoration: underline;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-actions .btn-primary {
    background-color: white;
    color: var(--primary);
}

.cta-actions .btn-primary:hover {
    background-color: #f8fafc;
}

.cta-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-actions .btn-outline:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* FOOTER */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 64px;
    align-items: start;
}

.footer-logo {
    color: white;
    margin-bottom: 24px;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 400px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links li {
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

/* Collapsible Footer Sub-locations */
.footer-city-group {
    margin-bottom: 2px;
}

.footer-city-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 8px 0;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    user-select: none;
}

.footer-city-header:hover {
    color: var(--primary);
}

.footer-city-header i,
.footer-city-header svg {
    width: 16px !important;
    height: 16px !important;
    transition: transform 0.3s ease;
    color: #94a3b8;
}

.footer-city-group.active .footer-city-header i,
.footer-city-group.active .footer-city-header svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.footer-sub-links {
    list-style: none;
    padding: 0;
    margin: 0 0 0 16px !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid #1e293b;
    padding-left: 12px;
}

.footer-city-group.active .footer-sub-links {
    max-height: 1200px;
    opacity: 1;
    margin-top: 8px !important;
    margin-bottom: 16px !important;
}

.footer-links ul ul li {
    font-size: 0.9rem;
    color: #64748b;
}

.footer-links ul ul a {
    color: #64748b !important;
}

.footer-links ul ul a:hover {
    color: var(--primary) !important;
}

.small-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    text-align: left;
    color: #64748b;
}

/* WHAT IS INCLUDED */
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.included-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.included-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.included-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.included-icon {
    width: 48px;
    height: 48px;
    background-color: #e0f2fe;
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-icon i,
.included-icon svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    stroke-width: 2px;
    flex-shrink: 0;
}

.included-header h3 {
    font-size: 1.25rem;
    margin: 0;
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 8px 0;
    transition: var(--transition);
}

.included-list li:hover {
    transform: translateX(4px);
}

.included-list li strong {
    color: var(--text-main);
    font-weight: 600;
    white-space: nowrap;
}

.included-list li span {
    color: var(--text-muted);
}

.included-list i,
.included-list svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    flex-shrink: 0;
    stroke-width: 2.5px;
}

.included-list i {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.text-primary {
    color: var(--primary);
}

/* RESPONSIVE DESIGN */
@media (max-width: 960px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        /* Changed from absolute to fixed */
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        /* Fill remaining viewport */
        overflow-y: auto;
        /* Allow scrolling menu items */
        background-color: white;
        padding: 40px 24px 100px;
        /* Extra bottom padding for button clearance */
        box-shadow: var(--shadow-xl);
        border-top: 1px solid var(--border);
        z-index: 1000;
        gap: 24px !important;
        text-align: center;
        align-items: center;
        /* Center flex items horizontally */
    }

    .nav-links a:not(.btn) {
        width: 100%;
        display: block;
        text-align: center;
    }

    .navbar.scrolled .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-content {
        justify-content: space-between !important;
        gap: 0;
    }

    .dropdown {
        width: 100%;
        height: auto;
        display: block;
        text-align: center;
    }

    .dropbtn {
        justify-content: center;
        width: 100%;
        padding: 8px 0;
    }

    .dropdown-content {
        position: static;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        border: none;
        padding: 0;
        display: none;
        transform: none;
        background-color: #f8fafc;
        margin-top: 12px;
        border-radius: var(--radius-sm);
        text-align: center;
    }

    .dropdown-content a {
        text-align: center;
        justify-content: center;
        display: block;
        border-bottom: none !important;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}

/* FLOATING CALL BUTTON */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: white !important;
    padding: 16px 28px;
    border-radius: 100px;
    display: none;
    /* Hidden by default, shown via JS on mobile */
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
    z-index: 2000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.floating-call-btn:hover {
    transform: translateY(-5px);
    background-color: var(--primary-hover);
    box-shadow: 0 15px 35px rgba(2, 132, 199, 0.5);
}

.floating-call-btn i {
    width: 20px;
    height: 20px;
}

@media (max-width: 960px) {
    .floating-call-btn {
        display: flex;
    }
}

@media (max-width: 480px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 50px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-markers {
        justify-content: center;
    }

    .overlay-card {
        left: 20px;
        bottom: 20px;
    }

    .feature-grid,
    .cta-banner {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid,
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card[style*="min-width: calc(33.333%"] {
        min-width: calc(50% - 16px) !important;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .process-grid,
    .blog-grid,
    .footer-grid,
    .booking-grid,
    .included-grid,
    .grid-2,
    .feature-grid {
        grid-template-columns: 1fr !important;
    }

    .booking-form-wrapper,
    .booking-info-card {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 40px;
    }

    .process-grid::before {
        display: none;
    }

    .service-card.focus {
        transform: scale(1);
    }

    .service-card.focus:hover {
        transform: translateY(-5px);
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .overlay-card {
        max-width: 95%;
        left: 2.5%;
        right: 2.5%;
        bottom: -20px;
        padding: 24px;
    }

    .hero-image,
    .feature-image {
        height: 400px;
    }

    .stat-grid-slick {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .grid-icon-text {
        flex-direction: column !important;
        text-align: center !important;
    }

    .grid-icon-text .icon-wrapper {
        margin: 0 auto;
    }

    .blog-card[style*="min-width: calc(33.333%"] {
        min-width: 100% !important;
    }

    .cta-card {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .cta-card h3 {
        font-size: 1.75rem;
    }

    .cta-list li {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .section {
        padding: 32px 0;
    }

    .stat-grid-slick {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-text h1 {
        font-size: 2rem;
        text-align: center !important;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo i {
        width: 20px;
        height: 20px;
    }

    .seo-rich-content h2 {
        font-size: 1.75rem !important;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
    }

    .trust-item {
        font-size: 0.875rem;
    }

    .overlay-card p {
        font-size: 0.875rem;
    }

    .slider-controls {
        gap: 16px;
    }

    .slider-control-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 640px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}



/* Default h1 centering (allow overrides) */
h1 {
    text-align: center;
}

.hero-text h1,
.blog-header h1 {
    text-align: left !important;
}

/* BLOG SECTION HEADER CENTERING */
.blog .section-header {
    text-align: center !important;
}


.service-article h2,
.service-article h3 {
    display: block !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.service-card h3 {
    text-align: left;
}

.feature-text h2 {
    text-align: left;
}


/* ENHANCED CENTER ALIGNMENT */
.included-card {
    text-align: left;
}

.included-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.included-icon {
    margin: 0;
}

.included-icon {
    margin: 0 auto;
}

.footer-links h4,
.footer-brand h4 {
    text-align: left;
}

.footer-links ul {
    align-items: flex-start;
}

.footer p,
.footer-brand p {
    margin-bottom: 0.75rem;
}

.footer-bottom p {
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Ensure the commitment list items stack and center */
.commitments-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
}

.commitments-list i {
    margin-bottom: 15px;
}

/* Index Page: Professional "What is Included" Redesign */
.index-included-section {
    background-color: #fcfdfe;
    /* Ultra-light blue tint */
}

.index-included-section .section-header {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto 64px !important;
}

.index-included-section .included-grid {
    gap: 40px !important;
}

.index-included-section .included-card {
    background: #ffffff;
    padding: 48px !important;
    border-radius: var(--radius-lg);
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.03);
    transition: all 0.4s ease;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.index-included-section .included-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.08);
}

.index-included-section .included-header {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    /* Side-by-side icon and text */
    align-items: center !important;
    text-align: left !important;
    gap: 20px !important;
    margin-bottom: 32px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding-bottom: 24px !important;
}

.index-included-section .included-icon {
    width: 52px !important;
    height: 52px !important;
    background-color: #f0f9ff !important;
    color: var(--primary) !important;
    border-radius: 12px !important;
    margin: 0 !important;
    /* Remove centered margin */
}

.index-included-section .included-header h3 {
    font-size: 1.5rem !important;
    color: var(--text-main) !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.index-included-section .included-list {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.index-included-section .included-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    border-bottom: none !important;
    padding: 0 !important;
}

.index-included-section .included-list i,
.index-included-section .included-list svg {
    color: #0ea5e9 !important;
    /* Softer blue */
    width: 18px !important;
    height: 18px !important;
    margin-top: 3px !important;
}

.index-included-section .included-list strong {
    color: var(--primary) !important;
    font-size: 1rem !important;
    display: block !important;
    margin-bottom: 4px !important;
}

.index-included-section .included-list p {
    color: var(--text-muted) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* SLICK STAT BAR - LIGHT VERSION */
.stat-bar-slick {
    background: #f8fafc;
    padding: 30px 0;
    border-radius: 40px;
    margin: 40px 0;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stat-grid-slick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 30px;
}

.stat-item-slick {
    background: #ffffff;
    border: 1px solid #eef2f6;
    padding: 20px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item-slick:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.08);
    border-color: rgba(2, 132, 199, 0.2);
}

.stat-icon-box-slick {
    background: #f0f9ff;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-item-slick h2 {
    color: #0f172a;
    font-size: 3rem;
    margin: 0 0 8px;
    border: none;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1.5px;
}

.stat-item-slick p {
    font-weight: 600;
    font-size: 0.85rem;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.stat-btn-slick {
    background: var(--primary) !important;
    color: white !important;
    border: none !important;
    padding: 16px 40px !important;
    font-size: 1.1rem !important;
    border-radius: 100px !important;
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.2) !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px;
    transition: all 0.3s ease !important;
}

.stat-btn-slick:hover {
    transform: scale(1.03);
    background: var(--primary-hover) !important;
    box-shadow: 0 12px 35px rgba(2, 132, 199, 0.3) !important;
}

@media (max-width: 992px) {
    .stat-grid-slick {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stat-grid-slick {
        grid-template-columns: 1fr;
    }

    .stat-bar-slick {
        padding: 40px 0;
        border-radius: 20px;
        margin: 40px 24px;
        width: calc(100% - 48px);
    }

    .stat-item-slick h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .promo-voucher-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .promo-voucher-grid>div {
        text-align: center !important;
    }

    .promo-voucher-grid>div:last-child {
        padding: 24px !important;
    }
}

.promo-voucher-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.spring-cleaning-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: center;
}

.regular-cleaning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Redundant definition moved to final overrides section */

.grid-1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-auto-fit-300 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.grid-auto-fit-250 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

@media (max-width: 900px) {
    .spring-cleaning-grid {
        grid-template-columns: 1fr !important;
    }

    .spring-cleaning-grid>div:last-child {
        padding: 32px !important;
    }

    /* regular-cleaning-grid adjustments moved */

    .grid-1-1 {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

@media (max-width: 500px) {
    /* regular-cleaning-grid mobile adjustments moved */
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .section {
        padding: 32px 0;
    }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Defensive padding for location pages with inline overrides */
    article.container,
    .seo-rich-content.container,
    .section.container,
    article,
    .seo-rich-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .stat-grid-slick {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-text h1 {
        font-size: 2rem;
        text-align: center !important;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo i {
        width: 20px;
        height: 20px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
    }

    .trust-item {
        font-size: 0.875rem;
    }

    .overlay-card p {
        font-size: 0.875rem;
    }

    .slider-controls {
        gap: 16px;
    }

    .slider-control-btn {
        width: 40px;
        height: 40px;
    }
}

/* FAQ Section Styles - Premium Accordion Design */
.faq-section {
    padding: 20px 0;
    background: #fcfdfe;
    border-radius: 60px;
    margin: 10px 0;
}

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}

.faq-details {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    /* Spacers between boxes */
}

.faq-details:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #bae6fd;
}

.faq-details[open] {
    box-shadow: 0 10px 40px rgba(2, 132, 199, 0.1);
    border-color: #bae6fd;
}

.faq-details[open] {
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.08);
    border-color: #e0f2fe;
    transform: translateY(-2px);
}

.faq-summary {
    padding: 32px 48px;
    /* Roomy, luxurious padding */
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.faq-details[open] .faq-summary {
    background: linear-gradient(to bottom, #f0f9ff, #ffffff);
    border-bottom: 1px solid #e0f2fe;
}

.faq-summary:hover h4 {
    color: #0284c7;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary h4 {
    margin: 0;
    font-size: 1.35rem;
    /* Slightly larger */
    font-family: 'Outfit', sans-serif;
    color: #0c4a6e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 700;
    /* Bolder */
    text-align: center;
    transition: color 0.3s ease;
}

.faq-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.badge-q {
    background: #e0f2fe;
    color: #0284c7;
}

.badge-a {
    background: #f1f5f9;
    color: #475569;
}

.faq-summary-icon {
    color: #94a3b8;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 24px;
    height: 24px;
    position: absolute;
    right: 32px;
}

.faq-details[open] .faq-summary-icon {
    transform: rotate(180deg);
    color: #0284c7;
}

.faq-answer-wrapper {
    padding: 32px 40px;
    /* Consistent padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    background: white;
}

.faq-answer-wrapper p {
    margin: 0;
    color: #334155;
    line-height: 1.8;
    font-size: 1.15rem;
    max-width: 700px;
    /* Keep it focused */
}

@media (max-width: 768px) {
    .faq-section {
        border-radius: 40px;
        padding: 60px 0;
    }

    .faq-summary {
        padding: 20px;
    }

    .faq-summary h4 {
        font-size: 1.1rem;
        gap: 12px;
    }

    .faq-answer-wrapper {
        padding: 0 20px 24px 20px;
        flex-direction: column;
    }

    .faq-badge {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* FAQ Compact Version - For Hub & Service Pages */
.faq-compact {
    padding: 60px 0 !important;
    margin: 20px 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.faq-compact .faq-accordion-container {
    margin-top: 24px !important;
    gap: 8px !important;
}

.faq-compact .faq-details {
    border-radius: 12px !important;
    margin-bottom: 4px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid #f1f5f9 !important;
}

.faq-compact .faq-details:hover {
    transform: translateY(-2px) !important;
    border-color: #e0f2fe !important;
}

.faq-compact .faq-summary {
    padding: 18px 24px !important;
}

.faq-compact .faq-summary h4 {
    font-size: 1.05rem !important;
    gap: 10px !important;
    text-align: left !important;
    justify-content: flex-start !important;
}

.faq-compact .faq-badge {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.75rem !important;
}

.faq-compact .faq-summary-icon {
    right: 16px !important;
    width: 18px !important;
    height: 18px !important;
}

.faq-compact .faq-answer-wrapper {
    padding: 20px 24px !important;
    gap: 12px !important;
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.faq-compact .faq-answer-wrapper p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
}

.faq-compact .promo-badge {
    font-size: 0.75rem !important;
    padding: 4px 12px !important;
}

.faq-compact h2 {
    font-size: 1.75rem !important;
    margin-bottom: 8px !important;
}


/* Fixed SEO content headers */
.seo-rich-content h2 {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 1.5rem !important;
    margin: 40px 0 24px !important;
    word-wrap: break-word;
}

.hero {
    padding-top: 120px;
    padding-bottom: 60px;
}

/* FLUID TYPOGRAPHY OVERRIDES */
h1 {
    font-size: clamp(2rem, 8vw, 3rem) !important;
}

h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

.guide-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary) !important;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.1) !important;
}

.guide-card .btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ==========================================================================
   Local Promo Section (Enhanced with Image & Area Personalization)
   ========================================================================== */

.local-promo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.local-promo-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.promo-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    /* Image left, Content right */
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    aspect-ratio: 1 / 1;
}

.promo-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-image-wrapper:hover .promo-hero-image {
    transform: scale(1.05);
}

.promo-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(2, 132, 199, 0.9);
    backdrop-filter: blur(8px);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.promo-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.promo-title .highlight {
    color: #38bdf8;
    display: block;
    margin-top: 8px;
}

.promo-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.promo-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-promo-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0284c7;
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.3);
}

.btn-promo-call:hover {
    background: #0ea5e9;
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(2, 132, 199, 0.4);
}

.promo-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.promo-badge-box {
    background: rgba(56, 189, 248, 0.1);
    border: 1px dashed rgba(56, 189, 248, 0.3);
    padding: 20px 28px;
    border-radius: 20px;
}

.promo-badge-box strong {
    color: #38bdf8;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 4px;
}

.promo-badge-box span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usp-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1.1rem;
    color: #f1f5f9;
    margin-bottom: 12px;
}

.usp-list li i {
    color: #22c55e;
    width: 24px;
    height: 24px;
}

@media (max-width: 1200px) {
    .promo-container {
        gap: 40px;
    }

    .promo-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .promo-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .promo-actions {
        justify-content: center;
    }

    .promo-meta {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 576px) {
    .local-promo-section {
        padding: 60px 0;
    }

    .promo-content h2 {
        font-size: 2rem;
    }

    .promo-actions .btn-promo-call {
        width: 100%;
        justify-content: center;
    }
}

/* AREA CARDS (SLEEK DESIGN) */
.area-card {
    position: relative;
    height: 100%;
    min-height: 140px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    border: none;
    background-color: #0f172a;
    display: flex;
    flex-direction: column;
}

.area-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.area-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.area-card:hover .area-card-bg {
    transform: scale(1.1);
}

.area-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.area-card:hover .area-card-overlay {
    opacity: 0.9;
}

.area-card-content {
    position: relative;
    margin-top: auto;
    width: 100%;
    padding: 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered content */
    text-align: center;
    gap: 12px;
}

.area-card-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.area-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Centered links */
    gap: 6px;
    margin-bottom: 4px;
}

.area-link-chip {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.area-link-chip:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.area-card .areas-badge {
    background-color: var(--primary);
    color: #ffffff;
    margin: 0;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 4;
}

/* AREAS WE SERVE SLIDER */
.areas-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
}

.areas-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
}

.areas-slide {
    flex: 0 0 100%;
    /* Default to 1 per view for simplicity, or calc(33.33% - 22px) if mixed */
    min-width: 100%;
}

.area-premium-card {
    position: relative;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    color: white;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.area-premium-card .area-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s ease;
}

.area-premium-card:hover .area-card-bg {
    transform: scale(1.05);
}

.area-premium-card .area-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0) 100%);
    z-index: 1;
}

.area-premium-card .area-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
}

.area-premium-card h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 12px;
}

.area-premium-card p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 500px;
}

.area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-link-chip {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: white !important;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-link-chip:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.areas-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(2, 132, 199, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    width: fit-content;
}

#areasSlider .slider-dots {
    margin-top: 40px;
}

#areasSlider .slider-dots .dot {
    background: rgba(15, 23, 42, 0.2);
}

#areasSlider .slider-dots .dot.active {
    background: var(--primary);
}

@media (max-width: 768px) {
    .area-premium-card {
        height: 600px;
    }

    .area-premium-card .area-card-content {
        padding: 32px 24px;
    }

    .area-premium-card h3 {
        font-size: 1.8rem;
    }
}

/* SEO Rich Content Styles */
.seo-rich-content {
    line-height: 1.8;
    color: #334155;
    padding: 60px 0;
}

.seo-rich-content h2 {
    font-size: 2.8rem;
    color: #0f172a;
    margin: 80px auto 40px;
    border-bottom: 4px solid var(--primary);
    display: block;
    width: fit-content;
    padding-bottom: 15px;
    text-align: center;
}

.seo-rich-content h3 {
    font-size: 1.75rem;
    margin: 40px 0 20px;
    color: var(--text-main);
}

.seo-rich-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}





/* PROMO SECTION ENHANCEMENTS */
.local-promo-section {
    padding: 60px 0;
    overflow: hidden;
}

.promo-container {
    background: #0f172a;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 40px;
    align-items: center;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-container:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    border-color: rgba(2, 132, 199, 0.4);
}

.promo-image-wrapper {
    flex: 0 0 40%;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 350px;
}

.promo-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.promo-container:hover .promo-hero-image {
    transform: scale(1.1);
}

.promo-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Floating Discount Badge */
.promo-discount-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: white;
    padding: 14px 22px;
    border-radius: 18px;
    font-weight: 700;
    z-index: 20;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
    animation: promoPulse 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.promo-discount-badge strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

.promo-discount-badge span {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

@keyframes promoPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 15px 35px rgba(2, 132, 199, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
    }
}

.promo-content {
    flex: 1;
}

.promo-title {
    color: white !important;
    font-size: 2.75rem !important;
    margin-bottom: 12px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
}

.promo-subtitle {
    color: #cbd5e1 !important;
    font-size: 1.15rem !important;
    margin-bottom: 32px !important;
    max-width: 550px;
    line-height: 1.6;
}

.promo-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.promo-meta {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.promo-features .usp-list {
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.promo-features .usp-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
}

.promo-features .usp-list i {
    color: #38bdf8;
    width: 20px;
    height: 20px;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .promo-container {
        flex-direction: column;
        padding: 40px 24px;
        gap: 32px;
    }

    .promo-image-wrapper {
        width: 100%;
        height: 300px;
    }

    .promo-title {
        font-size: 2.25rem !important;
        text-align: center;
    }

    .promo-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .promo-actions {
        justify-content: center;
        flex-direction: column;
    }

    .promo-features .usp-list {
        justify-content: center;
        gap: 24px;
    }

    .promo-meta {
        justify-content: center;
    }
}

/* Testimonial Slider Styles */
.testimonial-slider-container {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 32px;
    margin-bottom: 50px;
}

.testimonial-slide {
    flex: 0 0 calc(33.33% - 21.33px);
    /* 3 cards with 32px gap */
    min-width: 300px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-btn {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.slider-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }

    .testimonial-track {
        gap: 20px;
    }
}

/* --- SLEEK REVIEW SLIDER (LOCATION PAGES) --- */
.sleek-slider-container {
    background: #f8fafc;
    border-radius: 40px;
    padding: 60px 0;
    margin: 10px 0;
    overflow: hidden;
}

.sleek-slider-header {
    margin-bottom: 40px;
    padding: 0 20px;
}

.sleek-slider-header h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.sleek-review-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.sleek-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.sleek-review-content {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.sleek-review-author {
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sleek-review-stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.sleek-review-stars i,
.sleek-review-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* --- PREMIUM UTILITY CLASSES --- */
.interactive-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.text-gradient {
    background: linear-gradient(135deg, #0ea5e9 0%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.animate-shimmer {
    background: linear-gradient(90deg, #38bdf8 0%, #ffffff 50%, #38bdf8 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s infinite linear;
}

@keyframes voucherPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(2, 132, 199, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2, 132, 199, 0);
    }
}

/* Consolidating voucher badge styles */
.voucher-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: white;
    padding: 16px;
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 24px;
    box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.3);
    border: none;
    width: 100%;
    box-sizing: border-box;
    animation: none !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.voucher-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: none !important;
}

.voucher-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.voucher-code {
    font-size: 1.1rem;
    font-weight: 800;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: white;
}

.f-pattern {
    text-align: left !important;
}

.f-pattern h1,
.f-pattern h2,
.f-pattern p {
    margin-left: 0 !important;
    text-align: left !important;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn i,
.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

/* --- FINAL CTA PROMO REDESIGN --- */
.final-promo {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 100px 0;
    margin-top: 60px;
}

.final-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.5) 100%);
    z-index: 1;
}

.final-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
}

.final-promo .container {
    position: relative;
    z-index: 10;
}

/* NEW Promo Card Styling */
.promo-card {
    background: white;
    color: #0f172a;
    padding: 40px;
    border-radius: 40px;
    display: block;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
}

.promo-inner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.promo-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.promo-voucher-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 24px;
    border: 2px dashed #cbd5e1;
    text-align: center;
}

.promo-voucher-code {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    margin: 15px 0;
    font-family: 'Outfit';
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.promo-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mini-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.mini-review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-review-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mini-review-stars {
    color: #fbbf24;
    margin-bottom: 12px;
}

.mini-review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
    color: #e2e8f0;
}

.mini-review-author {
    font-size: 0.8125rem;
    color: #94a3b8;
    font-weight: 600;
}

.promo-usp-box {
    background: white;
    padding: 40px;
    border-radius: 28px;
    color: var(--text-main);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.promo-usp-list {
    list-style: none;
    padding: 0;
    margin-top: 32px;
}

.promo-usp-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.promo-usp-item:last-child {
    margin-bottom: 0;
}

.promo-usp-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.promo-usp-item strong {
    display: block;
    font-size: 1.125rem;
    color: #0f172a;
}

.promo-usp-item span {
    font-size: 0.875rem;
    color: #64748b;
}

@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mini-reviews-grid {
        grid-template-columns: 1fr;
    }

    .final-promo {
        padding: 80px 0;
        text-align: center;
    }

    .final-promo h2 {
        font-size: 2.25rem;
    }

    /* Response fixes for new promo classes */
    .promo-card {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .promo-inner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-content {
        text-align: center !important;
    }

    .promo-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .promo-voucher-box {
        padding: 24px 16px;
    }

    .promo-voucher-code {
        font-size: 1.75rem;
    }
}

/* --- PREMIUM FOOTER SLIDER (LIGHT THEME) --- */
.premium-footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

@media (max-width: 1024px) {
    .premium-footer-grid {
        padding: 0 20px;
    }
}

.dark-slide.footer-area-slide {
    display: flex;
    flex-direction: row;
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    height: auto;
    align-items: stretch;
}

.dark-image-container {
    flex: 0 0 40%;
    position: relative;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
}

.dark-image-container img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.dark-content {
    flex: 1 1 auto;
    padding: 40px 40px 40px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
    margin-top: 0;
    text-align: left;
}

.dark-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    font-family: 'Outfit';
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.1;
    text-align: left;
}

.dark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dark-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    color: #475569;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dark-link:hover {
    background: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.dark-main-hub {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: 600;
}

.dark-main-hub:hover {
    background: #38bdf8;
    border-color: #38bdf8;
    color: white;
}

.dark-btn-load {
    margin-top: 24px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 12px 24px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
    align-self: flex-start;
}

.dark-btn-load:hover {
    border-color: #94a3b8;
    color: #0f172a;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .dark-slide.footer-area-slide {
        flex-direction: column;
    }

    .dark-image-container {
        flex: 0 0 240px;
        padding: 0;
        min-height: 240px;
        display: block;
    }

    .dark-image-container img {
        position: absolute;
        inset: 0;
        border-radius: 0;
        box-shadow: none;
        min-height: auto;
    }

    .dark-image-container::after {
        display: block;
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
        z-index: 2;
    }

    .dark-content {
        padding: 0 24px 24px 24px;
        margin-top: -30px;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .dark-grid {
        grid-template-columns: 1fr;
    }
}

#footerAreasDots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

#footerAreasDots .dot {
    width: 40px;
    height: 4px;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

#footerAreasDots .dot.active {
    background: var(--primary);
    width: 60px;
    box-shadow: none;
}

/* Stage 3: Mobile Accessibility & Conversion */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 12px 20px;
    border-top: 1px solid #e2e8f0;
}

.sticky-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: transform 0.2s ease;
    font-family: 'Outfit', sans-serif;
}

.sticky-btn:active {
    transform: scale(0.96);
}

.sticky-call {
    background: #f8fafc;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.sticky-book {
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    /* Prevent footer overlap */

    .btn-large {
        width: 100%;
        padding: 18px 24px;
        font-size: 1.125rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* --- FAQ TABBED INTERFACE --- */
.faq-tabs-wrapper {
    margin-top: 40px;
}

.faq-tabs-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-tab-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-tab-btn i {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.faq-tab-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    transform: translateY(-2px);
}

.faq-tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.2);
}

.faq-tab-btn.active i {
    opacity: 1;
}

.faq-tab-panel {
    display: none;
    margin-top: 20px;
}

.faq-tab-panel.active {
    display: block;
    animation: fadeInFaq 0.4s ease-out;
}

@keyframes fadeInFaq {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-tabs-container {
        gap: 8px;
    }

    .faq-tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
    }
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
    padding: 24px 0 0;
    font-size: 0.875rem;
    color: #64748b;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 10;
}

.breadcrumbs a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.breadcrumbs .separator {
    color: #cbd5e1;
    font-size: 0.75rem;
}

.breadcrumbs .current {
    color: #0c4a6e;
    font-weight: 600;
}

.breadcrumbs-dark {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs-dark a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs-dark a:hover {
    color: white;
    border-bottom-color: white;
}

.breadcrumbs-dark .separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs-dark .current {
    color: white;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 16px 0 0;
        font-size: 0.8rem;
    }
}




/* FINAL RESPONSIVE OVERRIDES (FORCE 3X3 AND GRID FIXES) */
.regular-cleaning-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.regular-cleaning-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px;
}

.grid-1-1 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
}

@media (max-width: 768px) {
    .testimonial-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        width: 100% !important;
    }

    .testimonial-track .reveal {
        flex: 0 0 100% !important;
        width: 100% !important;
        padding: 30px 20px !important;
        opacity: 1 !important;
        transform: none !important;
    }

    #testimonialDots {
        display: flex !important;
        justify-content: center !important;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .regular-cleaning-viewport {
        overflow: hidden !important;
        width: 100% !important;
        display: block !important;
    }

    .regular-cleaning-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        will-change: transform;
    }

    .regular-cleaning-grid .reveal {
        display: block !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 30px 20px !important;
        opacity: 1 !important;
        transform: none !important;
        box-sizing: border-box !important;
        visibility: visible !important;
    }

    #regularCleaningDots {
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 20px !important;
        padding: 10px 0 !important;
    }

    #regularCleaningDots .dot {
        width: 10px;
        height: 10px;
        background: #cbd5e1;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    #regularCleaningDots .dot.active {
        background: #0284c7;
        transform: scale(1.2);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0 !important;
    }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .regular-cleaning-grid h4 {
        font-size: 1.1rem !important;
    }

    .regular-cleaning-grid p {
        font-size: 0.9rem !important;
        display: block !important;
    }
}

/* --- STANDARDIZED TESTIMONIAL SLIDER --- */
.testimonial-slider-container {
    padding: 20px 0;
    width: 100%;
    overflow: hidden !important;
}

.testimonial-track {
    display: flex !important;
    gap: 0 !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 calc(100% / 3);
    /* 3 per view on desktop */
    box-sizing: border-box;
    padding: 0 16px;
}

@media (max-width: 1100px) {
    .testimonial-slide {
        flex: 0 0 calc(100% / 2);
        /* 2 per view on tablet */
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
        /* 1 per view on mobile */
        padding: 0 10px;
    }

    .testimonial-track {
        gap: 0 !important;
    }
}

.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}


@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
        /* 1 per view on mobile */
        padding: 0 10px;
    }

    .testimonial-track {
        gap: 0 !important;
    }
}

/* =========================================================================
   PHASE 2-3: CONSOLIDATED RESPONSIVE OVERRIDES (appended April 2026)
   -------------------------------------------------------------------------
   This block fixes inconsistent breakpoints by re-asserting the canonical
   4-breakpoint system (480 / 768 / 1024 / 1280) and filling in missing
   intermediate states. It loads after everything else so it takes priority.

   Rules covered:
   - 2-column tablet states for service, footer, area grids (previously
     jumped 3->1).
   - Mobile nav trigger reduced from 1150px to 960px (mega menu is now
     fluid so full nav fits down to that width).
   - Overlay card clamped inside viewport at all widths.
   - Touch target minimum 44x44 on coarse pointers.
   - prefers-reduced-motion fallback.
   - Large-desktop tweak: container gets a little breathing room.
   ========================================================================= */

/* --- Container: allow slightly larger max-width on very wide monitors --- */
@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }
}

/* --- Laptop: 3-col grids step down to 2 cols BEFORE hitting 1 col --- */
@media (max-width: 1024px) {

    .services-grid,
    .process-grid,
    .blog-grid,
    .areas-grid,
    .grid-3,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 32px !important;
    }

    .booking-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Overlay card: never poke outside its wrapper */
    .overlay-card {
        left: 16px !important;
        right: 16px !important;
        max-width: calc(100% - 32px) !important;
    }
}

/* --- Mobile menu: trigger earlier so only tablets/phones see hamburger --- */
@media (max-width: 960px) {
    .mobile-menu-btn {
        display: block !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-links.active {
        display: flex !important;
    }
}

/* --- Tablet portrait: collapse 2-col grids; tighten hero --- */
@media (max-width: 768px) {

    .services-grid,
    .process-grid,
    .blog-grid,
    .areas-grid,
    .grid-3,
    .grid-2,
    .feature-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 64px;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .hero-image {
        aspect-ratio: 16 / 10;
        max-height: 420px;
    }

    /* Hero actions stack full width */
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .trust-markers {
        justify-content: center;
    }
}

/* --- Small phones: single column footer, tighter padding --- */
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 48px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-image {
        aspect-ratio: 4 / 3;
        max-height: 320px;
    }

    .booking-form-wrapper,
    .booking-info-card {
        padding: 28px 20px !important;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }
}

/* --- Touch devices: enforce 44x44 minimum tap target (Apple/WCAG guidance) --- */
@media (hover: none) and (pointer: coarse) {

    .btn,
    .nav-links a,
    .mobile-menu-btn,
    .dropdown-content a,
    .footer-city-header,
    .floating-call-btn {
        min-height: 44px;
    }

    .btn-small {
        min-height: 40px;
        padding: 10px 16px;
    }

    /* Removed hover-hiding override to allow visibility in all environments */
    /* .dropdown:hover>.dropdown-content,
    .dropdown:hover>.mega-menu {
        visibility: hidden;
        opacity: 0;
    } */

    .dropdown.active>.dropdown-content,
    .dropdown.active>.mega-menu {
        visibility: visible;
        opacity: 1;
    }
}

/* --- Accessibility: respect reduced motion preference --- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --- Safety net: prevent any element from causing horizontal overflow --- */
html,
body {
    max-width: 100%;
}

img,
video,
iframe,
table {
    max-width: 100%;
}

/* =========================================================================
   HOME PAGE HERO FIXES (.hero-home, .hero-interactive)
   The home page uses class="hero-home" rather than class="hero", so the
   earlier .hero rules do not apply here. Inline styles on the page also
   need to be overridden, so most rules here use !important.
   ========================================================================= */

/* Laptop and smaller: centre the stacked hero content */
@media (max-width: 1024px) {
    .hero-home .f-pattern-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    .hero-home .hero-text {
        margin: 0 auto;
    }

    .hero-home .hero-actions {
        justify-content: center;
    }

    .hero-home .trust-markers {
        justify-content: center;
    }

    .hero-home .hero-interactive {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Tablet: tighten hero vertical rhythm */
@media (max-width: 768px) {
    .hero-home {
        padding: clamp(90px, 12vw, 120px) 0 48px !important;
    }

    .hero-home .hero-text h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
        margin-bottom: 16px !important;
    }

    .hero-home .hero-text>p {
        font-size: 1rem !important;
        margin-bottom: 28px !important;
    }

    /* Stack CTAs full width; override inline flex-wrap */
    .hero-home .hero-actions {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        width: 100%;
        margin-bottom: 32px !important;
    }

    .hero-home .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-home .trust-markers {
        gap: 12px !important;
        flex-direction: column;
        align-items: center;
    }

    .hero-home .voucher-badge {
        margin-bottom: 16px !important;
    }

    .hero-home .postcode-checker {
        padding: 24px !important;
        border-radius: 20px !important;
    }

    .hero-home .checker-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .hero-home .checker-input-group .btn {
        width: 100%;
    }
}

/* Small phones (375px target): squeeze vertical space further */
@media (max-width: 480px) {
    .hero-home {
        padding: 96px 0 40px !important;
    }

    .hero-home .hero-text h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }

    .hero-home .badge {
        font-size: 0.75rem !important;
        padding: 4px 12px;
    }

    .hero-home .postcode-checker {
        padding: 20px !important;
    }

    .hero-home .postcode-checker h3 {
        font-size: 1.2rem !important;
    }

    .hero-home .postcode-checker p {
        font-size: 0.9rem !important;
    }

    .hero-home .voucher-badge .voucher-title {
        font-size: 0.9rem;
    }

    .hero-home .voucher-badge .voucher-code {
        font-size: 1.1rem;
    }

    .hero-home .trust-item {
        font-size: 0.85rem;
    }
}

/* END OF PHASE 2-3 OVERRIDES */

.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}