/* ── Ultra Driving School — styles.css ── */
:root {
  --orange:     #F46516;
  --orange-dk:  #d93c00;
  --dark:       #131926;
  --dark-2:     #0d1420;
  --gray:       #6b7280;
  --gray-2:     #9aa3b2;
  --border:     #e8ecef;
  --bg-light:   #f8f9fa;
  --white:      #ffffff;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--orange); }
a:hover { color: var(--orange-dk); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); }

/* ── Header ── */
#uds-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.uds-topbar { height: 3px; background: var(--orange); }
.uds-nav-inner {
  background: var(--white);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
  border-bottom: 1px solid var(--border);
}
.uds-nav-inner.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 28px -10px rgba(19,25,38,.2);
  border-bottom-color: transparent;
}
.uds-nav-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.uds-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.uds-logo img { height: 42px; width: auto; }
.uds-logo-text { font-family: var(--font-head); font-weight: 900; font-size: 18px; color: var(--dark); white-space: nowrap; letter-spacing: -0.01em; }
.uds-nav-links { display: flex; align-items: center; gap: 28px; }
.uds-nav-links a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--dark); transition: color .2s; }
.uds-nav-links a:hover, .uds-nav-links a.active { color: var(--orange); }
.uds-nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.uds-phone-link { font-size: 14px; font-weight: 600; color: var(--dark); text-decoration: none; }
.uds-phone-link:hover { color: var(--orange); }
.uds-btn-book {
  background: var(--orange); color: var(--white); text-decoration: none;
  font-family: var(--font-head); font-weight: 700; font-size: 13.5px;
  padding: 11px 20px; border-radius: 50px; white-space: nowrap; transition: background .2s;
}
.uds-btn-book:hover { background: var(--orange-dk); color: var(--white); }
.uds-burger {
  display: none; width: 42px; height: 42px; border: 1.5px solid var(--border);
  border-radius: 8px; background: var(--white); cursor: pointer; font-size: 20px;
  align-items: center; justify-content: center; color: var(--dark);
}
.uds-mobile-nav {
  display: none; background: var(--white); border-top: 1px solid var(--border);
  padding: 12px 24px 24px;
}
.uds-mobile-nav a {
  display: block; padding: 13px 0; font-size: 16px; font-weight: 600;
  color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--bg-light);
}
.uds-mobile-nav a:hover { color: var(--orange); }
.uds-mobile-nav .uds-btn-book { display: block; text-align: center; margin-top: 18px; border-bottom: none; }

/* ── Footer ── */
footer { background: var(--dark); color: var(--gray-2); overflow: hidden; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px 32px; overflow: hidden; }
.footer-top {
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 28px 32px; display: flex; flex-wrap: wrap; align-items: center;
  gap: 24px; margin-top: 64px; background: rgba(255,255,255,0.03);
}
.footer-brand { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 200px; }
.footer-brand img { height: 40px; width: auto; }
.footer-brand-name { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--white); }
.footer-sub-label { flex: 2; min-width: 240px; display: flex; align-items: center; gap: 14px; }
.footer-sub-icon { font-size: 28px; color: var(--orange); }
.footer-sub-label h4 { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--white); margin: 0 0 2px; }
.footer-sub-label p { font-size: 13px; color: var(--gray); margin: 0; }
.footer-sub-form { display: flex; gap: 10px; flex: 2; min-width: 260px; }
.footer-sub-form input {
  flex: 1; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; background: rgba(255,255,255,0.07); color: var(--white);
  font-size: 14px; font-family: var(--font-body); outline: none;
}
.footer-sub-form input::placeholder { color: var(--gray); }
.footer-sub-form button {
  background: var(--orange); color: var(--white); border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  padding: 12px 22px; border-radius: 8px; white-space: nowrap; transition: background .2s;
}
.footer-sub-form button:hover { background: var(--orange-dk); }
.footer-cols { max-width: 1200px; margin: 0 auto; padding: 52px 24px 0; }
.footer-cols-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 36px; }
.footer-about p { font-size: 14px; line-height: 1.75; color: var(--gray); margin: 0 0 18px; max-width: 260px; }
.footer-socials { display: flex; gap: 9px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center;
  justify-content: center; text-decoration: none; transition: background .2s;
}
.footer-social-link.fb { background: var(--orange); color: var(--white); }
.footer-social-link.ig { background: rgba(255,255,255,0.08); color: var(--white); }
.footer-social-link:hover { background: var(--orange); color: var(--white); }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--white); margin: 0 0 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: var(--gray-2); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col .area-link { display: flex; align-items: center; gap: 8px; }
.footer-col .area-link i { color: var(--orange); width: 14px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; }
.footer-contact-icon {
  width: 32px; height: 32px; background: var(--orange); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--white); font-size: 13px;
}
.footer-contact-item a { color: var(--gray-2); text-decoration: none; font-size: 14px; }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item span.text { font-size: 14px; line-height: 1.55; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center;
}
.footer-bottom-bar p { font-size: 13px; color: var(--gray); margin: 0; }
.footer-bottom-bar strong { color: var(--orange); }

