/* =========================================
   WL AUTO Solutions — v3.0
   Black & Gold / Bold / Animated
   ========================================= */

:root {
    --bg: #0c0c10;
    --bg-card: #141418;
    --bg-card-hover: #1c1c22;
    --bg-elevated: #18181e;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text: #f5f5f0;
    --text-2: #b0b0a8;
    --text-3: #7a7a72;
    --accent: #D4AF37;
    --accent-2: #F5D061;
    --accent-rgb: 212, 175, 55;
    --accent-2-rgb: 245, 208, 97;
    --glow: rgba(var(--accent-rgb), 0.15);
    --glow-strong: rgba(var(--accent-rgb), 0.3);
    --gradient: linear-gradient(135deg, var(--accent), var(--accent-2));
    --font: 'Outfit', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --header-h: 72px;
    --container: 1200px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(var(--accent-rgb), 0.05);
    --shadow-glow: 0 0 40px rgba(var(--accent-rgb), 0.35), 0 0 80px rgba(var(--accent-2-rgb), 0.2);
}


/* Reset */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}


/* Layout */

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

.container--narrow {
    max-width: 800px;
}

.section {
    padding: 120px 0;
    position: relative;
}


/* Section header */

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__tag {
    display: inline-block;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 16px;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    background: rgba(var(--accent-rgb), 0.05);
}

.section__title {
    font-family: var(--font);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.section__sub {
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 550px;
    margin: 0 auto;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn i,
.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--glow {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.2), 0 0 60px rgba(var(--accent-2-rgb), 0.1);
}

.btn--glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.35), 0 0 80px rgba(var(--accent-2-rgb), 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.05);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}


/* ========== HEADER ========== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(12, 12, 16, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.header--scrolled {
    border-bottom-color: var(--border);
    background: rgba(12, 12, 16, 0.95);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-family: var(--font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bg);
    background: var(--gradient);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    letter-spacing: -0.03em;
}

.logo-text {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.logo-dim {
    font-weight: 500;
    color: var(--text-3);
    margin-left: 2px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font);
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-2);
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link--active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link--glow {
    background: var(--gradient);
    color: #fff !important;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    margin-left: 8px;
}

.nav-link--glow:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    background: var(--gradient);
}


/* Burger */

.header__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* ========== HERO ========== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}

.hero__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 20% 80%, rgba(var(--accent-2-rgb), 0.06) 0%, transparent 50%), radial-gradient(ellipse 40% 40% at 80% 20%, rgba(var(--accent-rgb), 0.05) 0%, transparent 40%);
}

.hero__noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-2);
    background: rgba(var(--accent-rgb), 0.05);
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero__title {
    font-family: var(--font);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-3);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.hero__scroll-indicator span {
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-3);
}


/* ========== STATS ========== */

.stats {
    position: relative;
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat__value {
    font-family: var(--font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.stat__label {
    font-size: 0.85rem;
    color: var(--text-3);
    font-weight: 500;
}


/* ========== SERVICES ========== */

.services__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.s-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.s-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.03), rgba(var(--accent-2-rgb), 0.02));
    opacity: 0;
    transition: opacity 0.4s;
}

.s-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-rgb), 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(var(--accent-rgb), 0.05);
}

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

.s-card--hot {
    border-color: rgba(var(--accent-rgb), 0.25);
}

.s-card__ribbon {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--gradient);
    color: #fff;
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.s-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.s-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 14px;
    color: var(--accent);
    flex-shrink: 0;
}

.s-card__icon i,
.s-card__icon svg {
    width: 22px;
    height: 22px;
}

.s-card__title {
    font-family: var(--font);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}

.s-card__desc {
    font-size: 0.9rem;
    color: var(--text-3);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.s-card__list {
    flex: 1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.s-card__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-2);
    padding: 5px 0;
}

.s-card__list li i,
.s-card__list li svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.s-card__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s, color 0.3s;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.s-card__cta i,
.s-card__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.s-card__cta:hover {
    gap: 12px;
}

