:root {
    --primary-color: #6366f1; /* Deep modern indigo */
    --secondary-color: #3b82f6; /* Bright blue */
    --accent-color: #ec4899; /* Vibrant pink */
    --text-color: #000000; /* Solid Black text for light mode */
    --bg-color: #ffffff; /* Solid white background */
    --glass-bg: rgba(255, 255, 255, 0.85); /* Opaque white glass */ /* Super sheer white for glass */
    --glass-border: rgba(0, 0, 0, 0.1); /* Subtle dark border */ /* Thinner, softer border */
    --glass-dark-bg: rgba(255, 255, 255, 0.95); /* Bright background for dropdowns/menus */ /* Sheer dark for contrast */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Inter', sans-serif; /* Moving away from serif for minimalist look */
    --nav-height: 60px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transitions */
}

/* Google Fonts loaded via <link> in HTML head */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    /* Background gradient applied via .body-animated class added by JS after LCP */
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

/* Deferred gradient — added via JS class after page is interactive */
body.body-animated {
    background-image:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    background-size: 200vw 200vh;
    animation: gradientShift 20s ease-in-out infinite alternate;
    /* background-attachment: scroll (NOT fixed — fixed forces software compositing on mobile) */
    background-attachment: scroll;
}

/* Background Animation */
@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 100%; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

/* Navigation Bar - Floating Taskbar */
.navbar {
    position: fixed;
    top: 20px; /* Float down from top */
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px; /* Prevents it from getting too wide on huge screens */
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px; /* Padding inside the capsule */
    z-index: 1000;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 50px; /* Capsule shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Soft shadow for floating effect */
    transition: var(--transition);
    /* backdrop-filter only on desktop — too expensive on mobile */
}

@media (min-width: 901px) {
    .navbar {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05); /* Translucent base */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Soft frosted border */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500; /* Lighter font weight for minimalism */
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1); /* Brighter on hover */
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover::before {
    left: 100%;
}


.phone-icon {
    font-size: 1.1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1001;
    /* Above navbar */
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Nav Transitions */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Base Dropdown Styling (Desktop First) */
.dropdown-parent {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--glass-dark-bg);
    min-width: 200px;
    padding: 15px 0;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    border-left: 3px solid transparent; /* Subtle hover indicator */
}

.dropdown-menu li a:hover {
    background: rgba(37, 99, 235, 0.05); /* Very faint blue tint */
    color: var(--primary-color);
    padding-left: 30px;
    border-left: 3px solid var(--primary-color);
}

/* Multi-level Dropdown (Nested) styling */
.nested-dropdown-parent {
    position: relative;
}

.nested-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%; /* Position to the right of the parent */
    background: var(--glass-dark-bg);
    min-width: 200px;
    padding: 15px 0;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    list-style: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Ensure there's a seamless hover bridge */
.nested-dropdown-parent::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    bottom: 0;
    width: 15px;
}

.nested-dropdown-parent:hover .nested-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nested-dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    border-left: 3px solid transparent; 
}

.nested-dropdown-menu li a:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-color);
    padding-left: 30px;
    border-left: 3px solid var(--primary-color);
}


