:root {
    /* Colors */
    --clr-black: #050505;
    --clr-soft-black: #0a0a0a;
    --clr-charcoal: #121212;
    --clr-white: #FFFFFF;
    --clr-off-white: #F5F5F2;
    --clr-muted: #A0A0A0;
    --clr-border: rgba(255, 255, 255, 0.1);
    --clr-accent: #C8A24A;
    --clr-accent-glow: rgba(200, 162, 74, 0.3);

    /* Fonts */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing & Sizes */
    --max-width: 1280px;
    --nav-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-black);
    color: var(--clr-off-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    body {
        padding-bottom: 0;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-white);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(42px, 6vw, 76px);
}

h2 {
    font-size: clamp(32px, 4vw, 52px);
}

h3 {
    font-size: clamp(22px, 2.5vw, 28px);
}

h4 {
    font-size: clamp(18px, 2vw, 22px);
}

p {
    color: var(--clr-muted);
    margin-bottom: 1rem;
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.7;
}

a {
    color: var(--clr-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--clr-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

.section-padding {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 140px 0;
    }
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-base);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background-color: var(--clr-white);
    color: var(--clr-black);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
    background-color: #fdfdfd;
}

.btn-transparent-white {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-transparent-white:hover {
    background-color: var(--clr-white);
    color: var(--clr-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Header & Nav */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 100;
    transition: background-color var(--transition-base), padding var(--transition-base), border-color var(--transition-base);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
}

#main-header.scrolled {
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-base), filter var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.desktop-nav {
    display: none;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
}

.desktop-nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: width var(--transition-base);
}

.desktop-nav a:hover::after {
    width: 100%;
}

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

.phone-link {
    display: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    position: relative;
}

.phone-link::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--clr-accent);
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--clr-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--clr-accent-glow);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(200, 162, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(200, 162, 74, 0);
    }
}

.header-actions .btn-primary {
    display: none;
    padding: 12px 28px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--clr-white);
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .header-actions {
        gap: 32px;
    }

    .desktop-nav {
        display: block;
    }

    .phone-link {
        display: block;
    }

    .header-actions .btn-primary {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin-bottom: 32px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(to right, var(--clr-white), var(--clr-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-bottom-actions {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.7s;
}

.mobile-menu-overlay.active .mobile-bottom-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: var(--nav-height);
    padding-bottom: 64px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 100vh;
        flex-direction: row;
        padding-top: var(--nav-height);
        padding-bottom: 0;
    }
}

.hero-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    max-height: 60vh;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        max-height: none;
        aspect-ratio: auto;
        z-index: -1;
    }
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0) 70%, var(--clr-black) 100%);
}

@media (min-width: 768px) {
    .hero-bg img {
        object-position: center;
    }

    .hero-bg .overlay {
        background: transparent;
    }
}

.hero-content {
    max-width: 850px;
    margin: 0;
    position: relative;
    z-index: 2;
    margin-top: -60px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .hero-content {
        margin-top: 0;
        padding: 0 24px;
    }
}

.hero-content h1 {
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    line-height: 1.25;
}

.hero-content h1 .highlight {
    background: linear-gradient(to right, var(--clr-white), var(--clr-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(18px, 1.5vw, 22px);
    margin-bottom: 40px;
    max-width: 600px;
    color: var(--clr-off-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    width: 100%;
    max-width: 380px;
}

.hero-buttons .btn {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
        max-width: none;
    }

    .hero-buttons .btn {
        width: auto;
        padding: 16px 32px;
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.badge {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--clr-off-white);
    transition: all var(--transition-fast);
}

.badge:hover {
    border-color: var(--clr-accent);
    background: rgba(200, 162, 74, 0.05);
    transform: translateY(-2px);
}

/* Benefits Bar */
.benefits-bar {
    background-color: var(--clr-soft-black);
    padding: 32px 0;
    border-bottom: 1px solid var(--clr-border);
    position: relative;
    z-index: 10;
}

.benefits-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.benefits-container::before,
.benefits-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.benefits-container::before {
    left: 0;
    background: linear-gradient(to right, var(--clr-soft-black), transparent);
}

.benefits-container::after {
    right: 0;
    background: linear-gradient(to left, var(--clr-soft-black), transparent);
}

.benefits-track {
    display: flex;
    flex-shrink: 0;
    gap: 32px;
    padding-right: 32px;
    /* Ensure exact same gap before the next track starts */
    animation: marquee 45s linear infinite;
}

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

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--clr-white);
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all var(--transition-base);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(200, 162, 74, 0.3);
    transform: translateY(-2px);
}

.benefit-item svg {
    color: var(--clr-accent);
    filter: drop-shadow(0 0 8px var(--clr-accent-glow));
    flex-shrink: 0;
}

/* About Section */
.about-section {
    background: radial-gradient(circle at top right, rgba(200, 162, 74, 0.05), transparent 50%), var(--clr-black);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    margin-bottom: 32px;
}

.about-content p {
    font-size: clamp(18px, 1.2vw, 20px);
}

/* Services Section */
.services-section {
    background-color: var(--clr-soft-black);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 64px;
}

.premium-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 56px;
}

