/* ============================================================
   VAPE BOT — Global Stylesheet
   vapebot.co.uk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto+Condensed:wght@300;400;500&family=Roboto:wght@300;400;500&display=swap');

/* ── Design Tokens ── */
:root {
  --primary:     #00AEEF;   /* cyan */
  --secondary:   #FFC857;   /* gold */
  --dark:        #50514F;   /* dark grey — nav, footer, body text */
  --coral:       #E5625E;   /* coral/red — stats bar */
  --white:       #FFFFFF;
  --off-white:   #FAFAFA;
  --header-height: 80px;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Container ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography ── */
h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 1.2;
  margin: 0;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 65px;
  line-height: 1.2;
  margin: 0;
}

h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

.lead {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.4;
  color: var(--dark);
}

/* ── Page Hero Heading (shared: dealers, host-partners) ── */
.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 28px;
}

.hero-heading-accent {
  display: block;
  color: var(--secondary);
}

.counter-number {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 45px;
  line-height: 1;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.2;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #0099d4;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-secondary:hover {
  background: #e6b34d;
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
}

.btn-coral:hover {
  background: #d14f4b;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--off-white);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--primary {
  background: var(--primary);
  color: var(--white);
}

.section--coral {
  background: var(--coral);
  color: var(--white);
}

.section-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Logo ── */
.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--primary);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-sub {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1;
}

/* ── Nav ── */
.site-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  padding: 10px 15px;
  display: block;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s 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);
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-name {
  font-size: 22px;
}

.footer-col-body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.btn-footer {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 8px 20px;
  transition: all 0.2s ease;
}

.btn-footer:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.footer-col-heading {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
}

.footer-contact p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Forms ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success,
.form-error {
  display: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 16px;
}

.form-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ── Utilities ── */
.text-primary   { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-coral     { color: var(--coral); }
.text-white     { color: var(--white); }
.text-dark      { color: var(--dark); }
.text-center    { text-align: center; }

/* ── Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
  h2 { font-size: 45px; }
}

/* Mobile nav breakpoint */
@media (max-width: 800px) {
  .nav-toggle {
    display: flex;
  }

  .site-header {
    position: sticky;
    overflow: visible;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    padding: 14px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .header-inner {
    padding: 0 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 40px; }
  h2 { font-size: 40px; }
  h3 { font-size: 30px; }

  .section { padding: 60px 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lead { font-size: 20px; }
}


/* ============================================================
   HOMEPAGE — Section-specific styles
   ============================================================ */

/* ── Section 1: Hero ── */

.hero-section {
  background: var(--primary);
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-content {
  flex: 0 0 60%;
  max-width: 60%;
}

.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 24px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-machine-img {
  max-height: 600px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.22));
}

/* ── Section 2: Stats Bar ── */

.stats-section {
  background: var(--coral);
  padding: 40px 30px;
}

.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.stat-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 80px;
  height: 80px;
}

.stat-number {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 45px;
  line-height: 1;
  color: var(--white);
}

.stat-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
  max-width: 200px;
  opacity: 0.9;
}

/* ── Section 2b: Machine Showcase ── */

.machine-showcase {
  background: var(--white);
  padding: 60px 0;
  text-align: center;
}

.machine-showcase-inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 24px;
}

.machine-showcase-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Section 3: Features Grid ── */

.features-section {
  background: var(--white);
  padding: 100px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header h2 {
  color: var(--dark);
  margin-bottom: 20px;
}

.features-header .lead {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--primary);
}

.feature-card {
  background: var(--off-white);
  border: 3px solid var(--primary);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: var(--dark);
  line-height: 1.2;
}

.feature-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
}

/* ── Section 5: Contact Form ── */

.contact-section {
  background: var(--dark);
  padding: 100px 0;
}

.contact-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.contact-left {
  flex: 0 0 38%;
  max-width: 38%;
}

.contact-left h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-left p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.contact-right {
  flex: 1;
  min-width: 0;
}

/* Form overrides for dark background */
.contact-form .form-group label {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
}

.contact-form .form-group input,
.contact-form .form-group select {
  border-radius: 25px;
  border: none;
  padding: 12px 20px;
  background: var(--white);
  box-shadow: none;
}

.contact-form .form-group textarea {
  border-radius: 16px;
  border: none;
  padding: 14px 20px;
  background: var(--white);
  box-shadow: none;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
}