@media (max-width: 900px) {
    .navbar {
        top: 15px; /* Float slightly down */
        width: 95%; /* Adjust width for mobile */
        padding: 0 20px;
        border-radius: 20px; /* Smaller radius on mobile */
    }

    .hamburger {
        display: flex;
        order: 3;
        /* Rightmost */
    }

    .contact-btn {
        display: flex;
        order: 2; /* Put it between brand and hamburger */
        padding: 0; /* Remove padding to perfectly center */
        width: 40px;
        height: 40px;
        border-radius: 50%; /* Circle shape on mobile */
        justify-content: center;
        align-items: center; /* Add vertical centering */
        margin-right: 15px;
        font-size: 0; /* Hide text, show only icon due to space */
    }
    
    /* Revert contact-btn styles specifically for service cards so the full text shows */
    .service-card .contact-btn {
        width: 100%;
        height: auto;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 1rem;
        margin-right: 0;
        margin-top: 10px;
    }

    .contact-btn .phone-icon {
        font-size: 1.1rem; /* Keep icon size */
        margin: 0;
    }

    .nav-menu {
        position: fixed;
        right: -50%;
        top: 0; /* Cover full screen from top */
        flex-direction: column;
        background-color: var(--glass-dark-bg);
        width: 50%;
        height: 100vh;
        /* Full height screen */
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 100px 0 40px 0; /* Room for taskbar at top */
        gap: 30px;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        overflow-y: auto;
        z-index: -1; /* Behind the taskbar wrapper */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1); /* Shadow to separate from content */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .dropdown-menu, .nested-dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        min-width: auto;
        display: none;
        /* Hidden by default, js can toggle or we show all */
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .dropdown-parent:hover .dropdown-menu,
    .nested-dropdown-parent:hover .nested-dropdown-menu {
        /* Disable hover reveal on mobile */
        display: none;
    }

    /* Make dropdowns always visible or toggleable? 
       For simplicity in this task, let's make them always visible or distinct blocks 
       Change: Display sub-items in a block layout for mobile */

    .dropdown-parent .dropdown-menu,
    .nested-dropdown-parent .nested-dropdown-menu {
        display: none;
        /* Hidden by default */
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Show when parent has active-dropdown class */
    .dropdown-parent.active-dropdown .dropdown-menu,
    .nested-dropdown-parent.active-dropdown .nested-dropdown-menu {
        display: flex;
    }

    .dropdown-menu::before, .nested-dropdown-menu::before {
        display: none;
    }

    .dropdown-menu li a, .nested-dropdown-menu li a {
        padding: 5px;
        font-size: 1rem;
        color: #000000;
    }

    .dropdown-menu li a:hover {
        background: transparent;
        color: var(--text-color);
        padding-left: 5px;
        border: none;
    }
}


/* Dropdown Menu Styles */
.dropdown-parent {
    position: relative;
    padding-bottom: 20px;
    /* Bridge the gap to the menu */
    margin-bottom: -20px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--glass-dark-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 10px 0;
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Triangle/Arrow on top */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--glass-dark-bg);
    border-top: 1px solid var(--glass-border);
    border-left: 1px solid var(--glass-border);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border-left-color: var(--primary-color);
    padding-left: 28px;
    /* Slide effect */
}


/* =========================================
   Service Booking Page Styles
   ========================================= */

/* Layout Updates */
/* Layout Updates */
.booking-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Make section occupy full viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 5% 20px;
    /* Reduced vertical padding */
    background: url('images/technician_workbench_3d_1767705288294.webp') no-repeat center center/cover;
    text-align: center;
}

.booking-content-wrapper {
    display: flex;
    width: 100%;
    max-width: 1400px;
    height: 85vh;
    /* Increased from 75vh */
    max-height: 900px;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    z-index: 2;
    padding: 0;
    gap: 40px;
}

