/* RP Con (Pty) Ltd — Components: nav, footer, buttons, cards, forms, stats */

/* ===== NAV ===== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--bg-dark);
  z-index: 300;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 4px;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  /* Logo is black + red on transparent; invert + hue-rotate turns black to white
     while preserving the red accent on dark backgrounds. */
  filter: invert(1) hue-rotate(180deg) saturate(1.4);
}

.brand-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-left: 2px;
}

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 150ms ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease, width 300ms ease;
  transform-origin: center;
}

/* Morph into X when drawer is open */
.nav-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav { height: 60px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

.nav-drawer {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--bg-dark);
  z-index: 200;
  transform: translateY(-110%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  border-top: 3px solid var(--orange);
}

.nav-drawer.open {
  transform: translateY(0);
}

.nav-drawer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-bottom: 1px solid var(--border-dark);
  border-left: 3px solid transparent;
  /* Start hidden for stagger animation */
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 260ms ease, transform 260ms ease, color 150ms ease, border-color 150ms ease;
}

.nav-drawer.open a {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger each link in sequence after drawer slides down */
.nav-drawer.open a:nth-child(2) { transition-delay: 80ms; }
.nav-drawer.open a:nth-child(3) { transition-delay: 130ms; }
.nav-drawer.open a:nth-child(4) { transition-delay: 180ms; }
.nav-drawer.open a:nth-child(5) { transition-delay: 230ms; }

.nav-drawer a:hover {
  color: var(--orange);
}

.nav-drawer a.active {
  color: var(--orange);
  border-left-color: var(--orange);
  padding-left: 28px;
}

.drawer-close {
  display: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px) scale(1.02);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 13px 31px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 13px 31px;
}

.btn-ghost:hover {
  background: var(--orange-tint);
}

/* ===== FOOTER ===== */

.footer {
  background: var(--footer-bg);
  color: var(--text-mid-2);
  position: relative;
}

.footer .orange-line {
  position: absolute;
  top: 0;
  left: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 64px;
}

@media (min-width: 1440px) {
  .footer-inner { max-width: 1400px; }
}

@media (min-width: 1920px) {
  .footer-inner { max-width: 1600px; }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 56px;
  }
}

.footer-brand .brand-logo {
  height: 48px;
}

.footer-brand .brand-sub {
  font-size: 11px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand .accent-stub {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin-top: 20px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-mid-2);
  transition: color 150ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

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

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
}

.footer-contact-row svg {
  color: var(--orange);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--surface-dark);
  margin-top: 64px;
  padding: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-faint);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ===== SECTION HEADING ===== */

.section-head {
  margin-bottom: 48px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-top: 12px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.6;
}

/* ===== STATS STRIP ===== */

.stats {
  background: var(--surface-dark);
  padding: 40px 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (min-width: 1440px) {
  .stats-inner { max-width: 1400px; }
}

@media (min-width: 1920px) {
  .stats-inner { max-width: 1600px; }
}

.stat {
  text-align: center;
  border-right: 1px solid var(--border-dark);
  padding: 8px 16px;
}

.stat:last-child {
  border-right: none;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.02em;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-mid-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }
  .stat { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--border-dark); }
}

/* ===== FLEET CARDS ===== */

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

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

.fleet-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--orange);
  transition: transform 300ms ease, box-shadow 300ms ease;
  cursor: pointer;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.fleet-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.fleet-card-img .placeholder-img,
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-card-panel {
  background: var(--text-dark);
  color: var(--white);
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: height 300ms ease, padding 300ms ease;
  overflow: hidden;
}

.fleet-card:hover .fleet-card-panel {
  height: 180px;
  padding: 24px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.fleet-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: font-size 300ms ease;
}

.fleet-card:hover .fleet-card-name {
  font-size: 24px;
}

.fleet-card-arrow {
  color: var(--orange);
  font-size: 20px;
  transition: opacity 200ms ease;
}

.fleet-card:hover .fleet-card-arrow {
  display: none;
}

.fleet-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  transition: opacity 200ms ease 100ms, max-height 300ms ease;
}

.fleet-card:hover .fleet-card-desc {
  opacity: 1;
  max-height: 100px;
}

