/* ==========================================================================
   Nova Drive Rijschool — stylesheet
   Built for a 1:1 rebuild in Elementor:
   - layout is flexbox only (no CSS grid), every block maps to a native widget
   - .flex-row + .col  ->  Elementor Container (row) + Container (column)
   - .icon-box .card .price-card .testimonial  ->  Icon Box / Testimonial widgets
   - <details>/<summary>  ->  Accordion widget
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --nova-primary: #0A2647;   /* Deep navy */
  --nova-deep:    #061A33;   /* Darker navy, for depth */
  --nova-accent:  #4ECDC4;   /* Bright sky blue */
  --nova-accent-dark: #3ABFB4;
  --nova-road:    #F5A623;   /* Road-marking orange, from the logo */
  --nova-light-bg:#F5F7FA;
  --nova-dark-text:#333333;
  --nova-muted:   #5B6B7F;
  --nova-white:   #FFFFFF;
  --nova-border:  #E3E8EF;

  --wrap: 1180px;
  --radius: 8px;
  --shadow-sm: 0 2px 10px rgba(10, 38, 71, .07);
  --shadow-md: 0 12px 34px rgba(10, 38, 71, .11);
  --shadow-lg: 0 26px 60px rgba(10, 38, 71, .18);
  --section-y: clamp(60px, 8vw, 108px);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--nova-dark-text);
  background: var(--nova-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  color: var(--nova-primary);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--nova-primary); text-decoration: none; }
a:hover { color: var(--nova-accent-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }

:focus-visible {
  outline: 3px solid var(--nova-accent);
  outline-offset: 3px;
}

/* Visually hidden, still read by screen readers and by search engines.
   Used for section headings that the design does not show. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--nova-primary); color: #fff;
  padding: 12px 20px; z-index: 200; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout primitives  (Elementor: Container)
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}
.container--narrow { max-width: 820px; }

.section { padding: var(--section-y) 0; }
.section--tight { padding: clamp(44px, 5vw, 68px) 0; }
.section--gray  { background: var(--nova-light-bg); }
.section--navy  { background: var(--nova-primary); color: rgba(255,255,255,.86); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--deep  { background: var(--nova-deep); color: rgba(255,255,255,.84); }
.section--deep h2, .section--deep h3 { color: #fff; }

/* flex row + columns — the only layout mechanism used on this site */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}
.flex-row--center  { align-items: center; }
.flex-row--tight   { gap: 16px; }
.flex-row--wide    { gap: 40px; }
.col     { flex: 1 1 260px; min-width: 0; }
.col-2   { flex: 1 1 420px; min-width: 0; }
.col-3   { flex: 1 1 280px; min-width: 0; }
.col-4   { flex: 1 1 210px; min-width: 0; }

.text-center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto clamp(34px, 4vw, 54px); text-align: center; }
.section-head p { color: var(--nova-muted); font-size: 1.06rem; }
.section--navy .section-head p, .section--deep .section-head p { color: rgba(255,255,255,.78); }

.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--nova-accent-dark);
  margin-bottom: 14px;
}
.section--navy .eyebrow, .section--deep .eyebrow, .hero .eyebrow { color: var(--nova-accent); }

.lead { font-size: 1.14rem; color: var(--nova-muted); }
.section--navy .lead, .section--deep .lead { color: rgba(255,255,255,.82); }