.s-card__cta:hover i,
.s-card__cta:hover svg {
    transform: translateX(4px);
}


/* ========== ABOUT ========== */

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about__img-wrapper {
    position: relative;
}

.about__img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    overflow: hidden;
}

.about__img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), rgba(var(--accent-2-rgb), 0.03));
    border-radius: var(--radius-lg);
}

.about__img-placeholder i,
.about__img-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.3;
}

.about__float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-hover);
    border-radius: 14px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    z-index: 2;
}

.about__float-card i,
.about__float-card svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.about__float-card--1 {
    top: 12%;
    right: -20px;
    animation: float-1 4s ease-in-out infinite;
}

.about__float-card--2 {
    bottom: 15%;
    left: -20px;
    animation: float-2 5s ease-in-out infinite;
}

@keyframes float-1 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes float-2 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.about__text {
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about__chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.chip {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s;
}

.chip:hover {
    border-color: rgba(var(--accent-rgb), 0.2);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.chip i,
.chip svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.chip strong {
    display: block;
    font-family: var(--font);
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 2px;
}

.chip small {
    font-size: 0.78rem;
    color: var(--text-3);
    line-height: 1.4;
}


/* ========== GALLERY ========== */

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.gallery__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
    background: var(--bg-card);
    border: 1px dashed var(--border-hover);
    border-radius: var(--radius-lg);
    color: var(--text-3);
}

.gallery__empty i,
.gallery__empty svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    opacity: 0.3;
}

.gallery__empty code {
    background: var(--bg-elevated);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid var(--border);
}

.gallery__item img,
.gallery__item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img,
.gallery__item:hover video {
    transform: scale(1.08);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__foot {
    text-align: center;
}


/* ========== REVIEWS ========== */

.reviews__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.review-card__stars {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-card blockquote {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-card__author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
}

.review-card__author span {
    font-size: 0.78rem;
    color: var(--text-3);
}


/* ========== ZONES ========== */

.zones__cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.zone-pill {
    display: inline-block;
    padding: 10px 20px;
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-2);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: all 0.3s;
    cursor: default;
    animation: zone-float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.zone-pill:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.1);
}

@keyframes zone-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}


/* ========== FAQ ========== */

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item[open] {
    border-color: rgba(var(--accent-rgb), 0.2);
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.04);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-item__icon span {
    position: absolute;
    background: var(--text-3);
    border-radius: 2px;
    transition: all 0.3s;
}

.faq-item__icon span:first-child {
    top: 50%;
    left: 4px;
    right: 4px;
    height: 2px;
    transform: translateY(-50%);
}

.faq-item__icon span:last-child {
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 2px;
    transform: translateX(-50%);
}

.faq-item[open] .faq-item__icon span:last-child {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item[open] .faq-item__icon span:first-child {
    background: var(--accent);
}

.faq-item__body {
    padding: 0 24px 24px;
}

.faq-item__body p {
    color: var(--text-2);
    line-height: 1.8;
}


/* ========== CONTACT ========== */

.contact {
    background: var(--bg-card) !important;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact__sub {
    color: var(--text-3);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact__infos {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-2);
    text-decoration: none;
    transition: color 0.2s;
}

a.contact-row:hover {
    color: var(--accent);
}

.contact-row i,
.contact-row svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.contact__socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-2);
    transition: all 0.3s;
}

.social-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.1);
}


/* Form */

.contact__form {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

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

.form-field {
    position: relative;
    margin-bottom: 20px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: all 0.3s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--glow);
}

.form-field label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 0.9rem;
    color: var(--text-3);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 4px;
}

.form-field input:focus~label,
.form-field input:not(:placeholder-shown)~label,
.form-field textarea:focus~label,
.form-field textarea:not(:placeholder-shown)~label {
    top: -8px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--accent);
    background: var(--bg-elevated);
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%236b6b80' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-status {
    margin-top: 16px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-status--success {
    color: #22c55e;
}

.form-status--error {
    color: #ef4444;
}