.fleet-card-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 200ms ease 200ms;
  margin-top: 4px;
}

.fleet-card:hover .fleet-card-link {
  opacity: 1;
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--orange);
  margin-top: 48px;
  transition: gap 200ms ease;
}

.see-all-link:hover {
  gap: 14px;
}

/* ===== FLEET CARD — FLIP (touch screens only) ===== */

/* Desktop: inner is a plain block so card height is driven by content as normal */
.fleet-card-inner {
  display: block;
  width: 100%;
}

.fleet-card-face--back {
  display: none;
}

@media (hover: none) {
  .fleet-card {
    height: 320px;
    perspective: 1000px;
    transform: none !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
  }

  .fleet-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 420ms ease;
  }

  .fleet-card.flipped .fleet-card-inner {
    transform: rotateY(180deg);
  }

  .fleet-card-face--front,
  .fleet-card-face--back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
  }

  .fleet-card-face--front {
    display: block;
  }

  /* Fix image to a set height so front fills the 320px card */
  .fleet-card-face--front .fleet-card-img {
    aspect-ratio: unset;
    height: 240px;
  }

  .fleet-card-face--back {
    display: flex;
    transform: rotateY(180deg);
    background: var(--bg-dark);
    border-left: 4px solid var(--orange);
    align-items: center;
    justify-content: center;
  }

  /* Kill all desktop hover effects */
  .fleet-card:hover,
  .fleet-card:focus {
    transform: none !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
  }

  .fleet-card:hover .fleet-card-panel,
  .fleet-card:focus .fleet-card-panel {
    height: 80px !important;
    padding: 0 24px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }

  .fleet-card:hover .fleet-card-name,
  .fleet-card:focus .fleet-card-name {
    font-size: 22px !important;
  }

  .fleet-card:hover .fleet-card-arrow,
  .fleet-card:focus .fleet-card-arrow {
    display: block !important;
  }

  .fleet-card:hover .fleet-card-desc,
  .fleet-card:focus .fleet-card-desc {
    opacity: 0 !important;
    max-height: 0 !important;
  }

  .fleet-card:hover .fleet-card-link,
  .fleet-card:focus .fleet-card-link {
    opacity: 0 !important;
  }

  /* Back face content */
  .fleet-card-back-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    height: 100%;
    justify-content: center;
  }

  .fleet-card-back-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .fleet-card-back-divider {
    width: 32px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
  }

  .fleet-card-back-desc {
    font-size: 14px;
    color: var(--text-mid-2);
    line-height: 1.65;
    flex: 1;
  }

  .fleet-card-back-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 16px;
    border: 1px solid var(--orange);
    border-radius: 4px;
    transition: background 200ms ease;
  }
}

/* ===== EQUIPMENT CARDS (products page) ===== */

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

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

.eq-card {
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--orange);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 300ms ease, box-shadow 300ms ease;
  cursor: pointer;
}

.eq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.eq-card-img {
  height: 240px;
  overflow: hidden;
}

.eq-card-img .placeholder-img,
.eq-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eq-card-panel {
  background: var(--text-dark);
  color: var(--white);
  height: 80px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 300ms ease-out, padding 300ms ease-out;
  overflow: hidden;
  position: relative;
}

.eq-card:hover .eq-card-panel {
  height: 180px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.eq-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.eq-card-arrow {
  color: var(--orange);
  font-size: 22px;
}

.eq-card:hover .eq-card-arrow {
  display: none;
}

.eq-card-desc {
  font-size: 14px;
  color: var(--text-mid-2);
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  transition: opacity 200ms ease 100ms, max-height 300ms ease;
}

.eq-card:hover .eq-card-desc {
  opacity: 1;
  max-height: 100px;
}

.eq-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 200ms ease 200ms;
}

.eq-card:hover .eq-card-cta {
  opacity: 1;
}

@media (min-width: 1025px) {
  .eq-grid .eq-card:nth-child(7) { grid-column: 2; }
}

/* ===== EQ CARD — FLIP (touch screens only) ===== */

/* Desktop: eq-card-inner is a transparent passthrough, back face hidden */
.eq-card-inner {
  width: 100%;
  height: 100%;
}

.eq-card-face--back {
  display: none;
}

