/* ============================================
   Automotion LLC — Custom Styles
   Teal + Slate Grey | Vibrant Modern
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.15);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-800);
    background-color: var(--slate-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Geometric Background Shapes --- */
.geo-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--teal-600);
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--teal-500);
    bottom: 30%;
    left: -100px;
}

.geo-circle--3 {
    width: 250px;
    height: 250px;
    background: var(--teal-400);
    bottom: 10%;
    right: 10%;
}

.geo-diamond {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--teal-600);
    opacity: 0.03;
    transform: rotate(45deg);
}

.geo-diamond--1 {
    top: 40%;
    right: 5%;
}

.geo-diamond--2 {
    top: 70%;
    left: 8%;
    width: 80px;
    height: 80px;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(248, 250, 252, 0.95);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--slate-900);
    transition: var(--transition-fast);
}

.logo:hover {
    color: var(--teal-700);
}

.logo--white {
    color: #fff;
}

.logo--white:hover {
    color: var(--teal-300);
}

.logo__text {
    letter-spacing: -0.02em;
}

/* --- Navigation --- */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--slate-600);
    transition: var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-600);
    transition: var(--transition-base);
}

.nav__link:hover {
    color: var(--teal-700);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--teal-600);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--teal-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.nav__close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    color: var(--slate-600);
    transition: var(--transition-fast);
}

.nav__close:hover {
    color: var(--teal-600);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__bar {
    width: 100%;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--slate-900);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(13, 148, 136, 0.6) 50%,
        rgba(15, 23, 42, 0.8) 100%
    );
}

.hero__geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__geo-block {
    position: absolute;
    opacity: 0.15;
}

.hero__geo-block--1 {
    width: 300px;
    height: 300px;
    background: var(--teal-500);
    border-radius: var(--radius-xl);
    top: 10%;
    right: 5%;
    transform: rotate(12deg);
}

.hero__geo-block--2 {
    width: 180px;
    height: 180px;
    background: var(--teal-400);
    border-radius: 50%;
    bottom: 15%;
    right: 15%;
}

.hero__geo-block--3 {
    width: 100px;
    height: 100px;
    background: var(--teal-300);
    top: 30%;
    right: 25%;
    transform: rotate(30deg);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 120px 24px 80px;
    max-width: 720px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 148, 136, 0.2);
    border: 1px solid rgba(13, 148, 136, 0.4);
    color: var(--teal-300);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero__title-accent {
    color: var(--teal-400);
    position: relative;
}

.hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-300);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-300);
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero__trust-item svg {
    color: var(--teal-400);
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--slate-400);
    font-size: 0.75rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 1;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--teal-400), 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; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-600);
    color: #fff;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.btn--primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: var(--teal-400);
    color: var(--teal-300);
    background: rgba(13, 148, 136, 0.1);
}

.btn--white {
    background: #fff;
    color: var(--teal-700);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn--white-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn--full {
    width: 100%;
}

/* --- Section Shared --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-600);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.text-accent {
    color: var(--teal-600);
}

.section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--slate-500);
    max-width: 560px;
}

.section-header {
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin-top: 16px;
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.service-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--teal-600);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card--teal::before {
    background: var(--teal-600);
}

.service-card--slate::before {
    background: var(--slate-600);
}

.service-card__shape {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.06;
    top: -30px;
    right: -30px;
    transition: var(--transition-base);
}

.service-card--teal .service-card__shape {
    background: var(--teal-600);
}

.service-card--slate .service-card__shape {
    background: var(--slate-600);
}

.service-card:hover .service-card__shape {
    transform: scale(1.3);
    opacity: 0.1;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    background: var(--teal-50);
    color: var(--teal-700);
    transition: var(--transition-base);
}

.service-card--slate .service-card__icon {
    background: var(--slate-100);
    color: var(--slate-700);
}

.service-card:hover .service-card__icon {
    background: var(--teal-600);
    color: #fff;
    transform: scale(1.05);
}

.service-card--slate:hover .service-card__icon {
    background: var(--slate-700);
    color: #fff;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--slate-500);
    margin-bottom: 20px;
}

.service-card__accent-line {
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: var(--teal-600);
    transition: var(--transition-base);
}

.service-card--slate .service-card__accent-line {
    background: var(--slate-500);
}

.service-card:hover .service-card__accent-line {
    width: 64px;
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: #fff;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-geo {
    position: absolute;
    border-radius: var(--radius-lg);
}

.about__image-geo--1 {
    width: 100%;
    height: 100%;
    background: var(--teal-600);
    opacity: 0.1;
    top: 16px;
    left: 16px;
}

.about__image-geo--2 {
    width: 80px;
    height: 80px;
    background: var(--teal-400);
    border-radius: 50%;
    bottom: -20px;
    right: -20px;
    opacity: 0.4;
}

.about__image-wrap img {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.about__content {
    max-width: 480px;
}

.about__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--slate-600);
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-200);
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-700);
}

.about__stat-label {
    font-size: 0.8125rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about__stat-divider {
    width: 1px;
    height: 48px;
    background: var(--slate-200);
    flex-shrink: 0;
}

/* --- Why Us Section --- */
.why-us {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--slate-50);
}

