/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:   #1A7FE8;
  --blue-d: #0D5DBF;
  --blue-l: #4FA3F7;
  --red:    #E8231A;
  --red-d:  #BF0D0D;
  --yellow: #FFD700;
  --green:  #27AE60;
  --orange: #F07A10;
  --white:  #FFFFFF;
  --black:  #0D0D0D;
  --ink:    #1A1A2E;
  --navy:   #0A1628;
  --muted:  #6B7A99;
  --card-bg:#F5F8FF;
  --border: #E0E9FF;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(26,127,232,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

/* ===== CONFETTI CANVAS ===== */
.logo-float-layer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.logo-float {
  position: absolute;
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0;
  animation: logoFloat linear infinite;
  animation-play-state: paused;
  border-radius: 50%;
  will-change: transform;
}

@keyframes logoFloat {
  0%   { transform: translateY(0) rotate(0deg) scale(0.7);  opacity: 0; }
  10%  { opacity: .18; }
  80%  { opacity: .12; }
  100% { transform: translateY(-110vh) rotate(30deg) scale(1.1); opacity: 0; }
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}

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

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -.3px;
  line-height: 1.2;
}

.nav-logo-text span { color: var(--yellow); }

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

.nav-links a:not(.nav-cta) {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:not(.nav-cta):hover { color: var(--yellow); }

.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}

.nav-cta:hover {
  background: var(--red-d);
  color: #fff;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding: 120px 5% 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 65% 50%, rgba(26,127,232,.28) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(232,35,26,.2) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 90% 10%, rgba(255,215,0,.12) 0%, transparent 50%);
}

/* Floating balloons */
.balloon {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: .15;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: .15; }
  50%  { opacity: .22; }
  100% { transform: translateY(-120vh) rotate(15deg); opacity: 0; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.4);
  color: var(--yellow);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeSlideUp .7s ease both;
}

.hero-badge::before { content: '🎉'; font-size: 1rem; }

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: #fff;
  margin-bottom: 20px;
  animation: fadeSlideUp .7s .1s ease both;
}

.hero-title .accent-blue { color: var(--blue-l); }
.hero-title .accent-red  { color: #FF6B65; }
.hero-title .accent-star {
  color: var(--yellow);
  display: inline-block;
  animation: spin 4s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeSlideUp .7s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp .7s .3s ease both;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .5px;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(232,35,26,.4);
}

.btn-primary:hover {
  background: var(--red-d);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(232,35,26,.5);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
  animation: fadeSlideUp .7s .4s ease both;
}

.stat-item {}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Hero right image */
.hero-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  max-width: 620px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  animation: fadeSlideUp .8s .2s ease both;
  pointer-events: none;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative circle behind logo in hero */
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(26,127,232,.35);
  border-radius: 50%;
}

.hero-logo-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,127,232,.35) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: .7; }
  50%       { transform: scale(1.1); opacity: 1; }
}

.hero-logo-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px dashed rgba(255,215,0,.3);
  animation: spin 20s linear infinite;
}

.hero-logo-img {
  position: relative;
  width: 220px;
  height: 220px;
  object-fit: contain;
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION COMMON ===== */
section { position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-label {
  justify-content: center;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 5%;
  background: var(--card-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,127,232,.12);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, #EBF4FF, #DAEAFF);
}

.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #FFF0EE, #FFD9D7); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #FFFBEA, #FFF0B3); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #EDFAF3, #C8F5DE); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #FFF3E6, #FFE0B3); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, #F0EEFF, #DDD6FF); }

.service-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}

.service-desc {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: .3px;
  transition: gap .2s;
}

.service-link:hover { gap: 10px; }
.service-link::after { content: '→'; }

/* ===== WHY US ===== */
.why {
  padding: 100px 5%;
  background: var(--navy);
  color: #fff;
}

.why .section-label { color: var(--yellow); }
.why .section-label::before { background: var(--yellow); }
.why .section-title { color: #fff; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background .25s, transform .25s;
}

.why-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.why-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}

