/* Hide Google Translate original UI */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

:root {
    --primary-color: #ff6b00;
    /* Safety Orange */
    --primary-dark: #e65100;
    --secondary-color: #0d1b2a;
    /* Dark Industrial Blue */
    --accent-color: #00bcd4;
    /* Cyan/Water */
    --text-color: #333333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Nav */
/* Top Header for Languages */
.top-header {
    background: #0d1218;
    color: var(--white);
    padding: 0.5rem 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.lang-selector {
    display: flex;
    gap: 12px;
    align-items: center;
}

.lang-btn {
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: white !important;
    font-weight: 600;
}

.lang-btn:hover {
    opacity: 1;
    color: var(--primary-color) !important;
}

.lang-btn.active {
    opacity: 1;
    color: var(--primary-color) !important;
    border-bottom: 1px solid var(--primary-color);
}

header {
    background: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 31px;
    /* Height of top-header */
    z-index: 1000;
    width: 100%;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 0;
}

.logo-hex {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.logo-hex i {
    color: white;
    font-size: 1.4rem;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-hex::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    background: var(--secondary-color);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 1;
    transition: all 0.4s ease;
}

.logo a:hover .logo-hex {
    transform: rotate(180deg);
}

.logo a:hover .logo-hex i {
    transform: rotate(-180deg);
    color: var(--primary-color);
}

.logo a:hover .logo-hex::before {
    background: white;
}

.logo-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 0.8;
    display: block;
    text-transform: uppercase;
}

.brand-accent {
    color: var(--primary-color);
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.65em;
    /* Increased tracking for 'extended' look */
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.9;
    border-top: 2px solid var(--primary-color);
    padding-top: 5px;
    width: 100%;
    display: block;
    text-align: center;
    white-space: nowrap;
}

/* Add a vertical separator for a more structured look on desktop */
@media (min-width: 992px) {
    .logo-badge {
        margin-right: 5px;
    }
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    /* Hidden by default */
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.menu-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.nav-links {
    align-items: center;
    display: flex;
    gap: 2rem;
    list-style: none;
    transition: var(--transition);
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 800;
    transition: var(--transition);
    animation: pulse-blue 2s infinite;
}

.btn-cta:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    /* Background image moved to HTML for LCP */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    margin-top: 0;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    /* Img tag is used in HTML for priority, but keeping this class for styling */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.5));
    z-index: -1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.hero-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Services Preview */
.services-preview {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section-title .bar {
    height: 4px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-group h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}
.service-content h3 {
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-content h3::after {
    width: 80px;
}

.service-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Why Us */
.why-us {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 5%;
    background-color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stars {
    color: #ffc107;
    /* Star yellow */
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    border: 2px solid #eee;
}

.review-author span {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.google-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--white);
    color: #1a73e8;
    border: 2px solid #1a73e8;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.google-btn:hover {
    background-color: #1a73e8;
    color: var(--white);
}

/* Google Reviews Container */
.google-reviews-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.reviews-widget {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.google-logo {
    font-size: 3rem;
    color: #4285F4;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.rating-summary {
    text-align: center;
}

.stars-large {
    color: #ffc107;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
}

.rating-text {
    font-size: 1.1rem;
    color: #444;
    font-weight: 700;
    margin: 0;
}

/* Mega Menu Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 600px;
    /* Wide dropdown */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    padding: 20px;
    border-radius: 8px;
    left: 50%;
    transform: translateX(-50%);
    /* Center align */
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 20px;
    border-top: 4px solid var(--primary-color);
}

.dropdown-content .column {
    display: flex;
    flex-direction: column;
}

.dropdown-content .nav-heading {
    color: var(--primary-color);
    margin-bottom: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 8px 0;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown-content a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    background-color: transparent;
    /* Override nav hover */
}

/* Enable hover on desktop */
.dropdown:hover .dropdown-content {
    display: grid;
}

/* Mobile/Tablet Responsive Styles */
@media (max-width: 768px) {
    .top-header {
        justify-content: center;
        padding: 0.5rem;
    }

    .lang-selector {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .navbar {
        flex-direction: row;
        /* Keep logo and menu btn in row */
        justify-content: space-between;
        padding: 1rem;
    }

    .menu-btn {
        display: block;
        /* Show hamburger */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding-top: 60px;
        /* Space for close button if needed */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
    }

    /* Mobile Dropdown (Accordion Style) */
    .dropdown {
        display: block;
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        display: none;
        position: static;
        width: 100%;
        min-width: 100%;
        left: auto;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        padding: 10px;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    /* Disable hover on mobile to prevent conflict */
    .dropdown:hover .dropdown-content {
        display: none;
    }

    /* JS toggles .active on .dropdown parent */
    .dropdown.active .dropdown-content {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .dropdown-content .column {
        margin-bottom: 0;
    }

    .dropdown-content a {
        color: #ddd;
        padding: 8px;
        font-size: 0.9rem;
    }

    .widget-header {
        flex-direction: column;
        gap: 1rem;
    }

    .google-logo {
        font-size: 2.5rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    .back-to-top {
        bottom: 130px;
        font-size: 0.9rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Speed Index Optimization: Content Visibility */
.defer-render {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

/* Quick Call Button */
.call-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #e53935;
    color: var(--white);
    border-radius: 50px;
    padding: 0 20px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-red 2s infinite;
}

.call-btn:hover {
    transform: translateY(-3px);
    background-color: #c62828;
    color: var(--white);
}

.call-btn i {
    font-size: 1.4rem;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(229, 57, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

@media (max-width: 768px) {
    .call-btn {
        bottom: 15px;
        left: 15px;
        height: 50px;
        padding: 0 15px;
        font-size: 1rem;
    }
    .call-btn i {
        font-size: 1.2rem;
    }
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}


/* Homepage All Services List */
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-group {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: var(--transition);
    overflow: hidden;
}

.service-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-img {
    width: 100%;
    height: 200px;
    /* Aligned to main service cards */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-group h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.service-group ul {
    list-style: none;
}

.service-group li {
    margin-bottom: 0.8rem;
}

.service-group a {
    color: #555;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.service-group a::before {
    content: "\f054";
    /* FontAwesome chevron-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-right: 10px;
    transition: margin-right 0.3s;
}

.service-group a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    background-color: transparent;
}

.service-group a:hover::before {
    margin-right: 15px;
}

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
    color: white;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Fleet Gallery */
.fleet-section {
    padding: 5rem 5%;
    background-color: var(--white);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.fleet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-item:hover img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(13, 27, 42, 0.8));
    color: white;
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 50%;
}

.fleet-item:hover .fleet-overlay {
    bottom: 0;
}

.fleet-overlay span {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 150px;
    right: 30px;
    background-color: var(--secondary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: none;
    /* Shown via JS */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background-color: var(--primary-color);
}

/* FAQ Section Styling */
.faq-section {
    padding: 5rem 5%;
    background-color: #fcfcfc;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    list-style: none;
    /* Hide default arrow */
    outline: none;
}

/* Hide default arrow in Webkit */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Restored Styles */
/* Service Areas */
.areas-section {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.areas-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.area-group {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.area-group h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-group ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.area-group ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: #555;
}

.area-group ul li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.areas-footer-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.areas-footer-cta .hero-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* Contact Footer */
footer {
    background-color: #08111a;
    color: #cccccc;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-info li {
    list-style: none;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.social-icon.facebook:hover {
    background-color: #1877F2;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.twitter:hover {
    background-color: #000000;
}

.social-icon.linkedin:hover {
    background-color: #0A66C2;
}

.social-icon.tiktok:hover {
    background-color: #000000;
    border: 1px solid #333;
}

.social-icon.youtube:hover {
    background-color: #FF0000;
}

/* =========================================
   Desktop Enhancements (Scrollbar & A11y)
   ========================================= */
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Accessibility Focus States */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* =========================================
   Mobile Optimization Overrides
   ========================================= */
@media (max-width: 768px) {

    /* 1. Reduce Section Padding */
    .services-preview,
    .why-us,
    .reviews-section,
    .fleet-section,
    .faq-section,
    .areas-section {
        padding: 3rem 1.5rem;
        /* Reduced from 5rem 5% */
    }

    /* 2. Adjust Font Sizes */
    .hero-content h1 {
        font-size: 1.8rem;
        /* Reduced from 3rem/2rem */
        line-height: 1.2;
    }

    .section-title h2 {
        font-size: 1.8rem;
        /* Reduced from 2.5rem */
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* 3. Reduce Grid Gaps */
    .services-grid,
    .fleet-grid,
    .reviews-grid,
    .features-grid,
    .all-services-grid {
        gap: 1.5rem;
        /* Reduced from 2rem */
    }

    /* 4. Hero Section Height Fix (Mobile Browser Bar) */
    .hero {
        height: 100vh;
        /* Fallback */
        height: 100dvh;
        /* Dynamic Viewport Height */
        min-height: 500px;
        /* Ensure content fits */
    }

    /* 5. Footer Layout Optimization */
    .footer-content {
        grid-template-columns: 1fr;
        /* Stack columns */
        gap: 2rem;
        text-align: center;
        /* Center align on mobile */
    }

    .contact-info li {
        justify-content: center;
        /* Center icons with text */
    }

    .social-links {
        justify-content: center;
    }

    /* 6. General Container Widths */
    .container,
    .services-grid,
    .fleet-grid {
        width: 100%;
        max-width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* 7. Specific adjustments for Areas */
    .areas-container {
        gap: 1.5rem;
    }

    .area-group {
        padding: 1.5rem;
    }

    /* 8. Fix FAQ text size */
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* Bot-Only SEO Strategy */
.bot-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* =============================================
   REFERENCE SITE IMPROVEMENTS
   ============================================= */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,0,0.2);
    border: 1px solid rgba(255,107,0,0.5);
    color: #ffaa55;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(4px);
}

/* Hero H1 accent color */
.hero-accent {
    color: #ff6b00;
}

/* Hero dual CTA buttons */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn-primary {
    background: var(--primary-color);
    color: #fff !important;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,107,0,0.5);
}

.hero-btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.hero-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* Stats Trust Bar */
.stats-bar {
    background: var(--secondary-color);
    padding: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.4rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover { background: rgba(255,107,0,0.07); }

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Urgency CTA Banner */
.urgency-cta-banner {
    background: linear-gradient(135deg, #1a0a00 0%, #2d1200 100%);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 1.1rem 5%;
}

.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-size: 1rem;
}

.urgency-text i { color: var(--primary-color); font-size: 1.3rem; flex-shrink: 0; }

.urgency-call-btn {
    background: var(--primary-color);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    animation: pulse-cta 2s infinite;
}

.urgency-call-btn:hover { background: var(--primary-dark); transform: scale(1.04); }

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255,107,0,0); }
}

/* Pill-style district grid */
.areas-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 0 5%;
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--secondary-color) !important;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.area-pill i { color: var(--primary-color); font-size: 0.75rem; }

.area-pill:hover {
    background: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,107,0,0.3);
}

.area-pill:hover i { color: #fff; }

.area-pill-more {
    background: var(--secondary-color);
    color: #fff !important;
    border-color: var(--secondary-color);
}

.area-pill-more:hover { background: #1e3a5f; border-color: #1e3a5f; }

/* Floating Dual CTA Buttons */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    z-index: 9999;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.float-btn i { font-size: 1.1rem; }

.float-btn:hover { transform: scale(1.06); }

.float-phone {
    background: var(--primary-color);
    box-shadow: 0 6px 20px rgba(255,107,0,0.4);
    animation: pulse-cta 2.5s infinite;
}

.float-whatsapp {
    background: #25D366;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }

    .urgency-inner { flex-direction: column; text-align: center; }
    .urgency-text { flex-direction: column; gap: 0.4rem; }

    .hero-cta-group { flex-direction: column; }
    .hero-btn-primary, .hero-btn-whatsapp { justify-content: center; }

    .float-btn span { display: none; }
    .float-btn { width: 55px; height: 55px; padding: 0; justify-content: center; align-items: center; border-radius: 50%; }
    .float-btn i { font-size: 1.5rem; display: block; margin: 0; }
    .floating-cta { bottom: 1.2rem; right: 1rem; gap: 0.6rem; }
    
    .areas-pill-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 0.5rem;
    }
    .area-pill {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
}

/* --- Reels Section --- */
.reels-section {
    padding: var(--spacing-xl) 0;
    background: #111;
    color: #fff;
}
.reels-section .section-title { color: #fff; }
.reels-section .section-desc { color: #aaa; }
.reels-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 30px;
}
.reels-container::-webkit-scrollbar { height: 8px; }
.reels-container::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }
.reels-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background-image: url('../assets/pattern.svg');
    background-size: cover;
}
.reels-video {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.reels-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    text-align: left;
}
.reels-overlay-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.reels-overlay-date {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
}
/* SEO Long Form Article Section */
.seo-long-form-wrapper {
    background-color: #f8f9fa;
    padding: 3rem 1rem;
    margin: 2rem 0;
}
.seo-long-form {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    color: #444;
    line-height: 1.85;
}
.seo-long-form h1, .seo-long-form h2, .seo-long-form h3, .seo-long-form h4 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}
.seo-long-form h1 {
    font-size: 2.2rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
    letter-spacing: -0.5px;
}
.seo-long-form h2 { font-size: 1.8rem; }
.seo-long-form h3 { font-size: 1.5rem; color: #333; }
.seo-long-form h4 { font-size: 1.25rem; color: #555; }
.seo-long-form p { margin-bottom: 1.5rem; font-size: 1.05rem; }
.seo-image-wrap { margin: 2.5rem 0; text-align: center; }
.seo-image-wrap img { width: 100%; max-width: 800px; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); height: auto; object-fit:cover; }

/* References / Marquee Section */
.references-section {
    padding: 5rem 0;
    background: var(--light-bg);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bg), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 3rem;
    animation: scroll-marquee 90s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.reference-card {
    background: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: var(--primary-color);
}

.reference-card i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(255,102,0,0.1);
    padding: 1rem;
    border-radius: 50%;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.5rem)); }
}

@media (max-width: 768px) {
    .reference-card {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    .reference-card i {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    .marquee-container::before,
    .marquee-container::after {
        width: 50px;
    }
}
