/* ============================================
   Odyssey Motors LLC — Custom Styles
   Charcoal + Coral | Vibrant Modern
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-charcoal: #1A1D23;
    --color-charcoal-light: #2A2D35;
    --color-charcoal-mid: #3D4050;
    --color-coral: #E85D4A;
    --color-coral-light: #F0786A;
    --color-coral-dark: #D14A38;
    --color-white: #FFFFFF;
    --color-off-white: #F7F7F8;
    --color-gray-100: #F0F0F2;
    --color-gray-200: #E2E2E8;
    --color-gray-300: #C4C4D0;
    --color-gray-400: #9494A8;
    --color-gray-500: #6B6B80;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(26, 29, 35, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 29, 35, 0.1);
    --shadow-lg: 0 8px 32px rgba(26, 29, 35, 0.12);
    --shadow-xl: 0 16px 48px rgba(26, 29, 35, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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(--color-charcoal);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

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

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

/* --- Typography --- */
.text-coral {
    color: var(--color-coral);
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-coral);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(232, 93, 74, 0.35);
}

.btn--primary:hover {
    background: var(--color-coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 93, 74, 0.45);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-charcoal);
    box-shadow: var(--shadow-md);
}

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

.btn--outline-white {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 16px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(26, 29, 35, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
}

.nav__logo-text {
    letter-spacing: -0.01em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

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

.nav__cta {
    background: var(--color-coral);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    transition: all var(--transition);
}

.nav__cta:hover {
    background: var(--color-coral-dark);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle-line {
    width: 22px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}
.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 29, 35, 0.92) 0%,
        rgba(26, 29, 35, 0.75) 50%,
        rgba(26, 29, 35, 0.55) 100%
    );
}

.hero__shape {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
}

.hero__shape--circle {
    width: 500px;
    height: 500px;
    border: 3px solid var(--color-coral);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero__shape--square {
    width: 200px;
    height: 200px;
    background: var(--color-coral);
    bottom: 15%;
    right: 8%;
    transform: rotate(25deg);
    opacity: 0.12;
}

.hero__shape--triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--color-coral);
    top: 20%;
    right: 15%;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 93, 74, 0.15);
    border: 1px solid rgba(232, 93, 74, 0.3);
    color: var(--color-coral-light);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}

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

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

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__subheadline {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
}

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

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

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

.hero__geo {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 1;
    opacity: 0.3;
}

/* --- Services --- */
.services {
    position: relative;
    padding: 120px 0;
    background: var(--color-off-white);
    overflow: hidden;
}

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

.section-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
}

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

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

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

.service-card__accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--color-coral);
    opacity: 0.04;
    border-radius: 50%;
    transition: all var(--transition);
}

.service-card:hover .service-card__accent {
    width: 160px;
    height: 160px;
    opacity: 0.08;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 93, 74, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--color-coral);
    color: var(--color-white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-coral);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}

.service-card__link:hover {
    gap: 8px;
}

/* Geometric decorations */
.geo-decoration {
    position: absolute;
    pointer-events: none;
}

.geo-decoration--top {
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.geo-decoration--bottom {
    bottom: 0;
    right: 0;
    width: 250px;
    height: 250px;
    overflow: hidden;
}

.geo-decoration--contact {
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--color-coral);
    opacity: 0.08;
}

.geo-circle--1 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    right: -40px;
}

.geo-circle--2 {
    width: 200px;
    height: 200px;
    top: -60px;
    left: -60px;
}

.geo-circle--3 {
    width: 180px;
    height: 180px;
    top: -50px;
    right: -50px;
}

.geo-square {
    position: absolute;
    background: var(--color-coral);
    opacity: 0.06;
    transform: rotate(30deg);
}

.geo-square--1 {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 40px;
}

.geo-square--2 {
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 40px;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid var(--color-coral);
    opacity: 0.06;
    transform: rotate(-20deg);
}

.geo-triangle--1 {
    bottom: 20px;
    left: 60px;
}

/* --- About --- */
.about {
    position: relative;
    padding: 120px 0;
    background: var(--color-white);
    overflow: hidden;
}

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

.about__image-wrap {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

.about__image-accent img {
    width: 100%;
    height: 165px;
    object-fit: cover;
}

.about__exp-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-coral);
    color: var(--color-white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 24px rgba(232, 93, 74, 0.4);
}