/* Side-by-side row for phone + company */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Dark submit button (used in other contexts) */
.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #3a3b39;
}

/* Inside the dark contact section, override btn-dark to cyan so it reads */
.contact-section .btn-dark {
  background: var(--primary);
}

.contact-section .btn-dark:hover {
  background: #0099d4;
}

/* Feedback messages on dark background */
.contact-section .form-success {
  background: rgba(0, 100, 50, 0.35);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.contact-section .form-error {
  background: rgba(100, 0, 0, 0.35);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.contact-section .form-error a {
  color: var(--white);
  text-decoration: underline;
}

/* ── Homepage Responsive ── */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  /* Hero stacks: text first, image below */
  .hero-inner {
    flex-direction: column;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-content,
  .hero-image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .hero-image {
    order: 2;
    max-height: 360px;
    overflow: hidden;
  }

  .hero-machine-img {
    max-height: 340px;
    margin: 0 auto;
  }

  /* Contact stacks */
  .contact-inner {
    flex-direction: column;
    gap: 48px;
  }

  .contact-left,
  .contact-right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-headline { font-size: 40px; }

  /* Features */
  .features-section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-section { padding: 40px 20px; }
  .stats-inner {
    flex-direction: column;
    gap: 36px;
  }

  /* Contact */
  .contact-section { padding: 60px 0; }
  .contact-left h2 { font-size: 40px; }
  .form-row { grid-template-columns: 1fr; }
}


/* ============================================================
   SHARED — Compact page hero (dealers, about, blog)
   ============================================================ */

.page-hero {
  background: var(--primary);
  padding: 80px 20px;
}

.page-hero--slim {
  padding: 60px 20px;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-inner h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero-inner .lead {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}

/* White-on-primary button (about hero) */
.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Shared centred section header used on multiple pages */
.section-header-centered {
  text-align: center;
  margin-bottom: 64px;
}

.section-header-centered h2 {
  color: var(--dark);
  margin-bottom: 20px;
}

.section-header-centered .lead {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Screen-reader only utility */
.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;
}


/* ============================================================
   DEALERS PAGE — Section-specific styles
   ============================================================ */

/* ── FAQ Accordion ── */

.faq-section {
  background: var(--off-white);
  padding: 100px 0;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

details.faq-item {
  background: var(--white);
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

details.faq-item[open] {
  border-color: var(--primary);
}

summary.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 25px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--dark);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

summary.faq-question::-webkit-details-marker {
  display: none;
}

summary.faq-question::marker {
  display: none;
}

details.faq-item[open] summary.faq-question {
  color: var(--primary);
  border-bottom: 1px solid #E5E5E5;
}

.faq-indicator {
  flex-shrink: 0;
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: relative;
  transition: background 0.2s ease;
}

.faq-indicator::before,
.faq-indicator::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Horizontal bar (always visible) */
.faq-indicator::before {
  width: 10px;
  height: 2px;
}

/* Vertical bar (hidden when open) */
.faq-indicator::after {
  width: 2px;
  height: 10px;
}

details.faq-item[open] .faq-indicator::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 18px 25px 22px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
}

.faq-answer p {
  margin: 0;
}

/* ============================================================
   ABOUT PAGE — Section-specific styles
   ============================================================ */

/* ── Section A: About Hero ── */

.ab-hero {
  background: var(--primary);
  padding: 80px 0 60px;
}

.ab-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.ab-hero-inner h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 50px;
  color: var(--white);
  margin: 0 0 32px;
  line-height: 1.2;
}

.ab-hero-banner {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin: 0 0 32px;
}

.ab-hero-inner .lead {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}

/* ── Section B: Story ── */

.ab-story {
  background: var(--white);
  padding: 80px 0;
}

.ab-story-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.ab-story-inner p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark);
  margin: 0 0 20px;
}

.ab-story-inner p:last-child {
  margin-bottom: 0;
}

/* ── Section C: Timeline ── */

.timeline-section {
  background: var(--off-white);
  padding: 100px 0;
}

.timeline {
  list-style: none;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 50px;
}

/* Vertical connector line */
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(0, 174, 239, 0.15));
}

.timeline-entry {
  position: relative;
  padding-bottom: 36px;
}

.timeline-entry--last {
  padding-bottom: 0;
}

