/* ============================================
   NOBLE TRANSFER — VIP Car Service
   Luxury Dark Theme with Gold Accents
   ============================================ */

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-section-alt: #0d0d0d;
    --gold: #c9a84c;
    --gold-light: #e4cc7a;
    --gold-dark: #a68a3a;
    --text-primary: #f0ece2;
    --text-secondary: #8a8578;
    --text-muted: #5a5549;
    --border: #222222;
    --border-light: #333333;
    --white: #ffffff;
    --success: #4caf50;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 1em;
    color: var(--gold);
    margin-bottom: 2rem;
    padding-left: 1em;
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: var(--border);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: var(--gold);
    animation: preloaderFill 1.5s ease-in-out forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.4em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 4px;
    background: var(--bg-card);
    border-radius: 6px;
    padding: 3px;
    border: 1px solid var(--border);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--bg-dark);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-phone:hover {
    color: var(--gold-light);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

.mobile-lang-switcher {
    display: flex;
    gap: 8px;
}

.mobile-lang-switcher .lang-btn {
    font-size: 0.85rem;
    padding: 8px 14px;
}

.mobile-phone {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

/* ============================================
   HERO
   ============================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0.25;
    filter: brightness(0.6) saturate(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 40%, rgba(10, 10, 10, 0.8) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20px); }
}

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

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 8px 24px;
    border-radius: 100px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s 1.6s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5rem);
    opacity: 0;
    animation: fadeInUp 0.8s 1.8s forwards;
}

.hero-accent {
    color: var(--gold);
    font-size: clamp(3rem, 7vw, 6rem);
    font-style: italic;
    font-weight: 400;
    animation-delay: 2s;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s 2.2s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s 2.4s forwards;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 2.6s forwards;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   SECTION STYLING
   ============================================ */
section {
    padding: 120px 0;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 300;
}

/* ============================================
   SERVICES
   ============================================ */
#services {
    background: var(--bg-section-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 32px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-routes span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

/* ============================================
   FLEET
   ============================================ */
.fleet-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.fleet-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateX(-40px);
}

.fleet-card.visible {
    opacity: 1;
    transform: translateX(0);
    transition: var(--transition-slow);
}

.fleet-card.reversed {
    transform: translateX(40px);
}

.fleet-card.reversed.visible {
    transform: translateX(0);
}

.fleet-card.reversed .fleet-image {
    order: 2;
}

.fleet-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.fleet-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
    filter: brightness(0.9) contrast(1.05);
}

.fleet-card:hover .fleet-img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.fleet-gallery {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.gallery-thumb {
    width: 60px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    filter: brightness(0.8);
}

.gallery-thumb:hover {
    opacity: 0.9;
    filter: brightness(1);
}

.gallery-thumb.active {
    border-color: var(--gold);
    opacity: 1;
    filter: brightness(1);
}

.fleet-img-main {
    transition: opacity 0.4s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
}

.fleet-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
}

.fleet-name {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.fleet-name h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
}

.fleet-gen {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.fleet-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 400;
}

.spec svg {
    color: var(--gold);
    flex-shrink: 0;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fleet-features span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    background: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.fleet-features span:hover {
    border-color: var(--gold-dark);
    color: var(--gold);
}

/* ============================================
   ROUTES & PRICING
   ============================================ */
#routes {
    background: var(--bg-section-alt);
}

.pricing-tabs {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tab {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-tab:hover {
    color: var(--text-primary);
}

.pricing-tab.active {
    background: var(--gold);
    color: var(--bg-dark);
}

.routes-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.routes-table {
    width: 100%;
    border-collapse: collapse;
}

.routes-table th {
    background: var(--bg-card);
    padding: 16px 20px;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.routes-table td {
    padding: 18px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.routes-table tbody tr {
    transition: var(--transition);
}

.routes-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.routes-table tbody tr:last-child td {
    border-bottom: none;
}

.route-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-from, .route-to {
    font-weight: 500;
    color: var(--text-primary);
}

.route-name svg {
    color: var(--gold);
    flex-shrink: 0;
}

.route-price {
    color: var(--gold) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.route-hourly {
    font-weight: 500;
    color: var(--text-primary);
}

.btn-book {
    display: inline-block;
    text-decoration: none;
    color: var(--bg-dark);
    background: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 24px;
    font-weight: 300;
    font-style: italic;
}

/* ============================================
   CALCULATOR
   ============================================ */
.calculator-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calc-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.calc-field select,
.calc-field input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.calc-field select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8578' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.calc-field select:focus,
.calc-field input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.calc-swap {
    align-self: center;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold);
    transition: var(--transition);
}

.calc-swap:hover {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    transform: rotate(180deg);
}

.calc-btn {
    margin-top: 8px;
}

.calc-result {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.calc-result-inner {
    padding: 40px;
}

.calc-route-visual {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.calc-point {
    text-align: center;
    flex-shrink: 0;
}

.calc-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin: 0 auto 8px;
}

.calc-point span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.calc-line-anim {
    flex: 1;
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
}

.calc-line-dash {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 8px, transparent 8px, transparent 16px);
}

.calc-car-icon {
    position: absolute;
    color: var(--gold);
    animation: carDrive 3s infinite linear;
}

@keyframes carDrive {
    0% { left: 0; }
    100% { left: calc(100% - 30px); }
}

.calc-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

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

.calc-detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.calc-detail-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.calc-price-box {
    text-align: center;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.calc-price-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.calc-price-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
}

.calc-book-btn {
    width: 100%;
    text-align: center;
}

/* ============================================
   ADVANTAGES
   ============================================ */
#advantages {
    background: var(--bg-section-alt);
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.advantage {
    text-align: center;
    padding: 32px 20px;
    opacity: 0;
    transform: translateY(20px);
}

.advantage.visible {
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition-slow);
}

.advantage-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.advantage h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.advantage p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-title {
    text-align: left;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 20px 0 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-primary);
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--gold-dark);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-method-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-method-icon.telegram {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.contact-method strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-method span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8578' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-submit {
    width: 100%;
}

.form-success {
    text-align: center;
    padding: 40px;
    color: var(--success);
}

.form-success svg {
    margin-bottom: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 48px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-brand p {
    width: 100%;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 4px;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-credit {
    color: var(--text-muted);
}

.footer-credit a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-credit a:hover {
    color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-phone {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .fleet-card.reversed .fleet-image {
        order: 0;
    }

    .calculator-wrap {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .lang-switcher {
        display: none;
    }

    .hero-title .hero-line {
        font-size: 2.2rem;
    }

    .hero-accent {
        font-size: 2.8rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .fleet-specs {
        grid-template-columns: 1fr;
    }

    .fleet-name h3 {
        font-size: 1.5rem;
    }

    .calc-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .route-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .route-name svg {
        display: none;
    }

    .routes-table th:nth-child(2),
    .routes-table td:nth-child(2) {
        display: none;
    }

    .routes-table td {
        padding: 14px 12px;
        font-size: 0.82rem;
    }

    .routes-table th {
        padding: 12px;
        font-size: 0.65rem;
    }

    .calc-form {
        padding: 20px;
    }

    .calc-result-inner {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-desc {
        font-size: 0.9rem;
    }

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

    .calc-price-value {
        font-size: 2.2rem;
    }

    .fleet-img {
        aspect-ratio: 16/10;
    }

    .gallery-thumb {
        width: 48px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 0 16px;
    }

    .btn {
        width: 100%;
        max-width: none;
        padding: 16px 24px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .pricing-tabs {
        flex-direction: column;
        max-width: none;
    }

    .calc-route-visual {
        flex-direction: column;
    }

    .calc-line-anim {
        width: 1px;
        height: 40px;
        flex: none;
    }

    .calc-line-dash {
        height: 100%;
        width: 1px;
        background: repeating-linear-gradient(180deg, var(--gold) 0px, var(--gold) 8px, transparent 8px, transparent 16px);
    }

    .calc-car-icon {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        margin-top: 0;
    }

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

    .fleet-showcase {
        gap: 48px;
    }

    .fleet-features {
        gap: 6px;
    }

    .fleet-features span {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .contact-method {
        padding: 12px;
    }

    .btn-book {
        padding: 6px 14px;
        font-size: 0.65rem;
    }

    .route-price {
        font-size: 0.95rem !important;
    }
}

/* ============================================
   ANIMATIONS (scroll-triggered)
   ============================================ */
.service-card,
.fleet-card,
.advantage {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Selection */
::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--text-primary);
}