.premium-intro .eyebrow {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.premium-intro h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}

.premium-intro p {
    font-size: clamp(15px, 1.5vw, 17px);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.service-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px 24px;
    transition: all var(--transition-base);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(200, 162, 74, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 162, 74, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(200, 162, 74, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(200, 162, 74, 0.05);
    border: 1px solid rgba(200, 162, 74, 0.15);
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

.icon-wrap svg {
    width: 24px;
    height: 24px;
}

.service-card:hover .icon-wrap {
    background: rgba(200, 162, 74, 0.1);
    box-shadow: 0 0 15px rgba(200, 162, 74, 0.2);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.service-card p.service-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.card-link-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--clr-white);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    align-self: flex-start;
    margin-top: auto;
}

.service-card:hover .card-link-minimal {
    background: var(--clr-white);
    color: var(--clr-black);
    transform: translateX(4px);
}

/* Eco Clearances Section */
.eco-section {
    position: relative;
    border-top: 1px solid var(--clr-border);
    background-color: var(--clr-black);
    padding-top: 0;
}

.eco-section::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 45vh;
    background: url('assets/van-exterior2.jpg') center/cover no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    margin-bottom: -80px;
    position: relative;
    z-index: 0;
}

@media (min-width: 768px) {
    .eco-section {
        background: url('assets/van-exterior2.jpg') center/cover fixed;
        padding-top: 140px;
    }

    .eco-section::before {
        display: none;
    }
}

.eco-content {
    max-width: 750px;
    background: rgba(10, 10, 10, 0.8);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.eco-content strong {
    color: var(--clr-accent);
}

/* Why Choose Us */
.why-us-section {
    background-color: var(--clr-black);
}

.why-us-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--clr-border);
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
    text-align: left;
    line-height: 1.4;
    max-width: 100%;
}

.why-item:hover {
    border-color: var(--clr-accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(200, 162, 74, 0.15);
    background: linear-gradient(135deg, rgba(200, 162, 74, 0.1), rgba(255, 255, 255, 0.01));
}

/* Process Section */
.process-section {
    background-color: var(--clr-soft-black);
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Connecting Line Base (Mobile) */
.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 31px;
    width: 2px;
    height: calc(100% - 64px);
    background: var(--clr-border);
    z-index: 1;
}

/* Animated Filled Line (Mobile) */
.process-steps::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 31px;
    width: 2px;
    height: 0%;
    background: var(--clr-accent);
    z-index: 1;
    box-shadow: 0 0 10px var(--clr-accent-glow);
    transition: height 1.5s linear 0.2s;
}

.process-steps.active::after {
    height: calc(100% - 64px);
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        text-align: center;
    }

    /* Connecting Line Desktop Override */
    .process-steps::before {
        left: 10%;
        width: 80%;
        height: 2px;
    }

    /* Animated Filled Line Desktop Override */
    .process-steps::after {
        left: 10%;
        width: 0%;
        height: 2px;
        transition: width 1.5s linear 0.2s;
    }

    .process-steps.active::after {
        width: 80%;
        height: 2px;
    }
}

.step {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .step {
        flex-direction: column;
    }
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: var(--clr-black);
    border: 2px solid var(--clr-border);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    flex-shrink: 0;
    transition: border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, transform var(--transition-base);
    box-shadow: 0 0 0 8px var(--clr-soft-black);
}

/* Sequential Fill Animation on scroll */
.step.active .step-number {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    box-shadow: 0 0 0 8px var(--clr-soft-black), 0 0 20px var(--clr-accent-glow);
}

/* Stagger the circles turning gold to match the line filling up */
.step:nth-child(1).active .step-number {
    transition-delay: 0.2s;
}

.step:nth-child(2).active .step-number {
    transition-delay: 0.7s;
}

.step:nth-child(3).active .step-number {
    transition-delay: 1.2s;
}

.step:nth-child(4).active .step-number {
    transition-delay: 1.7s;
}

/* Keep hover fast and add scale */
.step:hover .step-number {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    box-shadow: 0 0 0 8px var(--clr-soft-black), 0 0 20px var(--clr-accent-glow);
    transform: scale(1.1);
    transition-delay: 0s !important;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--clr-black);
}

.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 768px) {
    .gallery-carousel-wrapper {
        padding: 0 60px;
    }
}

.carousel-track-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--clr-border);
    background: var(--clr-soft-black);
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item {
    flex: 0 0 100%;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .carousel-btn:hover {
        background: var(--clr-accent);
        color: var(--clr-black);
        border-color: var(--clr-accent);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 0 20px var(--clr-accent-glow);
    }
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (min-width: 768px) {
    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.indicator-dot.active {
    background: var(--clr-accent);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--clr-accent-glow);
}

/* Coverage Section */
.coverage-section {
    background-color: var(--clr-soft-black);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.coverage-section p {
    max-width: 850px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--clr-charcoal), var(--clr-black));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 162, 74, 0.05) 0%, transparent 50%);
    animation: rotateBg 30s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    100% {
        transform: rotate(360deg);
    }
}

