:root {
  --orange: #E88413;
  --orange-dark: #C97210;
  --orange-light: #FFF3E0;
  --blue: #004AAD;
  --blue-dark: #003890;
  --blue-light: #E8EFFA;
  --white: #FFFFFF;
  --gray-50: #F9F9F9;
  --gray-100: #F0F0F0;
  --gray-200: #E0E0E0;
  --gray-500: #9E9E9E;
  --gray-700: #4A4A4A;
  --gray-900: #1A1A1A;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 108px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-logo { display: flex; align-items: center; cursor: pointer; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  padding: 0.5rem 0.9rem; font-size: 0.9rem; font-weight: 500;
  color: var(--gray-700); text-decoration: none;
  border-radius: var(--radius-sm); transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  border-radius: 50px !important; padding: 0.55rem 1.2rem !important;
  font-weight: 700 !important; transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--orange-dark) !important; color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,132,19,0.4) !important;
}
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-900); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 108px; left: 0; right: 0;
  background: var(--white); padding: 1rem;
  border-bottom: 1px solid var(--gray-200); z-index: 99; box-shadow: var(--shadow);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.75rem 1rem; font-weight: 500; color: var(--gray-700); text-decoration: none; border-radius: var(--radius-sm); }
.mobile-menu a:hover { background: var(--gray-50); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  cursor: pointer; text-decoration: none; transition: all 0.2s; border: none;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,132,19,0.4); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,74,173,0.35); }

/* LAYOUT */
section { padding: 80px 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block; background: var(--orange-light); color: var(--orange-dark);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--blue); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--gray-700); line-height: 1.7; max-width: 560px; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0D3070 100%);
  padding: 100px 2rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,132,19,0.15) 0%, transparent 60%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,132,19,0.2); border: 1px solid rgba(232,132,19,0.4);
  color: #FFB74D; font-size: 0.85rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-img { position: relative; }
.hero-img-box {
  width: 100%; aspect-ratio: 3/4;
  background: rgba(255,255,255,0.08); border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; gap: 12px;
}
.hero-float {
  position: absolute; background: var(--white); border-radius: var(--radius);
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px; font-size: 0.85rem;
}
.hero-float-1 { top: 20px; right: -20px; }
.hero-float-2 { bottom: 30px; left: -20px; }
.hero-float-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.float-orange { background: var(--orange-light); }
.float-blue { background: var(--blue-light); }
.hero-float-text strong { display: block; font-weight: 700; font-size: 0.9rem; color: var(--gray-900); }
.hero-float-text span { font-size: 0.75rem; color: var(--gray-500); }

/* TICKER */
.events-strip { background: var(--orange); padding: 0; overflow: hidden; }
.events-ticker { display: flex; gap: 3rem; padding: 1rem 2rem; animation: ticker 20s linear infinite; white-space: nowrap; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.events-ticker span { color: var(--white); font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; display: flex; align-items: center; gap: 0.75rem; }
.events-ticker span::before { content: '★'; color: rgba(255,255,255,0.6); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.step-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 2rem; text-align: center; transition: all 0.3s; }
.step-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num { width: 52px; height: 52px; background: var(--blue-light); color: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.4rem; margin: 0 auto 1.25rem; }
.step-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--blue); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }

/* EVENTS GRID */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.event-card { border-radius: var(--radius); padding: 2rem 1.75rem; transition: transform 0.2s; }
.event-card:hover { transform: translateY(-4px); }
.event-card.blue { background: var(--blue); color: var(--white); }
.event-card.orange { background: var(--orange); color: var(--white); }
.event-card.light { background: var(--blue-light); }
.event-emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.event-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; }
.event-card.light h3 { color: var(--blue); }
.event-card p { font-size: 0.9rem; opacity: 0.85; line-height: 1.6; }
.event-card.light p { color: var(--gray-700); opacity: 1; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #0D3070 100%);
  border-radius: var(--radius-lg); padding: 4rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(232,132,19,0.2) 0%, transparent 70%); }
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--white); margin-bottom: 0.75rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
.cta-banner .btn { position: relative; }