/* Road-marking divider — the dashed centre line from the logo */
.roadline {
  height: 6px;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    var(--nova-road) 0, var(--nova-road) 46px,
    transparent 46px, transparent 88px
  );
  opacity: .9;
}
.rule {
  width: 62px; height: 4px; border-radius: 3px;
  background: var(--nova-accent);
  margin: 0 0 22px;
}
.section-head .rule { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   4. Buttons  (Elementor: Button)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 17px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary {
  background: var(--nova-accent);
  color: var(--nova-primary);
  box-shadow: 0 10px 26px rgba(78, 205, 196, .34);
}
.btn--primary:hover {
  background: var(--nova-accent-dark);
  color: var(--nova-primary);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(78, 205, 196, .42);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  border-color: var(--nova-primary);
  color: var(--nova-primary);
}
.btn--outline:hover { background: var(--nova-primary); color: #fff; transform: translateY(-2px); }

.btn--sm { padding: 12px 20px; font-size: .93rem; }
.btn--block { display: flex; width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-group--center { justify-content: center; }

/* --------------------------------------------------------------------------
   5. Header + navigation  (Elementor: Header template / Nav Menu)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 14px rgba(10, 38, 71, .09);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 22px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: 50px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 1.14rem; color: var(--nova-primary); letter-spacing: -.02em;
}
.brand__tag { font-size: .72rem; color: var(--nova-muted); letter-spacing: .05em; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 42px;
  padding: 0 10px;
  background: var(--nova-light-bg);
  border: 1px solid var(--nova-border);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--nova-primary); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-menu {
  display: flex; align-items: center; gap: 24px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu li { margin: 0; }
.nav-menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: .95rem;
  color: var(--nova-primary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  display: block;
}
.nav-menu a:hover { color: var(--nova-accent-dark); border-bottom-color: var(--nova-accent); }
.nav-menu a[aria-current="page"] { color: var(--nova-accent-dark); border-bottom-color: var(--nova-accent); }

.lang-switch { display: flex; align-items: center; gap: 4px; }
.lang-switch a {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .04em;
  padding: 6px 10px; border-radius: 6px; color: var(--nova-muted);
}
.lang-switch a:hover { background: var(--nova-light-bg); color: var(--nova-primary); }
.lang-switch a.is-active { background: var(--nova-primary); color: #fff; }

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--nova-border);
    box-shadow: 0 18px 34px rgba(10, 38, 71, .14);
    padding: 10px 22px 24px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-menu a {
    padding: 15px 0; font-size: 1.05rem;
    border-bottom: 1px solid var(--nova-border);
  }
  .nav-menu a:hover, .nav-menu a[aria-current="page"] { border-bottom-color: var(--nova-border); }
  .site-nav .btn { margin-top: 18px; }
  .lang-switch { margin-top: 16px; }
}

/* --------------------------------------------------------------------------
   6. Hero  (Elementor: Container with background image + overlay)
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--nova-primary); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 42%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,26,51,.94) 0%, rgba(10,38,71,.86) 46%, rgba(10,38,71,.55) 100%);
}
.hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(72px, 11vw, 138px) 22px clamp(66px, 9vw, 116px);
}
.hero__content { max-width: 660px; }
.hero h1 { color: #fff; margin-bottom: .38em; }
.hero h1 em { font-style: normal; color: var(--nova-accent); }
.hero__sub {
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero .btn-group { margin-bottom: 30px; }
.hero__points {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  list-style: none; margin: 0; padding: 0;
}
.hero__points li {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.9); font-size: .93rem; margin: 0;
}
.hero__points svg { width: 18px; height: 18px; color: var(--nova-accent); flex: none; }

.page-hero { background: var(--nova-primary); position: relative; }
.page-hero__inner {
  position: relative;
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(52px, 7vw, 88px) 22px clamp(52px, 7vw, 84px);
  max-width: min(var(--wrap), 100%);
}
.page-hero h1 { color: #fff; max-width: 800px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 640px; font-size: 1.1rem; }

/* --------------------------------------------------------------------------
   7. Cards, icon boxes  (Elementor: Icon Box / Image Box)
   -------------------------------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--nova-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe9e6; }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--nova-muted); font-size: .98rem; }
.card__link {
  margin-top: auto; padding-top: 18px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .93rem;
  color: var(--nova-accent-dark);
  display: inline-flex; align-items: center; gap: 7px;
}
.card__link:hover { gap: 12px; color: var(--nova-primary); }

.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; flex: none;
  border-radius: 14px;
  background: rgba(78, 205, 196, .15);
  color: var(--nova-primary);
  margin-bottom: 20px;
}
.icon-badge svg { width: 27px; height: 27px; }
.icon-badge--solid { background: var(--nova-accent); color: var(--nova-primary); }

.usp-bar { padding: clamp(40px, 5vw, 62px) 0; }
.usp {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 4px 0;
}
.usp .icon-badge { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 14px; }
.usp .icon-badge svg { width: 23px; height: 23px; }
.usp h3 { font-size: 1.05rem; margin-bottom: .3em; }
.usp p { font-size: .92rem; color: var(--nova-muted); line-height: 1.6; }
.section--navy .usp p { color: rgba(255,255,255,.72); }
.section--navy .icon-badge { background: rgba(78,205,196,.2); color: var(--nova-accent); }

/* Language cards */
.lang-card { text-align: left; }
.lang-card .flag {
  font-size: 1.9rem; line-height: 1; margin-bottom: 14px; display: block;
}
.lang-card h3 { margin-bottom: .3em; }

/* --------------------------------------------------------------------------
   8. Media split  (Elementor: Container with Image + Text columns)
   -------------------------------------------------------------------------- */
.media-split { display: flex; flex-wrap: wrap; gap: clamp(30px, 5vw, 64px); align-items: center; }
.media-split__media { flex: 1 1 380px; min-width: 0; }
.media-split__body  { flex: 1 1 380px; min-width: 0; }
.media-split--flip .media-split__media { order: 2; }

.framed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.framed img { width: 100%; }

/* Portrait source, shown as a 4:5 crop so it doesn't tower over the text
   beside it. In Elementor: Image widget -> aspect ratio 4:5, position centre. */
.framed--portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 62%;
}

.figure-note {
  font-size: .86rem; color: var(--nova-muted);
  margin-top: 12px; text-align: center;
}
.section--navy .figure-note, .section--deep .figure-note { color: rgba(255,255,255,.6); }

.check-list { list-style: none; padding: 0; margin: 0 0 1.4em; }
.check-list li {
  position: relative; padding-left: 32px; margin-bottom: .7em;
  color: var(--nova-dark-text);
}
.section--navy .check-list li, .section--deep .check-list li { color: rgba(255,255,255,.86); }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: .45em;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--nova-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A2647' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px 13px; background-repeat: no-repeat; background-position: center;
}

/* --------------------------------------------------------------------------
   9. Pricing  (Elementor: Price Table / Icon List)
   -------------------------------------------------------------------------- */
/* Five packages: 3 + 2 on desktop, 2 + 2 + 1 on tablet, stacked on mobile.
   Five is prime, so some width will always leave one card on the last row.
   max-width stops that card stretching the full width, and centring the row
   makes the short last line read as deliberate rather than broken. */
.price-row { justify-content: center; }
.price-row .col-3 { flex: 1 1 340px; max-width: 520px; }

.price-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--nova-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured {
  border: 2px solid var(--nova-accent);
  box-shadow: var(--shadow-md);
}
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--nova-accent); color: var(--nova-primary);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .76rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card__name { font-size: 1.2rem; margin-bottom: .15em; }
.price-card__meta { font-size: .88rem; color: var(--nova-muted); margin-bottom: 18px; }
.price-card__amount {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 2.6rem; color: var(--nova-primary);
  line-height: 1; margin-bottom: 6px; letter-spacing: -.03em;
}
.price-card__per { font-size: .87rem; color: var(--nova-muted); margin-bottom: 18px; }