/* Calendar icon marker */
.timeline-marker {
  position: absolute;
  left: -46px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-marker svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.timeline-date {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1;
}

.timeline-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  margin: 0;
}

/* ── Section D: Certifications ── */

.cert-section {
  background: var(--white);
  padding: 100px 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cert-card {
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 10px;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.cert-icon {
  flex-shrink: 0;
  width: 110px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cert-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--dark);
  line-height: 1.2;
}

.cert-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
}

/* ============================================================
   BLOG PAGE — Section-specific styles
   ============================================================ */

/* ── Section B: Blog Grid ── */

.blog-grid-section {
  background: var(--white);
  padding: 100px 0;
}

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

.blog-card {
  background: var(--off-white);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Placeholder colour variants */
.blog-card-thumb--primary  { background: var(--primary); }
.blog-card-thumb--coral    { background: var(--coral); }
.blog-card-thumb--secondary { background: var(--secondary); }
.blog-card-thumb--dark     { background: var(--dark); }

.blog-thumb-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  user-select: none;
  pointer-events: none;
}

.blog-card-body {
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.blog-card-date {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  line-height: 1;
}

.blog-card-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--dark);
  margin: 0;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  flex: 1;
}

.blog-read-link {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
  align-self: flex-start;
}

.blog-read-link:hover {
  opacity: 0.75;
}

/* ── Section C: Newsletter ── */

.newsletter-section {
  background: var(--dark);
  padding: 80px 20px;
}

.newsletter-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-sub {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
}

.newsletter-form-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.newsletter-form-row input[type="email"] {
  flex: 1;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  border: none;
  border-radius: 25px;
  padding: 13px 22px;
  min-width: 0;
  transition: box-shadow 0.2s ease;
}

.newsletter-form-row input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.45);
}

.newsletter-feedback {
  margin-top: 20px;
}

/* Newsletter feedback on dark background */
.newsletter-section .form-success {
  background: rgba(0, 100, 50, 0.4);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-section .form-error {
  background: rgba(100, 0, 0, 0.4);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}


/* ============================================================
   INNER PAGES — Responsive
   ============================================================ */

@media (max-width: 1024px) {
  /* Shared hero heading */
  .hero-heading { font-size: 45px; }

  /* About */
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Shared page hero */
  .page-hero        { padding: 60px 20px; }
  .page-hero--slim  { padding: 48px 20px; }
  .page-hero-inner h1 { font-size: 40px; }

  /* Shared */
  .hero-heading { font-size: 40px; }
  .faq-section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }

  /* About */
  .ab-hero-inner h1 { font-size: 36px; }
  .ab-story         { padding: 60px 0; }
  .timeline-section { padding: 60px 0; }
  .cert-section     { padding: 60px 0; }
  .cert-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid-section { padding: 60px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-section { padding: 60px 20px; }
  .newsletter-inner h2 { font-size: 32px; }
  .newsletter-form-row {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form-row .btn {
    width: 100%;
  }
}


/* ============================================================
   HOMEPAGE v2 — New section styles
   ============================================================ */

/* ── Section intro paragraph (Roboto 400, 18px, centred) ── */

.section-intro {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ── Shared Carousel ── */

.carousel-outer {
  position: relative;
  margin-top: 48px;
  padding: 0 52px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* 3 items visible on desktop */
.carousel-item {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.carousel-btn--prev { left: 3px; }
.carousel-btn--next { right: 3px; }

.carousel-btn:hover:not(:disabled) {
  background: var(--dark);
}

.carousel-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

/* ── Section 4: Testimonials ── */

.testimonials-section {
  background: var(--off-white);
  padding: 100px 0;
}

.testimonials-section .section-header-centered {
  margin-bottom: 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.testimonial-quote {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.55;
  color: var(--dark);
  flex: 1;
  position: relative;
  padding-top: 28px;
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -4px;
  left: 0;
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.35;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--off-white);
}

.testimonial-name {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.2;
}

.testimonial-role {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--primary);
  margin-top: 3px;
}

/* ── Section 5: Blog Teaser ── */

.blog-teaser-section {
  background: var(--white);
  padding: 80px 0;
}

.blog-teaser-inner {
  text-align: center;
}

.blog-teaser-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 1.2;
  color: var(--dark);
  max-width: 800px;
  margin: 0 auto 40px;
}

/* ── Section 6: Venue Videos ── */

.venue-videos-section {
  background: var(--off-white);
  padding: 100px 0;
}

.venue-videos-section .section-header-centered {
  margin-bottom: 0;
}

.video-card {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--dark);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Carousel Responsive ── */

@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 100%;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  .carousel-outer {
    padding: 0 44px;
  }

  .blog-teaser-section { padding: 60px 0; }
  .blog-teaser-inner h2 { font-size: 36px; }
  .testimonials-section { padding: 60px 0; }
  .venue-videos-section { padding: 60px 0; }
  .section-intro { font-size: 16px; }
}

/* ══════════════════════════════════════
   DROPDOWN NAVIGATION
══════════════════════════════════════ */

.has-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
  line-height: inherit;
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.has-dropdown.open .nav-dropdown-toggle svg,
.nav-dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.has-dropdown:hover .nav-dropdown-menu,
.has-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  text-decoration: none;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  background: var(--off-white);
  color: var(--primary);
}

.nav-cta { margin-left: 20px; }

.parent-active,
.parent-active .nav-dropdown-toggle { color: var(--primary) !important; }

@media (max-width: 800px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 20px;
    display: none;
    border-radius: 0;
    min-width: 0;
    background: transparent;
  }

  .has-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 12px;
    display: block;
  }
}