/* MACHINES */
.machines-hero { background: linear-gradient(135deg, #EEF2FF 0%, #E8EFFA 100%); padding: 80px 2rem 60px; text-align: center; }
.machine-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 4rem; }
.machine-card { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--gray-200); transition: all 0.3s; background: var(--white); }
.machine-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.machine-img { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--blue-light), #dce8f9); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--blue); font-size: 0.9rem; gap: 12px; border-bottom: 1.5px solid var(--gray-200); }
.machine-body { padding: 2rem; }
.machine-tag { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.machine-body h3 { font-size: 1.5rem; font-weight: 900; color: var(--blue); margin-bottom: 0.75rem; }
.machine-body p { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 1.25rem; }
.machine-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.machine-features li { font-size: 0.9rem; color: var(--gray-700); display: flex; align-items: center; gap: 8px; }
.machine-features li::before { content: ''; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.stack-callout { background: linear-gradient(135deg, var(--orange) 0%, #C97210 100%); border-radius: var(--radius-lg); padding: 3rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; margin-top: 3rem; }
.stack-callout h3 { font-size: 1.6rem; font-weight: 900; color: var(--white); margin-bottom: 0.5rem; }
.stack-callout p { color: rgba(255,255,255,0.9); font-size: 1rem; line-height: 1.6; }
.stack-visual { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.stack-box { width: 80px; height: 56px; background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.4); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }

/* PRIZES */
.prizes-hero { background: linear-gradient(135deg, #FFF3E0 0%, #FFE8C0 100%); padding: 80px 2rem 60px; text-align: center; }
.prizes-note { background: var(--white); border: 1.5px solid var(--orange); border-radius: var(--radius); padding: 1.25rem 1.75rem; display: flex; align-items: flex-start; gap: 14px; margin-bottom: 3rem; }
.prizes-note-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.prizes-note p { font-size: 0.95rem; color: var(--gray-700); line-height: 1.6; }
.prizes-note strong { color: var(--orange-dark); }
.prizes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.prize-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: all 0.25s; }
.prize-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(232,132,19,0.15); }
.prize-img { width: 100%; aspect-ratio: 1/1; background: linear-gradient(135deg, var(--gray-100), var(--gray-50)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.prize-label { padding: 0.75rem 1rem; font-weight: 600; font-size: 0.85rem; color: var(--gray-700); text-align: center; }
.prizes-custom { background: var(--blue); border-radius: var(--radius-lg); padding: 3rem; text-align: center; margin-top: 3rem; }
.prizes-custom h3 { color: var(--white); font-size: 1.6rem; font-weight: 900; margin-bottom: 0.75rem; }
.prizes-custom p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; font-size: 1rem; }

/* PRICING */
.pricing-hero { background: linear-gradient(135deg, var(--blue) 0%, #0D3070 100%); padding: 80px 2rem 60px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.pricing-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 28px 28px; }
.pricing-hero h1 { color: var(--white); position: relative; }
.pricing-hero p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0.75rem auto 0; position: relative; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.pricing-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem; position: relative; }
.pricing-card.featured { border-color: var(--orange); border-width: 2px; }
.pricing-card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 0.75rem; font-weight: 800; padding: 4px 16px; border-radius: 50px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.pricing-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--blue); margin-bottom: 0.25rem; }
.pricing-card .price { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.4rem; color: var(--gray-900); line-height: 1; margin: 0.5rem 0; }
.pricing-card .price span { font-size: 1rem; color: var(--gray-500); font-weight: 400; }
.pricing-card .duration { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.25rem; }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-card ul li { font-size: 0.9rem; color: var(--gray-700); display: flex; align-items: center; gap: 8px; }
.pricing-card ul li::before { content: '✓'; color: var(--orange); font-weight: 800; font-size: 1rem; }
.fullday-card { background: linear-gradient(135deg, var(--blue) 0%, #0D3070 100%); border-radius: var(--radius-lg); padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem; }
.fullday-card h3 { color: var(--white); font-size: 1.4rem; font-weight: 900; margin-bottom: 0.25rem; }
.fullday-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.fullday-card a.link { color: var(--orange); font-weight: 700; text-decoration: none; }
.included-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.included-item { text-align: center; padding: 1.5rem; border-radius: var(--radius); background: var(--gray-50); border: 1.5px solid var(--gray-200); }
.included-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.included-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-bottom: 0.25rem; }
.included-item p { font-size: 0.85rem; color: var(--gray-500); }

/* FAQ */
.faq-hero { background: linear-gradient(135deg, #EEF2FF 0%, #E8EFFA 100%); padding: 80px 2rem 60px; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--blue); }
.faq-q { padding: 1.25rem 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 600; font-size: 0.975rem; color: var(--gray-900); user-select: none; }
.faq-q:hover { background: var(--gray-50); }
.faq-item.open .faq-q { background: var(--blue-light); color: var(--blue); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: transform 0.25s, background 0.2s; color: var(--gray-700); }
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-a { display: none; padding: 1.25rem 1.5rem; font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; border-top: 1px solid var(--gray-200); }
.faq-item.open .faq-a { display: block; }

/* FOOTER */
footer { background: var(--gray-900); color: rgba(255,255,255,0.7); padding: 60px 2rem 30px; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
footer h4 { color: var(--white); font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
footer ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--orange); }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 1rem; height: 88px; }
  nav img { height: 76px !important; }
  .mobile-menu { top: 88px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-img { display: block; }
  .hero-img > div { aspect-ratio: auto !important; max-height: none !important; height: auto !important; }
  .hero-img > div img { width: 100% !important; height: auto !important; object-fit: unset !important; display: block; }
  .hero-float { display: none; }
  .hero { padding: 50px 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .machine-cards { grid-template-columns: 1fr; }
  .prizes-grid { grid-template-columns: repeat(2,1fr); }
  .prize-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .pricing-cards { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stack-callout { grid-template-columns: 1fr; }
  section { padding: 60px 1.25rem; }
}

/* BOOKING FORM */
.booking-form {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue-light);
}
.form-section-title:first-child { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,74,173,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.req { color: var(--orange); }
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid var(--gray-200);
  flex-wrap: wrap;
}
.form-note { font-size: 0.82rem; color: var(--gray-500); }
.form-success {
  background: #F0FFF4;
  border: 2px solid #38A169;
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}
.form-success h3 { color: #276749; font-size: 1.6rem; font-weight: 900; margin-bottom: 0.75rem; }
.form-success p { color: #2F855A; font-size: 1rem; line-height: 1.7; }
.form-error-msg {
  background: #FFF5F5;
  border: 1.5px solid #FC8181;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: #C53030;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
  .booking-form { padding: 1.5rem; }
}

/* CALCULATOR */
.calculator {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
.calc-grid { display: flex; flex-direction: column; gap: 1.75rem; }
.calc-group { display: flex; flex-direction: column; gap: 0.6rem; }
.calc-label { font-weight: 700; font-size: 0.9rem; color: var(--gray-700); }
.calc-hint { font-size: 0.8rem; color: var(--gray-500); margin-top: 4px; }
.calc-options { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.calc-opt {
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  background: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
}
.calc-opt:hover { border-color: var(--blue); color: var(--blue); }
.calc-opt.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.calc-stepper { display: flex; align-items: center; gap: 0.5rem; }
.stepper-btn {
  width: 36px; height: 36px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  background: var(--white);
  font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: all 0.15s;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-700);
}
.stepper-btn:hover { border-color: var(--blue); color: var(--blue); }
.stepper-val { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--blue); min-width: 36px; text-align: center; }
.calc-result {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.calc-breakdown { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1.5px solid var(--gray-200); }
.breakdown-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--gray-700); gap: 1rem; }
.breakdown-row span:last-child { font-weight: 700; white-space: nowrap; }
.calc-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.calc-total-row span:first-child { font-weight: 700; font-size: 1rem; color: var(--gray-700); }
.calc-total { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.2rem; color: var(--blue); }
.calc-deposit { display: flex; justify-content: space-between; align-items: center; background: var(--orange-light); border-radius: var(--radius-sm); padding: 0.75rem 1rem; font-size: 0.85rem; font-weight: 600; color: var(--orange-dark); gap: 1rem; }
@media (max-width: 900px) {
  .calculator { grid-template-columns: 1fr; }
  .calc-result { position: static; }
}

/* NEXT STEPS (success state) */
.next-steps {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 1.75rem; text-align: left;
}
.next-step {
  display: flex; align-items: flex-start; gap: 1rem;
  background: white; border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border: 1.5px solid #C6F6D5;
}
.next-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--blue); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.95rem;
}
.next-step strong { color: var(--blue); }

/* FORM — themed to match brand */
.booking-form {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,74,173,0.06);
}
.booking-form .form-section-title {
  background: linear-gradient(135deg, var(--blue) 0%, #0D3070 100%);
  color: white;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 1.75rem -0.25rem 1.25rem;
  border-bottom: none;
}
.booking-form .form-section-title:first-child { margin-top: 0; }
.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,74,173,0.12);
}

/* MACHINE COMBO PICKER */
.machine-combo { display: flex; flex-direction: column; gap: 1rem; }
.combo-slot { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 1rem; }
.combo-slot-label { font-size: 0.8rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.combo-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.combo-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 0.9rem 0.5rem;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  background: var(--white); cursor: pointer; transition: all 0.2s;
  text-align: center;
}
.combo-btn:hover { border-color: var(--blue); }
.combo-btn.active { border-color: var(--blue); background: var(--blue-light); }
.combo-icon { font-size: 1.75rem; }
.combo-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--gray-900); }
.combo-btn.active .combo-name { color: var(--blue); }
.combo-desc { font-size: 0.72rem; color: var(--gray-500); }
.combo-divider { text-align: center; font-size: 0.8rem; font-weight: 700; color: var(--gray-500); padding: 0.25rem 0; text-transform: uppercase; letter-spacing: 0.08em; }

/* FORM STEPPER (extra prizes in form) */
.form-stepper {
  display: flex; align-items: center;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  overflow: hidden; width: fit-content; min-width: 140px;
}
.fstepper-btn {
  width: 40px; height: 42px;
  background: var(--gray-50); border: none;
  font-size: 1.2rem; font-weight: 700; cursor: pointer;
  color: var(--gray-700); transition: background 0.15s;
  flex-shrink: 0;
}
.fstepper-btn:hover { background: var(--blue-light); color: var(--blue); }
.form-stepper input[type="number"] {
  border: none !important; border-left: 1.5px solid var(--gray-200) !important;
  border-right: 1.5px solid var(--gray-200) !important;
  border-radius: 0 !important; box-shadow: none !important;
}
.form-stepper input[type="number"]::-webkit-outer-spin-button,
.form-stepper input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }

/* PREMIUM MACHINE CARD IMAGE */
.machine-img-premium {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.machine-img-premium img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.machine-card:hover .machine-img-premium img {
  transform: scale(1.04);
}
.machine-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; gap: 6px;
}
.machine-img-tag {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}
.machine-img-title {
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* PRIZE GALLERY */
.prize-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}
.prize-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--gray-100);
  cursor: zoom-in;
  transition: transform 0.2s, box-shadow 0.2s;
}
.prize-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.prize-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}
.prize-gallery-item:hover img {
  transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: white; font-size: 2rem;
  cursor: pointer; line-height: 1;
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .prize-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* PRIZE TIER HEADERS */
.prize-tier-header {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.prize-tier-badge {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 16px; border-radius: 50px; white-space: nowrap;
  flex-shrink: 0;
}
.premium-badge { background: #FFF3E0; color: #C97210; border: 2px solid #E88413; }
.regular-badge { background: var(--blue-light); color: var(--blue); border: 2px solid var(--blue); }

/* BOOKING STEPS */
.booking-steps { display: flex; flex-direction: column; gap: 0.875rem; margin-top: 0.5rem; }
.booking-step {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  border: 1.5px solid rgba(0,74,173,0.15);
  font-size: 0.9rem; color: var(--gray-700);
}
.booking-step-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--blue); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.85rem;
}
.booking-step strong { color: var(--blue); }

/* MOBILE IMPROVEMENTS */
@media (max-width: 480px) {
  .calc-options { flex-direction: column; }
  .calc-opt { text-align: center; }
  .pricing-card { padding: 1.5rem 1.25rem; }
  .fullday-card { padding: 1.5rem; }
  .fullday-card h3 { font-size: 1.1rem; }
  .hero h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .prize-tier-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .booking-form { padding: 1.25rem; }
}

/* PER-MACHINE ROW PICKER */
.machine-row {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.machine-row-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.85rem;
  color: var(--blue); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.875rem;
}
.machine-row-selectors {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.machine-row-sublabel {
  font-size: 0.78rem; font-weight: 600;
  color: var(--gray-500); margin-bottom: 0.5rem;
}
.machine-type-select .combo-btns { gap: 0.5rem; }
.machine-type-select .combo-btn { padding: 0.6rem 0.5rem; }
.machine-type-select .combo-icon { font-size: 1.3rem; }
.machine-type-select .combo-name { font-size: 0.78rem; }
.machine-type-select .combo-desc { font-size: 0.68rem; }

/* PRIZE PICK BUTTON */
.prize-pick-btn {
  width: 100%; padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 0.85rem;
  color: var(--gray-500); text-align: left;
  transition: border-color 0.2s; display: flex; align-items: center;
}
.prize-pick-btn:hover { border-color: var(--blue); }
.prize-pick-btn.has-selection { border-color: var(--blue); color: var(--gray-900); }
.prize-pick-preview { display: flex; align-items: center; gap: 8px; }

/* PRIZE GALLERY MODAL */
.prize-gallery-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000; display: flex;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.prize-gallery-modal-inner {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 640px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.prize-gallery-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1.5px solid var(--gray-200);
  position: sticky; top: 0; background: var(--white); z-index: 1;
}
.prize-gallery-modal-header h3 {
  font-size: 1rem; font-weight: 800; color: var(--blue);
}
.prize-gallery-modal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem; padding: 1.25rem;
}
.prize-gallery-modal-item {
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: all 0.2s;
  text-align: center;
}
.prize-gallery-modal-item:hover { border-color: var(--blue); transform: translateY(-2px); }
.prize-gallery-modal-item.selected { border-color: var(--blue); background: var(--blue-light); }
.prize-gallery-modal-item img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
}
.prize-gallery-modal-item span {
  display: block; font-size: 0.72rem; font-weight: 600;
  color: var(--gray-700); padding: 0.4rem 0.25rem;
}
.prize-gallery-modal-item.selected span { color: var(--blue); }