/* ── Page wrapper ── */
.page-body { padding-top: 71px; }

/* ── Section band label ── */
.band-label { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.band-label .line { display: inline-block; width: 34px; height: 3px; background: var(--orange); border-radius: 2px; }
.band-label .text { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }

/* ── Page hero banner (inner pages) ── */
.page-banner {
  background: var(--dark); padding: clamp(48px,7vw,80px) 24px; text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 28px 28px; pointer-events: none;
}
.page-banner h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(32px,5vw,52px); color: var(--white); letter-spacing: -0.02em; margin: 0 0 12px; position: relative; }
.page-banner p { font-size: 16px; color: var(--gray-2); margin: 0; position: relative; }
.page-banner p span { color: var(--orange); }

/* ── Reveal animation ── */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white); text-decoration: none;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  padding: 13px 28px; border-radius: 50px; transition: background .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dk); color: var(--white); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dark); text-decoration: none;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  padding: 12px 26px; border-radius: 50px; border: 1.5px solid var(--border); transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); text-decoration: none;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  padding: 12px 26px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.3); transition: border-color .2s;
}
.btn-outline-white:hover { border-color: var(--orange); color: var(--white); }

/* ── Cards ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; }
.card:hover { box-shadow: 0 16px 40px -24px rgba(19,25,38,.35); }

/* ── Stat pill ── */
.stat-val { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px,3vw,38px); color: var(--orange); line-height: 1; }
.stat-label { font-size: 12.5px; color: var(--gray-2); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── HOME: Hero ── */
.hero-section { background: var(--white); padding: clamp(60px,8vw,100px) 24px; overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 1200px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff3ec; color: var(--orange); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 16px;
  border-radius: 50px; margin-bottom: 22px;
}
.hero-h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(36px,5vw,60px); line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 18px; }
.hero-h1 span { color: var(--orange); }
.hero-p { font-size: clamp(15px,1.5vw,17px); line-height: 1.75; color: var(--gray); margin: 0 0 28px; max-width: 460px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; padding-top: 22px; border-top: 1px solid var(--border); }
.hero-trust img { height: 32px; width: auto; filter: grayscale(1); opacity: .65; }
.hero-trust-text { font-size: 13.5px; font-weight: 700; color: var(--dark); }
.hero-trust-text span { font-weight: 400; color: var(--gray); }
.hero-img-wrap { border-radius: 20px; overflow: hidden; height: clamp(320px,42vw,500px); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── HOME: Services grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { padding: 26px; position: relative; overflow: hidden; transition: box-shadow .25s; }
.service-card:hover { box-shadow: 0 16px 40px -24px rgba(19,25,38,.4); }
.service-icon-wrap { width: 46px; height: 46px; background: var(--dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; margin-bottom: 16px; }
.service-icon-wrap i { color: var(--orange); font-size: 20px; }
.service-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 0 0 10px; }
.service-card p { font-size: 14px; line-height: 1.65; color: var(--gray); margin: 0 0 16px; }
.service-card a { font-size: 13.5px; font-weight: 700; color: var(--orange); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.service-card a:hover { gap: 10px; }

/* ── HOME: Dark split ── */
.dark-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 6px; min-height: clamp(320px,38vw,500px); }
.split-photos div { overflow: hidden; }
.split-photos div img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-stat { background: var(--dark-2); display: flex; align-items: center; justify-content: center; }
.split-stat-val { font-family: var(--font-head); font-weight: 800; font-size: 52px; color: var(--orange); line-height: 1; }
.split-stat-lbl { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--gray-2); margin-top: 6px; text-transform: uppercase; }
.split-content { background: var(--dark); padding: clamp(36px,5vw,70px) clamp(28px,5vw,60px); display: flex; flex-direction: column; justify-content: center; }
.split-content h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px,3vw,36px); line-height: 1.1; letter-spacing: -0.02em; color: var(--white); margin: 0 0 18px; }
.split-content p { font-size: 15px; line-height: 1.75; color: var(--gray-2); margin: 0 0 24px; }
.split-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.split-stats .sv { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--orange); }
.split-stats .sl { font-size: 12px; color: var(--gray-2); margin-top: 2px; }