.hero-image-link {
    display: block;
    flex: 1;
    /* Stretch to fill available space */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-image-link:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.hero-service-image {
    /* Renamed from hero-right-image */
    width: 100%;
    height: 100%;
    /* Fill container height */
    object-fit: fill;
    /* Stretch to fill width relative to height */
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 0.8s ease-out;
    /* Changed animation direction */
    cursor: pointer;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Right Side Form Styles */
.booking-form-right {
    width: 35%;
    max-width: 450px;
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: fadeInRight 0.8s ease-out;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 100px;
    z-index: 10;
    align-self: flex-start;
}

.booking-form-right h1,
.booking-form-right h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
    font-weight: 600;
}

.booking-form-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form-right input,
.booking-form-right textarea {
    width: 100%;
    padding: 12px 15px;
    background: #f8fafc; /* Light gray for inputs */
    border: 1px solid rgba(0, 0, 0, 0.2); /* Darker border for light theme */
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    resize: none;
}

.booking-form-right input::placeholder,
.booking-form-right textarea::placeholder {
    color: #000000; /* Darker placeholder */
}

.booking-form-right input:focus,
.booking-form-right textarea:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.booking-submit-btn {
    background: rgba(99, 102, 241, 0.8); /* Translucent primary */
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.booking-submit-btn:hover {
    background: rgba(99, 102, 241, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Feature Highlights Section */
.feature-highlights {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%;
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); /* Pop icon on glass */
}

.feature-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #e2e8f0;
    line-height: 1.2;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 900px) {
    .booking-content-wrapper {
        flex-direction: column;
        align-items: center;
        height: auto;
        /* Fix overlap */
        max-height: none;
        /* Fix overlap */
        padding-bottom: 50px;
    }

    .hero-image-link,
    .booking-form-right {
        width: 100%;
        /* Use full width on mobile/tablet */
        max-width: 600px;
    }

    .hero-image-link {
        height: 300px;
        /* Constrain image height on mobile */
    }

    .hero-service-image {
        object-fit: cover;
    }

    .booking-form-right {
        margin-top: 30px;
        position: static;
        /* Remove sticky on mobile if it causes issues, or keep it */
    }
}

/* Left Side Dynamic Heading */
/* Centered Dynamic Heading */
.booking-left-space {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 0;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Add background for readability */
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.service-title-container h1 {
    font-family: var(--font-accent);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-color);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-hero-desc {
    font-size: 1.25rem;
    color: #e2e8f0;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Technician Card Styles */
.technician-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1); /* Darker border for light theme tiles */
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    /* Fixed height for consistency */
}

.tech-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-image-wrapper:hover img {
    transform: scale(1.05);
    /* Zoom effect */
}

.tech-rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    /* Gold */
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tech-call-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: #22c55e;
    /* Green for Call */
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.tech-call-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.booking-form-container {
    position: sticky;
    top: 80px;
    margin-left: auto;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.form-trust-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Trust Badges */
.trust-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    white-space: nowrap;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.rating-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
}

.booking-form-container h2 {
    color: var(--text-color);
    margin-bottom: 5px;
    align-self: flex-start;
    font-weight: 600;
}

.form-subtitle {
    color: #000000;
    align-self: flex-start;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Form Specifics */
.booking-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form .form-group input,
.booking-form .form-group textarea,
.booking-form .form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1); /* Darker border for light theme tiles */
    color: var(--text-color);
    border-radius: 12px;
    transition: var(--transition);
}

.booking-form .form-group input:focus,
.booking-form .form-group textarea:focus,
.booking-form .form-group select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    outline: none;
}

.service-select {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
}

.service-select option {
    background-color: var(--bg-color);
    /* Fix for dark theme select */
    color: var(--text-color);
}

.submit-btn.full-width {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 95vh;
    /* Request was 90vh */
    overflow: hidden;
    /* Removed the margin-top so it fills up to the top behind the taskbar */
    background-color: #000;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 10;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* Darken image for better text readability */
}

.overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 20;
    text-align: left;
    color: #ffffff;
}

.overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.overlay p {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e2e8f0;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    bottom: 40px; /* Move to the bottom */
    transform: none; /* Remove vertical centering transform */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(37, 99, 235, 0.8);
    border-color: var(--primary-color);
    transform: scale(1.1); /* Only scale on hover, no Y translation */
}

/* Center and space out at the bottom */
.prev-btn {
    left: calc(50% - 60px); /* 60px offset from exact center leftwards */
}

.next-btn {
    right: calc(50% - 60px); /* 60px offset from exact center rightwards */
}

