*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --gold: #C9A84C;
    --cur: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48cGF0aCBkPSJNMyAyIEwzIDE2IEw3IDEyLjUgTDkuNSAxOCBMMTEuOCAxNyBMOS4zIDExLjYgTDE0LjUgMTEuNiBaIiBmaWxsPSIjRThDOTZBIiBzdHJva2U9IiMxYTE0MDgiIHN0cm9rZS13aWR0aD0iMS4xIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+") 3 2, auto;
    --cur-hover: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSIyMSIgdmlld0JveD0iMCAwIDIwIDIwIj48cGF0aCBkPSJNMyAyIEwzIDE2IEw3IDEyLjUgTDkuNSAxOCBMMTEuOCAxNyBMOS4zIDExLjYgTDE0LjUgMTEuNiBaIiBmaWxsPSIjRjZFMTk5IiBzdHJva2U9IiMxYTE0MDgiIHN0cm9rZS13aWR0aD0iMS4xIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+") 3 2, pointer;
    --gold-light: #E8C96A;
    --gold-dark: #9A7A2A;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #222222;
    --dark4: #2A2A2A;
    --white: #FAFAF8;
    --white-soft: #F0EDE5;
    --gray: #888880;
    --gray-light: #BBBAB3;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
  }
  html { scroll-behavior: smooth; }

  #page-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--black);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  #page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
  .loader-logo {
    font-family: var(--font-display); font-size: 42px; font-weight: 600;
    letter-spacing: 0.18em; color: var(--gold);
    opacity: 0; transform: translateY(8px);
    animation: loaderLogoIn 0.7s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  .loader-logo span { color: var(--white); }
  .loader-line {
    width: 0; height: 1px; background: var(--gold);
    margin-top: 16px;
    animation: loaderLineGrow 0.8s 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  .loader-sub {
    font-size: 9px; font-weight: 700; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gray);
    margin-top: 14px; opacity: 0;
    animation: loaderLogoIn 0.5s 1.1s ease forwards;
  }
  @keyframes loaderLogoIn {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes loaderLineGrow {
    to { width: 120px; }
  }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: var(--cur);
  }

  [data-lang="tr"] .en, [data-lang="tr"] .de, [data-lang="tr"] .ru { display: none !important; }
  [data-lang="en"] .tr, [data-lang="en"] .de, [data-lang="en"] .ru { display: none !important; }
  [data-lang="de"] .tr, [data-lang="de"] .en, [data-lang="de"] .ru { display: none !important; }
  [data-lang="ru"] .tr, [data-lang="ru"] .en, [data-lang="ru"] .de { display: none !important; }

  @media (pointer: coarse) {
    body, a, button { cursor: auto; }
  }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--dark); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

  #scroll-progress {
    position: fixed; top: 0; left: 0; z-index: 99999;
    height: 2px; width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transition: width 0.1s linear;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(201,168,76,0.6);
  }

  #particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.4; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 60px;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
    transition: background 0.4s, backdrop-filter 0.4s, height 0.3s;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    height: 66px;
  }
  .nav-logo {
    font-family: var(--font-display); font-size: 28px;
    font-weight: 600; letter-spacing: 0.12em;
    color: var(--gold); text-decoration: none;
    transition: letter-spacing 0.3s;
  }
  .nav-logo:hover { letter-spacing: 0.18em; }
  .nav-logo span { color: var(--white); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gray-light);
    text-decoration: none; transition: color 0.3s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links a.active { color: var(--gold); }
  .nav-links a.active::after { transform: scaleX(1); }
  .nav-right { display: flex; align-items: center; gap: 18px; }

  .availability-badge {
    display: flex; align-items: center; gap: 7px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 20px;
    padding: 5px 12px 5px 9px;
    white-space: nowrap;
  }
  .avail-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
    animation: availPulse 2s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes availPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
    50%      { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
  }
  .avail-text {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #4ade80;
  }
  @media (max-width: 900px) { .availability-badge { display: none; } }

  .lang-switch {
    display: flex; align-items: center; gap: 0;
    border: 1px solid rgba(201,168,76,0.3); overflow: hidden;
  }
  .lang-btn {
    background: transparent; border: none;
    color: var(--gray); font-family: var(--font-body);
    font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 7px 13px;
    cursor: var(--cur); transition: all 0.25s;
  }
  .lang-btn.active { background: var(--gold); color: var(--black); }
  .lang-btn:not(.active):hover { color: var(--gold); }
  .lang-sep { width: 1px; height: 30px; background: rgba(201,168,76,0.2); }

  .nav-cta {
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold); padding: 10px 28px;
    font-family: var(--font-body); font-size: 11px;
    font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s; cursor: var(--cur);
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--gold); color: var(--black); }

  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: var(--cur); padding: 4px;
  }
  .nav-hamburger span {
    display: block; width: 26px; height: 1.5px;
    background: var(--gold); transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

  .mobile-nav {
    display: flex;
    position: fixed; top: 0; right: -100%; width: 85vw; max-width: 340px;
    height: 100vh; background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(201,168,76,0.15);
    z-index: 999; padding: 100px 40px 40px;
    transition: right 0.4s cubic-bezier(0.77,0,0.175,1);
    flex-direction: column; gap: 8px;
    visibility: hidden;
  }
  .mobile-nav.open { right: 0; visibility: visible; }
  .mobile-nav a {
    font-size: 13px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gray-light);
    text-decoration: none; padding: 14px 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    transition: color 0.3s, padding-left 0.3s;
  }
  .mobile-nav a:hover { color: var(--gold); padding-left: 8px; }
  .mobile-nav .mobile-cta {
    margin-top: 28px; background: var(--gold); color: var(--black);
    text-align: center; padding: 16px; letter-spacing: 0.2em;
    font-weight: 700; font-size: 11px;
    border-bottom: none;
  }
  .mobile-nav .mobile-cta:hover { background: var(--gold-light); padding-left: 0; }
  .mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.4s;
  }
  .mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
  .mobile-lang { display: none; }

  .hero {
    height: 100vh; min-height: 700px;
    position: relative; display: flex; align-items: center; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1510 50%, #0A0A0A 100%);
  }
  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      -45deg, transparent, transparent 60px,
      rgba(201,168,76,0.025) 60px, rgba(201,168,76,0.025) 61px
    );
  }

  .hero-grain {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    animation: grainShift 0.15s steps(1) infinite;
  }
  @keyframes grainShift {
    0%  { background-position:   0px   0px; }
    10% { background-position: -50px -50px; }
    20% { background-position:  50px  25px; }
    30% { background-position: -25px  75px; }
    40% { background-position:  75px -25px; }
    50% { background-position: -50px  50px; }
    60% { background-position:  25px -75px; }
    70% { background-position: -75px  25px; }
    80% { background-position:  50px  75px; }
    90% { background-position: -25px -50px; }
  }
  .hero-vignette {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.65) 100%);
  }
  .hero-image {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 58%; overflow: hidden;
  }
  .hero-image img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    filter: brightness(0.55) contrast(1.1) saturate(0.8);
    transform: scale(1.05);
    animation: heroZoom 14s ease-in-out infinite alternate;
  }
  .hero-canvas {
    width: 100%; height: 100%; display: none;
  }
  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.0); }
  }
  .hero-image::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--black) 0%, rgba(10,10,10,0.5) 40%, transparent 70%);
    z-index: 1;
  }
  .hero-content {
    position: relative; z-index: 2; padding: 0 60px; max-width: 700px;
    animation: fadeUp 1.2s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
    animation: fadeUp 1.2s 0.2s ease both;
  }
  .hero-badge-line { width: 40px; height: 1px; background: var(--gold); }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(52px, 6vw, 96px); font-weight: 300;
    line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 28px;
  }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .h1-line { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.16em; }
  .h1-line-inner {
    display: block; transform: translateY(120%);
    transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
  }
  .hero h1.lines-in .h1-line-inner { transform: translateY(0); }
  .hero h1.lines-in .h1-line:nth-child(1) .h1-line-inner { transition-delay: 0.05s; }
  .hero h1.lines-in .h1-line:nth-child(2) .h1-line-inner { transition-delay: 0.16s; }
  .hero h1.lines-in .h1-line:nth-child(3) .h1-line-inner { transition-delay: 0.27s; }
  .hero h1.lines-in .h1-line:nth-child(4) .h1-line-inner { transition-delay: 0.38s; }
  @media (prefers-reduced-motion: reduce) {
    .h1-line-inner { transform: none !important; transition: none !important; }
  }

  .hero-badge-typewriter {
    overflow: hidden; white-space: nowrap;
    border-right: 2px solid var(--gold);
    width: 0;
    animation: typeWriter 1.4s steps(20, end) 1.6s forwards,
               cursorBlink 0.75s step-end 3s 4;
  }
  @keyframes typeWriter {
    from { width: 0; }
    to   { width: 100%; }
  }
  @keyframes cursorBlink {
    0%, 100% { border-right-color: var(--gold); }
    50%       { border-right-color: transparent; }
  }

  .hero-word {
    display: inline-block;
    opacity: 0; transform: translateY(24px);
    animation: wordReveal 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  @keyframes wordReveal {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-desc {
    font-size: 14px; font-weight: 300; line-height: 1.9;
    color: var(--gray-light); max-width: 480px; margin-bottom: 48px;
    letter-spacing: 0.04em; animation: fadeUp 1.2s 0.4s ease both;
  }
  .hero-buttons {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 1.2s 0.5s ease both;
  }
  .btn-primary {
    background: var(--gold); color: var(--black);
    padding: 16px 40px; font-family: var(--font-body);
    font-size: 11px; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.3s; cursor: var(--cur); border: none;
    position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: var(--gold-light); transform: translateX(-101%);
    transition: transform 0.4s ease;
  }
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.3); }
  .btn-primary::before, .nav-cta::before, .cta-phone-btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 60%; height: 100%; z-index: 2;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
    transform: translateX(-180%) skewX(-18deg); pointer-events: none;
    animation: btnShine 5s ease-in-out infinite;
  }
  .nav-cta { position: relative; overflow: hidden; }
  @keyframes btnShine {
    0%, 100% { transform: translateX(-180%) skewX(-18deg); }
    18% { transform: translateX(260%) skewX(-18deg); }
    19%, 99% { transform: translateX(260%) skewX(-18deg); }
  }
  @media (prefers-reduced-motion: reduce) {
    .btn-primary::before, .nav-cta::before, .cta-phone-btn::before { animation: none; opacity: 0; }
  }
  .btn-ghost {
    background: transparent; color: var(--white);
    padding: 16px 40px; font-family: var(--font-body);
    font-size: 11px; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25); transition: all 0.3s; cursor: var(--cur);
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
  .hero-stats {
    display: flex; gap: 56px; z-index: 2;
    margin-top: 40px;
    animation: fadeUp 1.2s 0.7s ease both;
  }
  .stat-number {
    font-family: var(--font-display); font-size: 42px; font-weight: 600;
    color: var(--gold); line-height: 1;
  }
  .stat-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gray); margin-top: 6px;
  }
  .scroll-indicator {
    position: absolute; right: 60px; bottom: 60px; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-size: 9px; font-weight: 700; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gray); writing-mode: vertical-rl;
    animation: fadeUp 1.2s 0.9s ease both;
  }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

  .hero-availability {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 38px; margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border-left: 1px solid rgba(201,168,76,0.35);
    padding-left: 14px;
  }
  .hero-avail-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(201,168,76,0.6);
    animation: availPulseGold 2.2s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes availPulseGold {
    0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.6); }
    50%      { box-shadow: 0 0 0 6px rgba(201,168,76,0); }
  }

  .marquee-section {
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    overflow: hidden; padding: 18px 0; background: var(--dark2);
  }
  .marquee-track {
    display: flex; gap: 60px;
    animation: marquee 28s linear infinite; white-space: nowrap;
  }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-item {
    display: flex; align-items: center; gap: 20px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gray);
  }
  .marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

  .section { padding: 120px 60px; }
  .section-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
  }
  .section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
  .section-label.in-view::before, .reveal.in-view .section-label::before, .section-label { }
  .gold-line-draw::before { transform: scaleX(0); transform-origin: left; transition: transform 0.8s 0.2s cubic-bezier(0.22,1,0.36,1) !important; }
  .gold-line-draw.in-view::before { transform: scaleX(1) !important; }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 4.5vw, 72px); font-weight: 300; line-height: 1.1; margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-desc {
    font-size: 14px; font-weight: 300; line-height: 1.9;
    color: var(--gray-light); max-width: 520px;
    letter-spacing: 0.03em; margin-bottom: 70px;
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(201,168,76,0.12);
  }
  .service-card {
    background: var(--dark2); padding: 50px 44px;
    position: relative; overflow: hidden; transition: background 0.4s;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
  }
  .service-card::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.5s ease;
  }
  .service-card:hover {
    background: var(--dark3);
    box-shadow: 0 0 0 1px rgba(201,168,76,0.18), inset 0 0 40px rgba(201,168,76,0.04);
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover::after { opacity: 1; }
  .service-num {
    font-family: var(--font-display); font-size: 64px; font-weight: 600;
    color: rgba(201,168,76,0.08); position: absolute; top: 20px; right: 30px;
    line-height: 1; transition: color 0.4s;
  }
  .service-card:hover .service-num { color: rgba(201,168,76,0.18); }
  .service-icon { width: 48px; height: 48px; margin-bottom: 28px; opacity: 0.9; }
  .service-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.2; }
  .service-card h3 {
    font-family: var(--font-display); font-size: 24px; font-weight: 500;
    margin-bottom: 14px; letter-spacing: 0.02em;
  }
  .service-card p { font-size: 13px; font-weight: 300; line-height: 1.85; color: var(--gray-light); letter-spacing: 0.03em; }
  .service-link {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); text-decoration: none; transition: gap 0.3s;
  }
  .service-link:hover { gap: 14px; }
  .service-link svg { width: 14px; height: 14px; stroke: currentColor; }

  .fleet-section { padding: 120px 60px; background: var(--dark2); }
  .fleet-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
  .fleet-visual { position: relative; padding-bottom: 40px; }
  .fleet-main-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center; filter: brightness(0.9) contrast(1.1); display: block; }
  .fleet-canvas { width: 100%; aspect-ratio: 3/4; display: none; }
  .fleet-slider { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; }
  .fleet-slides { position: absolute; inset: 0; }
  .fleet-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; z-index: 0; }
  .fleet-slide.is-active { opacity: 1; z-index: 1; }
  .fleet-slide .fleet-main-img { width: 100%; height: 100%; aspect-ratio: auto; }
  .fleet-img-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 46px; height: 46px; display: none; align-items: center; justify-content: center;
    background: rgba(10,10,10,0.45); border: 1px solid rgba(201,168,76,0.45); color: var(--gold);
    cursor: var(--cur-hover); font-family: var(--font-display); font-size: 30px; line-height: 1;
    backdrop-filter: blur(4px); transition: background 0.3s ease, border-color 0.3s ease;
  }
  .fleet-img-arrow:hover { background: rgba(201,168,76,0.18); border-color: var(--gold); }
  .fleet-img-arrow.prev { left: 14px; }
  .fleet-img-arrow.next { right: 14px; }
  .fleet-slider.has-multi .fleet-img-arrow { display: flex; }
  .fleet-img-dots {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 3;
    display: flex; gap: 9px;
  }
  .fleet-img-dot {
    width: 9px; height: 9px; border-radius: 50%; cursor: var(--cur-hover);
    background: rgba(255,255,255,0.4); border: 1px solid rgba(201,168,76,0.6);
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .fleet-img-dot.active { background: var(--gold); transform: scale(1.3); }
  .fleet-badge-img { z-index: 4; }
  @media (max-width: 768px) { .fleet-slider.has-multi .fleet-img-arrow { display: none; } }
  .fleet-accent {
    position: absolute; bottom: 10px; right: -20px;
    width: 160px; height: 160px;
    border: 1px solid rgba(201,168,76,0.3); z-index: 0;
    animation: accentPulse 4s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes accentPulse {
    0%,100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.03); }
  }
  .fleet-badge-img {
    position: absolute; top: -24px; left: -24px;
    background: var(--gold); color: var(--black); padding: 20px 24px; text-align: center;
    animation: fadeUp 1s 0.3s ease both;
  }
  .fleet-badge-img .big { font-family: var(--font-display); font-size: 32px; font-weight: 600; display: block; }
  .fleet-badge-img .sm { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-top: 2px; }
  .fleet-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
  .fleet-feature {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 22px 28px; border: 1px solid rgba(201,168,76,0.1);
    background: rgba(201,168,76,0.02);
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
  }
  .fleet-feature:hover {
    border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04);
    transform: translateX(6px);
  }
  .fleet-feature-icon { width: 32px; height: 32px; flex-shrink: 0; color: var(--gold); }
  .fleet-feature-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; }
  .fleet-feature h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 4px; }
  .fleet-feature p { font-size: 12px; font-weight: 300; color: var(--gray-light); line-height: 1.7; }

  .routes-section { padding: 120px 60px; }
  .routes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; background: transparent; }
  .route-card {
    position: relative; overflow: hidden;
    background: var(--dark2); padding: 50px 50px;
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 280px; cursor: var(--cur); transition: background 0.4s, box-shadow 0.4s;
    border-radius: 4px; border: 1px solid rgba(201,168,76,0.12);
  }
  .route-card:hover { box-shadow: 0 18px 50px rgba(0,0,0,0.45); border-color: rgba(201,168,76,0.3); }
  .route-card[data-route] { cursor: var(--cur-hover); }
  .route-map-hint {
    position: absolute; bottom: 16px; right: 18px; z-index: 3;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); opacity: 0; transform: translateY(6px); transition: all 0.4s;
  }
  .route-card:hover .route-map-hint { opacity: 0.9; transform: translateY(0); }
  .route-map-hint svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
  .route-modal .svc-modal { max-width: 760px; padding: 0; overflow: hidden; }
  .route-modal-head { padding: 32px 38px 22px; }
  .route-modal-route { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .route-modal-title { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: #fff; line-height: 1.2; margin-bottom: 6px; }
  .route-modal-meta { font-size: 13px; color: var(--gray-light); font-weight: 300; }
  .route-modal-map { position: relative; width: 100%; height: 360px; border: 0; display: block; background: var(--dark2); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); }
  .route-modal-map .leaflet-tile { filter: brightness(0.82) saturate(0.9) contrast(1.05); }
  .route-modal-map .leaflet-control-attribution { background: rgba(10,10,10,0.6); color: #999; font-size: 9px; }
  .route-modal-map .leaflet-control-attribution a { color: var(--gold); }
  .route-modal-map .leaflet-bar a { background: #14140f; color: var(--gold); border-color: rgba(201,168,76,0.3); }
  .route-modal-map .leaflet-bar a:hover { background: #1f1c12; }
  .map-loading { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:var(--gray); font-size:13px; letter-spacing:0.1em; z-index:5; pointer-events:none; }
  .route-pin { background: var(--gold); width: 14px; height: 14px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); border: 2px solid #0a0a0a; box-shadow: 0 0 0 2px var(--gold); }
  .route-modal-foot { padding: 22px 38px 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
  .route-modal-note { font-size: 12px; color: var(--gray); font-weight: 300; line-height: 1.6; flex: 1; min-width: 200px; }
  .route-modal-cta {
    display: inline-flex; align-items: center; gap: 9px; background: var(--gold); color: var(--black);
    text-decoration: none; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
    padding: 13px 24px; border-radius: 2px; transition: all 0.3s; white-space: nowrap;
  }
  .route-modal-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
  .route-modal .svc-modal-close { top: 16px; right: 16px; background: rgba(10,10,10,0.6); }
  @media (max-width: 600px) {
    .route-modal-head, .route-modal-foot { padding-left: 22px; padding-right: 22px; }
    .route-modal-map { height: 280px; }
  }
  .route-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
  }
  .route-card:hover { background: var(--dark3); }
  .route-card:hover::after { opacity: 1; }
  .route-card-big { min-height: 380px; }
  .route-from {
    font-size: 10px; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
  }
  .route-title {
    font-family: var(--font-display); font-size: 32px; font-weight: 400;
    line-height: 1.15; margin-bottom: 12px;
    transition: letter-spacing 0.3s;
  }
  .route-card:hover .route-title { letter-spacing: 0.02em; }
  .route-distance {
    font-size: 12px; font-weight: 300; color: var(--gray-light); letter-spacing: 0.08em;
    display: flex; align-items: center; gap: 10px;
  }
  .route-distance::before { content: ''; width: 20px; height: 1px; background: var(--gold-dark); }
  .route-num {
    position: absolute; top: 30px; right: 40px;
    font-family: var(--font-display); font-size: 100px; font-weight: 600; line-height: 1;
    color: rgba(201,168,76,0.05); transition: color 0.4s;
  }
  .route-card:hover .route-num { color: rgba(201,168,76,0.1); }
  .route-card-img { background: var(--dark2); }
  .route-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
  }
  .route-card-img:hover .route-bg { transform: scale(1.06); }
  .route-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.20) 0%, rgba(10,10,10,0.45) 42%, rgba(10,10,10,0.93) 100%);
  }
  .route-card-img .route-from,
  .route-card-img .route-title,
  .route-card-img .route-distance,
  .route-card-img .route-num { position: relative; z-index: 2; }
  .route-card-img .route-num { color: rgba(255,255,255,0.14); }
  .route-card-img:hover .route-num { color: rgba(201,168,76,0.28); }

  .why-section { padding: 120px 60px; background: var(--dark2); }
  .why-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(201,168,76,0.12); }
  .why-point {
    background: var(--dark3); padding: 40px 36px; transition: background 0.3s, transform 0.3s;
  }
  .why-point:hover { background: var(--dark4); }
  .why-point-num {
    font-family: var(--font-display); font-size: 13px; color: var(--gold);
    letter-spacing: 0.1em; margin-bottom: 18px; display: block;
  }
  .why-point h3 { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-bottom: 10px; }
  .why-point p { font-size: 12px; font-weight: 300; line-height: 1.8; color: var(--gray-light); }

  .testimonials-section { padding: 120px 60px; overflow: hidden; }
  .testimonials-track {
    display: flex; gap: 28px; margin-top: 60px;
    animation: scrollTestimonials 40s linear infinite; width: max-content;
  }
  @keyframes scrollTestimonials { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .testimonials-track:hover { animation-play-state: paused; }
  .testimonial {
    background: var(--dark2); border: 1px solid rgba(201,168,76,0.12);
    padding: 40px 44px; min-width: 360px; max-width: 360px; flex-shrink: 0;
    transition: border-color 0.3s, transform 0.3s;
  }
  .testimonial:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
  .gallery-strip { padding: 56px 0 64px; overflow: hidden; }
  .gallery-strip-head { text-align: center; margin-bottom: 40px; padding: 0 24px; }
  .gallery-strip-label { font-size: 11px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
  .gallery-strip-title { font-family: var(--font-display); font-size: 38px; font-weight: 500; color: var(--white-soft); letter-spacing: 0.01em; line-height: 1.2; }
  .gallery-viewport { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
  .gallery-track { display: flex; gap: 18px; width: max-content; will-change: transform; }
  .gallery-photo {
    height: 240px; width: auto; flex-shrink: 0; border-radius: 4px; object-fit: cover;
    border: 1px solid rgba(201,168,76,0.18); filter: saturate(1.02);
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  }
  .gallery-photo:hover { transform: scale(1.03); border-color: rgba(201,168,76,0.5); box-shadow: 0 12px 34px rgba(0,0,0,0.45); }
  .gallery-photo { cursor: var(--cur-hover); }
  .lightbox {
    position: fixed; inset: 0; z-index: 3000;
    background: rgba(5,5,7,0.92); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center; padding: 40px;
    opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .lightbox.open { opacity: 1; visibility: visible; }
  .lightbox-img {
    max-width: 90vw; max-height: 86vh; object-fit: contain; border-radius: 4px;
    border: 1px solid rgba(201,168,76,0.25); box-shadow: 0 30px 90px rgba(0,0,0,0.7);
    transform: scale(0.94); transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  }
  .lightbox.open .lightbox-img { transform: scale(1); }
  .lightbox-close {
    position: absolute; top: 24px; right: 28px; width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center; cursor: var(--cur-hover);
    background: rgba(10,10,10,0.5); border: 1px solid rgba(201,168,76,0.35); color: var(--gold);
    font-size: 26px; line-height: 1; border-radius: 50%; transition: all 0.3s; z-index: 2;
  }
  .lightbox-close:hover { background: var(--gold); color: var(--black); transform: rotate(90deg); }
  .lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    background: rgba(10,10,10,0.5); border: 1px solid rgba(201,168,76,0.3); color: var(--gold);
    font-family: var(--font-display); font-size: 30px; cursor: var(--cur-hover); transition: all 0.3s;
    -webkit-user-select: none; user-select: none;
  }
  .lightbox-nav:hover { background: rgba(201,168,76,0.18); border-color: var(--gold); }
  .lightbox-nav.prev { left: 24px; }
  .lightbox-nav.next { right: 24px; }
  .lightbox-counter {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
    font-size: 12px; letter-spacing: 0.2em; color: var(--gray-light);
  }
  @media (max-width: 600px) {
    .lightbox { padding: 16px; }
    .lightbox-nav { width: 42px; height: 42px; font-size: 24px; }
    .lightbox-nav.prev { left: 8px; } .lightbox-nav.next { right: 8px; }
  }
  @media (max-width: 768px) {
    .gallery-strip { padding: 40px 0 48px; }
    .gallery-strip-title { font-size: 26px; }
    .gallery-photo { height: 175px; }
  }
  .t-stars { display: flex; gap: 4px; margin-bottom: 20px; }
  .t-star { width: 14px; height: 14px; color: var(--gold); fill: var(--gold); }
  .t-text {
    font-family: var(--font-display); font-size: 17px; font-style: italic; font-weight: 400;
    line-height: 1.7; color: var(--white-soft); margin-bottom: 24px;
  }
  .t-author { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
  .t-country { font-size: 11px; font-weight: 300; color: var(--gold); margin-top: 3px; letter-spacing: 0.05em; }

  .cta-band {
    background: var(--gold); padding: 70px 60px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 32px;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
  }
  .cta-band::after {
    content: ''; position: absolute; right: 20px; top: -20px;
    width: 200px; height: 200px; border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.05);
  }
  .cta-band h2 { font-family: var(--font-display); font-size: 48px; font-weight: 400; color: var(--black); line-height: 1.1; }
  .cta-band h2 em { font-style: italic; }
  .cta-band-right { display: flex; flex-direction: column; gap: 14px; z-index: 1; }
  .cta-phone {
    font-family: var(--font-display); font-size: 34px; font-weight: 600;
    color: var(--black); text-decoration: none; letter-spacing: 0.02em; transition: opacity 0.3s;
  }
  .cta-phone:hover { opacity: 0.75; }
  .cta-sub {
    font-size: 11px; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--dark4);
    display: flex; align-items: center; gap: 20px;
  }
  .cta-sub-sep { width: 1px; height: 12px; background: rgba(0,0,0,0.25); }

  .contact-section { padding: 120px 60px; background: var(--dark2); }
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
  .contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
  .contact-method {
    display: flex; align-items: flex-start; gap: 22px; padding: 28px 32px;
    border: 1px solid rgba(201,168,76,0.12); transition: border-color 0.3s, transform 0.3s;
  }
  .contact-method:hover { border-color: rgba(201,168,76,0.35); transform: translateX(6px); }
  .contact-method-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(201,168,76,0.25); color: var(--gold);
    transition: background 0.3s;
  }
  .contact-method:hover .contact-method-icon { background: rgba(201,168,76,0.08); }
  .contact-method-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .contact-method-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 5px; }
  .contact-method-value { font-size: 16px; font-weight: 400; color: var(--white); }
  .contact-method-sub { font-size: 12px; color: var(--gray-light); margin-top: 3px; }
  .contact-method a { color: inherit; text-decoration: none; }
  .contact-method a:hover { color: var(--gold); }
  .form-group { margin-bottom: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 10px; }
  .form-input, .form-select, .form-textarea {
    width: 100%; background: var(--dark3); border: 1px solid rgba(201,168,76,0.15);
    color: var(--white); padding: 16px 20px; font-family: var(--font-body);
    font-size: 13px; font-weight: 300; outline: none; transition: border-color 0.3s;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
  .form-select { appearance: none; cursor: var(--cur); }
  .form-textarea { height: 130px; resize: none; }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--gray); }
  .form-consent { display: flex; align-items: flex-start; gap: 11px; margin: 4px 0 16px; }
  .form-consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; cursor: var(--cur-hover); }
  .form-consent label { font-size: 12px; line-height: 1.6; font-weight: 300; color: var(--gray-light); cursor: var(--cur-hover); }
  .form-consent a { color: var(--gold); text-decoration: underline; cursor: var(--cur-hover); }

  footer { background: var(--black); padding: 70px 60px 40px; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .footer-logo { font-family: var(--font-display); font-size: 32px; font-weight: 600; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 16px; }
  .footer-logo span { color: var(--white-soft); }
  .footer-logo {
    position: relative; display: inline-block; overflow: hidden;
  }
  .footer-logo::before {
    content: ''; position: absolute; top: 0; left: 0; width: 60%; height: 100%; z-index: 2;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
    transform: translateX(-180%) skewX(-18deg); pointer-events: none;
    animation: btnShine 5s ease-in-out infinite;
  }
  .footer-copy-brand { color: inherit; font: inherit; letter-spacing: inherit; }
  @media (prefers-reduced-motion: reduce) {
    .footer-logo::before { animation: none; opacity: 0; }
  }
  .footer-brand p { font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.8; max-width: 280px; }
  .footer-heading { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
  .footer-links a { font-size: 13px; font-weight: 300; color: var(--gray-light); text-decoration: none; transition: color 0.3s, padding-left 0.3s; letter-spacing: 0.04em; }
  .footer-links a:hover { color: var(--gold); padding-left: 4px; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; flex-wrap: wrap; gap: 16px; }
  .footer-copy { font-size: 12px; font-weight: 300; color: var(--gray); letter-spacing: 0.05em; }
  .footer-credit {
    text-align: center; padding-top: 28px; margin-top: 28px;
    border-top: 1px solid rgba(201,168,76,0.06);
    font-size: 11px; font-weight: 300; letter-spacing: 0.18em;
    color: rgba(136,136,128,0.4);
  }
  .footer-credit span { font-family: var(--font-body); text-transform: uppercase; }
  .footer-credit em {
    font-family: var(--font-display); font-style: italic;
    font-size: 15px; font-weight: 400; letter-spacing: 0.12em;
    color: rgba(201,168,76,0.35);
    margin-left: 6px;
    transition: color 0.4s;
  }
  .footer-credit a { text-decoration: none; }
  .footer-credit:hover em, .footer-credit a:hover em { color: rgba(201,168,76,0.85); }
  .footer-legal { margin-top: 26px; }
  .footer-legal .footer-heading { margin-bottom: 16px; }
  .footer-legal-links {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr;
    gap: 11px 28px; max-width: 420px;
  }
  .footer-legal-links li { line-height: 1.3; }
  .footer-legal-links a {
    font-size: 12.5px; font-weight: 300; color: var(--gray-light); text-decoration: none;
    letter-spacing: 0.04em; cursor: var(--cur-hover); transition: color 0.3s; position: relative;
    display: inline-block;
  }
  @media (max-width: 480px) { .footer-legal-links { grid-template-columns: 1fr; } }
  .footer-legal-links a:hover { color: var(--gold); }
  .footer-legal-links a::after {
    content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px;
    background: var(--gold); transition: width 0.3s;
  }
  .footer-legal-links a:hover::after { width: 100%; }
  .footer-tursab {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
    padding: 7px 14px; border: 1px solid rgba(201,168,76,0.3); border-radius: 40px;
    color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; background: rgba(201,168,76,0.05);
  }
  .footer-tursab .tursab-no { color: var(--gray-light); font-weight: 400; letter-spacing: 0.06em; }
  .footer-tursab svg { flex-shrink: 0; }
  .legal-modal .svc-modal { max-width: 720px; }
  .legal-body { font-size: 13.5px; line-height: 1.95; font-weight: 300; color: var(--gray-light); }
  .legal-body h4 { font-family: var(--font-display); font-size: 16px; color: #efe7d2; font-weight: 500; margin: 22px 0 8px; letter-spacing: 0.02em; }
  .legal-body h4:first-child { margin-top: 0; }
  .legal-body p { margin-bottom: 12px; }
  .legal-body ul { margin: 0 0 14px 18px; }
  .legal-body li { margin-bottom: 7px; }
  .legal-body a { color: var(--gold); text-decoration: none; }
  .faq-item { border-bottom: 1px solid rgba(201,168,76,0.12); }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 16px 0; cursor: var(--cur-hover); font-size: 14.5px; color: #efe7d2; font-weight: 400;
    transition: color 0.3s;
  }
  .faq-q:hover { color: var(--gold); }
  .faq-q .faq-ic { flex: 0 0 auto; color: var(--gold); font-size: 20px; transition: transform 0.35s; }
  .faq-item.open .faq-q .faq-ic { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .faq-a-inner { padding: 0 0 16px; font-size: 13px; line-height: 1.85; font-weight: 300; color: var(--gray-light); }
  .footer-social { display: flex; gap: 16px; }
  .social-link {
    width: 38px; height: 38px; border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; text-decoration: none; cursor: var(--cur);
  }
  .social-link:hover { border-color: var(--gold); background: var(--gold); }
  .social-link svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
  .social-link:hover svg { stroke: var(--black); }

  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal-left.in-view { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal-right.in-view { opacity: 1; transform: translateX(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  .reveal-delay-6 { transition-delay: 0.6s; }

  @media (max-width: 1200px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .lang-switch { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-lang { display: flex; }
    .section, .fleet-section, .routes-section, .why-section, .contact-section, .testimonials-section { padding: 80px 24px; }
    .hero-content { padding: 0 24px; }
  }
  @media (max-width: 1024px) {
    .hero-stats { left: 24px; bottom: 40px; gap: 36px; }
    .hero-image { width: 100%; opacity: 0.25; }
    .services-grid { grid-template-columns: 1fr; }
    .fleet-inner { grid-template-columns: 1fr; gap: 50px; }
    .routes-grid { grid-template-columns: 1fr; }
    .why-inner { grid-template-columns: 1fr; }
    .why-points { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .cta-band { flex-direction: column; padding: 50px 24px; }
    .scroll-indicator { display: none; }
    footer { padding: 50px 24px 24px; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 1200px), (max-height: 820px) {
    .hero { height: auto; min-height: 0; padding: 120px 0 60px; flex-direction: column; align-items: flex-start; }
    .hero-stats { margin-top: 40px; padding: 0; gap: 36px; }
    .hero-content { width: 100%; }
    .hero-image { width: 100%; opacity: 0.18; }
  }
  @media (max-width: 500px) {
    .footer-top { grid-template-columns: 1fr; }
    .hero h1 { font-size: 48px; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 32px; }
    .cta-phone { font-size: 26px; }
  }

  .cookie-consent {
    position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 9500;
    max-width: 560px; margin: 0 auto;
    background: linear-gradient(160deg, #14140f 0%, #0c0c0c 100%);
    border: 1px solid rgba(201,168,76,0.3); border-radius: 6px;
    padding: 22px 24px; box-shadow: 0 18px 50px rgba(0,0,0,0.55);
    transform: translateY(160%); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  }
  .cookie-consent.show { transform: translateY(0); }
  .cookie-consent p { font-size: 13px; line-height: 1.7; font-weight: 300; color: var(--gray-light); margin-bottom: 16px; }
  .cookie-consent a { color: var(--gold); text-decoration: underline; cursor: var(--cur-hover); }
  .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .cookie-btn {
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 11px 20px; border-radius: 3px; cursor: var(--cur-hover); transition: all 0.3s; border: 1px solid transparent;
  }
  .cookie-btn.accept { background: var(--gold); color: var(--black); }
  .cookie-btn.accept:hover { background: var(--gold-light); }
  .cookie-btn.reject { background: transparent; border-color: rgba(201,168,76,0.35); color: var(--gold); }
  .cookie-btn.reject:hover { border-color: var(--gold); }
  @media (max-width: 600px) { .cookie-consent { left: 14px; right: 14px; bottom: 14px; padding: 18px; } }

  .wa-sticky {
    position: fixed; bottom: 32px; right: 32px; z-index: 9000;
    display: flex; align-items: center; gap: 0;
    animation: waPop 0.6s 1.5s cubic-bezier(0.34,1.56,0.64,1) both;
  }
  .back-to-top {
    position: fixed; bottom: 32px; left: 32px; z-index: 8900;
    width: 46px; height: 46px; border-radius: 50%; cursor: var(--cur-hover);
    background: rgba(20,20,15,0.85); border: 1px solid rgba(201,168,76,0.4); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px); transition: all 0.35s;
    opacity: 0; visibility: hidden; transform: translateY(16px);
  }
  .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
  .back-to-top:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); box-shadow: 0 8px 22px rgba(201,168,76,0.3); }
  .back-to-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
  @media (max-width: 600px) { .back-to-top { bottom: 24px; left: 20px; width: 42px; height: 42px; } }
  @keyframes waPop {
    from { opacity: 0; transform: scale(0.4) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }
  .wa-sticky-btn {
    width: 62px; height: 62px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; cursor: var(--cur-hover);
    box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
    position: relative;
  }
  .wa-sticky-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.3);
  }
  .wa-sticky-btn svg { width: 32px; height: 32px; fill: #fff; }
  .wa-sticky-btn::before {
    content: ''; position: absolute; inset: -6px; border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.5);
    animation: waPulse 2.2s ease-out infinite;
  }
  .wa-sticky-btn::after {
    content: ''; position: absolute; inset: -12px; border-radius: 50%;
    border: 1.5px solid rgba(37,211,102,0.25);
    animation: waPulse 2.2s 0.4s ease-out infinite;
  }
  @keyframes waPulse {
    0%   { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.55); }
  }
  .wa-sticky-label {
    position: absolute; right: 74px;
    background: var(--dark); color: var(--white);
    font-family: var(--font-body); font-size: 11px;
    font-weight: 600; letter-spacing: 0.1em;
    white-space: nowrap; padding: 8px 16px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 2px;
    opacity: 0; transform: translateX(8px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
  }
  .wa-sticky-label::after {
    content: ''; position: absolute; right: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: rgba(201,168,76,0.3);
  }
  .wa-sticky:hover .wa-sticky-label {
    opacity: 1; transform: translateX(0);
  }

  .service-card {
    transform-style: preserve-3d;
    will-change: transform;
  }
  .service-card {
    transition: background 0.4s, box-shadow 0.4s, transform 0.15s ease !important;
  }
  .service-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.08) !important;
  }

  .fleet-slider-wrap {
    position: relative; overflow: hidden; margin-top: 36px;
  }
  .fleet-slider-track {
    display: flex; gap: 20px; transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
    will-change: transform;
  }
  .fleet-slider-track .fleet-feature {
    flex: 0 0 calc(100% - 24px); min-width: 0; margin-top: 0;
  }
  .fleet-slider-nav {
    display: flex; align-items: center; gap: 16px; margin-top: 22px;
  }
  .fleet-slider-btn {
    width: 42px; height: 42px;
    border: 1px solid rgba(201,168,76,0.3); background: transparent;
    color: var(--gold); cursor: var(--cur-hover); display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, border-color 0.25s;
    flex-shrink: 0;
  }
  .fleet-slider-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
  .fleet-slider-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .fleet-slider-dots { display: flex; gap: 8px; }
  .fleet-slider-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(201,168,76,0.25); cursor: var(--cur-hover);
    transition: background 0.3s, transform 0.3s;
  }
  .fleet-slider-dot.active { background: var(--gold); transform: scale(1.35); }

  .service-card {
    transition: background 0.4s, transform 0.4s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.4s;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.08);
  }
  .route-card {
    transition: background 0.35s, transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
  }
  .route-card:hover { transform: scale(1.015); }
  @keyframes logoShimmer {
    0%,100% { opacity: 1; }
    50% { opacity: 0.75; }
  }
  .stat-number {
    transition: color 0.4s;
  }
  .section-label {
    animation: labelSlide 0.6s ease both;
  }
  @keyframes labelSlide {
    from { opacity: 0; letter-spacing: 0.5em; }
    to   { opacity: 1; letter-spacing: 0.35em; }
  }
  .fleet-feature {
    transition: border-color 0.35s, background 0.35s, transform 0.4s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s;
  }
  .fleet-feature:hover {
    box-shadow: 4px 0 0 0 var(--gold-dark);
    transform: translateX(8px);
  }
  .testimonial-card {
    transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1), border-color 0.35s, background 0.35s;
  }
  .service-card { cursor: var(--cur-hover); }
  .svc-modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(6,6,8,0.78); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center; padding: 24px;
    opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .svc-modal-overlay.open { opacity: 1; visibility: visible; }
  .svc-modal {
    position: relative; width: 100%; max-width: 620px; max-height: 88vh; overflow-y: auto;
    background: linear-gradient(160deg, #14140f 0%, #0c0c0c 100%);
    border: 1px solid rgba(201,168,76,0.28);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    padding: 46px 46px 40px; transform: translateY(28px) scale(0.97);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); border-radius: 2px;
  }
  .svc-modal-overlay.open .svc-modal { transform: translateY(0) scale(1); }
  .svc-modal::before {
    content: ''; position: absolute; top: 0; left: 0; width: 70px; height: 2px; background: var(--gold);
  }
  .svc-modal-close {
    position: absolute; top: 18px; right: 18px; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center; cursor: var(--cur-hover);
    background: none; border: 1px solid rgba(201,168,76,0.3); color: var(--gold);
    font-size: 22px; line-height: 1; transition: all 0.3s; border-radius: 50%;
  }
  .svc-modal-close:hover { background: var(--gold); color: var(--black); transform: rotate(90deg); }
  .svc-modal-num { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.3em; color: rgba(201,168,76,0.55); margin-bottom: 8px; }
  .svc-modal-title { font-family: var(--font-display); font-size: 30px; font-weight: 500; color: #fff; margin-bottom: 6px; line-height: 1.15; }
  .svc-modal-sub { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
  .svc-modal-lead { font-size: 14px; line-height: 1.9; font-weight: 300; color: var(--gray-light); margin-bottom: 26px; }
  .svc-modal-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
  .svc-step { display: flex; gap: 15px; align-items: flex-start; }
  .svc-step-no {
    flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.45); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 13px;
  }
  .svc-step-txt { font-size: 13.5px; line-height: 1.7; font-weight: 300; color: var(--gray-light); padding-top: 4px; }
  .svc-step-txt b { color: #efe7d2; font-weight: 500; }
  .svc-modal-features { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
  .svc-feat {
    font-size: 11.5px; letter-spacing: 0.05em; color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3); padding: 6px 13px; border-radius: 40px;
    background: rgba(201,168,76,0.05);
  }
  .svc-modal-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--black); text-decoration: none;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    padding: 14px 28px; transition: all 0.3s; border-radius: 2px;
  }
  .svc-modal-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,168,76,0.25); }
  .svc-modal-cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
  body.modal-open { overflow: hidden; }
  @media (max-width: 600px) {
    .svc-modal { padding: 38px 24px 30px; }
    .svc-modal-title { font-size: 24px; }
  }