@media (max-width: 600px) {
  .machine-row-selectors { grid-template-columns: 1fr; }
  .prize-gallery-modal-grid { grid-template-columns: repeat(2, 1fr); }
}

/* BOOKING SUCCESS SCREEN */
.booking-success {
  background: var(--white);
  border: 2px solid #38A169;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}
.booking-success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}
.booking-success h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #276749;
  margin-bottom: 0.5rem;
}
.booking-success-sub {
  color: var(--gray-700);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.success-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: left;
}
.success-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  position: relative;
}
.success-step-connector {
  width: 2px;
  height: 20px;
  background: var(--gray-200);
  margin-left: 26px;
}
.success-step-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.success-step-num {
  display: none;
}
.success-step-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.success-step-content strong {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
}
.success-step-content span {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.booking-success-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--gray-500);
}
.booking-success-footer a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.booking-success-footer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .booking-success { padding: 2rem 1.25rem; }
  .booking-success h2 { font-size: 1.5rem; }
}


/* MACHINE SIDE-BY-SIDE LAYOUT */
.machine-rows-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}
.machine-row-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.machine-row-item.reverse .machine-row-photo {
  order: 2;
}
.machine-row-item.reverse .machine-row-body {
  order: 1;
  padding-left: 2.5rem;
  padding-right: 0;
}
.machine-row-photo {
  overflow: hidden;
  background: #08080f;
  height: 100%;
  min-height: 400px;
}
.machine-row-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.machine-row-body {
  padding: 2.5rem 2.5rem 2.5rem 0;
}
.machine-row-item.reverse .machine-row-body {
  padding: 2.5rem 0 2.5rem 2.5rem;
}
.machine-row-body .machine-tag {
  margin-bottom: 0.75rem;
  display: inline-block;
}
.machine-row-body h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.machine-row-body p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}
.machine-row-body .machine-features {
  margin-top: 1.25rem;
}
@media (max-width: 900px) {
  .machine-row-item,
  .machine-row-item.reverse {
    grid-template-columns: 1fr;
  }
  .machine-row-photo {
    min-height: 280px;
    order: 1 !important;
  }
  .machine-row-body,
  .machine-row-item.reverse .machine-row-body {
    order: 2 !important;
    padding: 1.75rem !important;
  }
}