/* Losse-prijs vergelijking: what the same lessons cost without a package. */
.price-card__compare {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px;
  margin-bottom: 22px;
}
.price-card__was {
  font-size: .92rem; color: var(--nova-muted); text-decoration: line-through;
}
.price-card__save {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .8rem;
  color: #1d7d74; background: rgba(78, 205, 196, .18);
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; }
.price-card ul li {
  font-size: .95rem; padding: 9px 0 9px 28px; position: relative;
  border-top: 1px solid var(--nova-border); margin: 0;
}
.price-card ul li:first-child { border-top: 0; }
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: 1.05em;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(78,205,196,.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A2647' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px 11px; background-repeat: no-repeat; background-position: center;
}
.price-card .btn { margin-top: auto; }

.rate-list {
  list-style: none; padding: 0; margin: 0;
  background: #fff; border: 1px solid var(--nova-border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.rate-list li {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 8px 18px;
  padding: 18px 24px; margin: 0;
  border-bottom: 1px solid var(--nova-border);
}
.rate-list li:last-child { border-bottom: 0; }
.rate-list__name { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--nova-primary); }
.rate-list__note { display: block; font-family: 'Open Sans', sans-serif; font-weight: 400; font-size: .87rem; color: var(--nova-muted); }
.rate-list__price {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.22rem;
  color: var(--nova-primary); white-space: nowrap;
}