/* ══════════════════════════════════════
   HARDWARE PAGE
══════════════════════════════════════ */

/* ── Cyan intro band (hero + video + Key Features heading) ── */

.hw-intro-band {
  background: var(--primary);
}

.hw-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1140px;
  margin: 0 auto;
  min-height: 85vh;
  padding: 100px 20px 60px;
}

.hw-hero-content {
  flex: 1;
  min-width: 0;
}

.hw-hero-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
}

.hw-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hw-hero-image img {
  max-height: 600px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.22));
}

.hw-video-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 100px 60px;
}

.hw-video-inner video {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.hw-key-features-heading {
  text-align: center;
  padding: 50px 20px 40px;
}

.hw-key-features-heading h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 55px;
  line-height: 1.2;
  color: var(--white);
}

/* ── Alternating feature sections ── */

.feature-section--white    { background: var(--white);     padding: 60px 20px; }
.feature-section--offwhite { background: var(--off-white); padding: 60px 20px; }

.feature-row {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.feature-row > .feature-image,
.feature-row > .feature-text {
  flex: 1;
  min-width: 0;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-image img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.feature-text h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  color: var(--primary);
  margin: 0 0 24px;
}

.feature-text p {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.55;
  color: var(--dark);
  margin: 0 0 18px;
}

.feature-text p:last-child {
  margin-bottom: 0;
}

/* ── Hardware Responsive ── */

@media (max-width: 800px) {
  .hw-hero-inner {
    flex-direction: column;
    min-height: 0;
    gap: 40px;
    padding: 60px 20px 40px;
  }

  .hw-hero-headline { font-size: 40px; }

  .hw-video-inner { padding: 0 20px 40px; }

  .hw-key-features-heading { padding: 30px 20px; }

  .hw-key-features-heading h2 { font-size: 40px; }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .feature-text h2 { font-size: 30px; line-height: 1.2; }
}



/* ══════════════════════════════════════
   SOFTWARE PAGE
══════════════════════════════════════ */

/* ── Cyan intro band (hero + platform + Key Features) ── */

.sw-intro-band {
  background: var(--primary);
}

/* Panel 1: 3-column hero layout */

.sw-hero-inner {
  display: flex;
  align-items: center;
  min-height: 90vh;
  padding: 60px 100px;
}

.sw-hero-col--side {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.sw-hero-col--center {
  flex: 0 0 50%;
  padding: 0 40px;
}

.sw-hero-col--center img {
  width: 100%;
  display: block;
}

/* Small white headings flanking the laptop */
.sw-panel-heading {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 35px;
  color: var(--white);
  margin: 0;
}

/* Arrow images: 20% of their column width */
.sw-arrow {
  width: 20%;
  display: block;
}

/* Left column arrows align to the right edge (pointing toward center laptop) */
.sw-arrow--end {
  align-self: flex-end;
}

/* Right column arrows align to the left edge (pointing toward center laptop) */
.sw-arrow--start {
  align-self: flex-start;
}

/* Panel 2: "One platform" — centred, tall */

.sw-platform-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding: 60px 100px;
  text-align: center;
}

.sw-platform-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 65px;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 50px;
}