/* Mobile Responsive For Carousel */
@media (max-width: 768px) {
    .carousel-container {
        height: 95vh;
    }

    .overlay h1 {
        font-size: 2.5rem;
    }

    .overlay {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px; /* Move them slightly lower on mobile */
    }

    .prev-btn {
        left: calc(50% - 45px); /* Tighter spacing for smaller buttons */
    }

    .next-btn {
        right: calc(50% - 45px); /* Tighter spacing for smaller buttons */
    }
}

/* Hero Tagline Section */
.hero-tagline {
    text-align: center;
    padding: 2rem 2rem 0;
    /* Reduced margin further */
    background: linear-gradient(to bottom, #ced4da, var(--bg-color));
}

.hero-tagline h2 {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    /* Larger font size */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Underline removed as per user request */

/* Responsive adjustment for tagline */
@media (max-width: 768px) {
    .hero-tagline h2 {
        font-size: 2rem;
        padding-top: 2rem;
    }
}

/* =========================================
   Service Elements Tiles (Common Repairs)
   ========================================= */
.service-elements-section {
    padding: 60px 5%;
    background-color: var(--bg-color);
    text-align: center;
}

.service-elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1); /* Darker border for light theme tiles */
    border-radius: 16px;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* Subtle glow effect on hover */
.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-tile:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(37, 99, 235, 0.4);
}

.service-tile:hover::before {
    opacity: 1;
}

.service-tile-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 5px;
    z-index: 1;
}

.service-tile:hover .service-tile-icon {
    transform: scale(1.25);
}

.service-tile h3 {
    font-size: 1rem;
    color: #000000;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
    z-index: 1;
    line-height: 1.3;
}

/* =========================================
   Content Text Section (SEO & Info)
   ========================================= */
.content-text-section {
    padding: 40px 5% 80px;
    background-color: var(--bg-color);
    max-width: max-content; gap: 40px;
    margin: 0 auto;
    text-align: left;
}

