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

    * { font-family: 'Inter', sans-serif; }

    :root {
      --gold: #D4A017;
      --gold-light: #F0C040;
      --dark: #0A0F1E;
      --dark2: #111827;
    }

    html { scroll-behavior: smooth; }

    body { background: var(--dark); color: #fff; margin: 0; padding: 0; overflow-x: hidden; }

    /* ====== HEADER ====== */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(10,15,30,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(212,160,23,0.2);
      padding: 14px 0;
      transition: all 0.3s;
    }
    .header-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo {
      font-size: 1.5rem; font-weight: 900; letter-spacing: -0.5px;
      color: #fff;
    }
    .logo span { color: var(--gold); }
    .nav a {
      color: #ccc; text-decoration: none; margin-left: 28px;
      font-size: 0.9rem; font-weight: 500;
      transition: color 0.2s;
    }
    .nav a:hover { color: var(--gold); }
    .header-phone {
      color: var(--gold); font-weight: 700; font-size: 1rem;
      text-decoration: none; white-space: nowrap;
    }

    /* ====== HERO ====== */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #0A0F1E 0%, #0d1a3a 50%, #0A0F1E 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      padding: 100px 24px 60px;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 60% 50%, rgba(212,160,23,0.08) 0%, transparent 70%);
    }
    .hero-bg-text {
      position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
      font-size: 18vw; font-weight: 900; color: rgba(255,255,255,0.02);
      white-space: nowrap; user-select: none; letter-spacing: -5px;
    }

    .hero-inner {
      max-width: 1200px; width: 100%;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center; position: relative; z-index: 1;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(212,160,23,0.12); border: 1px solid rgba(212,160,23,0.35);
      border-radius: 50px; padding: 6px 16px;
      font-size: 0.8rem; color: var(--gold); font-weight: 600;
      margin-bottom: 20px;
    }
    .hero-badge::before { content: '●'; font-size: 0.5rem; color: #4ade80; }
    .hero h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900; line-height: 1.1;
      margin: 0 0 20px;
    }
    .hero h1 .gold { color: var(--gold); }
    .hero p {
      color: #9ca3af; font-size: 1.05rem; line-height: 1.7;
      margin: 0 0 36px;
    }
    .btn-primary {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: #000; font-weight: 800; font-size: 1rem;
      padding: 16px 36px; border-radius: 12px;
      text-decoration: none; transition: all 0.3s;
      box-shadow: 0 4px 24px rgba(212,160,23,0.35);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(212,160,23,0.5);
    }
    .btn-outline {
      display: inline-block;
      background: transparent;
      border: 2px solid rgba(212,160,23,0.5);
      color: var(--gold); font-weight: 700; font-size: 1rem;
      padding: 14px 32px; border-radius: 12px;
      text-decoration: none; margin-left: 16px;
      transition: all 0.3s;
    }
    .btn-outline:hover {
      background: rgba(212,160,23,0.1);
      border-color: var(--gold);
    }

    /* Hero stats */
    .hero-stats {
      display: flex; gap: 24px; margin-top: 40px;
    }
    .stat-item { text-align: left; }
    .stat-num { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
    .stat-label { font-size: 0.78rem; color: #6b7280; margin-top: 4px; }

    /* Hero image side */
    .hero-images {
      position: relative; height: 500px;
    }
    .hero-img-main {
      position: absolute; width: 85%; right: 0; top: 0;
      border-radius: 20px; overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
      border: 1px solid rgba(212,160,23,0.2);
    }
    .hero-img-main img { width: 100%; height: 320px; object-fit: cover; display: block; }
    .hero-img-float {
      position: absolute; width: 55%; left: 0; bottom: 0;
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.7);
      border: 2px solid rgba(212,160,23,0.35);
    }
    .hero-img-float img { width: 100%; height: 200px; object-fit: cover; display: block; }

    /* ====== STRIP ====== */
    .strip {
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
      padding: 18px 0; overflow: hidden;
    }
    .strip-inner {
      display: flex; gap: 60px; white-space: nowrap;
      animation: marquee 20s linear infinite;
    }
    .strip-item {
      display: flex; align-items: center; gap: 10px;
      color: #000; font-weight: 700; font-size: 0.9rem;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ====== SECTIONS ====== */
    .section { padding: 90px 24px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label {
      color: var(--gold); font-size: 0.8rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 900; line-height: 1.15; margin: 0 0 16px;
    }
    .section-sub {
      color: #6b7280; font-size: 1rem; line-height: 1.7;
      max-width: 560px;
    }

    /* ====== SERVICES ====== */
    .services-bg { background: #060b18; }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-top: 56px;
    }
    .service-card {
      background: linear-gradient(135deg, #111827, #0d1829);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px; padding: 36px 28px;
      transition: all 0.35s; position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.35s;
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(212,160,23,0.2);
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }
    .service-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05));
      border: 1px solid rgba(212,160,23,0.25);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin-bottom: 20px;
    }
    .service-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
    .service-desc { color: #6b7280; font-size: 0.9rem; line-height: 1.65; }
    .service-seats {
      display: inline-block; margin-top: 16px;
      background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.2);
      color: var(--gold); font-size: 0.78rem; font-weight: 600;
      padding: 4px 12px; border-radius: 50px;
    }

    /* ====== FLEET ====== */
    .fleet-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 24px; margin-top: 56px;
    }
    .fleet-card {
      border-radius: 20px; overflow: hidden;
      position: relative; cursor: pointer;
      transition: transform 0.35s;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .fleet-card:hover { transform: scale(1.02); }
    .fleet-card img {
      width: 100%; height: 260px; object-fit: cover; display: block;
      transition: transform 0.5s;
    }
    .fleet-card:hover img { transform: scale(1.05); }
    .fleet-card-info {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
      padding: 40px 24px 20px;
    }
    .fleet-name { font-weight: 700; font-size: 1.1rem; }
    .fleet-cap { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-top: 4px; }

    .fleet-card.wide { grid-column: span 2; }
    .fleet-card.wide img { height: 340px; }

    /* ====== WHY ====== */
    .why-bg { background: #060b18; }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center; margin-top: 56px;
    }
    .why-list { list-style: none; padding: 0; margin: 0; }
    .why-item {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .why-item:last-child { border-bottom: none; }
    .why-num {
      font-size: 0.8rem; color: var(--gold); font-weight: 700;
      background: rgba(212,160,23,0.1);
      border: 1px solid rgba(212,160,23,0.2);
      width: 36px; height: 36px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
    }
    .why-text h4 { font-weight: 700; margin: 0 0 6px; font-size: 1rem; }
    .why-text p { color: #6b7280; font-size: 0.88rem; line-height: 1.6; margin: 0; }

    .why-image-block { position: relative; }
    .why-img-stack {
      display: grid; grid-template-rows: 1fr 1fr;
      gap: 16px; height: 480px;
    }
    .why-img-top, .why-img-bot { border-radius: 16px; overflow: hidden; }
    .why-img-top img, .why-img-bot img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .why-badge-float {
      position: absolute; top: -16px; right: -16px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: #000; font-weight: 800; font-size: 0.85rem;
      padding: 14px 20px; border-radius: 14px;
      text-align: center; line-height: 1.3;
      box-shadow: 0 8px 32px rgba(212,160,23,0.4);
    }

    /* ====== PROCESS ====== */
    .process-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; margin-top: 56px; position: relative;
    }
    .process-grid::before {
      content: '';
      position: absolute; top: 40px; left: 12.5%; right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(212,160,23,0.4), rgba(212,160,23,0.4), transparent);
    }
    .process-step { text-align: center; padding: 0 16px; }
    .step-circle {
      width: 80px; height: 80px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      font-size: 1.8rem;
      box-shadow: 0 8px 24px rgba(212,160,23,0.35);
      position: relative; z-index: 1;
    }
    .step-title { font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
    .step-desc { color: #6b7280; font-size: 0.85rem; line-height: 1.6; }

    /* ====== GALLERY ====== */
    .gallery-bg { background: #060b18; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 240px 240px;
      gap: 16px; margin-top: 56px;
    }
    .gallery-item {
      border-radius: 16px; overflow: hidden; position: relative;
      cursor: pointer;
    }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.5s;
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-item.tall { grid-row: span 2; }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(212,160,23,0.0);
      transition: background 0.3s;
      display: flex; align-items: center; justify-content: center;
    }
    .gallery-item:hover .gallery-overlay {
      background: rgba(212,160,23,0.12);
    }

    /* ====== CTA ====== */
    .cta-section {
      padding: 100px 24px;
      background: linear-gradient(135deg, #0d1829 0%, #0A0F1E 50%, #0d1829 100%);
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(212,160,23,0.1) 0%, transparent 70%);
    }
    .cta-inner {
      max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
    }
    .cta-title {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
      margin-bottom: 16px; line-height: 1.15;
    }
    .cta-sub { color: #6b7280; margin-bottom: 40px; font-size: 1rem; line-height: 1.7; }

    .contact-form {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 24px; padding: 40px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-input {
      width: 100%; background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px; padding: 14px 18px;
      color: #fff; font-size: 0.95rem; outline: none;
      transition: border-color 0.2s;
      box-sizing: border-box;
    }
    .form-input::placeholder { color: #4b5563; }
    .form-input:focus { border-color: var(--gold); }
    select.form-input option { background: #111827; }
    .form-btn {
      width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: #000; font-weight: 800; font-size: 1rem;
      padding: 18px; border: none; border-radius: 12px;
      cursor: pointer; transition: all 0.3s;
      margin-top: 8px; box-shadow: 0 4px 24px rgba(212,160,23,0.35);
    }
    .form-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(212,160,23,0.5);
    }

    /* ====== CONTACTS ====== */
    .contacts-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-top: 56px;
    }
    .contact-card {
      background: linear-gradient(135deg, #111827, #0d1829);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px; padding: 32px 28px;
      text-align: center; transition: all 0.3s;
    }
    .contact-card:hover {
      border-color: rgba(212,160,23,0.25);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    }
    .contact-icon {
      font-size: 2.2rem; margin-bottom: 14px; display: block;
    }
    .contact-label { color: #6b7280; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
    .contact-val { font-size: 1.1rem; font-weight: 700; color: #fff; text-decoration: none; }
    .contact-val:hover { color: var(--gold); }

    /* ====== FOOTER ====== */
    footer {
      background: #060b18;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 40px 24px;
      text-align: center;
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-logo { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
    .footer-logo span { color: var(--gold); }
    .footer-copy { color: #4b5563; font-size: 0.85rem; }

    /* ====== WHATSAPP FLOATING ====== */
    .wa-btn {
      position: fixed; bottom: 28px; right: 28px; z-index: 999;
      width: 60px; height: 60px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 28px rgba(37,211,102,0.5);
      text-decoration: none; transition: all 0.3s;
      animation: pulse-wa 2.5s infinite;
    }
    .wa-btn:hover { transform: scale(1.1); }
    .wa-btn svg { width: 32px; height: 32px; fill: white; }
    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
      50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
    }

    /* ====== MOBILE ====== */
    .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .burger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; }

    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid::before { display: none; }
      .contacts-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav { display: none; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-images { height: 300px; }
      .hero-img-main img { height: 220px; }
      .hero-img-float { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .fleet-grid { grid-template-columns: 1fr; }
      .fleet-card.wide { grid-column: span 1; }
      .why-grid { grid-template-columns: 1fr; }
      .why-image-block { display: none; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
      .gallery-item.tall { grid-row: span 1; }
      .contacts-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .hero-stats { flex-wrap: wrap; gap: 16px; }
      .contact-form { padding: 24px 20px; }
    }
    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr; }
    }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
    .reveal.visible { opacity: 1; transform: translateY(0); }