:root {
      --blue-deep:    #0a1628;
      --blue-navy:    #1a2d4f;
      --blue-mid:     #1e4b8f;
      --blue-bright:  #2e6fd9;
      --blue-soft:    #dde9f9;
      --gold:         #c9a84c;
      --gold-light:   #f0d98e;
      --white:        #ffffff;
      --off-white:    #f5f8ff;
      --text-dark:    #0d1b2a;
      --text-muted:   #6b7a99;
    }

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

    a {
      text-decoration: none !important;
    }
    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
      max-width: 100%;
    }

    h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }

    /* ─── SCROLLBAR ─────────────────────────────── */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--blue-deep); }
    ::-webkit-scrollbar-thumb { background: var(--blue-bright); border-radius: 3px; }

    /* ─── NAVBAR ─────────────────────────────────── */
    #mainNav {
      background: rgba(10,22,40,0.97);
      backdrop-filter: blur(12px);
      padding: 14px 0;
      transition: padding .3s ease, box-shadow .3s ease;
      top: 0 !important;
      position: fixed !important;
      z-index: 999999 !important;
      width: 100%;
    }
    .nav-logo {
      width: 200px;
    }
    #mainNav.scrolled {
      padding: 8px 0;
      box-shadow: 0 4px 30px rgba(0,0,0,.4);
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      font-weight: 700;
      color: var(--white) !important;
      letter-spacing: .5px;
    }
    .navbar-brand span { color: var(--gold); }
    .nav-link {
      color: rgba(255,255,255,.8) !important;
      font-size: .9rem;
      font-weight: 500;
      letter-spacing: .4px;
      padding: 6px 14px !important;
      transition: color .25s;
    }
    .nav-link:hover { color: var(--gold) !important; }
    .nav-search {
      position: relative;
    }
    .nav-search input {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      color: #fff;
      border-radius: 30px;
      padding: 7px 38px 7px 16px;
      font-size: .85rem;
      width: 200px;
      transition: all .3s;
    }
    .nav-search input::placeholder { color: rgba(255,255,255,.45); }
    .nav-search input:focus {
      outline: none;
      width: 240px;
      background: rgba(255,255,255,.13);
      border-color: var(--gold);
    }
    .nav-search .bi {
      position: absolute;
      right: 12px; top: 50%;
      transform: translateY(-50%);
      color: rgba(255,255,255,.5);
      font-size: .9rem;
    }
    .navbar-toggler {
      border: 1px solid rgba(255,255,255,.2);
      padding: 4px 9px;
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ─── HERO SLIDER ─────────────────────────────── */
    #heroSlider { 
        height: 100vh; 
        min-height: 600px; 
    }

    .hero-slide {
      height: 100vh;
      min-height: 600px;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-slide::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(120deg, rgba(10,22,40,.85) 40%, rgba(30,75,143,.55) 100%);
      z-index: 1;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.08);
      transition: transform 8s ease;
    }
    .carousel-item.active .hero-bg { transform: scale(1); }
    .slide-1 .hero-bg { background-image: url('https://images.unsplash.com/photo-1467269204594-9661b134dd2b?w=1600&q=80'); }
    .slide-2 .hero-bg { background-image: url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=1600&q=80'); }
    .slide-3 .hero-bg { background-image: url('https://images.unsplash.com/photo-1534430480872-3498386e7856?w=1600&q=80'); }
    .slide-4 .hero-bg { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80'); }

    .hero-content {
      position: relative; z-index: 2;
      padding: 15px 20px;
    }
    .hero-tag {
      display: inline-block;
      background: var(--gold);
      color: var(--blue-deep);
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .hero-title {
      font-size: clamp(2.4rem, 6vw, 4.6rem);
      color: var(--white);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .hero-title .accent { color: var(--gold-light); }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: rgba(255,255,255,.8);
      margin-bottom: 36px;
      font-weight: 300;
      max-width: 560px;
    }
    .btn-gold {
      background: var(--gold);
      color: var(--blue-deep);
      font-weight: 600;
      border: none;
      padding: 13px 32px;
      border-radius: 4px;
      letter-spacing: .3px;
      transition: all .3s;
      font-size: .95rem;
      text-decoration: none;
    }
    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201,168,76,.4);
    }
    .btn-outline-light-custom {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255,255,255,.6);
      font-weight: 500;
      padding: 12px 28px;
      border-radius: 4px;
      transition: all .3s;
      font-size: .95rem;
    }
    .btn-outline-light-custom:hover {
      background: rgba(255,255,255,.12);
      border-color: #fff;
      color: #fff;
    }
    .carousel-indicators [data-bs-target] {
      width: 28px; height: 3px;
      border-radius: 2px;
      background: rgba(255,255,255,.4);
      border: none;
    }
    .carousel-indicators .active { background: var(--gold); width: 42px; }
    .carousel-control-prev, .carousel-control-next {
      width: 5%;
      opacity: 0;
      transition: opacity .3s;
    }
    #heroSlider:hover .carousel-control-prev,
    #heroSlider:hover .carousel-control-next { opacity: 1; }

    /* Scroll hint */
    .scroll-hint {
      position: absolute;
      bottom: 32px; left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex; flex-direction: column; align-items: center;
      gap: 6px;
    }
    .scroll-hint span {
      font-size: .72rem; letter-spacing: 1.5px;
      color: rgba(255,255,255,.5); text-transform: uppercase;
    }
    .scroll-dot {
      width: 22px; height: 36px;
      border: 2px solid rgba(255,255,255,.35);
      border-radius: 12px;
      display: flex; justify-content: center; align-items: flex-start;
      padding-top: 5px;
    }
    .scroll-dot::after {
      content: '';
      width: 5px; height: 8px;
      background: var(--gold);
      border-radius: 3px;
      animation: scrollBounce 1.6s infinite;
    }
    @keyframes scrollBounce {
      0%,100% { transform: translateY(0); opacity:1; }
      50% { transform: translateY(10px); opacity:.4; }
    }

    /* ─── SECTION COMMON ─────────────────────────── */
    section { 
        padding: 100px 0; 
    }
    .section-label {
      font-size: .75rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--blue-bright);
      font-weight: 600;
      display: block;
      margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--blue-deep);
      line-height: 1.2;
    }
    .section-title .gold { color: var(--gold); }
    .divider {
      width: 56px; height: 3px;
      background: linear-gradient(90deg, var(--blue-bright), var(--gold));
      border-radius: 2px;
      margin: 16px 0 20px;
    }

    .divider.auto {
      margin: 0 auto 28px !important; 
    }

    /* ─── ABOUT ──────────────────────────────────── */
    #about { background: var(--off-white); overflow: hidden; }
    .about-img-wrap {
      position: relative;
      padding-bottom: 28px;
    }
    .about-img-main {
      width: 100%; border-radius: 6px;
      box-shadow: 0 20px 60px rgba(10,22,40,.2);
      object-fit: cover;
      height: 460px;
    }
    .about-badge {
      position: absolute;
      bottom: -24px; right: 0;
      background: var(--blue-mid);
      color: #fff;
      border-radius: 6px;
      padding: 22px 28px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(10,22,40,.25);
    }
    .about-badge .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--gold);
      display: block;
      line-height: 1;
    }
    .about-badge .lbl {
      font-size: .78rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      opacity: .85;
    }
    .about-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
    .about-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--blue-soft);
      color: var(--blue-mid);
      padding: 7px 16px; border-radius: 30px;
      font-size: .83rem; font-weight: 600;
      margin: 4px 6px 4px 0;
    }
    .about-pill i { font-size: 1rem; }

    /* ─── SERVICES ───────────────────────────────── */
    #services { background: var(--white); }
    .service-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(10,22,40,.07);
      transition: transform .35s, box-shadow .35s;
      height: 100%;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(10,22,40,.14);
    }
    .service-img {
      width: 100%; height: 200px;
      object-fit: cover;
      display: block;
    }
    .service-body { padding: 24px 24px 28px; }
    .service-icon-wrap {
      width: 48px; height: 48px;
      background: var(--blue-soft);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .service-icon-wrap i { font-size: 1.4rem; color: var(--blue-mid); }
    .service-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--blue-deep);
      margin-bottom: 8px;
    }
    .service-desc { font-size: .87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
    .service-price {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--blue-mid);
      margin-bottom: 16px;
    }
    .service-price span { font-size: .8rem; font-weight: 400; color: var(--text-muted); }
    .btn-service {
      background: var(--blue-deep);
      color: #fff;
      border: none;
      padding: 9px 22px;
      border-radius: 4px;
      font-size: .85rem;
      font-weight: 500;
      transition: all .3s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-service:hover {
      background: var(--blue-bright);
      color: #fff;
      transform: translateY(-1px);
    }

    /* ─── PACKAGES ───────────────────────────────── */
    #packages { background: var(--blue-deep); position: relative; overflow: hidden; }
    #packages::before {
      content: '';
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1800&q=30') center/cover;
      opacity: .07;
    }
    #packages .section-label { color: var(--gold); }
    #packages .section-title { color: #fff; }
    #packages .divider { background: linear-gradient(90deg, var(--gold), var(--blue-bright)); }

    .pkg-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px;
      padding: 32px 28px;
      height: 100%;
      transition: all .35s;
      position: relative;
      overflow: hidden;
    }
    .pkg-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue-bright), var(--gold));
      transform: scaleX(0);
      transition: transform .35s;
    }
    .pkg-card:hover { background: rgba(255,255,255,.1); transform: translateY(-6px); }
    .pkg-card:hover::before { transform: scaleX(1); }
    .pkg-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--blue-deep);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 12px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .pkg-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      color: #fff;
      margin-bottom: 8px;
    }
    .pkg-price {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .pkg-price span { font-size: .8rem; font-weight: 400; color: rgba(255,255,255,.5); }
    .pkg-summary { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 22px; }
    .btn-pkg {
      background: transparent;
      color: var(--gold);
      border: 1.5px solid var(--gold);
      padding: 9px 24px;
      border-radius: 4px;
      font-size: .85rem;
      font-weight: 600;
      transition: all .3s;
    }
    .btn-pkg:hover {
      background: var(--gold);
      color: var(--blue-deep);
    }

    /* Package Modal */
    .modal {
      z-index: 9999999999999 !important;
    }
    
    .modal-content {
      border: none;
      border-radius: 12px;
      overflow: hidden;
    }
    .modal-header {
      background: var(--blue-deep);
      color: #fff;
      border: none;
      padding: 24px 28px;
    }
    .modal-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; }
    .modal-header .btn-close { filter: invert(1) grayscale(1); opacity: .7; }
    .modal-body { padding: 28px; }
    .modal-price { font-size: 2rem; font-weight: 700; color: var(--blue-mid); }
    .modal-desc { color: var(--text-muted); line-height: 1.8; margin: 16px 0; }
    .modal-services-title {
      font-weight: 600; font-size: .8rem;
      text-transform: uppercase; letter-spacing: 1.5px;
      color: var(--blue-bright); margin-bottom: 12px;
    }
    .modal-service-item {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 0;
      border-bottom: 1px solid #f0f4fb;
      font-size: .9rem;
      color: var(--text-dark);
    }
    .modal-service-item i { color: var(--blue-bright); font-size: 1rem; }
    .modal-footer { border-top: 1px solid #edf1fa; padding: 20px 28px; }

    /* ─── TEAM ───────────────────────────────────── */
    #team { background: var(--off-white); }

    .team-slider-wrap {
      overflow: hidden;
      position: relative;
      /* allow touch-action only on horizontal axis */
      touch-action: pan-y;
      user-select: none;
      -webkit-user-select: none;
    }
    .team-track {
      display: flex;
      gap: 24px;
      transition: transform .45s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }
    /* dragging: instant follow */
    .team-track.dragging { transition: none; }

    .team-card {
      flex: 0 0 calc(25% - 18px);
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(10,22,40,.07);
      text-align: center;
      transition: transform .3s, box-shadow .3s;
    }
    .team-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(10,22,40,.13); }
    .team-img {
      width: 100%; height: 260px;
      object-fit: cover; object-position: center top;
      display: block;
      pointer-events: none;
    }
    .team-info { padding: 20px 16px 24px; }
    .team-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 600;
      color: var(--blue-deep); margin-bottom: 4px;
    }
    .team-role { font-size: .82rem; color: var(--blue-bright); font-weight: 500; letter-spacing: .5px; }

    /* dots */
    .team-dots {
      display: flex; justify-content: center; gap: 8px;
      margin-top: 20px;
    }
    .team-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(10,22,40,.2);
      cursor: pointer;
      transition: background .25s, transform .25s;
      border: none; padding: 0;
    }
    .team-dot.active {
      background: var(--blue-deep);
      transform: scale(1.3);
    }

    .team-nav {
      display: flex; justify-content: center; gap: 12px; margin-top: 24px;
    }
    .team-nav-btn {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--blue-deep);
      color: #fff;
      border: none;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      transition: background .3s, opacity .3s;
      cursor: pointer;
    }
    .team-nav-btn:hover { background: var(--blue-bright); }
    .team-nav-btn:disabled { opacity: .35; cursor: default; }

    /* ── responsive card widths ── */
    @media (max-width: 991px) {
      .team-card { flex: 0 0 calc(50% - 12px); }
    }
    @media (max-width: 576px) {
      /* exactly one card per slide, edge-to-edge with a small peek */
      .team-track { gap: 16px; }
      .team-card  { flex: 0 0 calc(100% - 32px); margin: 0 auto; }
    }

    /* ─── CONTACT ─────────────────────────────────── */
    #contact { background: var(--white); }

    /* ─── DARK SECTION FORM CONTROLS (order page, get-started) ───────── */
    #order-section .form-label,
    #order-section .form-check-label {
      color: rgba(255,255,255,.75);
      font-size: .82rem;
      font-weight: 500;
      margin-bottom: 6px;
      display: block;
    }
    #order-section .form-control,
    #order-section select.form-control {
      background: rgba(255,255,255,.06);
      border: 1.5px solid rgba(255,255,255,.12);
      border-radius: 8px;
      color: #fff;
      font-size: .9rem;
      padding: 10px 14px;
      transition: border-color .25s, box-shadow .25s;
      width: 100%;
    }
    #order-section select.form-control option { background: #0a1628; }
    #order-section .form-control::placeholder { color: rgba(255,255,255,.3); }
    #order-section .form-control:focus,
    #order-section select.form-control:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,.15);
      background: rgba(255,255,255,.08);
      color: #fff;
    }
    #order-section textarea.form-control { resize: vertical; min-height: 80px; }
    #order-section input[type="file"].form-control { padding: 8px 12px; }
    .contact-info-wrap { padding-right: 40px; }
    .contact-info-item {
      display: flex; align-items: flex-start; gap: 16px;
      margin-bottom: 28px;
    }
    .contact-icon {
      width: 46px; height: 46px; flex-shrink: 0;
      background: var(--blue-soft);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .contact-icon i { font-size: 1.2rem; color: var(--blue-mid); }
    .contact-info-item h6 {
      font-size: .75rem; letter-spacing: 1px;
      text-transform: uppercase; color: var(--text-muted);
      margin-bottom: 3px; font-family: 'DM Sans', sans-serif; font-weight: 600;
    }
    .contact-info-item p { font-size: .92rem; color: var(--text-dark); margin: 0; line-height: 1.5; }
    .social-links { display: flex; gap: 12px; margin-top: 36px; }
    .social-link {
      width: 40px; height: 40px;
      border-radius: 8px;
      background: var(--blue-deep);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      transition: all .3s;
      text-decoration: none;
    }
    .social-link:hover { background: var(--blue-bright); color: #fff; transform: translateY(-3px); }

    .contact-form .form-control,
    .contact-form .form-select {
      border: 1.5px solid #e4e9f5;
      border-radius: 6px;
      padding: 12px 16px;
      font-size: .9rem;
      transition: border-color .25s, box-shadow .25s;
      color: var(--text-dark);
    }
    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
      border-color: var(--blue-bright);
      box-shadow: 0 0 0 3px rgba(46,111,217,.1);
      outline: none;
    }
    .contact-form textarea.form-control { min-height: 130px; resize: none; }
    .btn-submit {
      background: var(--blue-deep);
      color: #fff;
      border: none;
      padding: 13px 36px;
      border-radius: 4px;
      font-weight: 600;
      font-size: .93rem;
      transition: all .3s;
      width: 100%;
    }
    .btn-submit:hover {
      background: var(--blue-bright);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(46,111,217,.35);
    }

    /* ─── FOOTER ─────────────────────────────────── */
    footer {
      background: var(--blue-deep);
      color: rgba(255,255,255,.7);
      padding: 40px 0 24px;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: #fff;
      font-weight: 700;
    }
    .footer-brand span { color: var(--gold); }
    .footer-tagline { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 6px; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a {
      color: rgba(255,255,255,.55);
      text-decoration: none;
      font-size: .87rem;
      transition: color .25s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-bottom {
      
      font-size: .82rem;
      color: rgba(255,255,255,.35);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 8px;
    }

    /* ─── ANIMATIONS ─────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-left {
      opacity: 0; transform: translateX(-30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .fade-left.visible { opacity: 1; transform: translateX(0); }
    .fade-right {
      opacity: 0; transform: translateX(30px);
      transition: opacity .7s ease, transform .7s ease;
      overflow: hidden;
    }
    .fade-right.visible { opacity: 1; transform: translateX(0); }

    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .2s; }
    .delay-3 { transition-delay: .3s; }
    .delay-4 { transition-delay: .4s; }
    .delay-5 { transition-delay: .5s; }

    /* ─── MISC ───────────────────────────────────── */
    .stats-bar {
      background: var(--blue-mid);
      padding: 28px 0;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 700;
      color: var(--gold); display: block; line-height: 1;
    }
    .stat-lbl {
      font-size: .78rem; letter-spacing: 1px;
      text-transform: uppercase; color: rgba(255,255,255,.7);
      display: block; margin-top: 5px;
    }
    .stat-divider {
      width: 1px; background: rgba(255,255,255,.15);
      height: 40px; margin: auto;
    }

    @media (max-width: 768px) {
      section { padding: 70px 0; }
      .contact-info-wrap { padding-right: 0; margin-bottom: 40px; }
      .about-badge { right: 0; bottom: -16px; padding: 16px 20px; }
      .about-img-main { height: 320px; }
    }

    /* whatsapp float */
    .wa-float {
      position: fixed;
      bottom: 28px; right: 24px;
      z-index: 999;
      width: 52px; height: 52px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.5rem;
      box-shadow: 0 6px 20px rgba(37,211,102,.45);
      text-decoration: none;
      transition: transform .3s;
    }
    .wa-float:hover { transform: scale(1.1); color: #fff; }



    /* ── Main ── */
    main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 20px;
      position: relative; z-index: 1;
      background: var(--blue-deep);
      color: var(--white);
            

    }

    .error-wrap { max-width: 580px; }

    .big-num {
      font-family: 'Playfair Display', serif;
      font-size: clamp(7rem, 20vw, 13rem);
      font-weight: 700;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 2px rgba(255,255,255,.12);
      background: linear-gradient(135deg, rgba(46,111,217,.3), rgba(201,168,76,.25));
      -webkit-background-clip: text;
      background-clip: text;
      display: block;
      margin-bottom: -10px;
      user-select: none;
    }

    .icon-wrap {
      width: 72px; height: 72px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 18px;
      display: inline-flex;
      align-items: center; justify-content: center;
      margin: 0 auto 24px;
    }
    .icon-wrap i { font-size: 2rem; color: var(--gold); }

    .error-title {
      font-size: clamp(1.7rem, 4vw, 2.4rem);
      font-weight: 700;
      margin-bottom: 14px;
      color: var(--white);
    }

    .error-sub {
      font-size: .97rem;
      color: rgba(255,255,255,.55);
      line-height: 1.8;
      margin-bottom: 36px;
    }

    /* ── Fade-in ── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      animation: fadeIn .7s ease forwards;
    }
    .d1 { animation-delay: .1s; }
    .d2 { animation-delay: .22s; }
    .d3 { animation-delay: .36s; }
    .d4 { animation-delay: .5s; }
    .d5 { animation-delay: .64s; }

    @keyframes fadeIn {
      to { opacity: 1; transform: translateY(0); }
    }


    .maint-wrap { max-width: 600px; }

    /* Animated gears / icon cluster */
    .icon-cluster {
      position: relative;
      width: 90px; height: 90px;
      margin: 0 auto 32px;
    }
    .icon-cluster .gear-main {
      width: 90px; height: 90px;
      background: rgba(46,111,217,.12);
      border: 1.5px solid rgba(46,111,217,.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .icon-cluster .gear-main i {
      font-size: 2.4rem;
      color: var(--gold);
      animation: spinSlow 10s linear infinite;
    }
    .icon-cluster .dot {
      position: absolute;
      width: 10px; height: 10px;
      background: var(--blue-bright);
      border-radius: 50%;
    }
    .icon-cluster .dot-1 { top: 0; right: -4px; animation: pulse 2s ease-in-out infinite; }
    .icon-cluster .dot-2 { bottom: 4px; left: -6px; animation: pulse 2s ease-in-out infinite .6s; background: var(--gold); }
    .icon-cluster .dot-3 { top: 50%; right: -12px; animation: pulse 2s ease-in-out infinite 1.2s; }

    @keyframes spinSlow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes pulse {
      0%, 100% { opacity: .3; transform: scale(1); }
      50%       { opacity: 1; transform: scale(1.4); }
    }

    .maint-tag {
      display: inline-block;
      background: rgba(201,168,76,.12);
      border: 1px solid rgba(201,168,76,.25);
      color: var(--gold);
      font-size: .74rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 20px;
      margin-bottom: 20px;
    }

    .maint-title {
      font-size: clamp(1.8rem, 5vw, 2.7rem);
      font-weight: 700;
      margin-bottom: 14px;
      color: var(--white);
      line-height: 1.2;
    }
    .maint-title .gold { color: var(--gold); }

    .maint-sub {
      font-size: .97rem;
      color: rgba(255,255,255,.55);
      line-height: 1.85;
      margin-bottom: 38px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Status pills */
    .status-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 38px;
    }
    .status-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.09);
      padding: 8px 18px;
      border-radius: 30px;
      font-size: .83rem;
      color: rgba(255,255,255,.65);
    }
    .status-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 2s ease-in-out infinite;
    }
    .status-dot.blue { background: var(--blue-bright); animation-delay: .5s; }
    .status-dot.green { background: #34d399; animation-delay: 1s; }

    /* Contact strip */
    .contact-strip {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 10px;
      padding: 24px 28px;
      margin-bottom: 36px;
    }
    .contact-strip p {
      font-size: .82rem;
      color: rgba(255,255,255,.4);
      margin-bottom: 14px;
      letter-spacing: .5px;
      text-transform: uppercase;
    }
    .contact-items {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .contact-item {
      display: inline-flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,.65);
      text-decoration: none;
      font-size: .88rem;
      padding: 7px 16px;
      border-radius: 6px;
      background: rgba(255,255,255,.05);
      transition: all .25s;
    }
    .contact-item:hover {
      background: rgba(46,111,217,.2);
      color: #fff;
    }
    .contact-item i { color: var(--gold); font-size: .95rem; }
    /* ─── GET STARTED PAGE ────────────────────────── */
    #get-started-section {
      background: var(--blue-deep);
      padding: 60px 0 80px;
    }
    #get-started-section .section-title { color: var(--white); }
    #get-started-section .text-muted { color: rgba(255,255,255,.55) !important; }

    .gs-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 14px;
      overflow: hidden;
    }
    .gs-card-header {
      padding: 14px 20px;
      background: rgba(201,168,76,.07);
      font-weight: 600;
      font-size: .93rem;
      color: var(--gold);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .gs-card-body { padding: 20px; }

    #get-started-section .form-label {
      color: rgba(255,255,255,.75);
      font-size: .82rem;
      font-weight: 500;
      margin-bottom: 6px;
      display: block;
    }
    #get-started-section .form-label-sm {
      font-size: .78rem;
    }
    #get-started-section .form-control,
    #get-started-section .form-check-label,
    #get-started-section select.form-control {
      background: rgba(255,255,255,.06);
      border: 1.5px solid rgba(255,255,255,.12);
      border-radius: 8px;
      color: #fff;
      font-size: .9rem;
      padding: 10px 14px;
      transition: border-color .25s, box-shadow .25s;
      width: 100%;
    }
    #get-started-section select.form-control option { background: #0a1628; }
    #get-started-section .form-control::placeholder { color: rgba(255,255,255,.3); }
    #get-started-section .form-control:focus,
    #get-started-section select.form-control:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,.15);
      background: rgba(255,255,255,.08);
      color: #fff;
    }
    #get-started-section textarea.form-control { resize: vertical; min-height: 80px; }
    #get-started-section .form-check-input {
      background-color: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.25);
    }
    #get-started-section .form-check-input:checked { background-color: var(--gold); border-color: var(--gold); }
    #get-started-section .form-check-label { color: rgba(255,255,255,.7); font-size: .83rem; background: none; border: none; padding: 0; }

    .req { color: #fca5a5; }
    .form-hint { color: rgba(255,255,255,.35); font-size: .78rem; margin-top: 5px; }

    .btn-gs-add {
      background: rgba(201,168,76,.1);
      color: var(--gold);
      border: 1px solid rgba(201,168,76,.3);
      font-size: .8rem;
      padding: 4px 12px;
      border-radius: 6px;
      cursor: pointer;
      transition: all .25s;
    }
    .btn-gs-add:hover { background: var(--gold); color: #0a1628; }

    .gs-repeat-row { border-bottom: 1px solid rgba(255,255,255,.05); padding-bottom: 10px; }
    .gs-work-row { background: rgba(255,255,255,.04); border-radius: 10px; }

    #get-started-section .alert { border-radius: 10px; font-size: .9rem; }

    /* ─── PACKAGE ASSIST CTA SECTION ─────────────── */
    #package-assist {
      background: var(--white);
      padding: 60px 0;
      border-top: 1px solid #e8edf5;
      border-bottom: 1px solid #e8edf5;
    }

    /* ─── STAFF BIO MODAL ─────────────────────────── */
    .team-card { cursor: pointer; }
    .staff-bio-img {
      width: 110px;
      height: 110px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid var(--gold);
      display: block;
      margin: 0 auto;
    }
    #staffBioModal .modal-body { color: var(--text-dark); }
    #staffBioModal #staffBioText {
      font-size: .93rem;
      line-height: 1.8;
      color: var(--text-dark);
    }
    #staffBioModal .modal-content { border-radius: 16px; overflow: hidden; }
    #staffBioModal .modal-header { border-bottom: 1px solid rgba(0,0,0,.08); }
    #staffBioModal #staffBioRole {
      color: var(--blue-bright);
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .05em;
    }
    .gs-container { max-width: 820px; }
    .team-bio-hint {
      font-size: .78rem;
      color: var(--gold);
      margin-top: 8px;
      font-weight: 500;
      letter-spacing: .3px;
    }
    .team-card[data-bs-toggle="modal"] { cursor: pointer; }
    .team-card[data-bs-toggle="modal"]:hover .team-bio-hint { text-decoration: underline; }

    /* ─── ORDER / CHECKOUT PAGE ──────────────────────── */
    #order-section { background: var(--blue-deep); padding: 60px 0 80px; }
    #order-section .section-title { color: var(--white); }
    #order-section .text-muted { color: rgba(255,255,255,.55) !important; }

    .ord-summary-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px;
      padding: 28px 24px;
      position: sticky;
      top: 84px;
    }
    .ord-summary-label {
      font-size: .72rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    }
    .ord-pkg-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 6px;
    }
    .ord-pkg-price { font-size: 1.7rem; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
    .ord-pkg-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 18px; }
    .ord-items-label {
      font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.5);
      text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px;
    }
    .ord-item { font-size: .88rem; color: rgba(255,255,255,.75); margin-bottom: 6px; }
    .ord-item i { color: var(--gold); }
    .ord-ext-note {
      font-size: .82rem; color: rgba(255,255,255,.45);
      border-top: 1px solid rgba(255,255,255,.07); padding-top: 14px;
    }
    .ord-ext-link { color: var(--gold); text-decoration: underline; display: block; margin-top: 6px; }

    /* Bank details card */
    .ord-bank-card {
      background: rgba(201,168,76,.06);
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 12px; overflow: hidden;
    }
    .ord-bank-header {
      background: rgba(201,168,76,.1);
      padding: 12px 18px; font-size: .85rem; font-weight: 600; color: var(--gold);
    }
    .ord-bank-body { padding: 16px 18px; }
    .ord-bank-row {
      display: flex; align-items: center; gap: 10px;
      padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05);
    }
    .ord-bank-row:last-child { border-bottom: none; }
    .ord-bank-lbl { font-size: .78rem; color: rgba(255,255,255,.45); width: 130px; flex-shrink: 0; }
    .ord-bank-val { font-size: .92rem; color: #fff; font-weight: 500; flex: 1; }
    .ord-copy-btn {
      background: rgba(255,255,255,.07); border: none;
      color: rgba(255,255,255,.5); padding: 4px 8px;
      border-radius: 5px; cursor: pointer; font-size: .8rem; transition: all .2s;
    }
    .ord-copy-btn:hover { background: rgba(255,255,255,.15); color: #fff; }

    /* Payment mode tabs */
    .ord-mode-tabs { display: flex; gap: 8px; }
    .ord-mode-tab {
      flex: 1; padding: 10px; border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,.1);
      background: rgba(255,255,255,.04);
      color: rgba(255,255,255,.6);
      font-size: .88rem; font-weight: 500; cursor: pointer; transition: all .25s;
    }
    .ord-mode-tab.active { border-color: var(--gold); background: rgba(201,168,76,.1); color: var(--gold); }

    /* External mode card */
    .ord-ext-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 14px; padding: 48px 28px;
    }
    .ord-ext-icon { font-size: 3rem; color: var(--gold); }