.spin {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ========== FOOTER ========== */

.footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--border);
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.footer__tagline {
    font-size: 0.88rem;
    color: var(--text-3);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-size: 0.85rem;
    color: var(--text-3);
    transition: color 0.2s;
}

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

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__socials a {
    color: var(--text-3);
    transition: all 0.2s;
}

.footer__socials a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer__copy {
    font-size: 0.78rem;
    color: var(--text-3);
    opacity: 0.6;
}


/* ========== LIGHTBOX ========== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
    overflow: hidden;
}

.lightbox__content img,
.lightbox__content video {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.12);
}


/* ========== ANIM CLASSES ========== */

[data-anim] {
    opacity: 0;
    transform: translateY(40px);
}

.hero [data-anim] {
    transform: none;
}

[data-anim="scale"] {
    transform: scale(0.92);
}

[data-anim].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.8s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim="stagger"].is-visible {
    transition-delay: calc(var(--i, 0) * 0.1s);
}


/* ========== GALLERY VIDEO ========== */

.gallery__video {
    margin-bottom: 40px;
}

.gallery__video-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    max-height: 500px;
    border: 1px solid var(--border);
}

.gallery__video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.gallery__video-item:hover .gallery__video-overlay {
    opacity: 0;
}

.gallery__video-overlay span {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}


/* ========== VEHICLE CARDS ========== */

.gallery__vehicles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.vehicle-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(var(--accent-rgb), 0.08);
}

.vehicle-card__img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.vehicle-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-card__img img {
    transform: scale(1.06);
}

.vehicle-card__count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
}

.vehicle-card__info {
    padding: 20px;
}

.vehicle-card__name {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.vehicle-card__desc {
    font-size: 0.85rem;
    color: var(--text-3);
    margin-bottom: 12px;
    line-height: 1.5;
}

.vehicle-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vehicle-tag {
    display: inline-block;
    padding: 4px 12px;
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}


/* ========== VEHICLE MODAL ========== */

.vehicle-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.vehicle-modal.active {
    opacity: 1;
    pointer-events: all;
}

.vehicle-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
}

.vehicle-modal__content {
    position: relative;
    z-index: 1;
    width: 95vw;
    max-width: 1100px;
    max-height: 90vh;
    background: var(--bg-elevated);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 36px;
    overflow-y: auto;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vehicle-modal.active .vehicle-modal__content {
    transform: translateY(0) scale(1);
}

.vehicle-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.vehicle-modal__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.vehicle-modal__title {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.vehicle-modal__desc {
    color: var(--text-3);
    margin-bottom: 16px;
}

.vehicle-modal__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.vehicle-modal__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.vm-photo {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.vm-photo:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vm-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.vm-photo:hover img {
    transform: scale(1.04);
}


/* ========== ABOUT WALID IMAGE ========== */

.about__img-placeholder img {
    position: relative;
    z-index: 1;
}


/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .services__track {
        grid-template-columns: repeat(2, 1fr);
    }
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about__visual {
        max-width: 400px;
        margin: 0 auto;
    }
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--bg-card);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--header-h) + 24px) 24px 24px;
        border-left: 1px solid var(--border);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .header__nav.open {
        transform: translateX(0);
    }
    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
    .nav-link--glow {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        border-bottom: none;
    }
    .header__burger {
        display: flex;
    }
    .services__track {
        grid-template-columns: 1fr;
    }
    .reviews__track {
        grid-template-columns: 1fr;
    }
    .about__chips {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .stats__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .footer__top,
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .gallery__vehicles {
        grid-template-columns: 1fr;
    }
    .vehicle-modal__content {
        padding: 24px 16px;
    }
    .vehicle-modal__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery__vehicles {
        grid-template-columns: 1fr;
    }
    .vehicle-modal__gallery {
        grid-template-columns: 1fr;
    }
}

@media print {
    .header,
    .hero__particles,
    .hero__scroll-indicator {
        display: none !important;
    }
    body {
        background: #fff;
        color: #000;
    }
    .section {
        padding: 24px 0;
    }
}