.callout {
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  background: rgba(78,205,196,.1);
  border: 1px solid rgba(78,205,196,.4);
  border-left: 5px solid var(--nova-accent);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.callout .icon-badge { margin-bottom: 0; }
.callout__body { flex: 1 1 300px; }
.callout h3 { margin-bottom: .25em; }
.callout p { color: var(--nova-muted); margin: 0; font-size: .97rem; }
.section--navy .callout {
  background: rgba(78,205,196,.12);
  border-color: rgba(78,205,196,.35);
}
.section--navy .callout p { color: rgba(255,255,255,.8); }

/* --------------------------------------------------------------------------
   10. Testimonials  (Elementor: Testimonial + Star Rating)
   -------------------------------------------------------------------------- */
/* Four reviews read better as a balanced 2 x 2 than as 3 + 1 orphan. */
.review-row .col-3 { flex: 1 1 400px; }

.testimonial {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--nova-border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--nova-road); font-size: 1.05rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial blockquote {
  margin: 0 0 20px; padding: 0; border: 0;
  font-size: 1rem; color: var(--nova-dark-text); line-height: 1.72;
}
.testimonial__who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: var(--nova-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .95rem;
}
.testimonial__name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem; color: var(--nova-primary); line-height: 1.3; }
.testimonial__meta { font-size: .84rem; color: var(--nova-muted); }

/* --------------------------------------------------------------------------
   11. Accordion  (Elementor: Accordion)
   -------------------------------------------------------------------------- */
.accordion { border: 1px solid var(--nova-border); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.accordion details { border-bottom: 1px solid var(--nova-border); }
.accordion details:last-child { border-bottom: 0; }
.accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.03rem;
  color: var(--nova-primary);
  cursor: pointer;
  list-style: none;
  transition: background-color .2s ease;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { background: var(--nova-light-bg); }
.accordion summary::after {
  content: ""; flex: none;
  width: 22px; height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ECDC4' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; background-position: center;
  transition: transform .25s ease;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion__body { padding: 0 26px 24px; color: var(--nova-muted); }
.accordion__body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   12. Gallery  (Elementor: Image Gallery)
   -------------------------------------------------------------------------- */
.gallery { display: flex; flex-wrap: wrap; gap: 18px; }
.gallery figure { flex: 1 1 300px; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.gallery img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */
.contact-tile {
  display: flex; align-items: flex-start; gap: 18px;
  background: #fff; border: 1px solid var(--nova-border);
  border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.contact-tile .icon-badge { margin-bottom: 0; width: 48px; height: 48px; border-radius: 12px; }
.contact-tile h3 { font-size: 1.02rem; margin-bottom: .25em; }
.contact-tile p, .contact-tile a { font-size: .97rem; color: var(--nova-muted); margin: 0; }
.contact-tile a { color: var(--nova-primary); font-weight: 600; }
.contact-tile a:hover { color: var(--nova-accent-dark); }

.form-card {
  background: #fff; border: 1px solid var(--nova-border);
  border-radius: var(--radius); padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 20px; }
.field label {
  display: block; margin-bottom: 7px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem;
  color: var(--nova-primary);
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: 'Open Sans', sans-serif; font-size: 1rem;
  color: var(--nova-dark-text);
  padding: 13px 15px;
  border: 1px solid #d8dfe8; border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--nova-accent);
  box-shadow: 0 0 0 3px rgba(78,205,196,.22);
}
.form-note { font-size: .86rem; color: var(--nova-muted); margin-top: 16px; }

/* --------------------------------------------------------------------------
   14. CTA band + footer
   -------------------------------------------------------------------------- */
.cta-band { background: var(--nova-deep); position: relative; overflow: hidden; }
.cta-band__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
}
.cta-band__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,26,51,.90) 0%, rgba(6,26,51,.84) 100%);
}
.cta-band__inner {
  position: relative;
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(56px, 7vw, 92px) 22px;
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 760px; margin-left: auto; margin-right: auto; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 30px; font-size: 1.08rem; }

.site-footer { background: var(--nova-primary); color: rgba(255,255,255,.72); padding: clamp(52px, 6vw, 76px) 0 0; }
.site-footer .footer-heading {
  color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: .84rem; letter-spacing: .14em; text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 18px;
}
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--nova-accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6em; font-size: .95rem; }
.footer-brand img { width: 62px; margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; max-width: 300px; }
.footer-bottom {
  margin-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 22px 0 26px;
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  justify-content: space-between; align-items: center;
  font-size: .87rem;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem;
  padding: 14px 20px; border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0,0,0,.26);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 18px 38px rgba(0,0,0,.32); }
.wa-float svg { width: 22px; height: 22px; flex: none; }
@media (max-width: 600px) {
  .wa-float { right: 14px; bottom: 14px; padding: 14px; }
  .wa-float span { display: none; }
}

/* --------------------------------------------------------------------------
   15. Small screens
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .btn { width: 100%; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .hero__inner { padding-top: 62px; }
  .media-split--flip .media-split__media { order: 0; }
  .rate-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
  .brand__tag { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