.why-desc {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 5%;
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.step {
  text-align: center;
  padding: 0 28px;
  position: relative;
}

.step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  transition: transform .25s;
}

.step:nth-child(1) .step-num { background: var(--blue); box-shadow: 0 8px 28px rgba(26,127,232,.4); }
.step:nth-child(2) .step-num { background: var(--red); box-shadow: 0 8px 28px rgba(232,35,26,.4); }
.step:nth-child(3) .step-num { background: var(--navy); box-shadow: 0 8px 28px rgba(10,22,40,.4); }

.step:hover .step-num { transform: scale(1.1); }

.step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.step-desc {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 5%;
  background: var(--card-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.review-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.reviewer:nth-child(1) .reviewer-avatar { background: var(--blue); }

.rv-blue { background: var(--blue); }
.rv-red  { background: var(--red); }
.rv-navy { background: var(--navy); }

.reviewer-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
}

.reviewer-event {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ===== BOOKING FORM ===== */
.booking {
  padding: 100px 5%;
  background: linear-gradient(135deg, var(--navy) 0%, #0D1F3C 100%);
  color: #fff;
  overflow: hidden;
}

/* ===== BOOKING CHOOSER ===== */
.booking-chooser {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.booking-chooser .section-label { color: var(--yellow); justify-content: center; }
.booking-chooser .section-label::before { background: var(--yellow); }
.booking-chooser .section-title { color: #fff; }

.booking-chooser-sub {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  margin-top: 12px;
  line-height: 1.7;
}

.path-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.path-btn {
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(255,255,255,.13);
  border-radius: 16px;
  padding: 32px 28px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .25s, border-color .25s, transform .2s;
  position: relative;
  overflow: hidden;
}

.path-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,127,232,.15), transparent);
  opacity: 0;
  transition: opacity .25s;
}

.path-btn:nth-child(2)::after {
  background: linear-gradient(135deg, rgba(232,35,26,.15), transparent);
}

.path-btn:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}

.path-btn:hover::after { opacity: 1; }

.path-btn.active {
  border-color: var(--blue-l);
  background: rgba(26,127,232,.12);
}

.path-btn:nth-child(2).active {
  border-color: #FF6B65;
  background: rgba(232,35,26,.12);
}

.path-btn-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.path-btn-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  display: block;
}

.path-btn-sub {
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  display: block;
  line-height: 1.5;
}

.path-btn-arrow {
  font-size: 1.1rem;
  color: rgba(255,255,255,.4);
  margin-top: 8px;
  display: block;
  transition: color .2s, transform .3s;
}

.path-btn.active .path-btn-arrow {
  color: var(--yellow);
  transform: rotate(180deg);
}

/* ===== BOOKING PANELS ===== */
.booking-panel {
  max-width: 720px;
  margin: 0 auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .35s ease;
  opacity: 0;
}

.booking-panel.open {
  max-height: 1200px;
  opacity: 1;
}

.booking-panel-inner {
  padding-top: 8px;
}

.booking-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 44px 40px;
  backdrop-filter: blur(12px);
}

.form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .5px;
  text-transform: uppercase;
}

input, select, textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,.35); }

select option { background: var(--navy); color: #fff; }

input:focus, select:focus, textarea:focus {
  border-color: var(--blue-l);
  background: rgba(255,255,255,.12);
}

textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 1.05rem;
}

/* ===== QUICK ORDER FORM ===== */
.qo-section-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  display: block;
}

.qo-date-group {
  margin-bottom: 28px;
}

.qo-date-group input[type="date"] {
  max-width: 260px;
}

/* Checklist grid */
.qo-checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}

.qo-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 0;
  min-height: 58px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
  position: relative;
}

.qo-item:last-child { border-bottom: none; }

.qo-item:hover { background: rgba(255,255,255,.04); }

