/* style.css - Premium Stylesheet for Volga Landing Pages */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
    --bg-primary: #0a0b0d;
    --bg-secondary: #121418;
    --bg-tertiary: #1a1d24;
    --bg-light: #f5f6f8;
    --accent: #bfa37a;
    --accent-hover: #a3875c;
    --text-primary: #ffffff;
    --text-secondary: #a0a5ad;
    --text-muted: #626770;
    --text-dark: #121418;
    --border-color: #242830;
    --border-light: #e0e2e5;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Inter", sans-serif;
    --transition-speed: 0.4s;
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

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

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: #000000;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn:hover {
    color: #000000;
    box-shadow: 0 8px 20px rgba(191, 163, 122, 0.3);
    transform: translateY(-2px);
}

.btn:hover::before {
    left: 0;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    font-size: 11px;
}

.btn-secondary::before {
    background-color: var(--accent);
}

.btn-secondary:hover {
    color: #000000;
    border-color: var(--accent);
}

.btn-dark {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-dark::before {
    background-color: var(--border-color);
}

.btn-dark:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.btn-light {
    background-color: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}
.btn-light::before {
    background-color: var(--bg-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    margin: 16px auto 0;
}

.section-title.dark-text {
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.section-subtitle.dark-text {
    color: var(--text-muted);
}

/* Header Styles - Two-Row Layout */
header {
    background-color: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-speed);
}

header.scrolled {
    background-color: rgba(10, 11, 13, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 75px;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-divider {
    width: 1px;
    height: 24px;
    background-color: var(--border-color);
}

.dealer-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.dealer-badge span {
    display: block;
    color: var(--accent);
    font-weight: 700;
}

.header-address-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
}

.header-address-info svg {
    color: var(--accent);
    flex-shrink: 0;
}

.header-right-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.phone-number svg {
    color: var(--accent);
}

.phone-number:hover {
    color: var(--accent);
}

.header-nav-bar {
    height: 45px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

nav a {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s;
}

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

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(10, 11, 13, 0.2) 0%,
        rgba(10, 11, 13, 0.9) 80%
    );
    z-index: 2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transform: scale(1.05);
    animation: zoomOut 20s ease-out forwards;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(191, 163, 122, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 1.2s ease-out;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1.4s ease-out;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 1.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.models-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.model-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.model-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.model-img-wrapper {
    position: relative;
    padding: 30px 20px 10px;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    overflow: hidden;
}
.model-img-wrapper img {
    transition: transform var(--transition-speed);
}
.model-card:hover .model-img-wrapper img {
    transform: scale(1.05);
}
.model-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.model-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}
.model-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.model-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}
.spec-item {
    font-size: 12px;
}
.spec-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.5px;
}
.spec-val {
    font-weight: 600;
    color: var(--text-primary);
}
.model-cta {
    margin-top: auto;
    width: 100%;
}

/* Tabs */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.tab-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(191, 163, 122, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* NEW: Configurator Section (Voyah style) */
.details-section {
    padding: 100px 0;
    background-color: #0b0c0f; /* very dark, almost black */
}

.configurator-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.config-left {
    position: relative;
}

.config-model-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.config-model-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.config-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.badge-tag {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.badge-stock {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.badge-stock::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #4ade80; /* bright green */
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.config-color-picker {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
}

.color-name-display {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-dot::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all 0.3s;
}

.color-dot.active::after,
.color-dot:hover::after {
    border-color: var(--text-primary);
}

.config-car-img {
    width: 100%;
    max-width: 800px;
    position: relative;
    /* Subtle glow behind the car */
    background: radial-gradient(
        ellipse at 50% 80%,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(0, 0, 0, 0) 60%
    );
    padding-bottom: 40px;
    margin-top: -20px;
}

.config-car-img img {
    width: 100%;
    transition: opacity 0.3s ease;
}

/* Config Right (Offers) */
.config-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: -10px;
}

.offer-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.offer-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.offer-card {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    padding: 20px 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: border-color 0.3s, background-color 0.3s;
}
.offer-card:hover { border-color: var(--accent); background-color: rgba(191,163,122,0.05); }

.offer-card svg {
    color: var(--accent);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.offer-card p {
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.3px;
    color: var(--text-primary);
    line-height: 1.4;
}

.offer-card.full-width {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.warranty-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 24px;
}

.warranty-block svg {
    color: var(--text-secondary);
    background-color: var(--bg-secondary);
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.warranty-block span {
    font-size: 14px;
    font-weight: 600;
}

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

.config-actions .btn {
    width: 100%;
}

/* NEW: Live Photos Grid */
.live-photos {
    margin-top: 80px;
}

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

.photo-item {
    overflow: hidden;
    position: relative;
    padding-top: 66%; /* 3:2 Aspect ratio */
}

.photo-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* NEW: Trims (Комплектации) Section */
.trims-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.trims-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trim-select {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    background-color: #ffffff;
    color: var(--text-dark);
    font-size: 14px;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23121418' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5 0 0 1 .708.708l-6 6a.5 0 0 1-.708 0l-6-6a.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.trim-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 24px;
    margin-bottom: 16px;
    transition: box-shadow 0.3s;
}

.trim-row:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.trim-car-img {
    max-width: 160px;
}

.trim-specs {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

.trim-spec-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trim-spec-label {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.trim-spec-label::before {
    content: "•";
    color: var(--accent);
}

.trim-spec-value {
    font-size: 14px;
    font-weight: 700;
}

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

.trim-actions .btn,
.trim-actions .btn-light {
    width: 100%;
    padding: 12px 20px;
    font-size: 11px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.live-photos-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: center;
}

.finance-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}
.finance-card {
    padding: 48px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.finance-card h3 {
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
}
.finance-card ul {
    list-style: none;
    margin-bottom: 32px;
    z-index: 2;
    position: relative;
}
.finance-card li {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
}
.finance-card li::before {
    content: "\2713";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: 700;
}
.finance-card .btn {
    z-index: 2;
    position: relative;
    margin-top: auto;
}

/* Trade-In & Credit Promo Blocks */
.promo-blocks {
    padding: 100px 0 0;
    background-color: var(--bg-primary);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.promo-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
    position: relative;
}

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

.form-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 300;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-benefit-check {
    width: 24px;
    height: 24px;
    background-color: rgba(191, 163, 122, 0.1);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.form-benefit-text {
    font-size: 14px;
    font-weight: 500;
}

.form-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 48px;
}

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

.form-group label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 16px;
    font-size: 14px;
    transition: border-color 0.3s;
    border-radius: 0;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23bfa37a' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5 0 0 1 .708.708l-6 6a.5 0 0 1-.708 0l-6-6a.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-checkbox input {
    margin-top: 4px;
    accent-color: var(--accent);
}

.form-checkbox label {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-checkbox label a {
    color: var(--accent);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
}

/* Contacts & Map Section */
.contacts-section {
    padding: 100px 0 0 0;
    background-color: var(--bg-secondary);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border-top: 1px solid var(--border-color);
}

.contacts-info {
    padding: 60px 48px;
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacts-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 15px;
    font-weight: 500;
}

.contact-details a {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.map-container {
    height: 500px;
    width: 100%;
    position: relative;
    background-color: #1a1a1a;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* St. Petersburg Multi-location Switcher */
.location-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.location-tab-btn {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 16px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-tab-btn.active,
.location-tab-btn:hover {
    border-color: var(--accent);
    background-color: rgba(191, 163, 122, 0.05);
}

.location-tab-btn h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.location-tab-btn p {
    font-size: 12px;
    color: var(--text-secondary);
}

.location-tab-btn .loc-phone {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
    font-size: 12px;
    color: var(--text-muted);
}

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

.footer-legal {
    line-height: 1.8;
}

.footer-legal p {
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.footer-links a {
    text-decoration: underline;
}

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

/* Modal Form */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

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

.modal-content {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 500px;
    padding: 48px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--accent);
}

.modal h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.modal p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 24px;
}

/* Success Modal */
.success-modal-content {
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(191, 163, 122, 0.1);
    border: 2px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .logo-divider,
    .dealer-badge,
    .header-address-info {
        display: none;
    }
    nav {
        gap: 20px;
    }
    .trim-specs {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .configurator-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 400px;
    }
    .trim-row {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .trim-specs {
        justify-content: center;
        gap: 30px;
    }
    .trim-actions {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .header-top-bar {
        height: 70px;
    }
    .header-nav-bar {
        display: none;
    }
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-top: 1px solid var(--border-color);
        justify-content: flex-start;
    }
    nav.active {
        left: 0;
    }
    .header-right-info {
        gap: 16px;
    }
    .header-right-info .btn {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 15px;
    }
    .models-grid {
        grid-template-columns: 1fr;
    }
    .photo-grid {
        grid-template-columns: 1fr;
    }
    .trims-filters {
        flex-direction: column;
    }
    .trim-specs {
        flex-direction: column;
        gap: 12px;
    }
    .trim-actions {
        flex-direction: column;
    }
    .form-wrapper {
        padding: 24px;
    }
    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .offer-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .config-model-title {
        font-size: 24px;
    }
    .promo-card {
        padding: 24px;
    }
    .promo-card h3 {
        font-size: 20px;
    }
}