.about__exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about__exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
}

.about__content {
    position: relative;
    z-index: 1;
}

.about__body {
    font-size: 1.05rem;
    color: var(--color-gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

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

.highlight__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(232, 93, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.highlight__desc {
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

.about__geo {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    opacity: 0.5;
    pointer-events: none;
}

/* --- Why Us --- */
.why-us {
    position: relative;
    padding: 120px 0;
    background: var(--color-charcoal);
    overflow: hidden;
}

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

.why-us__content .section-title {
    color: var(--color-white);
}

.why-us__content .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-item__num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-coral);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.6;
}

.why-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.why-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.why-us__visual {
    position: relative;
}

.why-visual__card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-visual__card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-visual__overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
}

.why-visual__stat {
    background: rgba(26, 29, 35, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-visual__stat-num {
    font-size: 1.5rem;
}

.why-visual__stat-label {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.why-visual__float {
    position: absolute;
    bottom: -30px;
    left: -30px;
}

.float-badge {
    background: var(--color-coral);
    color: var(--color-white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(232, 93, 74, 0.4);
}

.float-badge svg {
    flex-shrink: 0;
}

.float-badge span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
}

.geo-dots {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    pointer-events: none;
}

.geo-dots--1 {
    top: 60px;
    right: 60px;
}

.geo-dots span {
    width: 6px;
    height: 6px;
    background: var(--color-coral);
    border-radius: 50%;
    opacity: 0.2;
}

.geo-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--color-coral), transparent);
    opacity: 0.15;
    pointer-events: none;
}

.geo-line--1 {
    width: 200px;
    bottom: 80px;
    left: 0;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: var(--color-coral);
    overflow: hidden;
}

.cta-banner__bg-shape {
    position: absolute;
    pointer-events: none;
}

.cta-banner__bg-shape--1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -200px;
    left: -100px;
}

.cta-banner__bg-shape--2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    right: 10%;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-banner__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex-shrink: 0;
}

/* --- Contact --- */
.contact {
    position: relative;
    padding: 120px 0;
    background: var(--color-off-white);
    overflow: hidden;
}

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

.contact__info .section-title {
    margin-bottom: 16px;
}

.contact__desc {
    font-size: 1.05rem;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

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

.contact-detail__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(232, 93, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
}

.contact-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.95rem;
    color: var(--color-gray-500);
}

.contact-detail a:hover {
    color: var(--color-coral);
}

.contact__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact__form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
}

.contact__form-header {
    margin-bottom: 28px;
}

.contact__form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact__form-header p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
}

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

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-charcoal);
    background: var(--color-gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-input:hover {
    border-color: var(--color-gray-300);
}

.form-input:focus {
    border-color: var(--color-coral);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(232, 93, 74, 0.1);
}

.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='%236B6B80' 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 14px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.contact__success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.contact__success.show {
    display: block;
}

.success-icon {
    margin-bottom: 16px;
}

.contact__success h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-charcoal);
}

.contact__success p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
}

/* --- Footer --- */
.footer {
    position: relative;
    background: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
    overflow: hidden;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

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

.footer__links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.6;
}

.footer__contact a:hover {
    color: var(--color-coral);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a:hover {
    color: var(--color-coral);
}

.footer__geo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-coral), transparent);
    opacity: 0.3;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__layout,
    .why-us__inner,
    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__image-accent {
        right: 20px;
        bottom: -20px;
    }
    
    .about__exp-badge {
        left: 10px;
        top: -10px;
    }
    
    .why-visual__float {
        left: 10px;
        bottom: -20px;
    }
    
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-charcoal);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right var(--transition);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    }
    
    .nav__menu.open {
        right: 0;
    }
    
    .nav__toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero__headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero__geo {
        display: none;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner__actions {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact__form-wrap {
        padding: 28px;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .geo-dots, .geo-line, .geo-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__content {
        padding: 100px 16px 60px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
    }
    
    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .services, .about, .why-us, .contact {
        padding: 80px 0;
    }
    
    .about__image-main img {
        height: 350px;
    }
    
    .about__image-accent {
        width: 160px;
        right: 10px;
        bottom: -10px;
    }
    
    .about__image-accent img {
        height: 120px;
    }
}