.qo-item.checked { background: rgba(26,127,232,.08); }

/* Checkbox cell */
.qo-check-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
  padding: 0 4px 0 14px;
}

.qo-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
  position: relative;
}

.qo-checkbox:checked {
  background: var(--red);
  border-color: var(--red);
}

.qo-checkbox:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
  width: 100%;
}

/* Label cell */
.qo-item-label {
  padding: 14px 12px;
  cursor: pointer;
}

.qo-item-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  display: block;
  line-height: 1.3;
}

.qo-item-hint {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
  display: block;
}

/* Qty / sub-select cell */
.qo-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 14px;
  flex-shrink: 0;
}

.qo-qty-wrap {
  display: none;
  align-items: center;
  gap: 0;
}

.qo-item.checked .qo-qty-wrap { display: flex; }

.qo-qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
}

.qo-qty-btn:hover { background: rgba(255,255,255,.15); }

.qo-qty-input {
  width: 68px !important;
  text-align: center;
  padding: 6px 4px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: .95rem !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  background: rgba(255,255,255,.07) !important;
  color: #fff !important;
  min-height: unset !important;
  margin-bottom: 0 !important;
}

/* Concession sub-select */
.qo-subselect {
  display: none;
}

.qo-item.checked .qo-subselect {
  display: block;
}

.qo-subselect select {
  padding: 6px 10px !important;
  font-size: .82rem !important;
  border-radius: 6px !important;
  min-height: unset !important;
  margin-bottom: 0 !important;
  width: auto !important;
}

/* Bottom fields */
.qo-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

/* Confirmation overlay */
.qo-confirm {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.qo-confirm.show { display: flex; }

.qo-confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(39,174,96,.2);
  border: 2px solid rgba(39,174,96,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.qo-confirm-msg {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.4;
}

.qo-confirm-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
}

@media (max-width: 600px) {
  .qo-bottom { grid-template-columns: 1fr; }
  .qo-item { grid-template-columns: 40px 1fr; }
  .qo-controls { grid-column: 2; padding: 0 12px 12px 0; }
}

/* ===== CUSTOM QUOTE FORM ===== */
.cq-step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.cq-step-pip {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  border: 2px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.4);
  transition: background .3s, border-color .3s, color .3s;
  flex-shrink: 0;
}

.cq-step-pip.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.cq-step-pip.done {
  background: rgba(39,174,96,.25);
  border-color: #27AE60;
  color: #27AE60;
}

.cq-step-connector {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}

.cq-step-connector-fill {
  height: 100%;
  width: 0%;
  background: #27AE60;
  border-radius: 2px;
  transition: width .5s ease;
}

.cq-step-connector-fill.done { width: 100%; }

.cq-step-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.cq-step-label span {
  color: var(--yellow);
}

/* Step panels */
.cq-step {
  display: none;
}

.cq-step.active {
  display: block;
  animation: cqFadeIn .3s ease both;
}

@keyframes cqFadeIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cq-step-back {
  display: none;
}

.cq-step.active ~ .cq-step-back,
.cq-back-btn {
  display: inline-flex;
}

.cq-back-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.cq-back-btn:hover { color: #fff; }
.cq-back-btn.visible { display: inline-flex; }

/* Pill multi-select */
.cq-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.cq-pill {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.7);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, transform .15s;
  user-select: none;
}

.cq-pill:hover {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  transform: translateY(-1px);
}

.cq-pill.selected {
  background: rgba(26,127,232,.25);
  border-color: var(--blue-l);
  color: #fff;
}