@media (hover: none) {
  /* Fixed card height so both faces fill the same space */
  .eq-card {
    height: 320px;
    perspective: 1000px;
    /* Disable desktop lift-on-hover since touch can't hover */
    transform: none !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
  }

  .eq-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 420ms ease;
  }

  .eq-card.flipped .eq-card-inner {
    transform: rotateY(180deg);
  }

  /* Both faces share the same footprint */
  .eq-card-face--front,
  .eq-card-face--back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
  }

  /* Front: keep existing styles (image + panel) */
  .eq-card-face--front {
    display: block;
  }

  /* Back: visible again on touch, rotated 180 so it starts hidden */
  .eq-card-face--back {
    display: flex;
    transform: rotateY(180deg);
    background: var(--bg-dark);
    border-left: 4px solid var(--orange);
    align-items: center;
    justify-content: center;
  }

  /* Kill every desktop hover effect — sticky-hover on iOS/Android
     means :hover can persist after a tap and bleed the expand animation through */
  .eq-card:hover,
  .eq-card:focus {
    transform: none !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
  }

  .eq-card:hover .eq-card-panel,
  .eq-card:focus .eq-card-panel {
    height: 80px !important;
    padding: 0 24px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .eq-card:hover .eq-card-arrow,
  .eq-card:focus .eq-card-arrow {
    display: block !important;
  }

  .eq-card:hover .eq-card-desc,
  .eq-card:focus .eq-card-desc {
    opacity: 0 !important;
    max-height: 0 !important;
  }

  .eq-card:hover .eq-card-cta,
  .eq-card:focus .eq-card-cta {
    opacity: 0 !important;
  }

  /* Back face content */
  .eq-card-back-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    height: 100%;
    justify-content: center;
  }

  .eq-card-back-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .eq-card-back-divider {
    width: 32px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
  }

  .eq-card-back-desc {
    font-size: 14px;
    color: var(--text-mid-2);
    line-height: 1.65;
    flex: 1;
  }

  .eq-card-back-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 16px;
    border: 1px solid var(--orange);
    border-radius: 4px;
    transition: background 200ms ease;
  }

  .eq-card-back-cta:hover {
    background: rgba(249, 115, 22, 0.1);
  }
}

/* ===== PULL QUOTE ===== */

.pull-quote {
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.5;
}

.pull-quote .hl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.02em;
}

/* ===== FOUNDER CARDS ===== */

.founder-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  position: relative;
  padding: 40px 24px 32px;
  text-align: center;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.founder-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--surface-dark);
  border: 3px solid var(--orange);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.founder-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  text-transform: uppercase;
}

.founder-title {
  font-size: 13px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-top: 6px;
}

.founder-divider {
  width: 40px;
  height: 1px;
  background: var(--border-dark);
  margin: 20px auto;
}

.founder-email {
  font-size: 14px;
  color: var(--text-mid-2);
  transition: color 150ms ease;
}

.founder-email:hover {
  color: var(--orange);
}

/* ===== DIRECTOR CARDS (contact page) ===== */

.director-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.director-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 24px;
}

.director-card .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.director-card .title {
  font-size: 12px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-top: 4px;
  margin-bottom: 16px;
}

.director-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid-3);
  padding: 6px 0;
}

.director-row svg {
  color: var(--orange);
  flex-shrink: 0;
}

.director-row a {
  transition: color 150ms ease;
}

.director-row a:hover {
  color: var(--orange);
}

/* ===== CONTACT FORM ===== */

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

@media (max-width: 640px) {
  .contact-form { padding: 28px; }
}

.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .form-row.two { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-mid-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  background: #F9FAFB;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-mid-2);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 200ms ease, transform 200ms ease;
}

.submit-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-reassurance {
  font-size: 13px;
  color: var(--text-mid-2);
  text-align: center;
  margin-top: 16px;
}

.form-success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #047857;
  padding: 16px 20px;
  border-radius: 6px;
  margin-top: 16px;
  font-size: 14px;
  display: none;
}

.form-success.visible {
  display: block;
}

/* ===== WHATSAPP BUTTON ===== */

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 200ms ease;
}

.whatsapp-btn:hover {
  background: var(--whatsapp-hover);
}