/* ── HOME: Process ── */
.process-section { background: var(--dark); padding: clamp(56px,8vw,88px) 24px; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; }
.process-step { text-align: center; }
.process-num {
  width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--orange);
}
.process-step h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--white); margin: 0 0 10px; }
.process-step p { font-size: 14px; line-height: 1.65; color: var(--gray-2); margin: 0; }

/* ── HOME: Package cards ── */
.pkg-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pkg-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow .25s; }
.pkg-card:hover { box-shadow: 0 16px 40px -24px rgba(19,25,38,.4); }
.pkg-card-img { height: 180px; overflow: hidden; background: var(--dark); }
.pkg-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pkg-card-body { padding: 18px 20px 22px; background: var(--white); }
.pkg-tag { background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 50px; letter-spacing: 0.04em; }
.pkg-price { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--orange); }
.pkg-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; line-height: 1.3; margin: 10px 0 12px; color: var(--dark); }
.pkg-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--gray); }

/* ── HOME: Simulator ── */
.sim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; max-width: 1200px; margin: 0 auto; }
.sim-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; padding: 16px 18px; background: var(--bg-light); border-radius: 14px; border-left: 4px solid var(--orange); }
.sim-stat-val { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--orange); line-height: 1; }
.sim-stat-lbl { font-size: 11px; color: var(--gray); margin-top: 3px; font-weight: 600; }
.sim-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.sim-check { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.sim-check .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.sim-img-wrap { border-radius: 20px; overflow: hidden; height: clamp(280px,36vw,420px); }
.sim-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── HOME: Instructors strip ── */
.instructors-strip { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 22px; max-width: 920px; margin: 0 auto; }
.instructor-card { border-radius: 14px; overflow: hidden; position: relative; height: 320px; background: var(--dark); }
.instructor-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.instructor-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent,rgba(19,25,38,.9)); padding: 20px 18px 16px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.instructor-name { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--white); }
.instructor-role { font-size: 12px; color: var(--orange); font-weight: 600; margin-top: 2px; }
.instructor-review-card { border-radius: 14px; padding: 28px; border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: space-between; background: var(--white); }

