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

    :root {
      --black: #0B0F14;
      --navy: #12233B;
      --silver: #C0C7D1;
      --red: #D81F32;
      --white: #F5F5F5;
      --glass: rgba(255, 255, 255, 0.04);
      --glass-border: rgba(192, 199, 209, 0.15);
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
      display: none;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      opacity: 1;
      transition: opacity 0.4s ease-in-out;
    }

    body.fade-out {
      opacity: 0;
    }

    h1,
    h2,
    h3,
    .orb {
      font-family: 'Orbitron', sans-serif
    }

    .poppins {
      font-family: 'Poppins', sans-serif
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
      background: transparent;
      backdrop-filter: none;
      border-bottom: 1px solid transparent;
      padding: 0 5%;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav.scrolled {
      background: rgba(11, 15, 20, 0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--glass-border);
    }

    #nav-logo {
      height: 130px;
      width: 130px;
      object-fit: contain;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateY(30px);
    }

    nav.scrolled #nav-logo {
      height: 70px;
      width: 70px;
      transform: translateY(0);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none
    }

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

    .nav-links a {
      color: var(--silver);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color 0.3s;
      font-family: 'Poppins', sans-serif
    }

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

    .nav-cta {
      background: var(--red);
      color: var(--white);
      border: none;
      padding: 10px 24px;
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      cursor: pointer;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      transition: all 0.3s
    }

    .nav-cta:hover {
      background: #ff2235;
      transform: translateY(-1px)
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 0 5%
    }

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

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(11, 15, 20, 0.7), rgba(11, 15, 20, 0.7));
      z-index: 1;
    }

    .hero-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.25);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(192, 199, 209, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 199, 209, 0.04) 1px, transparent 1px);
      background-size: 60px 60px
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(216, 31, 50, 0.15);
      border: 1px solid rgba(216, 31, 50, 0.4);
      padding: 6px 16px;
      margin-bottom: 24px;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-family: 'Orbitron', sans-serif;
      color: var(--red)
    }

    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse 2s infinite
    }

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

    .hero h1 {
      font-size: clamp(42px, 6vw, 80px);
      font-weight: 900;
      line-height: 0.95;
      letter-spacing: -1px;
      margin-bottom: 8px
    }

    .hero h1 .line1 { color: var(--white) }
    .hero h1 .line2 { color: var(--silver) }
    .hero h1 .line3 { -webkit-text-stroke: 1px var(--red); color: transparent }

    .hero-tagline {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      color: var(--silver);
      margin: 20px 0 40px;
      font-weight: 300;
      letter-spacing: 2px
    }

    .hero-tagline span {
      color: var(--red);
      font-weight: 600
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
      border: none;
      padding: 16px 36px;
      font-family: 'Orbitron', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      cursor: pointer;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block
    }

    .btn-primary:hover {
      background: #ff2235;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(216, 31, 50, 0.4)
    }

    .btn-outline {
      background: transparent;
      color: var(--silver);
      border: 1px solid var(--glass-border);
      padding: 16px 36px;
      font-family: 'Orbitron', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      cursor: pointer;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block
    }

    .btn-outline:hover {
      border-color: var(--red);
      color: var(--red)
    }

    .hero-stats {
      position: absolute;
      bottom: 40px;
      right: 5%;
      z-index: 2;
      display: flex;
      gap: 40px
    }

    .hero-stat { text-align: center }

    .hero-stat-num {
      font-family: 'Orbitron', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--white)
    }

    .hero-stat-num span { color: var(--red) }

    .hero-stat-label {
      font-size: 11px;
      color: var(--silver);
      letter-spacing: 2px;
      text-transform: uppercase
    }

    /* SECTIONS */
    section { padding: 100px 5% }

    .section-label {
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      letter-spacing: 4px;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 12px
    }

    .section-title {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 16px
    }

    .section-sub {
      font-size: 16px;
      color: var(--silver);
      font-family: 'Poppins', sans-serif;
      font-weight: 300;
      max-width: 560px
    }

    /* SERVICES */
    .services-bg {
      background: linear-gradient(180deg, var(--black) 0%, #0a0e13 50%, var(--black) 100%)
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 60px;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 4/3;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 40px;
      transition: all 0.4s;
    }

    .service-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      z-index: 0;
    }

    .service-card:hover .service-img { transform: scale(1.1); }

    .service-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(11, 15, 20, 0.95) 0%, rgba(11, 15, 20, 0.4) 50%, transparent 100%);
      z-index: 1;
      transition: background 0.4s ease;
    }

    .service-card:hover .service-overlay {
      background: linear-gradient(0deg, rgba(216, 31, 50, 0.9) 0%, rgba(11, 15, 20, 0.6) 60%, transparent 100%);
    }

    .service-content { position: relative; z-index: 2; }

    .service-name {
      font-family: 'Orbitron', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 12px;
      color: var(--white);
      transition: transform 0.4s ease;
    }

    .service-card:hover .service-name { transform: translateY(-5px); }

    .service-desc {
      font-size: 14px;
      color: var(--silver);
      line-height: 1.6;
      font-family: 'Poppins', sans-serif;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s ease;
    }

    .service-card:hover .service-desc {
      opacity: 1;
      transform: translateY(0);
      color: var(--white);
    }

    @media(max-width:992px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media(max-width:768px) {
      .services-grid { grid-template-columns: 1fr; }
    }

    /* WHY CHOOSE */
    .why-bg {
      background: linear-gradient(135deg, var(--navy) 0%, var(--black) 100%);
      position: relative;
      overflow: hidden
    }

    .why-bg::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(216, 31, 50, 0.08) 0%, transparent 70%)
    }

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

    .why-items { display: flex; flex-direction: column; gap: 24px }

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

    .why-num {
      font-family: 'Orbitron', sans-serif;
      font-size: 40px;
      font-weight: 900;
      color: rgba(216, 31, 50, 0.2);
      line-height: 1;
      min-width: 60px
    }

    .why-text h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--white)
    }

    .why-text p { font-size: 14px; color: var(--silver); line-height: 1.7 }

    .why-visual { position: relative }

    .why-card-main {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      padding: 40px;
      backdrop-filter: blur(10px);
      position: relative
    }

    .why-card-main::after {
      content: '';
      position: absolute;
      top: -1px;
      left: 20%;
      right: 20%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--red), transparent)
    }

    .cert-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 24px
    }

    .cert-badge {
      background: rgba(18, 35, 59, 0.6);
      border: 1px solid var(--glass-border);
      padding: 16px;
      text-align: center
    }

    .cert-badge .num {
      font-family: 'Orbitron', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--red)
    }

    .cert-badge .label { font-size: 11px; color: var(--silver); letter-spacing: 1px; margin-top: 4px }

    /* STATS */
    .stats-section { background: var(--red); padding: 60px 5% }

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

    .stat-item { text-align: center }

    .stat-num {
      font-family: 'Orbitron', sans-serif;
      font-size: 44px;
      font-weight: 900;
      color: var(--white)
    }

    .stat-label {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 4px
    }

    /* TESTIMONIALS */
    .test-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 60px
    }

    .test-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      padding: 32px;
      position: relative;
      backdrop-filter: blur(10px);
      transition: transform 0.3s
    }

    .test-card:hover { transform: translateY(-4px) }

    .test-card::before {
      content: '"';
      position: absolute;
      top: 16px;
      right: 24px;
      font-size: 80px;
      font-family: 'Georgia', serif;
      color: rgba(216, 31, 50, 0.15);
      line-height: 1
    }

    .stars { color: var(--red); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px }

    .test-text {
      font-size: 14px;
      color: var(--silver);
      line-height: 1.8;
      font-family: 'Poppins', sans-serif;
      font-weight: 300;
      margin-bottom: 20px
    }

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

    .test-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--red), var(--navy));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
      color: var(--white)
    }

    .test-name { font-weight: 600; font-size: 14px; color: var(--white) }

    .test-vehicle {
      font-size: 12px;
      color: var(--silver);
      font-family: 'Orbitron', sans-serif;
      letter-spacing: 1px
    }

    /* BOOKING */
    .booking-section {
      background: linear-gradient(135deg, rgba(18, 35, 59, 0.8) 0%, var(--black) 100%);
      position: relative;
      overflow: hidden
    }

    .booking-section::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, transparent, var(--red), transparent)
    }

    .booking-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 40px;
      max-width: 800px
    }

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

    .form-group.full { grid-column: 1/-1 }

    .form-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--silver);
      font-family: 'Orbitron', sans-serif
    }

    .form-input {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--glass-border);
      color: var(--white);
      padding: 14px 18px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color 0.3s;
      -webkit-appearance: none
    }

    .form-input:focus { border-color: var(--red) }
    .form-input option { background: var(--black) }

    .form-select {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--glass-border);
      color: var(--white);
      padding: 14px 18px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color 0.3s;
      -webkit-appearance: none;
      cursor: pointer
    }

    .form-select:focus { border-color: var(--red) }
    .form-select option { background: var(--black); color: var(--white) }

    /* BRANDS */
    .brands-track {
      display: flex;
      gap: 60px;
      align-items: center;
      margin-top: 50px;
      overflow: hidden;
      mask: linear-gradient(90deg, transparent, black 20%, black 80%, transparent)
    }

    .brands-inner {
      display: flex;
      gap: 60px;
      align-items: center;
      animation: scroll 20s linear infinite;
      white-space: nowrap
    }

    @keyframes scroll {
      0% { transform: translateX(0) }
      100% { transform: translateX(-50%) }
    }

    .brand-logo {
      font-family: 'Orbitron', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: rgba(192, 199, 209, 0.3);
      letter-spacing: 3px;
      text-transform: uppercase;
      transition: color 0.3s;
      cursor: pointer
    }

    .brand-logo:hover { color: var(--silver) }

    /* GALLERY */
    .gallery-container {
      position: relative;
      overflow: visible;
      margin: 40px 0;
    }

    .gallery-slider {
      display: flex;
      gap: 20px;
      transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
      will-change: transform;
    }

    .gal-item {
      flex: 0 0 calc(33.333% - 14px);
      aspect-ratio: 4/5;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border: 1px solid var(--glass-border);
    }

    .gal-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .gal-item:hover .gal-bg { transform: scale(1.1); }

    .gal-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(11, 15, 20, 0.9) 0%, rgba(11, 15, 20, 0) 50%);
      opacity: 0.8;
      transition: opacity 0.3s;
    }

    .gal-label {
      position: absolute;
      bottom: 25px;
      left: 25px;
      font-family: 'Orbitron', sans-serif;
      font-size: 14px;
      letter-spacing: 2px;
      color: var(--white);
      z-index: 2;
    }

    .gallery-controls {
      position: absolute;
      top: 50%;
      left: -20px;
      right: -20px;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 10;
    }

    .gal-btn {
      width: 52px;
      height: 52px;
      border: 1px solid var(--glass-border);
      background: rgba(11, 15, 20, 0.75);
      backdrop-filter: blur(8px);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 50%;
      pointer-events: all;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .gal-btn:hover {
      background: var(--red);
      border-color: var(--red);
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(216, 31, 50, 0.5);
    }

    @media (max-width: 992px) { .gal-item { flex: 0 0 calc(50% - 10px); } }
    @media (max-width: 600px) { .gal-item { flex: 0 0 100%; } }

    /* LIGHTBOX */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
      cursor: zoom-out;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .lightbox.active { display: flex; opacity: 1; }

    .lightbox-img {
      max-width: 90%;
      max-height: 80%;
      box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
      border: 1px solid var(--glass-border);
      transform: scale(0.9);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .lightbox.active .lightbox-img { transform: scale(1); }

    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--red);
      color: white;
      border: none;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: all 0.3s;
      z-index: 10001;
    }

    .lightbox-close:hover { background: #ff2235; transform: rotate(90deg); }

    /* CONTACT */
    .contact-section {
      padding: 100px 5%;
      background: linear-gradient(180deg, var(--black), #060810);
      position: relative;
      overflow: hidden;
    }

    .contact-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-top: 60px;
      align-items: start
    }

    .contact-info { display: flex; flex-direction: column; gap: 24px }

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

    .contact-icon {
      width: 44px;
      height: 44px;
      background: rgba(216, 31, 50, 0.08);
      border: 1px solid var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 2px;
    }

    .contact-detail h4 {
      font-family: 'Orbitron', sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--red);
      margin-bottom: 4px
    }

    .contact-detail p { font-size: 14px; color: var(--silver) }

    .map-placeholder {
      background: var(--navy);
      border: 1px solid var(--glass-border);
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      margin-top: 24px
    }

    .map-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(216, 31, 50, 0.1) 0%, transparent 60%)
    }

    .map-text {
      font-family: 'Orbitron', sans-serif;
      font-size: 12px;
      letter-spacing: 3px;
      color: var(--silver);
      text-align: center;
      z-index: 1
    }

    .map-pin { font-size: 40px; display: block; margin-bottom: 12px }

    /* FOOTER */
    footer {
      background: #060810;
      border-top: 1px solid var(--glass-border);
      padding: 60px 5% 30px
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 50px
    }

    .footer-brand p {
      font-size: 13px;
      color: var(--silver);
      line-height: 1.8;
      margin: 16px 0 24px;
      font-family: 'Poppins', sans-serif
    }

    .footer-col h5 {
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--red);
      margin-bottom: 20px;
      text-transform: uppercase
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px }

    .footer-col ul a {
      color: var(--silver);
      text-decoration: none;
      font-size: 13px;
      font-family: 'Poppins', sans-serif;
      transition: color 0.3s
    }

    .footer-col ul a:hover { color: var(--red) }

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

    .footer-copy {
      font-size: 12px;
      color: rgba(192, 199, 209, 0.5);
      font-family: 'Poppins', sans-serif
    }

    .social-links { display: flex; gap: 12px }

    .social-btn {
      width: 36px;
      height: 36px;
      border: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s;
      color: var(--silver);
      text-decoration: none
    }

    .social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white) }

    .social-icon {
      width: 18px;
      height: 18px;
      filter: brightness(0) invert(1);
      transition: all 0.3s;
    }

    /* WHATSAPP FLOAT */
    .wa-btn {
      position: fixed;
      bottom: 80px;
      right: 30px;
      z-index: 998;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      transition: transform 0.3s;
      text-decoration: none;
      animation: float 3s ease-in-out infinite
    }

    .wa-icon { width: 30px; height: 30px; filter: brightness(0) invert(1); }

    @keyframes float {
      0%, 100% { transform: translateY(0) }
      50% { transform: translateY(-8px) }
    }

    .wa-btn:hover { transform: scale(1.1) !important; animation: none }

    /* PROCESS */
    .process-steps {
      display: flex;
      gap: 0;
      margin-top: 60px;
      position: relative
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red), var(--red), transparent)
    }

    .step { flex: 1; text-align: center; padding: 0 20px; position: relative }

    .step-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--black);
      border: 2px solid var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-family: 'Orbitron', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--red);
      position: relative;
      z-index: 1
    }

    .step h4 { font-family: 'Orbitron', sans-serif; font-size: 12px; letter-spacing: 1px; margin-bottom: 8px; color: var(--white) }
    .step p { font-size: 12px; color: var(--silver); line-height: 1.6 }

    /* Scroll animations */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1)
    }

    .reveal.visible { opacity: 1; transform: translateY(0) }

    /* Active nav */
    .nav-active { color: var(--red) !important }

    @media(max-width:768px) {
      .hero-bg video { object-position: 75% center; }
      .nav-links { display: none }
      .hero-stats { display: none }
      .why-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr }
      .stats-grid { grid-template-columns: repeat(2, 1fr) }
      .booking-form { grid-template-columns: 1fr }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto }
      .gal-item:first-child { grid-column: span 2 }
      .process-steps { flex-direction: column; gap: 20px }
      .process-steps::before { display: none }
      .footer-grid { grid-template-columns: 1fr 1fr }
    }

    /* CUSTOM NOTIFICATIONS */
    .toast-container {
      position: fixed;
      top: 30px;
      left: 50%;
      transform: translateX(-50%) translateY(-100px);
      z-index: 10000;
      background: rgba(11, 15, 20, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      border-left: 4px solid var(--red);
      padding: 20px 30px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
      opacity: 0;
      pointer-events: none;
      min-width: 320px;
      max-width: 90vw;
    }

    .toast-container.active {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .toast-icon { font-size: 24px; color: var(--red); }
    .toast-content { flex: 1; }

    .toast-title {
      font-family: 'Orbitron', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      color: var(--red);
      margin-bottom: 4px;
      font-weight: 700;
    }

    .toast-message { font-size: 14px; color: var(--white); line-height: 1.4; }

    .toast-close {
      background: none;
      border: none;
      color: rgba(192, 199, 209, 0.5);
      cursor: pointer;
      font-size: 18px;
      padding: 5px;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .util-icon { width: 24px; height: 24px; filter: brightness(0) invert(1); transition: all 0.3s; pointer-events: none; }
    .util-icon.sm { width: 14px; height: 14px; }
    .util-icon.red { filter: invert(21%) sepia(86%) saturate(4897%) hue-rotate(345deg) brightness(89%) contrast(92%); }

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

    .bg-embossed-logo {
      position: absolute;
      top: 55%;
      left: 5%;
      transform: translateY(-50%) rotate(15deg);
      width: 900px;
      height: auto;
      opacity: 0.08;
      pointer-events: none;
      z-index: 0;
      filter: grayscale(1) brightness(1.5);
    }

    .contact-grid, .section-label, .section-title {
      position: relative;
      z-index: 2;
    }