.why-us__inner {
    max-width: 960px;
}

.why-us__content {
    text-align: center;
    margin-bottom: 56px;
}

.why-us__content .section-subtitle {
    margin: 16px auto 0;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal-600);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal-100);
    line-height: 1;
    margin-bottom: 12px;
    transition: var(--transition-base);
}

.why-card:hover .why-card__number {
    color: var(--teal-200);
}

.why-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.why-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--slate-500);
}

/* --- Reviews Section --- */
.reviews {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: #fff;
}

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

.review-card {
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
    position: relative;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal-200);
}

.review-card__quote {
    margin-bottom: 20px;
}

.review-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-700);
    margin-bottom: 24px;
    font-style: italic;
}

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

.review-card__avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-100);
    color: var(--teal-700);
}

.review-card__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--slate-800);
}

/* --- CTA Section --- */
.cta {
    padding: 100px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.cta__geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta__geo-shape {
    position: absolute;
    border-radius: 50%;
}

.cta__geo-shape--1 {
    width: 500px;
    height: 500px;
    background: var(--teal-700);
    opacity: 0.3;
    top: -200px;
    left: -100px;
}

.cta__geo-shape--2 {
    width: 300px;
    height: 300px;
    background: var(--teal-600);
    opacity: 0.2;
    bottom: -100px;
    right: 10%;
}

.cta__geo-shape--3 {
    width: 150px;
    height: 150px;
    background: var(--teal-500);
    opacity: 0.15;
    top: 20%;
    right: 25%;
    border-radius: var(--radius-xl);
    transform: rotate(45deg);
}

.cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta__inner .section-tag {
    color: var(--teal-400);
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.cta__subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--slate-400);
    margin-bottom: 40px;
}

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

/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--slate-50);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--slate-500);
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--teal-50);
    color: var(--teal-700);
    flex-shrink: 0;
}

.contact__detail-label {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-400);
    margin-bottom: 2px;
}

.contact__detail-value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--slate-800);
    line-height: 1.5;
}

.contact__link {
    color: var(--teal-700);
    transition: var(--transition-fast);
}

.contact__link:hover {
    color: var(--teal-500);
    text-decoration: underline;
}

/* --- Form --- */
.contact__form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
}

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

.form-label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate-800);
    background: var(--slate-50);
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--teal-500);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-input::placeholder {
    color: var(--slate-400);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.form-success__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-50);
}

.form-success__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
}

.form-success__text {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* --- Location Strip --- */
.location-strip {
    background: var(--teal-700);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.location-strip__geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    padding-left: 24px;
}

.location-strip__dot {
    width: 12px;
    height: 12px;
    background: var(--teal-400);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

.location-strip__line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 24px;
}

.location-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.location-strip__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.location-strip__text strong {
    color: #fff;
}

.location-strip__text span {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 8px;
}

/* --- Footer --- */
.footer {
    background: var(--slate-900);
    padding: 64px 0 0;
    position: relative;
    z-index: 1;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-400);
    margin-top: 16px;
    max-width: 280px;
}

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

.footer__links a {
    font-size: 0.9375rem;
    color: var(--slate-400);
    transition: var(--transition-fast);
}

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

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

.footer__phone,
.footer__email {
    font-size: 0.9375rem;
    color: var(--slate-400);
    transition: var(--transition-fast);
}

.footer__phone:hover,
.footer__email:hover {
    color: var(--teal-400);
}

.footer__bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews__grid .review-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: var(--transition-base);
        z-index: 999;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav__close {
        display: flex;
    }

    .nav__link {
        font-size: 1.125rem;
    }

    .nav__link--cta {
        margin-top: 8px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.5);
        z-index: 998;
    }

    .nav-overlay.active {
        display: block;
    }

    .hero__content {
        padding: 100px 24px 60px;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .hero__trust {
        gap: 20px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image-wrap img {
        height: 400px;
    }

    .about__stats {
        flex-wrap: wrap;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .reviews__grid .review-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__form-wrap {
        padding: 28px;
    }

    .location-strip__inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta__actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .service-card {
        padding: 28px 22px;
    }

    .why-card {
        padding: 28px 24px;
    }
}