/* ── HOME: Reviews ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.review-card { padding: 24px; display: flex; flex-direction: column; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--white); flex-shrink: 0; }
.review-stars { color: #FBBC05; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 14.5px; line-height: 1.7; color: var(--dark); margin: 0; flex: 1; }

/* ── HOME: CTA band ── */
.cta-band { background: linear-gradient(135deg,var(--orange) 0%,var(--orange-dk) 100%); padding: clamp(50px,7vw,80px) 24px; text-align: center; }
.cta-band h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px,3.5vw,40px); color: var(--white); margin: 0 0 14px; letter-spacing: -0.02em; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.85); margin: 0 0 28px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; max-width: 1160px; margin: 0 auto; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; height: clamp(320px,38vw,460px); }
.about-photos div { border-radius: 14px; overflow: hidden; }
.about-photos div img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-photos .col-2 { display: flex; flex-direction: column; gap: 12px; }
.about-photos .col-2 div { flex: 1; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 24px; }
.value-card { background: var(--white); border-radius: 14px; padding: 28px; text-align: center; border: 1px solid var(--border); }
.value-letter { width: 60px; height: 60px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 20px; margin: 0 auto 18px; }
.value-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin: 0 0 10px; }
.value-card p { font-size: 14px; line-height: 1.65; color: var(--gray); margin: 0; }
.instructors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 820px; margin: 0 auto; }
.instructor-big { border-radius: 16px; overflow: hidden; position: relative; background: var(--dark-2); }
.instructor-big img { width: 100%; height: 420px; object-fit: cover; object-position: center top; display: block; }
.instructor-big-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent,rgba(13,20,32,.95)); padding: 24px 20px 20px;
}
.instructor-big-overlay .name { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--white); }
.instructor-big-overlay .role { font-size: 13px; color: var(--orange); font-weight: 600; margin-top: 2px; }
.instructor-big-overlay .bio { font-size: 13px; color: var(--gray-2); line-height: 1.6; margin: 10px 0 0; }

