:root {
      --ice: #e8f4fd;
      --sky: #0ea5e9;
      --deep: #0369a1;
      --navy: #0c1a2e;
      --frost: #f0f9ff;
      --slate: #475569;
      --white: #ffffff;
      --accent: #38bdf8;
      --green: #22c55e;
      --amber: #f59e0b;
      --red: #ef4444;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--frost); color: var(--navy); overflow-x: hidden; }

    /* NAV */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      background: rgba(12,26,46,0.95); backdrop-filter: blur(12px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 70px; border-bottom: 1px solid rgba(56,189,248,0.15);
    }
    .logo { font-family: sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--white); letter-spacing: -0.5px; }
    .logo span { color: var(--accent); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--accent); }
    .nav-cta {
      background: var(--sky); color: var(--white); padding: 0.5rem 1.25rem;
      border-radius: 6px; text-decoration: none; font-size: 0.88rem;
      font-weight: 600; font-family: sans-serif; transition: background .2s;
    }
    .nav-cta:hover { background: var(--deep); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 2px; background: white; display: block; transition: .3s; }
    .mobile-menu { display: none; flex-direction: column; gap: 1rem; padding: 1.5rem 5%; background: var(--navy); }
    .mobile-menu a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 1rem; }

    /* HERO */
    .hero {
      min-height: 100vh; background: #093558;
      display: flex; align-items: center; padding: 100px 5% 60px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; top: -100px; right: -100px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    }
    .hero::after {
      content: ''; position: absolute; bottom: -80px; left: -80px;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, transparent 70%);
    }
    .hero-content { max-width: 620px; z-index: 2; animation: fadeUp .8s ease both; }
    .hero-badge {
      display: inline-block; background: rgba(56,189,248,0.15); border: 1px solid rgba(56,189,248,0.3);
      color: var(--accent); padding: 0.35rem 1rem; border-radius: 20px;
      font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-family: sans-serif; font-weight: 800; font-size: clamp(2.5rem, 6vw, 4.5rem);
      color: var(--white); line-height: 1.05; margin-bottom: 1.25rem; letter-spacing: -1.5px;
    }
    .hero h1 em { color: var(--accent); font-style: normal; }
    .hero p { font-size: 1.1rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300; max-width: 500px; }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--sky); color: white; padding: 0.875rem 2rem;
      border-radius: 8px; text-decoration: none; font-weight: 600;
      font-family: sans-serif; font-size: 0.95rem; transition: all .2s;
      box-shadow: 0 4px 20px rgba(14,165,233,0.4);
    }
    .btn-primary:hover { background: var(--deep); transform: translateY(-2px); }
    .btn-secondary-home {
      border: 1px solid rgba(255,255,255,0.3); color: white; padding: 0.875rem 2rem;
      border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: all .2s;
    }
    .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
    .hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
    .stat { }
    .stat-num { font-family: sans-serif; font-weight: 800; font-size: 2rem; color: var(--white); }
    .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
    .hero-image {
      position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
      width: 420px; height: 420px; z-index: 1;
      background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
    }
    .ac-icon { font-size: 160px; opacity: 0.9; filter: drop-shadow(0 0 40px rgba(56,189,248,0.4)); animation: float 4s ease-in-out infinite; }

    /* SERVICES */
    .services { padding: 100px 5%; background: var(--white); }
    .section-header { text-align: center; margin-bottom: 60px; }
    .section-tag {
      display: inline-block; color: var(--sky); font-size: 0.8rem;
      font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.75rem;
    }
    .section-header h2 {
      font-family: sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--navy); letter-spacing: -1px;
    }
    .section-header p { color: var(--slate); margin-top: 0.75rem; font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
    .service-card {
      border: 1px solid #e2e8f0; border-radius: 12px; padding: 2rem;
      transition: all .3s; cursor: default;
      background: var(--white);
    }
    .service-card:hover { border-color: var(--sky); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(14,165,233,0.12); }
    .service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
    .service-card h3 { font-family: sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
    .service-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }
    .service-link { display: inline-block; margin-top: 1rem; color: var(--sky); font-size: 0.85rem; font-weight: 600; text-decoration: none; }
    .service-link:hover { color: var(--deep); }

    /* WHY */
    .why { padding: 100px 5%; background: var(--navy); }
    .why-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .why-text .section-tag { color: var(--accent); }
    .why-text h2 { font-family: sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); color: white; letter-spacing: -1px; margin-bottom: 1rem; }
    .why-text p { color: rgba(255,255,255,0.6); line-height: 1.75; font-weight: 300; margin-bottom: 1.75rem; }
    .features-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
    .features-list li { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
    .features-list li::before { content: '✓'; background: rgba(56,189,248,0.15); color: var(--accent); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
    .why-cards { display: flex; flex-direction: column; gap: 1rem; }
    .why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
    .why-card-icon { font-size: 1.8rem; flex-shrink: 0; }
    .why-card h4 { font-family: sans-serif; font-weight: 700; color: white; font-size: 0.95rem; margin-bottom: 0.25rem; }
    .why-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.5; }

    /* TESTIMONIALS */
    .testimonials { padding: 100px 5%; background: var(--frost); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 60px; }
    .testimonial-card { background: white; border-radius: 12px; padding: 2rem; border: 1px solid #e2e8f0; }
    .stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; }
    .testimonial-card p { font-size: 0.92rem; color: var(--slate); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
    .reviewer { display: flex; align-items: center; gap: 0.75rem; }
    .reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--deep); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.9rem; }
    .reviewer-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
    .reviewer-location { font-size: 0.78rem; color: var(--slate); }

    /* CTA */
    .cta-section { padding: 80px 5%; background: var(--deep); text-align: center; }
    .cta-section h2 { font-family: sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.5rem); color: white; letter-spacing: -1px; margin-bottom: 0.75rem; }
    .cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }
    .btn-white { background: white; color: var(--deep); padding: 0.9rem 2.25rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-family: sans-serif; font-size: 0.95rem; transition: all .2s; }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

    /* FOOTER */
    footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 60px 5% 30px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 40px; }
    .footer-brand .logo { font-size: 1.3rem; display: block; margin-bottom: 0.75rem; }
    .footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 240px; }
    .footer-col h4 { font-family: sans-serif; font-weight: 700; color: white; font-size: 0.9rem; margin-bottom: 1rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color .2s; }
    .footer-col a:hover { color: var(--accent); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; text-align: center; font-size: 0.8rem; }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes float { 0%, 100% { transform: translateY(-50%) translateY(0); } 50% { transform: translateY(-50%) translateY(-15px); } }

    @media (max-width: 900px) {
      .why-inner { grid-template-columns: 1fr; }
      .hero-image { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.5rem; }
    }

    /* ═══════════════════════════════════════════════════════════════
     AUTH PAGES (Login/Register/Unavailable) - Consolidated Styles
     ═══════════════════════════════════════════════════════════════ */

  /* Auth Page Base */
  .auth-page {
    background: #093558;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
  }

  /* Auth Card */
  .auth-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    padding: 35px 30px;
    width: 100%;
    max-width: 420px;
    animation: fadeUp 0.35s ease;
  }

  /* Auth Logo */
  .auth-logo {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
  }
  .auth-logo span { color: var(--accent); }

  .auth-subtitle {
    color: var(--slate);
    font-size: 14px;
    margin-bottom: 32px;
  }

  .auth-card h2 {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--navy);
  }

  .subtitle-text {
    color: var(--slate);
    font-size: 13px;
    margin-bottom: 24px;
  }

  /* Form Fields */
  .field { margin-bottom: 18px; }
  .field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    /* text-transform: uppercase; */
    color: var(--slate);
    margin-bottom: 6px;
  }
  .field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
  }
  .field input:focus { border-color: var(--sky); }

  /* Auth Buttons */
  .auth-btn {
    width: 100%;
    padding: 13px;
    background: var(--sky);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 6px;
  }
  .auth-btn:hover { background: var(--deep); }
  .auth-btn:active { transform: scale(0.98); }

  .auth-switch {
    text-align: center;
    margin-top: 22px;
    font-size: 13px;
    color: var(--slate);
  }
  .auth-switch a {
    color: var(--sky);
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
  }
  .auth-switch a:hover { text-decoration: underline; }

  /* Error Message */
  .error-msg {
    background: #fef2f2;
    color: var(--red);
    border-radius: 7px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 18px;
    display: none;
  }
  .error-msg.show { display: block; }

  /* ═══════════════════════════════════════════════════════════════
     UNAVAILABLE PAGE
     ═══════════════════════════════════════════════════════════════ */

  .unavailable-page {
    background: #093558;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .unavailable-wrap {
    text-align: center;
    padding: 40px 24px;
  }

  .unavailable-icon {
    font-size: 56px;
    margin-bottom: 24px;
    opacity: 0.7;
  }

  .unavailable-page h1 {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--white);
  }

  .unavailable-page p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.6;
  }

  .unavailable-page h2 {
    margin-bottom: 8px;
    margin-top: 24px;
    color: var(--white);
  }

  .btn-ghost {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    background: transparent;
    padding: 10px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.1); }

  /* ═══════════════════════════════════════════════════════════════
     MY BOOKING DASHBOARD
     ═══════════════════════════════════════════════════════════════ */

  .dashboard-page {
    background: var(--frost);
    min-height: 100vh;
  }

  /* Dashboard Nav */
  .dash-nav {
    background: rgba(12,26,46,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(56,189,248,0.15);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .dash-nav .logo {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    letter-spacing: -0.5px;
  }
  .dash-nav .logo span { color: var(--accent); }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .nav-user {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
  }
  .nav-user span {
    color: var(--white);
    font-weight: 600;
  }

  .btn-logout {
    background: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-logout:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  /* Dashboard Body */
  .dash-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 100px 24px 60px;
    width: 100%;
  }

  .dash-header {
    margin-bottom: 30px;
  }
  .dash-header h1 {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .dash-header p {
    color: var(--slate);
    font-size: 14px;
  }

  /* Stats Row */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 32px;
  }

  .stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #e2e8f0;
  }

  .stat-card .stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--slate);
    margin-bottom: 6px;
  }

  .stat-card .stat-val {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--navy);
  }

  .stat-card.accent .stat-val { color: var(--sky); }
  .stat-card.green .stat-val { color: var(--green); }

  /* Section Header */
  .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .section-head h2 {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
  }

  /* Filter Tabs */
  .filter-tabs {
    display: flex;
    gap: 6px;
  }

  .tab {
    padding: 5px 14px;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--slate);
    cursor: pointer;
    transition: all 0.2s;
  }
  .tab.active, .tab:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
  }

  /* Booking Cards */
  .bookings-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .booking-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.2s;
    animation: fadeUp 0.3s ease;
  }
  .booking-card:hover {
    border-color: var(--sky);
    box-shadow: 0 4px 20px rgba(14,165,233,0.1);
  }
  .booking-card.cancelled { opacity: 0.55; }

  .booking-info {
    flex: 1;
    min-width: 0;
  }

  .booking-ref {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    margin-bottom: 4px;
  }

  .booking-name {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .booking-meta {
    font-size: 13px;
    color: var(--slate);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .booking-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
  }

  /* Status Badge */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
  }
  .badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }
  .badge.confirmed { background: #dcfce7; color: #16a34a; }
  .badge.confirmed::before { background: #16a34a; }
  .badge.pending { background: #fef3c7; color: #d97706; }
  .badge.pending::before { background: #d97706; }
  .badge.cancelled { background: #f3f4f6; color: #6b7280; }
  .badge.cancelled::before { background: #9ca3af; }

  /* Cancel Button */
  .btn-cancel {
    background: none;
    border: 1.5px solid #e2e8f0;
    color: var(--slate);
    padding: 6px 14px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-cancel:hover {
    border-color: var(--red);
    color: var(--red);
    background: #fef2f2;
  }

  /* Empty State */
  .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--slate);
  }
  .empty-state .empty-icon {
    font-size: 44px;
    margin-bottom: 14px;
    opacity: 0.5;
  }
  .empty-state p { font-size: 14px; }

  /* Modal */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12,26,46,0.7);
    z-index: 100;
    justify-content: center;
    align-items: center;
    padding: 24px;
  }
  .modal-overlay.show { display: flex; }

  .modal {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 32px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    animation: fadeUp 0.25s ease;
  }

  .modal h3 {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .modal p {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
  }

  .btn-secondary {
    padding: 10px 20px;
    border: 1.5px solid #e2e8f0;
    background: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    cursor: pointer;
    color: var(--slate);
    transition: all 0.2s;
  }
  .btn-secondary:hover {
    border-color: var(--navy);
    color: var(--navy);
  }

  .btn-danger {
    padding: 10px 20px;
    border: none;
    background: var(--red);
    color: var(--white);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-danger:hover { background: #dc2626; }

  /* Toast */
  .toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--navy);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s;
    z-index: 200;
    white-space: nowrap;
  }
  .toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .centered-container {
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .auth-card { padding: 36px 24px; }
    .stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .stat-card { padding: 14px; }
    .stat-card .stat-val { font-size: 22px; }
    .booking-card { flex-direction: column; align-items: flex-start; }
    .booking-right { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
    .dash-nav { padding: 0 16px; }
    .dash-body { padding: 90px 16px 48px; }
    .filter-tabs { flex-wrap: wrap; }
  }


.page-hero {
      background: #093558;
      padding: 140px 5% 80px; text-align: center;
    }
    .page-hero .badge { display: inline-block; background: rgba(56,189,248,0.15); border: 1px solid rgba(56,189,248,0.3); color: var(--accent); padding: 0.35rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.25rem; }
    .page-hero h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3.5rem); color: white; letter-spacing: -1.5px; margin-bottom: 1rem; }
    .page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 520px; margin: 0 auto; font-weight: 300; line-height: 1.7; }

    .story { padding: 100px 5%; background: white; }
    .story-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
    .story-visual {
      background: #1a3a5c;
      border-radius: 16px; padding: 3rem; display: flex; flex-direction: column; gap: 1.25rem;
    }

    .story-stat-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.25rem 1.5rem; }
    .story-stat-card .num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--accent); }
    .story-stat-card .label { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 2px; }
    
    
    .section-tag { display: inline-block; color: var(--sky); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.75rem; }
    .story-text h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--navy); letter-spacing: -1px; margin-bottom: 1.25rem; }
    .story-text p { color: var(--slate); line-height: 1.75; font-size: 0.97rem; margin-bottom: 1rem; }
   
    .mission { padding: 100px 5%; background: var(--frost); }
    .mission-inner { max-width: 1100px; margin: 0 auto; }
    .mission h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--navy); letter-spacing: -1px; text-align: center; margin-bottom: 0.5rem; }
    .mission .sub { text-align: center; color: var(--slate); margin-bottom: 3.5rem; }

    
    .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
    .value-card { background: white; border: 1px solid #e2e8f0; border-radius: 12px; padding: 2rem; text-align: center; transition: all .3s; }
    .value-card:hover { border-color: var(--sky); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(14,165,233,0.1); }
    .value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
    .value-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
    .value-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.6; }

    
    .team { padding: 100px 5%; background: white; }
    .team h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--navy); letter-spacing: -1px; text-align: center; margin-bottom: 0.5rem; }
    .team .sub { text-align: center; color: var(--slate); margin-bottom: 3.5rem; }
    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
    .team-card { text-align: center; }
    .team-avatar { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; font-family: 'Syne', sans-serif; color: white; }
    .team-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--navy); font-size: 1rem; }
    .team-card .role { font-size: 0.83rem; color: var(--sky); font-weight: 600; margin-top: 2px; }
    .team-card .bio { font-size: 0.83rem; color: var(--slate); margin-top: 0.5rem; line-height: 1.5; }

    .certifications { padding: 80px 5%; background: var(--navy); text-align: center; }
    .certifications h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.8rem; color: white; margin-bottom: 0.5rem; }
    .certifications p { color: rgba(255,255,255,0.55); margin-bottom: 2.5rem; }
    .cert-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .cert-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(56,189,248,0.2); color: var(--accent); padding: 0.6rem 1.5rem; border-radius: 30px; font-size: 0.85rem; font-weight: 600; }

    .cta-section { padding: 80px 5%; background: var(--deep); text-align: center; }
    .cta-section h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.5rem); color: white; letter-spacing: -1px; margin-bottom: 0.75rem; }
    .cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }
    


    .pricing-section{padding:80px 5%;background:white;}
    .pricing-intro{text-align:center;margin-bottom:50px;}
    .pricing-intro h2{font-family:'Syne',sans-serif;font-weight:800;font-size:clamp(1.8rem,3.5vw,2.5rem);color:var(--navy);letter-spacing:-1px;margin-bottom:0.5rem;}
    .pricing-intro p{color:var(--slate);max-width:500px;margin:0 auto;}

    .pricing-tabs{display:flex;justify-content:center;gap:0.5rem;margin-bottom:2.5rem;flex-wrap:wrap;}
    .tab-btn{padding:0.55rem 1.5rem;border-radius:30px;border:1px solid #e2e8f0;background:white;cursor:pointer;font-size:0.88rem;font-weight:600;font-family:'Syne',sans-serif;color:var(--slate);transition:all .2s;}
    .tab-btn.active,.tab-btn:hover{background:var(--sky);color:white;border-color:var(--sky);}

    .pricing-table-wrap{overflow-x:auto;}
    .pricing-table{width:100%;border-collapse:collapse;font-size:0.9rem;}
    .pricing-table th{background:var(--navy);color:white;padding:1rem 1.25rem;text-align:left;font-family:'Syne',sans-serif;font-weight:700;font-size:0.85rem;}
    .pricing-table th:last-child{text-align:right;}
    .pricing-table td{padding:1rem 1.25rem;border-bottom:1px solid #f1f5f9;vertical-align:top;}
    .pricing-table td:last-child{text-align:right;font-weight:700;color:var(--deep);white-space:nowrap;}
    .pricing-table tr:hover td{background:#f8fafc;}
    .pricing-table .cat-row td{background:var(--frost);font-family:'Syne',sans-serif;font-weight:700;font-size:0.82rem;color:var(--sky);text-transform:uppercase;letter-spacing:1px;padding:0.6rem 1.25rem;}
    
    .packages{padding:80px 5%;background:var(--frost);}
    .packages h2{font-family:'Syne',sans-serif;font-weight:800;font-size:clamp(1.8rem,3.5vw,2.5rem);color:var(--navy);letter-spacing:-1px;text-align:center;margin-bottom:0.5rem;}
    .packages .sub{text-align:center;color:var(--slate);margin-bottom:3rem;}
    .packages-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;max-width:1000px;margin:0 auto;}
    .pkg-card{background:white;border:1px solid #e2e8f0;border-radius:14px;padding:2rem;position:relative;transition:all .3s;}
    .pkg-card.featured{border-color:var(--sky);box-shadow:0 0 0 2px var(--sky);}
    .pkg-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--sky);color:white;padding:0.25rem 1rem;border-radius:20px;font-size:0.75rem;font-weight:700;font-family:'Syne',sans-serif;white-space:nowrap;}
    .pkg-name{font-family:'Syne',sans-serif;font-weight:800;font-size:1.1rem;color:var(--navy);margin-bottom:0.25rem;}
    .pkg-desc{font-size:0.85rem;color:var(--slate);margin-bottom:1.25rem;}
    .pkg-price{font-family:'Syne',sans-serif;font-weight:800;font-size:2rem;color:var(--navy);}
    .pkg-price span{font-size:0.9rem;color:var(--slate);font-weight:400;}
    .pkg-features{list-style:none;margin:1.25rem 0;display:flex;flex-direction:column;gap:0.6rem;}
    .pkg-features li{display:flex;align-items:center;gap:0.5rem;font-size:0.88rem;color:var(--slate);}
    .pkg-features li::before{content:'✓';color:var(--sky);font-weight:700;flex-shrink:0;}
    .pkg-btn{display:block;text-align:center;background:var(--navy);color:white;padding:0.75rem;border-radius:8px;text-decoration:none;font-weight:600;font-family:'Syne',sans-serif;font-size:0.88rem;transition:all .2s;margin-top:1.5rem;}
    .pkg-card.featured .pkg-btn{background:var(--sky);}
    .pkg-btn:hover{opacity:0.85;transform:translateY(-1px);}

    .notes{padding:60px 5%;background:white;}
    .notes-inner{max-width:800px;margin:0 auto;}
    .notes h3{font-family:'Syne',sans-serif;font-weight:700;color:var(--navy);margin-bottom:1rem;}
    .notes ul{list-style:none;display:flex;flex-direction:column;gap:0.6rem;}
    .notes ul li{display:flex;align-items:flex-start;gap:0.75rem;font-size:0.9rem;color:var(--slate);}
    .notes ul li::before{content:'ℹ';color:var(--sky);flex-shrink:0;}

    .tab-content{display:none;}
    .tab-content.active{display:block;}

    .contact-section{padding:80px 5%;background:white;}
    .contact-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1.5fr;gap:60px;}

    .contact-info{display:flex;flex-direction:column;gap:1.5rem;}
    .section-tag{display:inline-block;color:var(--sky);font-size:0.8rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:0.5rem;}
    .contact-info h2{font-family:'Syne',sans-serif;font-weight:800;font-size:clamp(1.6rem,3vw,2.2rem);color:var(--navy);letter-spacing:-0.5px;margin-bottom:0.5rem;}
    .contact-info p{color:var(--slate);line-height:1.7;font-size:0.95rem;}

    .info-card{display:flex;gap:1rem;align-items:flex-start;padding:1.25rem;background:var(--frost);border-radius:10px;border:1px solid #e2e8f0;}
    .info-icon{font-size:1.5rem;flex-shrink:0;}
    .info-card h4{font-family:'Syne',sans-serif;font-weight:700;font-size:0.9rem;color:var(--navy);margin-bottom:0.25rem;}
    .info-card p,.info-card a{font-size:0.88rem;color:var(--slate);text-decoration:none;line-height:1.5;}
    .info-card a:hover{color:var(--sky);}

    .hours-table{width:100%;border-collapse:collapse;font-size:0.88rem;margin-top:0.75rem;}
    .hours-table tr{border-bottom:1px solid #e2e8f0;}
    .hours-table tr:last-child{border-bottom:none;}
    .hours-table td{padding:0.4rem 0;}
    .hours-table td:last-child{text-align:right;color:var(--sky);font-weight:600;}
    .open-now{display:inline-block;background:#dcfce7;color:#166534;font-size:0.72rem;font-weight:700;padding:2px 8px;border-radius:10px;margin-left:6px;}

    .contact-form-wrap{}
    .form-title{font-family:'Syne',sans-serif;font-weight:800;font-size:1.3rem;color:var(--navy);margin-bottom:1.5rem;}
    .form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem;}
    .form-group{display:flex;flex-direction:column;gap:0.4rem;margin-bottom:1rem;}
    .form-group label{font-size:0.82rem;font-weight:600;color:var(--navy);}
    .form-group input,.form-group select,.form-group textarea{
      padding:0.75rem 1rem;border:1px solid #e2e8f0;border-radius:8px;
      font-family:'DM Sans',sans-serif;font-size:0.9rem;color:var(--navy);
      background:white;outline:none;transition:border .2s;
    }
    .form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--sky);}
    .form-group textarea{resize:vertical;min-height:120px;}
    .submit-btn{
      width:100%;background:var(--sky);color:white;padding:0.9rem;border:none;
      border-radius:8px;font-family:'Syne',sans-serif;font-weight:700;font-size:1rem;
      cursor:pointer;transition:all .2s;
    }
    .submit-btn:hover{background:var(--deep);transform:translateY(-2px);}
    .form-note{font-size:0.8rem;color:var(--slate);text-align:center;margin-top:0.75rem;}
    .success-msg{display:none;background:#dcfce7;border:1px solid #86efac;color:#166534;padding:1rem;border-radius:8px;font-size:0.9rem;text-align:center;margin-top:1rem;}

    .map-section{padding:0 5% 80px;background:white;}
    .map-section h3{font-family:'Syne',sans-serif;font-weight:700;color:var(--navy);margin-bottom:1rem;font-size:1.1rem;}
    .map-placeholder{background:#1a3a5c;border-radius:12px;height:280px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:0.75rem;color:white;}
    .map-placeholder .map-icon{font-size:3rem;}
    .map-placeholder p{font-size:0.9rem;color:rgba(255,255,255,0.6);}
    .map-placeholder a{color:var(--accent);font-size:0.85rem;font-weight:600;text-decoration:none;}

    .faq{padding:80px 5%;background:var(--frost);}
    .faq h2{font-family:'Syne',sans-serif;font-weight:800;font-size:clamp(1.6rem,3vw,2.2rem);color:var(--navy);letter-spacing:-0.5px;text-align:center;margin-bottom:2.5rem;}
    .faq-list{max-width:700px;margin:0 auto;display:flex;flex-direction:column;gap:0.75rem;}
    .faq-item{background:white;border:1px solid #e2e8f0;border-radius:10px;overflow:hidden;}
    .faq-q{padding:1.1rem 1.25rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:600;font-size:0.92rem;}
    .faq-q:hover{background:var(--frost);}
    .faq-arrow{font-size:0.8rem;transition:transform .3s;}
    .faq-item.open .faq-arrow{transform:rotate(180deg);}
    .faq-a{display:none;padding:0 1.25rem 1.1rem;font-size:0.88rem;color:var(--slate);line-height:1.65;}
    .faq-item.open .faq-a{display:block;}

    .booking-hero{background:#093558;padding:120px 5% 50px;text-align:center;}
    .booking-hero h1{font-family:'Syne',sans-serif;font-weight:800;font-size:clamp(1.8rem,4vw,3rem);color:white;letter-spacing:-1px;margin-bottom:0.75rem;}
    .booking-hero p{color:rgba(255,255,255,0.6);font-size:1rem;max-width:460px;margin:0 auto;font-weight:300;}

    
    
    .stepper-wrap{background:white;border-bottom:1px solid #e2e8f0;padding:1.25rem 5%;position:sticky;top:70px;z-index:50;}
    .stepper{display:flex;align-items:center;justify-content:center;gap:0;max-width:700px;margin:0 auto;}
    .step{display:flex;align-items:center;gap:0.6rem;flex:1;}
    .step-circle{width:30px;height:30px;border-radius:50%;border:2px solid #e2e8f0;display:flex;align-items:center;justify-content:center;font-size:0.78rem;font-weight:700;font-family:'Syne',sans-serif;color:var(--slate);flex-shrink:0;transition:all .3s;}
    .step-label{font-size:0.8rem;font-weight:600;color:var(--slate);white-space:nowrap;}
    .step.active .step-circle{border-color:var(--sky);background:var(--sky);color:white;}
    .step.active .step-label{color:var(--navy);}
    .step.done .step-circle{border-color:var(--green);background:var(--green);color:white;}
    .step-line{flex:1;height:2px;background:#e2e8f0;margin:0 0.5rem;}
    .step-line.done{background:var(--green);}

    
    .booking-main{padding:40px 5% 80px;max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.5fr 1fr;gap:2.5rem;align-items:start;}

    
    .step-panel{display:none;}
    .step-panel.active{display:block;}
    .panel-title{font-family:'Syne',sans-serif;font-weight:800;font-size:1.3rem;color:var(--navy);margin-bottom:1.5rem;}
    
    .service-options{display:grid;grid-template-columns:1fr 1fr;gap:0.75rem;margin-bottom:1.5rem;}
    .service-opt{border:2px solid #e2e8f0;border-radius:10px;padding:1rem;cursor:pointer;transition:all .2s;}
    .service-opt:hover{border-color:var(--accent);}
    .service-opt.selected{border-color:var(--sky);background:rgba(14,165,233,0.05);}
    .service-opt input{display:none;}
    .service-opt-icon{font-size:1.5rem;margin-bottom:0.4rem;}
    .service-opt-name{font-family:'Syne',sans-serif;font-weight:700;font-size:0.88rem;color:var(--navy);}
    .service-opt-price{font-size:0.78rem;color:var(--slate);margin-top:2px;}

    
    
    .ac-types{display:flex;gap:0.75rem;flex-wrap:wrap;margin-bottom:1.5rem;}
    .ac-type-btn{border:2px solid #e2e8f0;border-radius:8px;padding:0.6rem 1rem;cursor:pointer;font-size:0.85rem;font-weight:600;font-family:'Syne',sans-serif;color:var(--slate);background:white;transition:all .2s;}
    .ac-type-btn.selected{border-color:var(--sky);color:var(--sky);background:rgba(14,165,233,0.05);}

    
    .form-group{display:flex;flex-direction:column;gap:0.4rem;margin-bottom:1rem;}
    .form-group label{font-size:0.82rem;font-weight:600;color:var(--navy);}
    .form-group input,.form-group select,.form-group textarea{
      padding:0.75rem 1rem;border:1px solid #e2e8f0;border-radius:8px;
      font-family:'DM Sans',sans-serif;font-size:0.9rem;color:var(--navy);
      background:white;outline:none;transition:border .2s;width:100%;
    }
    .form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--sky);}
    .form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}

    
    .calendar-wrap{background:white;border:1px solid #e2e8f0;border-radius:12px;padding:1.25rem;margin-bottom:1.25rem;}
    .cal-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem;}
    .cal-month{font-family:'Syne',sans-serif;font-weight:700;font-size:0.95rem;color:var(--navy);}
    .cal-nav{background:none;border:1px solid #e2e8f0;border-radius:6px;width:28px;height:28px;cursor:pointer;font-size:0.8rem;}
    .cal-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:2px;text-align:center;}
    .cal-day-label{font-size:0.7rem;font-weight:700;color:var(--slate);padding:0.3rem 0;}
    .cal-day{font-size:0.82rem;padding:0.4rem;border-radius:6px;cursor:pointer;transition:all .2s;}
    .cal-day:hover:not(.disabled):not(.past){background:var(--frost);}
    .cal-day.selected{background:var(--sky);color:white;}
    .cal-day.today{font-weight:700;color:var(--sky);}
    .cal-day.disabled,.cal-day.past{color:#cbd5e1;cursor:not-allowed;}

    .time-slots{display:grid;grid-template-columns:repeat(3,1fr);gap:0.5rem;margin-bottom:1.25rem;}
    .slot{border:1px solid #e2e8f0;border-radius:8px;padding:0.55rem;text-align:center;font-size:0.82rem;font-weight:600;cursor:pointer;transition:all .2s;}
    .slot:hover:not(.taken){border-color:var(--sky);color:var(--sky);}
    .slot.selected{background:var(--sky);color:white;border-color:var(--sky);}
    .slot.taken{background:#f8fafc;color:#cbd5e1;cursor:not-allowed;text-decoration:line-through;}

    
    .payment-methods{display:flex;flex-direction:column;gap:0.75rem;margin-bottom:1.5rem;}
    .pay-method{border:2px solid #e2e8f0;border-radius:10px;padding:1rem 1.25rem;cursor:pointer;transition:all .2s;display:flex;align-items:center;gap:1rem;}
    .pay-method.selected{border-color:var(--sky);background:rgba(14,165,233,0.04);}
    .pay-method input[type=radio]{accent-color:var(--sky);width:16px;height:16px;flex-shrink:0;}
    .pay-method-icon{font-size:1.5rem;}
    .pay-method-name{font-family:'Syne',sans-serif;font-weight:700;font-size:0.9rem;color:var(--navy);}
    .pay-method-desc{font-size:0.78rem;color:var(--slate);}

    .card-fields{display:none;background:var(--frost);border-radius:10px;padding:1.25rem;margin-top:0.5rem;}
    .card-fields.visible{display:block;}
    .card-number-wrap{position:relative;}
    .card-number-wrap input{padding-right:3rem;}
    .card-icons{position:absolute;right:0.75rem;top:50%;transform:translateY(-50%);font-size:1.2rem;}

    .gcash-fields{display:none;background:#f0fdf4;border:1px solid #bbf7d0;border-radius:10px;padding:1.25rem;margin-top:0.5rem;}
    .gcash-fields.visible{display:block;}
    .gcash-fields p{font-size:0.88rem;color:#166534;margin-bottom:0.75rem;}
    .gcash-number{font-family:'Syne',sans-serif;font-weight:800;font-size:1.2rem;color:#166534;}

    
    .order-card{background:white;border:1px solid #e2e8f0;border-radius:14px;padding:1.5rem;position:sticky;top:140px;}
    .order-title{font-family:'Syne',sans-serif;font-weight:800;font-size:1rem;color:var(--navy);margin-bottom:1.25rem;padding-bottom:0.75rem;border-bottom:1px solid #f1f5f9;}
    .order-line{display:flex;justify-content:space-between;font-size:0.88rem;margin-bottom:0.6rem;color:var(--slate);}
    .order-line .val{font-weight:600;color:var(--navy);}
    .order-divider{border:none;border-top:1px dashed #e2e8f0;margin:1rem 0;}
    .order-total{display:flex;justify-content:space-between;font-family:'Syne',sans-serif;font-weight:800;font-size:1.05rem;}
    .order-total .val{color:var(--sky);}

    

    .trust-badges{margin-top:1.25rem;display:flex;flex-direction:column;gap:0.4rem;}
    .trust-badge{display:flex;align-items:center;gap:0.5rem;font-size:0.78rem;color:var(--slate);}
    .trust-badge span{color:var(--green);}

    
    .btn-row{display:flex;gap:1rem;margin-top:1.5rem;}
    .btn-back{flex:1;padding:0.85rem;border:1px solid #e2e8f0;background:white;border-radius:8px;font-family:'Syne',sans-serif;font-weight:700;font-size:0.9rem;cursor:pointer;color:var(--slate);transition:all .2s;}
    .btn-back:hover{border-color:var(--navy);color:var(--navy);}
    .btn-next{flex:2;padding:0.85rem;background:var(--sky);border:none;border-radius:8px;font-family:'Syne',sans-serif;font-weight:700;font-size:0.9rem;cursor:pointer;color:white;transition:all .2s;}
    .btn-next:hover{background:var(--deep);}
    .btn-next.pay-btn{background:#16a34a;}
    .btn-next.pay-btn:hover{opacity:0.9;}

    
    .confirm-box{text-align:center;padding:2rem 1rem;}
    .confirm-icon{font-size:4rem;margin-bottom:1rem;}
    .confirm-box h2{font-family:'Syne',sans-serif;font-weight:800;font-size:1.6rem;color:var(--green);margin-bottom:0.75rem;}
    .confirm-box p{color:var(--slate);line-height:1.7;margin-bottom:1.5rem;}
    .booking-ref{background:var(--frost);border:1px solid #e2e8f0;border-radius:10px;padding:1rem;font-family:'Syne',sans-serif;font-weight:800;font-size:1.1rem;color:var(--navy);margin-bottom:1.5rem;}
    .confirm-details{text-align:left;background:white;border:1px solid #e2e8f0;border-radius:10px;padding:1.25rem;margin-bottom:1.5rem;}
    .confirm-details h4{font-family:'Syne',sans-serif;font-weight:700;font-size:0.9rem;margin-bottom:0.75rem;color:var(--navy);}
    .confirm-detail-line{display:flex;justify-content:space-between;font-size:0.85rem;padding:0.35rem 0;border-bottom:1px solid #f1f5f9;}
    .confirm-detail-line:last-child{border:none;}
    .confirm-detail-line .d-label{color:var(--slate);}
    .confirm-detail-line .d-val{font-weight:600;color:var(--navy);}
    .btn-home{display:inline-block;background:var(--sky);color:white;padding:0.85rem 2rem;border-radius:8px;font-family:'Syne',sans-serif;font-weight:700;font-size:0.95rem;text-decoration:none;transition:all .2s;}
    .btn-home:hover{background:var(--deep);}

    @media(max-width:900px){.booking-main{grid-template-columns:1fr;}.order-card{position:static;}}
    @media(max-width:640px){.nav-links,.nav-cta{display:none;}.hamburger{display:flex;}.service-options{grid-template-columns:1fr 1fr;}.time-slots{grid-template-columns:repeat(3,1fr);}.form-row{grid-template-columns:1fr;}.stepper .step-label{display:none;}} 