.sw-platform-laptop {
  max-width: 800px;
  width: 100%;
  display: block;
}

/* ── Software Responsive ── */

@media (max-width: 1024px) {
  .sw-hero-inner {
    flex-direction: column;
    min-height: 0;
    padding: 60px 40px;
    gap: 40px;
    align-items: stretch;
  }

  .sw-hero-col--side {
    flex: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .sw-hero-col--center {
    flex: none;
    width: 100%;
    padding: 0;
    order: -1;
  }

  .sw-arrow { display: none; }

  .sw-platform-inner {
    min-height: 0;
    padding: 60px 40px;
  }

  .sw-platform-heading { font-size: 45px; }
}

@media (max-width: 800px) {
  .sw-hero-inner { padding: 40px 20px; }

  .sw-panel-heading { font-size: 20px; line-height: 1.4; }

  .sw-platform-inner { padding: 40px 20px; }

  .sw-platform-heading { font-size: 36px; }
}


/* ============================================================
   HOST PARTNERS PAGE
   ============================================================ */

/* ── Hero ── */

.hp-hero {
  background: var(--primary);
  min-height: 92vh;
  display: flex;
  align-items: stretch;
}

.hp-hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 20px;
}

.hp-hero-image {
  flex: 0 0 40%;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 75vh;
  object-fit: contain;
}

.hp-hero-text {
  flex: 0 0 60%;
  width: 60%;
  padding-left: 100px;
}

.hp-hero-text p {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 18px;
}

.hp-hero-text p:last-child {
  margin-bottom: 0;
}

/* ── Getting Started (intro + CTA) ── */

.hp-intro {
  background: var(--white);
  padding: 100px 0;
}

.hp-intro-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.hp-intro-heading {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  color: var(--primary);
  margin: 0 0 32px;
}

.hp-intro-text {
  columns: 2;
  column-gap: 50px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--dark);
}

.hp-intro-text p {
  margin: 0 0 18px;
  break-inside: avoid;
}

.hp-intro-cta {
  display: inline-block;
  margin-top: 40px;
}

/* ── Steps card (cyan bg, centred white card) ── */

.hp-steps {
  background: var(--primary);
  padding: 100px 0;
}

.hp-steps-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.hp-steps-card {
  background: var(--white);
  border-radius: 50px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hp-step-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.2;
  color: var(--primary);
  margin: 0 0 8px;
}

.hp-step-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
}

/* ── FAQ ── */

.hp-faq-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 65px;
  line-height: 1.2;
  color: var(--dark);
  text-align: center;
  margin: 0 0 60px;
}

.hp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  align-items: start;
}

/* ── Host Partners Responsive ── */

@media (max-width: 1024px) {
  .hp-hero-inner {
    flex-direction: column-reverse;
    padding: 50px 30px;
    min-height: unset;
  }
  .hp-hero-image,
  .hp-hero-text {
    flex: none;
    width: 100%;
  }
  .hp-hero-text {
    padding-left: 0;
    text-align: center;
  }

  .hp-intro { padding: 60px 0; }
  .hp-intro-text { columns: 1; }

  .hp-steps { padding: 60px 0; }

  .hp-faq-heading { font-size: 45px; }
  .hp-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hp-hero-text p { font-size: 20px; }
  .hp-intro { padding: 50px 0; }
  .hp-steps-card { padding: 30px; border-radius: 30px; }
  .hp-faq-heading { font-size: 40px; margin-bottom: 40px; }
}


/* ============================================================
   DEALERS PAGE
   ============================================================ */

/* ── Hero (text left 60% / image right 40%) ── */

.dl-hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 20px;
}

.dl-hero-text {
  flex: 0 0 60%;
  width: 60%;
  padding-right: 100px;
}

.dl-hero-image {
  flex: 0 0 40%;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 75vh;
  object-fit: contain;
}

.dl-hero-text p {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
}

/* ── Body Intro ── */

.dl-intro {
  background: var(--white);
  padding: 100px 0;
}

.dl-intro-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── How It Works ── */

.dl-how {
  background: var(--primary);
  padding: 100px 0;
}

.dl-how-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.dl-how-heading {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  margin: 0 0 60px;
}

.dl-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.dl-how-step-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 16px;
}