/* ── SERVICES ── */
.pkg-list { display: flex; flex-direction: column; gap: 24px; max-width: 1160px; margin: 0 auto; }
.pkg-row { background: var(--white); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 10px 40px -28px rgba(19,25,38,.35); }
.pkg-row-grid { display: grid; grid-template-columns: 1fr 300px; }
.pkg-row-main { padding: clamp(24px,3vw,40px); border-right: 1px solid var(--border); }
.pkg-row-main h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(20px,2.4vw,28px); letter-spacing: -0.02em; margin: 0 0 12px; }
.pkg-row-main p { font-size: 15px; line-height: 1.75; color: var(--gray); margin: 0 0 16px; }
.pkg-row-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.pkg-row-tag { background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 5px 13px; border-radius: 50px; }
.pkg-row-hours { font-size: 13px; color: var(--gray); font-weight: 600; }
.pkg-bullets { display: flex; flex-direction: column; gap: 8px; }
.pkg-bullets li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; list-style: none; }
.pkg-bullets li::before { content: '»'; color: var(--orange); font-weight: 700; }
.pkg-sim-badge { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; background: #fff3ec; color: var(--orange); font-weight: 700; font-size: 13.5px; padding: 10px 16px; border-radius: 8px; }
.pkg-row-price { padding: clamp(24px,3vw,40px); background: var(--bg-light); display: flex; flex-direction: column; }
.pkg-price-area { margin-bottom: 18px; }
.pkg-price-area .area-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.pkg-price-area .amount { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--orange); }
.pkg-price-area .amount .gst { font-size: 13px; color: var(--gray); font-weight: 500; }
.pkg-price-area.secondary { padding-top: 18px; border-top: 1px dashed #d8dce3; }
.pkg-price-area.secondary .amount { font-size: 22px; color: var(--dark); }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 14.5px; }
.pricing-table thead tr { background: var(--dark); color: var(--white); }
.pricing-table th { padding: 16px 20px; font-family: var(--font-head); font-weight: 700; font-size: 13px; text-align: left; }
.pricing-table td { padding: 14px 20px; border-top: 1px solid var(--border); }
.pricing-table tr:nth-child(odd) td { background: var(--bg-light); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; max-width: 1160px; margin: 0 auto; }
.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; text-decoration: none; color: var(--dark); transition: border-color .2s; }
.contact-info-item:hover { border-color: var(--orange); color: var(--dark); }
.contact-info-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 3px; }
.contact-info-value { font-family: var(--font-head); font-weight: 800; font-size: 17px; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: clamp(24px,3vw,38px); box-shadow: 0 20px 50px -30px rgba(19,25,38,.35); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { display: block; margin-bottom: 14px; font-size: 13px; font-weight: 600; color: #3a4256; }
.form-input {
  display: block; width: 100%; margin-top: 7px; padding: 12px 14px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--dark);
  background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 8px;
  outline: none; transition: border-color .2s; appearance: none; -webkit-appearance: none;
}
.form-input:focus { border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-btn { width: 100%; margin-top: 6px; background: var(--orange); color: var(--white); border: none; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 15px; padding: 16px; border-radius: 8px; transition: background .2s; }
.form-btn:hover { background: var(--orange-dk); }
.form-error { background: #fef2f2; color: #dc2626; font-size: 13.5px; font-weight: 600; padding: 11px 14px; border-radius: 8px; margin-bottom: 10px; display: none; }
.form-error.visible { display: block; }
.form-success { text-align: center; padding: 28px 0; display: none; }
.form-success.visible { display: block; }
.form-success-icon { width: 70px; height: 70px; border-radius: 50%; background: #fff3ec; color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 18px; }

/* ── VIDEOS ── */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 24px; }
.video-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; cursor: pointer; transition: box-shadow .25s; text-align: left; border: none; padding: 0; }
.video-card:hover { box-shadow: 0 20px 50px -26px rgba(19,25,38,.45); }
.video-thumb { position: relative; height: 175px; overflow: hidden; background: var(--dark); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 40%,rgba(19,25,38,.5)); }
.video-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%; background: var(--orange); z-index: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -8px rgba(244,101,22,.8);
}
.video-play i { color: var(--white); font-size: 18px; margin-left: 3px; }
.video-dur { position: absolute; right: 10px; bottom: 10px; background: rgba(19,25,38,.85); color: var(--white); font-size: 11.5px; font-weight: 600; padding: 3px 8px; border-radius: 5px; z-index: 1; }
.video-body { padding: 18px 20px 22px; }
.video-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 7px; display: block; }
.video-title { font-family: var(--font-head); font-weight: 700; font-size: 16.5px; line-height: 1.3; letter-spacing: -0.01em; color: var(--dark); margin: 0 0 8px; }
.video-desc { font-size: 13.5px; line-height: 1.6; color: var(--gray); margin: 0 0 14px; }
.video-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--orange); }

/* ── Video modal ── */
.video-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(8,12,24,.85); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 20px; }
.video-modal.open { display: flex; }
.video-modal-inner { width: 100%; max-width: 820px; background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: 0 50px 100px -40px rgba(0,0,0,.8); }
.video-modal-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--dark); }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.video-modal-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(19,25,38,.75); color: var(--white); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; }
.video-modal-body { padding: 22px 26px 26px; }
.video-modal-cat { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); }
.video-modal-title { font-family: var(--font-head); font-weight: 800; font-size: 21px; margin: 8px 0 8px; letter-spacing: -0.01em; }
.video-modal-desc { font-size: 14.5px; line-height: 1.7; color: var(--gray); margin: 0; }

/* ── POLICIES ── */
.policies-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.policy-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.policy-btn {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  background: none; border: none; cursor: pointer; padding: 20px 22px;
}
.policy-num {
  width: 36px; height: 36px; border-radius: 10px; background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.policy-title { flex: 1; font-family: var(--font-head); font-weight: 700; font-size: clamp(15px,2vw,17px); color: var(--dark); }
.policy-icon { font-size: 24px; font-weight: 400; color: var(--orange); transition: transform .3s; line-height: 1; flex-shrink: 0; }
.policy-icon.open { transform: rotate(45deg); }
.policy-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.7,.2,1); }
.policy-body.open { max-height: 280px; }
.policy-body p { margin: 0; padding: 0 22px 22px 74px; font-size: 15px; line-height: 1.75; color: var(--gray); }

