    :root {
      --black: #0a0a0a;
      --dark1: #111010;
      --dark2: #1a1616;
      --dark3: #222020;
      --dark4: #2e2a2a;
      --red: #d72323;
      --red-dk: #a41a1a;
      --teal: #0b4c64;
      --cream: #f5eded;
      --white: #ffffff;
      --glass: rgba(255, 255, 255, 0.04);
      --border: rgba(255, 255, 255, 0.08);
      --muted: rgba(255, 255, 255, 0.40);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--dark1);
      color: var(--white);
      overflow-x: hidden;

    }

    /* Grain overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ── KEYFRAMES ── */
    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(215, 35, 35, .5)
      }

      50% {
        box-shadow: 0 0 0 12px rgba(215, 35, 35, 0)
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes shimmer {
      from {
        left: -60%
      }

      to {
        left: 130%
      }
    }

    @keyframes glow {

      0%,
      100% {
        opacity: .4
      }

      50% {
        opacity: .9
      }
    }

    @keyframes borderPop {
      from {
        transform: scaleX(0)
      }

      to {
        transform: scaleX(1)
      }
    }

    @keyframes spin {
      to {
        transform: rotate(360deg)
      }
    }

    /* ── LAYOUT ── */
    .wrap {
      max-width: 1200px;
      margin: auto;
      padding: 0 2rem;
    }

    /* ── EYEBROW ── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: .9rem;
    }

    .eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--red);
    }

    .eyebrow span {
      font-family: 'Rajdhani', sans-serif;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--red);
    }

    .eyebrow-c {
      justify-content: center;
    }

    .eyebrow-c::before,
    .eyebrow-c::after {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--red);
    }

    /* ── PREMIUM SECTION TITLE ── */
    .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: .93;
      letter-spacing: 2px;
      color: var(--white);
      display: inline-block;
      position: relative;
      padding-bottom: .5rem;
      margin-bottom: 1.8rem;
    }

    .sec-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60%;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--teal), transparent);
    }

    .sec-title::before {
      content: '';
      position: absolute;
      left: -14px;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--red), var(--teal));
      border-radius: 2px;
    }

    .sec-title .red {
      color: var(--red);
    }

    .sec-title .outline {
      -webkit-text-stroke: 1.5px rgba(255, 255, 255, .6);
      color: transparent;
    }

    .sec-title-wrap {
      padding-left: 18px;
    }

    /* ── BUTTONS ── */
    .btn-red {
      padding: 10px 24px;
      border-radius: 4px;
      background: linear-gradient(135deg, var(--red), var(--red-dk));
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: .88rem;
      letter-spacing: 1px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(215, 35, 35, .35);
    }

    .btn-red::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
      left: -100%;
      transition: left .4s ease;
    }

    .btn-red:hover::after {
      left: 100%;
    }

    .btn-red:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(215, 35, 35, .5);
    }

    .btn-ghost {
      padding: 9px 22px;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, .18);
      color: rgba(255, 255, 255, .72);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: .88rem;
      letter-spacing: 1px;
      background: rgba(255, 255, 255, .03);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .3s ease;
      backdrop-filter: blur(8px);
    }

    .btn-ghost:hover {
      border-color: var(--red);
      color: #fff;
      background: rgba(215, 35, 35, .1);
      transform: translateY(-2px);
    }

    .btn-green {
      padding: 10px 20px;
      border-radius: 4px;
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: 1px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .3s ease;
      width: 100%;
      justify-content: center;
      box-shadow: 0 6px 16px rgba(34, 197, 94, .25);
    }

    .btn-green:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(34, 197, 94, .4);
    }

    /* ━━━━━━━━━━━━━━━━━━━━
               HERO
            ━━━━━━━━━━━━━━━━━━━━ */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      background:
        radial-gradient(ellipse 80% 60% at 78% 40%, rgba(215, 35, 35, .16) 0%, transparent 60%),
        radial-gradient(ellipse 55% 50% at 15% 68%, rgba(11, 76, 100, .14) 0%, transparent 55%),
        linear-gradient(155deg, #0a0a0a 0%, #160d0d 45%, #0d0d0d 100%);
      overflow: hidden;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image: linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
      background-size: 52px 52px;
    }

    .hero-band {
      position: absolute;
      z-index: 2;
      top: -10%;
      right: -4%;
      width: 50%;
      height: 130%;
      background: linear-gradient(160deg, rgba(215, 35, 35, .06) 0%, transparent 55%);
      border-left: 1px solid rgba(215, 35, 35, .15);
      transform: skewX(-8deg);
    }

    .hero-vline {
      position: absolute;
      z-index: 2;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, transparent, var(--red) 20%, var(--red) 80%, transparent);
      opacity: .16;
      animation: glow 3s ease infinite;
    }

    .hero-vline-1 {
      left: 8%;
    }

    .hero-vline-2 {
      right: 10%;
      animation-delay: 1.5s;
    }

    .hero-inner {
      position: relative;
      z-index: 5;
      width: 100%;
      max-width: 1200px;
      margin: auto;
      padding: 5rem 2rem 4rem;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      align-items: center;
      gap: 4rem;
    }

    .h-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1px solid rgba(215, 35, 35, .4);
      background: rgba(215, 35, 35, .07);
      backdrop-filter: blur(12px);
      margin-bottom: 1.2rem;
      animation: fadeUp .6s ease both;
    }

    .h-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red);
      animation: pulse 2s ease infinite;
    }

    .h-badge span {
      color: rgba(255, 255, 255, .7);
      font-family: 'Rajdhani', sans-serif;
      font-size: .67rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .h-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.2rem, 7vw, 6rem);
      line-height: .9;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: .5rem;
      animation: fadeUp .7s .1s ease both;
    }

    .h-title .red {
      color: var(--red);
    }

    .h-title .outline {
      -webkit-text-stroke: 2px rgba(255, 255, 255, .6);
      color: transparent;
    }

    .h-title-underline {
      display: block;
      height: 3px;
      width: 80px;
      margin: .7rem 0 1rem;
      background: linear-gradient(90deg, var(--red), var(--teal));
      animation: borderPop .8s .4s ease both;
      transform-origin: left;
    }

    .h-sub {
      color: rgba(255, 255, 255, .48);
      font-size: .92rem;
      line-height: 1.75;
      max-width: 480px;
      margin-bottom: 1.8rem;
      font-weight: 300;
      animation: fadeUp .7s .2s ease both;
    }

    .h-ctas {
      display: flex;
      gap: .9rem;
      flex-wrap: wrap;
      animation: fadeUp .7s .3s ease both;
    }

    /* hero stat cards */
    .hero-cards {
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }

    .h-stat {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .07);
      border-left: 3px solid transparent;
      border-radius: 10px;
      padding: 1rem 1.2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      backdrop-filter: blur(14px);
      transition: all .3s ease;
    }

    .h-stat:nth-child(1) {
      border-left-color: var(--red);
      animation: fadeUp .6s .45s ease both;
    }

    .h-stat:nth-child(2) {
      border-left-color: var(--teal);
      animation: fadeUp .6s .55s ease both;
    }

    .h-stat:nth-child(3) {
      border-left-color: #22c55e;
      animation: fadeUp .6s .65s ease both;
    }

    .h-stat:nth-child(4) {
      border-left-color: #555;
      animation: fadeUp .6s .75s ease both;
    }

    .h-stat:hover {
      background: rgba(255, 255, 255, .06);
      transform: translateX(-4px);
    }

    .hsi {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: #fff;
    }

    .hsi.red {
      background: linear-gradient(135deg, var(--red), var(--red-dk));
      box-shadow: 0 4px 12px rgba(215, 35, 35, .3);
    }

    .hsi.teal {
      background: linear-gradient(135deg, var(--teal), #063a50);
      box-shadow: 0 4px 12px rgba(11, 76, 100, .3);
    }

    .hsi.dark {
      background: linear-gradient(135deg, #333, #1a1a1a);
    }

    .hsi.green {
      background: linear-gradient(135deg, #22c55e, #16a34a);
      box-shadow: 0 4px 12px rgba(34, 197, 94, .25);
    }

    .hs-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      line-height: 1;
      color: #fff;
      letter-spacing: .5px;
    }

    .hs-num span {
      color: var(--red);
    }

    .hs-lbl {
      color: rgba(255, 255, 255, .38);
      font-family: 'Rajdhani', sans-serif;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    /* ━━━━━━━━━━━━━━━━━━━━
               MARQUEE
            ━━━━━━━━━━━━━━━━━━━━ */
    .marquee-wrap {
      background: var(--red);
      overflow: hidden;
      padding: 11px 0;
      border-top: 1px solid rgba(255, 255, 255, .1);
      border-bottom: 1px solid var(--red-dk);
      position: relative;
      z-index: 10;
    }

    .marquee-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, .04) 60px, rgba(255, 255, 255, .04) 61px);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 28s linear infinite;
    }

    .m-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0 2.5rem;
      white-space: nowrap;
      font-family: 'Bebas Neue', sans-serif;
      font-size: .9rem;
      letter-spacing: 3.5px;
      color: rgba(255, 255, 255, .92);
    }

    .m-sep {
      color: rgba(255, 255, 255, .35);
      font-size: .38rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━
               SECTION CHROME
            ━━━━━━━━━━━━━━━━━━━━ */
    .page-sec {
      padding: 3rem 0;
      position: relative;
    }

    .sec-head {
      margin-bottom: 3rem;
    }

    .sec-head p {
      color: rgba(255, 255, 255, .38);
      font-size: .9rem;
      max-width: 520px;
      line-height: 1.75;
      font-weight: 300;
      margin-top: .6rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━
               CONTACT CARDS
            ━━━━━━━━━━━━━━━━━━━━ */
    .contact-sec {
      background: var(--dark1);
    }

    .cc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.3rem;
      margin-bottom: 4rem;
    }

    .cc {
      background: var(--dark2);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 6px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: all .35s cubic-bezier(.16, 1, .3, 1);
    }

    /* corner brackets */
    .cc::before,
    .cc::after {
      content: '';
      position: absolute;
      width: 16px;
      height: 16px;
      border-color: var(--red);
      border-style: solid;
      opacity: 0;
      transition: opacity .35s;
    }

    .cc::before {
      top: 8px;
      left: 8px;
      border-width: 2px 0 0 2px;
    }

    .cc::after {
      bottom: 8px;
      right: 8px;
      border-width: 0 2px 2px 0;
    }

    .cc:hover::before,
    .cc:hover::after {
      opacity: 1;
    }

    /* top sweep line */
    .cc .cc-top-line {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      z-index: 3;
      background: linear-gradient(90deg, var(--red), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
    }

    .cc:hover .cc-top-line {
      transform: scaleX(1);
    }

    .cc:hover {
      transform: translateY(-6px);
      border-color: rgba(215, 35, 35, .25);
      box-shadow: 0 20px 48px rgba(0, 0, 0, .5);
      background: rgba(255, 255, 255, .055);
    }

    .cc-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 1.3rem;
      transition: all .35s ease;
    }

    .cc-icon.red {
      background: linear-gradient(135deg, var(--red), var(--red-dk));
      color: #fff;
      box-shadow: 0 6px 18px rgba(215, 35, 35, .3);
    }

    .cc-icon.teal {
      background: linear-gradient(135deg, var(--teal), #063a50);
      color: #fff;
      box-shadow: 0 6px 18px rgba(11, 76, 100, .3);
    }

    .cc-icon.dark {
      background: rgba(255, 255, 255, .07);
      color: rgba(255, 255, 255, .6);
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .cc-icon.green {
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #fff;
      box-shadow: 0 6px 18px rgba(34, 197, 94, .25);
    }

    .cc:hover .cc-icon {
      transform: scale(1.1) rotate(4deg);
    }

    .cc-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      letter-spacing: 1px;
      color: #fff;
      margin-bottom: .9rem;
    }

    .cc-line {
      display: block;
      margin-bottom: .6rem;
    }

    .cc-sub {
      font-family: 'Rajdhani', sans-serif;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 3px;
      display: block;
    }

    .cc-val {
      font-size: .88rem;
      color: rgba(255, 255, 255, .65);
      font-weight: 500;
      text-decoration: none;
      transition: color .25s;
    }

    .cc-val:hover {
      color: var(--red);
    }

    .cc-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: .9rem;
      padding: 5px 11px;
      border-radius: 3px;
      background: rgba(215, 35, 35, .08);
      border: 1px solid rgba(215, 35, 35, .2);
      font-family: 'Rajdhani', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, .55);
    }

    .cc-badge i {
      color: var(--red);
    }

    /* socials */
    .socials {
      display: flex;
      gap: .6rem;
      flex-wrap: wrap;
      margin-top: .9rem;
    }

    .soc-btn {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .95rem;
      transition: all .3s ease;
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .soc-btn:hover {
      transform: translateY(-4px);
      border-color: var(--red);
      box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
    }

    .soc-li {
      background: linear-gradient(135deg, #0077b5, #00a0dc);
    }

    .soc-fb {
      background: linear-gradient(135deg, #1877f2, #0a5dc2);
    }

    .soc-ig {
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    }

    .soc-yt {
      background: linear-gradient(135deg, #ff0000, #cc0000);
    }

    .soc-tw {
      background: linear-gradient(135deg, #1da1f2, #0c85d0);
    }

    /* ━━━━━━━━━━━━━━━━━━━━
               FORM + MAP
            ━━━━━━━━━━━━━━━━━━━━ */
    .form-map-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    .form-shell {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 6px;
      padding: 2.5rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
      position: relative;
      overflow: hidden;
    }

    .form-shell::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 36px;
      height: 36px;
      border-top: 2px solid var(--red);
      border-left: 2px solid var(--red);
    }

    .form-shell::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 36px;
      height: 36px;
      border-bottom: 2px solid var(--teal);
      border-right: 2px solid var(--teal);
    }

    .f-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem;
    }

    .f-group {
      margin-bottom: 1.2rem;
    }

    .f-label {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: 'Rajdhani', sans-serif;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-bottom: .4rem;
    }

    .f-label i {
      color: var(--red);
      font-size: .7rem;
    }

    .f-input,
    .f-select,
    .f-textarea {
      width: 100%;
      padding: 12px 15px;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, .09);
      background: rgba(255, 255, 255, .04);
      font-family: 'Outfit', sans-serif;
      font-size: .9rem;
      color: #fff;
      transition: all .3s ease;
      outline: none;
    }

    .f-input:focus,
    .f-select:focus,
    .f-textarea:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(215, 35, 35, .1);
      background: rgba(255, 255, 255, .06);
    }

    .f-input::placeholder,
    .f-textarea::placeholder {
      color: rgba(255, 255, 255, .2);
    }

    .f-select {
      appearance: none;
      cursor: pointer;
      color: rgba(255, 255, 255, .65);
    }

    .f-select option {
      background: #1a1616;
      color: #fff;
    }

    .f-textarea {
      resize: vertical;
      min-height: 130px;
    }

    .f-check {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      color: rgba(255, 255, 255, .4);
      font-size: .83rem;
    }

    .f-check input {
      width: 14px;
      height: 14px;
      accent-color: var(--red);
      cursor: pointer;
    }

    .success-msg {
      display: none;
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #fff;
      padding: 1.2rem 1.5rem;
      border-radius: 4px;
      text-align: center;
      margin-bottom: 1.2rem;
      font-size: .9rem;
      font-weight: 600;
    }

    .success-msg.show {
      display: block;
    }

    .spinner {
      display: inline-block;
      width: 16px;
      height: 16px;
      border: 2.5px solid rgba(255, 255, 255, .3);
      border-radius: 50%;
      border-top-color: #fff;
      animation: spin 1s ease infinite;
    }

    /* Map */
    .map-container {
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .08);
      height: 340px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(30%) brightness(.85);
    }

    /* Hours card */
    .hours-card {
      background: var(--dark2);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 6px;
      padding: 1.8rem;
      margin-top: 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .hours-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--teal), transparent);
    }

    .hours-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 1.5px;
      color: #fff;
      margin-bottom: 1.2rem;
    }

    .hour-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: .7rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .hour-row:last-child {
      border-bottom: none;
    }

    .hour-day {
      color: rgba(255, 255, 255, .5);
      font-size: .86rem;
      font-weight: 500;
    }

    .hour-time {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: .5px;
    }

    .hour-time.open {
      color: var(--red);
    }

    .hour-time.closed {
      color: rgba(255, 255, 255, .25);
    }

    .hours-notice {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 1.2rem;
      padding: 1rem;
      border-radius: 4px;
      background: rgba(215, 35, 35, .07);
      border: 1px solid rgba(215, 35, 35, .18);
    }

    .hours-notice i {
      color: var(--red);
      font-size: 1rem;
      flex-shrink: 0;
    }

    .hours-notice p {
      font-size: .82rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.5;
    }

    .hours-notice strong {
      color: rgba(255, 255, 255, .75);
    }

    /* Quick contacts */
    .quick-card {
      background: rgba(215, 35, 35, .06);
      border: 1px solid rgba(215, 35, 35, .15);
      border-radius: 6px;
      padding: 1.8rem;
      margin-top: 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .quick-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--red), var(--teal));
    }

    .quick-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 1.5px;
      color: #fff;
      margin-bottom: 1.2rem;
    }

    .quick-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: .85rem;
      border-radius: 4px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .07);
      margin-bottom: .7rem;
      text-decoration: none;
      transition: all .3s ease;
    }

    .quick-link:last-child {
      margin-bottom: 0;
    }

    .quick-link:hover {
      background: rgba(215, 35, 35, .1);
      border-color: rgba(215, 35, 35, .25);
      transform: translateX(5px);
    }

    .ql-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: .95rem;
    }

    .ql-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .8);
      letter-spacing: .3px;
    }

    .ql-sub {
      font-size: .76rem;
      color: rgba(255, 255, 255, .38);
    }

    /* ━━━━━━━━━━━━━━━━━━━━
               FAQ
            ━━━━━━━━━━━━━━━━━━━━ */
    .faq-sec {
      background: var(--dark2);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      max-width: 1040px;
      margin: auto;
    }

    .faq-card {
      background: var(--dark1);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 6px;
      padding: 1.8rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      transition: all .35s ease;
      position: relative;
      overflow: hidden;
    }

    .faq-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
    }

    .faq-card:hover::before {
      transform: scaleX(1);
    }

    .faq-card:hover {
      border-color: rgba(215, 35, 35, .25);
      transform: translateY(-5px);
      box-shadow: 0 16px 36px rgba(0, 0, 0, .4);
    }

    .faq-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
      transition: transform .3s;
    }

    .faq-card:hover .faq-icon-wrap {
      transform: scale(1.1) rotate(4deg);
    }

    .fi-red {
      background: rgba(215, 35, 35, .12);
      color: var(--red);
    }

    .fi-teal {
      background: rgba(11, 76, 100, .2);
      color: #4dbfdf;
    }

    .fi-green {
      background: rgba(34, 197, 94, .1);
      color: #4ade80;
    }

    .fi-gold {
      background: rgba(232, 160, 32, .1);
      color: #fbbf24;
    }

    .faq-q {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      color: rgba(255, 255, 255, .88);
      font-size: .97rem;
      letter-spacing: .3px;
      margin-bottom: .5rem;
    }

    .faq-a {
      color: rgba(255, 255, 255, .4);
      font-size: .85rem;
      line-height: 1.72;
      font-weight: 300;
    }

    /* ━━━━━━━━━━━━━━━━━━━━
               NEWSLETTER
            ━━━━━━━━━━━━━━━━━━━━ */
    .nl-sec {
      background: var(--dark1);
      position: relative;
      overflow: hidden;
      padding: 5rem 0;
    }

    .nl-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(215, 35, 35, .09) 0%, transparent 65%);
    }

    .nl-inner {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .nl-icon {
      width: 70px;
      height: 70px;
      border-radius: 16px;
      background: rgba(215, 35, 35, .1);
      border: 1px solid rgba(215, 35, 35, .22);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      margin: 0 auto 1.6rem;
      color: var(--red);
    }

    .nl-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      color: #fff;
      letter-spacing: 2px;
      margin-bottom: .6rem;
    }

    .nl-sub {
      color: rgba(255, 255, 255, .4);
      font-size: .92rem;
      max-width: 460px;
      margin: 0 auto 2rem;
      line-height: 1.72;
      font-weight: 300;
    }

    .nl-form {
      display: flex;
      gap: .8rem;
      max-width: 460px;
      margin: 0 auto 1rem;
    }

    .nl-input {
      flex: 1;
      padding: 12px 18px;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, .1);
      background: rgba(255, 255, 255, .05);
      font-family: 'Outfit', sans-serif;
      font-size: .9rem;
      color: #fff;
      outline: none;
      transition: all .3s;
    }

    .nl-input:focus {
      border-color: var(--red);
      background: rgba(255, 255, 255, .08);
    }

    .nl-input::placeholder {
      color: rgba(255, 255, 255, .22);
    }

    .nl-note {
      font-size: .74rem;
      color: rgba(255, 255, 255, .28);
      display: flex;
      align-items: center;
      gap: 6px;
      justify-content: center;
    }

    /* ━━━━━━━━━━━━━━━━━━━━
               TRUST BAR
            ━━━━━━━━━━━━━━━━━━━━ */
    .trust-bar {
      background: var(--black);
      padding: 1.2rem 0;
      border-top: 1px solid rgba(255, 255, 255, .05);
      position: relative;
    }

    .trust-bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red) 30%, var(--teal) 70%, transparent);
    }

    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      padding: 0 2rem;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .5);
      font-family: 'Rajdhani', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .trust-item i {
      color: var(--red);
    }

    .trust-item .fas.fa-star {
      color: #f5a623;
      font-size: .65rem;
    }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ━━━━━━━━━━━━━━━━━━━━
               RESPONSIVE
            ━━━━━━━━━━━━━━━━━━━━ */
    @media(max-width:1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        padding: 4rem 2rem 3rem;
        text-align: center;
      }

      .h-sub {
        margin: 0 auto 1.8rem;
      }

      .h-ctas {
        justify-content: center;
      }

      .h-title-underline {
        margin: 0.5rem auto 1rem;
      }

      .hero-cards {
        display: none;
      }

      .cc-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .form-map-grid {
        grid-template-columns: 1fr;
      }

      .faq-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
      }
    }

    @media(max-width:768px) {
      .hero-inner {
        padding: 3rem 1.2rem 2rem;
      }

      .h-title {
        font-size: clamp(2.8rem, 9vw, 4rem);
      }

      .cc-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
      }

      .f-grid-2 {
        grid-template-columns: 1fr;
      }

      .form-shell {
        padding: 1.8rem 1.4rem;
      }

      .nl-form {
        flex-direction: column;
      }

      .trust-inner {
        gap: 1.4rem;
      }

      .page-sec {
        padding: 3.5rem 0;
      }
    }

    @media(max-width:480px) {
      .h-ctas {
        flex-direction: column;
        align-items: center;
      }

      .btn-red,
      .btn-ghost {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }

      .trust-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
      }

      .sec-title {
        font-size: 1.9rem;
      }
    }