.cta-container {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.reassurance {
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 40px;
    font-size: 18px;
    color: var(--clr-muted);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

/* Contact Section */
.contact-section {
    background-color: var(--clr-black);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.contact-details {
    margin-bottom: 48px;
}

.detail-item {
    margin-bottom: 32px;
    font-size: 16px;
    color: var(--clr-muted);
    display: flex;
    flex-direction: column;
}

.detail-item strong {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
}

.detail-item a {
    color: var(--clr-off-white);
    font-size: 18px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detail-item a:hover {
    color: var(--clr-accent);
}

.map-placeholder {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: filter var(--transition-base);
}

.contact-form-wrap {
    background: linear-gradient(145deg, rgba(24, 24, 24, 0.6), rgba(17, 17, 17, 0.8));
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .contact-form-wrap {
        padding: 56px;
    }
}

.contact-form h3 {
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--clr-muted);
}

input,
select,
textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px rgba(200, 162, 74, 0.1);
}

.form-submit {
    width: 100%;
    margin-top: 24px;
    padding: 20px;
    font-size: 18px;
}

/* Footer */
.main-footer {
    background-color: var(--clr-soft-black);
    padding: 88px 0 36px;
    border-top: 1px solid var(--clr-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 1.6fr 2fr 1fr 1.3fr;
        gap: 56px;
    }
}

/* --- 1. Logo Presence --- */
.footer-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    margin-bottom: 28px;
    filter: drop-shadow(0 0 15px rgba(200, 162, 74, 0.15)) drop-shadow(0 0 30px rgba(200, 162, 74, 0.05));
}

/* --- 3. Left Description Text Rhythm --- */
.footer-col:first-child {
    max-width: 360px;
}

.footer-col:first-child p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.005em;
    color: rgba(160, 160, 160, 0.92);
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--clr-white);
    position: relative;
    padding-bottom: 14px;
    font-weight: 700;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-accent), rgba(200, 162, 74, 0.3));
    border-radius: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.footer-services-grid li {
    margin-bottom: 0 !important;
}

.footer-services-grid a {
    font-size: 14px;
}

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a:not(.btn),
.footer-col p {
    color: var(--clr-muted);
    font-size: 15px;
    transition: color var(--transition-fast);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-col a:not(.btn):hover {
    color: var(--clr-accent);
}

/* --- 2. CTA Button Balance --- */
.footer-btn-primary {
    width: 100%;
    max-width: 240px;
    padding: 16px 28px;
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-btn-secondary {
    width: 100%;
    max-width: 240px;
    padding: 14px 28px;
    font-size: 14px;
}

/* --- 4. Footer Bottom Polish --- */
.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: rgba(160, 160, 160, 0.6);
    letter-spacing: 0.02em;
}

/* Testimonials Section */
.testimonials-section {
    background: radial-gradient(circle at bottom left, rgba(200, 162, 74, 0.04), transparent 50%), var(--clr-soft-black);
    border-top: 1px solid var(--clr-border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(24, 24, 24, 0.8), rgba(17, 17, 17, 0.4));
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 162, 74, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(200, 162, 74, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--clr-accent);
    filter: drop-shadow(0 0 4px var(--clr-accent-glow));
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--clr-off-white);
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--clr-border);
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--clr-white);
}

.author-detail {
    font-size: 14px;
    color: var(--clr-muted);
}

/* FAQ Section */
.faq-section {
    background-color: var(--clr-soft-black);
    border-top: 1px solid var(--clr-border);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(24, 24, 24, 0.6), rgba(15, 15, 15, 0.8));
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(200, 162, 74, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: none;
    border: none;
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
    gap: 16px;
}

.faq-question:hover {
    color: var(--clr-accent);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--clr-muted);
    transition: transform var(--transition-base), color var(--transition-base);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--clr-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 32px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 32px 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--clr-muted);
    margin: 0;
}

/* WhatsApp Header Link */
.whatsapp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #25D366;
    transition: transform var(--transition-fast), color var(--transition-fast), filter var(--transition-fast);
    gap: 2px;
}

.whatsapp-header:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.4));
}

.whatsapp-header svg {
    width: 24px;
    height: 24px;
}

.whatsapp-header span {
    font-size: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sticky Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 95;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--clr-border);
    padding: 12px 12px;
    gap: 8px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.mobile-cta-bar.visible {
    display: flex;
    transform: translateY(0);
}

.mobile-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 14px 12px;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.mobile-cta-call svg {
    width: 18px;
    height: 18px;
}

.mobile-cta-call:hover {
    background: var(--clr-white);
    color: var(--clr-black);
}

.mobile-cta-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 14px 12px;
    border-radius: var(--radius-pill);
    background: var(--clr-white);
    color: var(--clr-black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.mobile-cta-quote:hover {
    background: var(--clr-off-white);
    color: var(--clr-black);
}

@media (min-width: 1024px) {
    .mobile-cta-bar {
        display: none !important;
    }
}