/* ── SERVICE AREA pages ── */
.area-hero { background: linear-gradient(135deg,#0d1420 0%,#1a2540 100%); padding: clamp(80px,10vw,120px) 24px clamp(60px,8vw,90px); position: relative; overflow: hidden; }
.area-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at 80% 50%,rgba(244,101,22,0.13),transparent 65%); pointer-events: none; }
.area-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1100px; margin: 0 auto; position: relative; }
.area-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(32px,4.5vw,52px); line-height: 1.08; letter-spacing: -0.025em; color: var(--white); margin: 0 0 18px; }
.area-hero h1 span { color: var(--orange); }
.area-hero p { font-size: 16px; line-height: 1.75; color: var(--gray-2); margin: 0 0 28px; }
.area-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(244,101,22,0.15); color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; margin-bottom: 20px; }
.area-hero-img { border-radius: 20px; overflow: hidden; height: 360px; }
.area-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.area-hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.area-why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; }
.area-why-card { padding: 28px; border: 1.5px solid var(--border); border-radius: 16px; }
.area-why-icon { width: 48px; height: 48px; border-radius: 12px; background: #fff3ec; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.area-why-icon i { color: var(--orange); font-size: 20px; }
.area-why-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 0 0 8px; }
.area-why-card p { font-size: 14px; color: var(--gray); line-height: 1.65; margin: 0; }
.area-pkg-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.area-pkg { background: var(--white); border-radius: 16px; padding: 28px; border: 1.5px solid var(--border); }
.area-pkg.featured { border-color: var(--orange); position: relative; }
.area-pkg-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 50px; white-space: nowrap; }
.area-pkg h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 0 0 10px; }
.area-faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 14px; padding: 22px 24px; }
.faq-item h3 { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
.faq-item h3 i { color: var(--orange); }
.faq-item p { font-size: 14px; color: var(--gray); line-height: 1.65; margin: 0; }
.area-instructors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1100px; margin: 0 auto; }
.area-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; height: 420px; }
.area-photos > div { border-radius: 14px; overflow: hidden; }
.area-photos > div img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.area-photos .stack { display: flex; flex-direction: column; gap: 12px; }
.area-photos .stack > div { flex: 1; }

/* ── Section padding utility ── */
.section-pad { padding: clamp(60px,9vw,100px) 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 1160px; margin: 0 auto; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .uds-nav-links { display: none !important; }
  .uds-phone-link { display: none !important; }
  .uds-btn-book.desk { display: none !important; }
  .uds-burger { display: flex !important; }
}
@media (max-width: 900px) {
  .hero-grid, .sim-grid, .dark-split, .about-split, .contact-grid,
  .area-hero-grid, .area-instructors-grid { grid-template-columns: 1fr; gap: 32px; }
  .split-photos { grid-template-columns: 1fr 1fr; min-height: 300px; }
  .dark-split { grid-template-columns: 1fr; }
  .services-grid, .pkg-cards { grid-template-columns: 1fr 1fr; }
  .instructors-grid { grid-template-columns: 1fr 1fr; }
  .area-photos { height: 280px; }
}
@media (max-width: 640px) {
  .services-grid, .pkg-cards, .instructors-grid, .form-grid,
  .pkg-row-grid, .area-pkg-grid, .area-why-grid { grid-template-columns: 1fr; }
  .footer-cols-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; }
  .hero-actions, .cta-actions, .area-hero-stats { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .footer-cols-grid { grid-template-columns: 1fr; }
}

/* ── Hero Slider ── */
.hero-slide { animation: heroFadeIn .6s ease; }
@keyframes heroFadeIn { from { opacity:0; } to { opacity:1; } }
.hero-dot { width:10px; height:10px; border-radius:50%; border:2px solid #fff; background:transparent; cursor:pointer; padding:0; transition:background .2s; }
.hero-dot.active { background:#F46516; border-color:#F46516; }