/* Confirmation */
.cq-confirm {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.cq-confirm.show { display: flex; }

.cq-confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(39,174,96,.15);
  border: 2px solid rgba(39,174,96,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.cq-confirm-msg {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
}

.cq-confirm-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
}

/* ===== FORM ERROR BANNER ===== */
.form-error {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(232,35,26,.15);
  border: 1px solid rgba(232,35,26,.4);
  border-radius: 10px;
  padding: 14px 18px;
  color: #FF9B97;
  font-family: 'Lato', sans-serif;
  font-size: .92rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.form-error.show { display: flex; }
.form-error::before { content: '⚠'; font-size: 1.1rem; flex-shrink: 0; }

/* ===== FOOTER ===== */
footer {
  background: #060D1A;
  color: rgba(255,255,255,.6);
  padding: 64px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}

.footer-logo-text span { color: var(--yellow); }

.footer-brand p {
  font-size: .92rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 1rem;
  transition: background .2s, color .2s, transform .15s;
}

.social-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

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

.footer-col ul a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .9rem;
}

.footer-contact-item .icon {
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: .85rem; }
.footer-bottom a { color: var(--blue-l); text-decoration: none; }

/* ===== BANNER STRIP ===== */
.banner-strip {
  background: var(--red);
  padding: 14px 5%;
  overflow: hidden;
}

.banner-track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
  white-space: nowrap;
  letter-spacing: .5px;
}

.banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .path-btns { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { margin-bottom: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-form { padding: 32px 24px; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}

/* ===== MOBILE BOOKING FIXES (max 640px) ===== */
@media (max-width: 640px) {
  /* Prevent any horizontal scroll in the booking section */
  .booking { overflow-x: hidden; }
  .booking-panel-inner { overflow-x: hidden; }
  .booking-form { overflow-x: hidden; }

  /* Chooser heading */
  .booking-chooser { padding: 0 4px; }

  /* Path-selector buttons: full width, stacked */
  .path-btns {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .path-btn {
    width: 100%;
    min-height: 80px;
  }

  /* Booking form inner padding tighter on small screens */
  .booking-form { padding: 24px 16px; }

  /* --- Quick Order: checklist rows --- */
  /* Ensure the row doesn't overflow */
  .qo-item {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    min-height: 60px;
  }

  /* Controls (qty / sub-select) drop below the label row */
  .qo-controls {
    grid-column: 2;
    padding: 0 0 14px 0;
  }

  /* Qty buttons: 44px touch target */
  .qo-qty-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 1.3rem;
  }

  /* Qty input: taller for touch */
  .qo-qty-input {
    height: 44px !important;
    font-size: 1.05rem !important;
  }

  /* Checkbox cell wider for easier tap */
  .qo-check-cell {
    padding: 0 2px 0 10px;
  }

  .qo-checkbox {
    width: 26px;
    height: 26px;
  }

  /* Address + phone stack already handled by .form-row override at 768px */

  /* --- Custom Quote: pills --- */
  .cq-pills {
    gap: 8px;
  }

  .cq-pill {
    padding: 11px 16px;
    font-size: .88rem;
    /* ensure pills don't overflow */
    word-break: break-word;
  }

  /* Step indicator: center and add breathing room */
  .cq-step-indicator {
    justify-content: center;
    margin-bottom: 20px;
  }

  .cq-step-pip {
    width: 36px;
    height: 36px;
    font-size: .9rem;
  }

  /* Step label centered on mobile */
  .cq-step-label {
    text-align: center;
  }

  /* Back button centered */
  .cq-back-btn {
    display: none; /* shown via .visible */
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
  }

  .cq-back-btn.visible { display: flex; }

  /* --- Price estimator on mobile --- */
  #qo-estimator {
    padding: 14px 14px;
  }

  #qo-est-list li {
    flex-direction: column;
    gap: 2px;
  }

  #qo-est-list li span.est-price {
    margin-left: 0;
    font-size: .83rem;
    color: rgba(255,255,255,.6);
  }

  .qo-est-total {
    font-size: .95rem;
  }

  /* --- Sticky submit buttons --- */
  /* Wrap each form's submit in a sticky footer band */
  .form-submit {
    position: sticky;
    bottom: 0;
    z-index: 10;
    /* slight shadow to lift it off content above */
    box-shadow: 0 -4px 20px rgba(0,0,0,.35);
    border-radius: 0 0 12px 12px;
    /* pull to edges of the form card */
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    border-radius: 0 0 16px 16px;
  }

  /* Error banner above sticky button needs bottom margin so it isn't hidden */
  .form-error { margin-bottom: 0; }
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 3px;
  gap: 0;
  flex-shrink: 0;
}