.dl-how-step-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin: 0;
}

.dl-how-cta {
  text-align: center;
  margin-top: 60px;
}

/* ── Dealers Responsive ── */

@media (max-width: 1024px) {
  .dl-hero-inner {
    flex-direction: column;
    padding: 50px 30px;
    min-height: unset;
  }
  .dl-hero-image,
  .dl-hero-text {
    flex: none;
    width: 100%;
  }
  .dl-hero-text {
    padding-right: 0;
    text-align: center;
  }

  .dl-intro { padding: 60px 0; }
  .dl-intro-inner .hp-intro-text { columns: 1; }

  .dl-how { padding: 60px 0; }
  .dl-how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .dl-hero-text p { font-size: 20px; }

  .dl-intro { padding: 50px 0; }
  .dl-how { padding: 50px 0; }
  .dl-how-heading { font-size: 32px; margin-bottom: 40px; }
  .dl-how-grid { grid-template-columns: 1fr; }
  .dl-how-cta { margin-top: 40px; }
}


/* ============================================================
   AFFILIATES PAGE
   ============================================================ */

/* ── Hero (text left 50% / image right 50%) ── */

.af-hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 20px;
}

.af-hero-text {
  flex: 0 0 50%;
  width: 50%;
  padding-right: 50px;
}

.af-hero-image {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.af-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 75vh;
  object-fit: contain;
}

.af-hero-text p {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
}

/* ── Body Intro ── */

.af-intro {
  background: var(--white);
  padding: 100px 0;
}

.af-intro-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.af-intro-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 65px;
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 40px;
}

.af-intro-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.6;
  color: var(--dark);
  max-width: 90%;
  margin: 0 auto;
}

.af-intro-text p {
  margin: 0 0 18px;
}

.af-intro-text p:last-child {
  margin-bottom: 0;
}

/* ── "How to get started" — 3-column step grid ── */

.af-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ── Affiliates Responsive ── */

@media (max-width: 1024px) {
  .af-hero-inner {
    flex-direction: column;
    padding: 50px 30px;
    min-height: unset;
  }
  .af-hero-image,
  .af-hero-text {
    flex: none;
    width: 100%;
  }
  .af-hero-text {
    padding-right: 0;
    text-align: center;
  }

  .af-intro { padding: 60px 0; }
  .af-intro-heading { font-size: 50px; }
}

@media (max-width: 800px) {
  .af-how-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .af-hero-text p { font-size: 20px; }
  .af-intro { padding: 50px 0; }
  .af-intro-heading { font-size: 40px; }
  .af-intro-text { font-size: 20px; }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Hero ── */

.ct-hero {
  background: var(--primary);
  padding: 120px 20px;
  text-align: center;
}

.ct-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.ct-hero-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 65px;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 28px;
}

.ct-hero-subheading {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
}

/* ── Enquiry type cards ── */

.enquiry-cards-section {
  background: var(--white);
  padding: 100px 0;
}

.enquiry-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.enquiry-card {
  background: var(--off-white);
  border: 3px solid var(--primary);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.enquiry-card-icon {
  color: var(--primary);
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.enquiry-card-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.enquiry-card-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--dark);
  margin: 0;
}

.enquiry-card-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
  flex-grow: 1;
}

.enquiry-card .btn {
  margin-top: auto;
}

/* ── Office info grid ── */

.ct-info-section {
  background: var(--off-white);
  padding: 100px 0;
}

.ct-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block-icon {
  color: var(--primary);
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.info-block-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.info-block-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  color: var(--primary);
  margin: 0;
}

.info-block p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}

.info-block a {
  color: var(--dark);
  text-decoration: underline;
}

.info-block a:hover {
  color: var(--primary);
}

/* ── Contact page Responsive ── */

@media (max-width: 1024px) {
  .ct-hero-heading { font-size: 50px; }
  .enquiry-cards { grid-template-columns: repeat(2, 1fr); }
  .ct-info-grid { grid-template-columns: 1fr; gap: 40px; }
  .ct-info-section { padding: 60px 0; }
}

@media (max-width: 768px) {
  .ct-hero { padding: 70px 20px; }
  .ct-hero-heading { font-size: 36px; }
  .ct-hero-subheading { font-size: 20px; }
  .enquiry-cards-section { padding: 60px 0; }
  .enquiry-cards { grid-template-columns: 1fr; }
}