.content-text-section h2 {
    color: #fca5a5;
    /* Using a soft red/orange tone similar to the provided image accent or complementary to blue */
    /* Alternatively, use var(--primary-color) for consistency. Let's stick to a nice accent. */
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.content-text-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.content-text-section h3 {
    color: #000000;
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-text-section p {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

/* =========================================
   Blog Section Styling
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 5%;
}

.blog-card {
    background: #ffffff; /* Solid white card */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Darker border for light theme tiles */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--accent-color);
    background-color: #f1f5f9; /* Light fallback */
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    align-self: flex-start;
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.read-more-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

/* Services Section */
.services-section {
    padding: 0 5% 4rem;
    position: relative;
    z-index: 10; /* Above the animated background */
}

.section-title {
    font-family: var(--font-accent);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(37, 99, 235, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.card-image {
    height: 180px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .card-image {
    transform: scale(1.05);
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
}

.card-actions {
    position: relative;
    z-index: 10;
    margin-top: auto;
}

/* Show More functionality for Services */
.show-more-container {
    display: flex; /* Visible by default on all screens */
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.show-more-btn {
    background: rgba(255, 255, 255, 0.05); /* Translucent base */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--text-color);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.services-grid.collapsed .service-card:nth-child(n+5) {
    display: none !important;
}

.location-grid.collapsed .location-tile:nth-child(n+5) {
    display: none !important;
}

@media (max-width: 900px) {
    .services-grid.collapsed .service-card:nth-child(n+3) {
        display: none !important;
    }
    .location-grid.collapsed .location-tile:nth-child(n+3) {
        display: none !important;
    }
}

/* Customer Reviews Section */
.reviews-section {
    padding: 1rem 5%;
    background-color: var(--bg-color);
}

.company-section {
    padding: 0 5% 0;
    /* Zero bottom padding */
    background-color: var(--bg-color);
}

.company-section .section-title {
    margin-bottom: 0.5rem;
    /* Minimal margin remains */
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: shine 5s linear infinite;
    background-size: 200% auto;
    letter-spacing: 1px;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.reviews-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-color);
    -webkit-overflow-scrolling: touch;
}

.reviews-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
    background: var(--bg-color);
}

.reviews-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 20px;
}

.review-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1); /* Darker border for light theme tiles */
    border-radius: 15px;
    padding: 1.5rem;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.review-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-card:hover .review-image img {
    transform: scale(1.05);
}

.review-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.review-content p {
    font-style: italic;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.review-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: auto;
}


/* Contact Section */
/* Contact Section */
.contact-section {
    padding: 0 5% 3rem;
    /* Removed top padding */
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.contact-section .section-title {
    margin-bottom: 1rem;
    /* Further reduced margin */
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(37, 99, 235, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.contact-form-wrapper {
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Darker border for light theme tiles */
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Darker border for light theme tiles */
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #000000;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
}

/* Response for mobile */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-image {
        order: -1;
        /* Image on top */
        max-width: 300px;
        margin: 0 auto;
    }
}


/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    /* Vertical stack */
    gap: 15px;
}

.contact-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contact-float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.contact-float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.contact-float-btn:hover::before {
    opacity: 1;
}

.whatsapp-float {
    background-color: #25D366;
}

.phone-float {
    background-color: #2563eb;
}

@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .contact-float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Footer Section */
.site-footer {
    background-color: #f8fafc; /* Ultra-light gray for light theme footer */
    color: #000000; /* Near black for light theme */
    padding: 3rem 5% 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 2rem;
}

.footer-brand {
    font-size: 1.8rem;
    color: #ff6b00;
    /* Orange accent */
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-desc {
    color: #000000; /* Darker gray for light theme footer */
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 600px;
}

.footer-contact-column {
    text-align: right;
}

.contact-label {
    color: #ff6b00;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-number {
    display: block;
    color: #000000; /* Near black for light theme */
    font-size: 2.5rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1rem;
}

.contact-info {
    color: #000000; /* Darker gray for light theme footer */
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-links-section {
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: #ff6b00;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
}

.footer-links-list li a {
    color: #000000; /* Near black for light theme */
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links-list li a:hover {
    color: #ff6b00;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #000000; /* Medium gray */
    font-size: 0.9rem;
}

.privacy-link {
    display: block;
    color: #007bff;
    text-decoration: none;
    margin: 0.5rem 0;
}

.disclaimer {
    font-size: 0.8rem;
    color: #000000; /* Lighter dark gray */
    margin-top: 1rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-column {
        text-align: center;
    }

    .contact-number {
        font-size: 2rem;
    }
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tech-whatsapp-link {
    display: block;
    position: relative;
    cursor: pointer;
}

.service-name-overlay {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(37, 99, 235, 0.9);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
    width: 90%;
    text-align: center;
}

/* =========================================
   Horizontal Review Slider
   ========================================= */
.review-slider-section {
    padding: 60px 5%;
    background: linear-gradient(to bottom, var(--bg-color), #f8fafc); /* Light gradient */
    text-align: center;
    overflow: hidden;
}

.review-slider-container {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 5px 40px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    max-width: 1400px;
    margin: 0 auto;
}

.review-slider-container::-webkit-scrollbar {
    display: none;
}

.review-slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.review-slide-card {
    flex: 0 0 350px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Darker border for light theme tiles */
    border-radius: 16px;
    padding: 30px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-align: left;
    height: 300px;
    position: relative;
    user-select: none;
}

.review-slide-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.review-slide-card .stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.review-slide-card p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-slide-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-slide-card h4::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

@media (max-width: 600px) {
    .review-slide-card {
        flex: 0 0 85vw;
        height: auto;
        min-height: 250px;
    }
}

/* Location Page Static Banner */
.page-header {
    margin-top: 100px !important;
}

.location-hero {
    position: relative;
    width: 100%;
    margin-top: 60px;
    /* Account for fixed navbar */
    height: 75vh;
    /* 75% of viewport height as requested */
    overflow: hidden;
}

.location-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* Cover ensures it fills 75vh while maintaining aspect ratio, or 'contain' if they want full image visible but with gaps. 'fit' usually implies covering headers */
    object-position: center;
}

.location-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    width: 90%;
    z-index: 2;
}

.location-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
}

.location-overlay h1 {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-overlay p {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .location-overlay h1 {
        font-size: 2rem;
    }
}

/* Location Tiles Strings */
.location-tiles-section {
    padding: 60px 5%;
    background: var(--bg-color);
    text-align: center;
}

.location-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.location-grid::-webkit-scrollbar {
    height: 6px;
}
.location-grid::-webkit-scrollbar-track {
    background: transparent;
}
.location-grid::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 4px;
}

.location-tile {
    flex: 0 0 auto;
    min-width: 150px;
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.1); /* Darker border for light theme tiles */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.location-tile:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.location-tile i {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--accent-color);
    transition: var(--transition);
}

.location-tile:hover i {
    color: var(--text-color);
}

.location-tile span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* =========================================
   Location Content Sections
   ========================================= */
.location-content-section {
    padding: 50px 5%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.location-content-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.location-content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.location-content-section p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 15px;
}

/* Services List */
.location-services-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.location-services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.location-services-list li:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.location-services-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 24px;
    transition: color 0.3s ease;
}

.location-services-list li:hover i {
    color: #fff;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 15px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.brand-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.brand-item:hover i {
    color: #fff;
}

/* Why Choose Us Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.why-choose-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.why-choose-item i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-choose-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.why-choose-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

/* Nearby Areas List */
.nearby-areas-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.nearby-areas-list li a {
    display: inline-block;
    padding: 10px 22px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nearby-areas-list li a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 30px auto 0;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    background: #f8fafc;
    border: none;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #eef2ff;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px;
}

.faq-answer p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 0;
}

/* CTA Section */
.location-cta-section {
    padding: 60px 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.location-cta-section h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.location-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.cta-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #fff;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f0f0ff;
}

.cta-call-btn i {
    font-size: 1.3rem;
}

/* Mobile responsive for location content */
@media (max-width: 768px) {
    .location-content-section h2 {
        font-size: 1.6rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }

    .location-cta-section h2 {
        font-size: 1.8rem;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   SERVICE AREAS SECTION — City Location Pages
   ============================================================ */

.service-areas-section {
    padding: 60px 5%;
    background: linear-gradient(135deg, #f0f4ff 0%, #fafaff 100%);
    position: relative;
    overflow: hidden;
}

.service-areas-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.service-areas-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.service-areas-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-areas-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.service-areas-header p {
    font-size: 1rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Base pill button */
.area-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-body);
    text-decoration: none;
    border: 1.5px solid #c7d2fe;
    background: #ffffff;
    color: #3730a3;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(99,102,241,0.08);
    position: relative;
    overflow: hidden;
}

.area-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    opacity: 0;
    transition: opacity 0.22s ease;
    border-radius: inherit;
}

.area-btn:hover {
    border-color: #6366f1;
    color: #ffffff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(99,102,241,0.28);
}

.area-btn:hover::before {
    opacity: 1;
}

.area-btn span {
    position: relative;
    z-index: 1;
}

.area-btn i {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Popular badge variant */
.area-btn.popular {
    border-color: #6366f1;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(99,102,241,0.30);
}

.area-btn.popular::before {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
}

.area-btn.popular:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(99,102,241,0.40);
}

.popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 7px;
    border-radius: 20px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Schema itemList wrapper */
.service-areas-section [itemscope] {
    display: contents;
}

/* Responsive */
@media (max-width: 600px) {
    .service-areas-section {
        padding: 40px 4%;
    }

    .service-areas-grid {
        gap: 10px;
    }

    .area-btn {
        font-size: 0.82rem;
        padding: 9px 16px;
    }

    .service-areas-header h2 {
        font-size: 1.4rem;
    }
}