.lang-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 1px;
  padding: 5px 11px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,.4);
  transition: background .2s, color .2s;
  line-height: 1;
}

.lang-btn.lang-active {
  background: var(--navy);
  color: var(--yellow);
}

.lang-toggle { cursor: pointer; }

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 100px 5%;
  background: #fff;
}

.pricing-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  border: 2px solid #1565C0;
  background: transparent;
  color: #1565C0;
  cursor: pointer;
  transition: background .2s, color .2s;
  line-height: 1;
}

.filter-btn.filter-active,
.filter-btn:hover {
  background: #1565C0;
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.pricing-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: box-shadow .25s, border-color .25s;
}

.pricing-item:hover {
  box-shadow: 0 8px 28px rgba(21,101,192,.13);
  border-color: #1565C0;
}

.pricing-item[style*="display: none"],
.pricing-item[style*="display:none"] { display: none !important; }

.pricing-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #C62828;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}

.pricing-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 2px;
}

.pricing-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  padding-right: 36px;
}

.pricing-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1565C0;
  margin-top: 6px;
}

/* ===== PACKAGES SUBSECTION ===== */
.packages-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  text-align: center;
  margin: 56px 0 8px;
}

.packages-sub {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 32px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pkg-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .25s, border-color .25s;
}

.pkg-card:hover {
  box-shadow: 0 8px 32px rgba(21,101,192,.12);
}

.pkg-card.pkg-featured {
  border: 2px solid #1565C0;
  box-shadow: 0 4px 24px rgba(21,101,192,.15);
}

.pkg-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--card-bg);
  color: var(--muted);
  align-self: flex-start;
}

.pkg-label.pkg-label-featured {
  background: #C62828;
  color: #fff;
}

.pkg-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
}

.pkg-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #1565C0;
  line-height: 1;
}

.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pkg-list li {
  font-size: .82rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.pkg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1565C0;
  flex-shrink: 0;
}

.pkg-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .3px;
  padding: 12px 0;
  border-radius: 8px;
  background: #1565C0;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: auto;
}

.pkg-btn:hover {
  background: var(--blue-d);
  transform: translateY(-1px);
}

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

@media (max-width: 600px) {
  .pricing-filter-bar { gap: 8px; }
  .filter-btn { font-size: .75rem; padding: 8px 15px; }
  .pkg-price { font-size: 1.3rem; }
}

/* ===== PRICE ESTIMATOR ===== */
@keyframes estFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

#qo-estimator {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 20px 0 8px;
  animation: estFadeIn .25s ease both;
}

#qo-est-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#qo-est-list li {
  display: flex;
  justify-content: space-between;
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  color: #fff;
}

#qo-est-list li span.est-price {
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  margin-left: 8px;
}

.qo-est-total {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

#qo-est-amount {
  color: var(--yellow);
}

.qo-est-disclaimer {
  margin-top: 8px;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  font-family: 'Lato', sans-serif;
}

/* ===== HEARTBEAT PULSE ===== */
@keyframes heartbeat {
  0%   { box-shadow: 0 0 0 0 rgba(232, 35, 26, 0.7); transform: scale(1); }
  50%  { box-shadow: 0 0 0 10px transparent; transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 transparent; transform: scale(1); }
}

.btn-heartbeat {
  animation: heartbeat 1.8s ease-in-out infinite;
}

.btn-heartbeat:hover {
  animation: none;
  transform: translateY(-2px);
}

.nav-link-active { color: var(--yellow) !important; }
