* {
  box-sizing: border-box;
}

:root {
  /* Extracted from Divi theme */
  --brand-red: #780000;
  --brand-blue-dark: #002366;
  --brand-blue-light: #82b0d9;

  --bg: #ffffff;
  --text-main: #666666;
  --text-dark: #333333;

  --font-heading: "Bebas Neue", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --spacing-section: 6vw;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg);
  line-height: 1.8;
  font-size: 18px;
}

a {
  color: var(--brand-blue-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--brand-blue-dark);
}

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

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  /* Bebas Neue is bold by default / single weight */
  color: var(--text-dark);
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
}

h3 {
  font-size: 32px;
  color: var(--brand-blue-light);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5vw;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.topbar__logo img {
  height: 80px;
  width: auto;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: var(--spacing-section) 5vw;
}

.hero__content h1 {
  font-size: clamp(48px, 6vw, 80px);
  /* Larger scale per original */
  margin-bottom: 24px;
}

.eyebrow {
  font-family: var(--font-heading);
  color: var(--brand-red);
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}

.hero__media {
  position: relative;
  box-shadow: 20px 20px 0 var(--brand-red);
  /* Divi style offset shadow idea */
}

.hero__video {
  width: 100%;
  height: auto;
  display: block;
}

/* 2-Column Section */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: var(--spacing-section) 5vw;
  background: #ffffff;
  position: relative;
}

.two-col__media {
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  max-width: 92%;
  margin-left: 24px;
}

.two-col__copy {
  position: relative;
  z-index: 2;
  background: #f3f3f3;
  padding: 64px 72px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  margin-left: clamp(-90px, -6vw, -40px);
  min-height: 520px;
  display: flex;
  align-items: center;
}

.two-col__copy p {
  color: var(--text-dark);
  font-size: 18px;
  margin: 0;
}

/* Why Choose Section */
.why {
  padding: var(--spacing-section) 5vw;
}

.section-heading {
  margin-bottom: 50px;
  text-align: center;
}

.section-heading h2 {
  font-size: 50px;
}

.brand {
  color: var(--brand-red);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--brand-blue-light);
  /* Accent border */
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 20px;
}

.card--wide {
  grid-column: 1 / -1;
}

/* CTA Video */
.cta-video {
  position: relative;
  padding: 10vw 5vw;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-video__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 35, 102, 0.85);
  /* Dark blue overlay */
  z-index: -1;
}

.cta-video__content {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-video__content h2 {
  color: #fff;
  margin-bottom: 22px;
  display: inline-block;
  background: var(--brand-red);
  padding: 14px 22px;
  border-radius: 6px;
  letter-spacing: 0.08em;
}

.cta-video__content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

/* Footer / Contact */
.contact {
  padding: 60px 5vw;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}

.contact h3 {
  color: #ffffff;
  margin: 0;
  font-size: 20px;
}

.contact__link {
  font-weight: 600;
  color: var(--brand-red);
  font-size: 20px;
  margin: 0 10px;
}

.footer {
  background: var(--brand-blue-dark);
  color: #fff;
  padding: 20px 5vw;
  text-align: center;
  font-size: 14px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #fff;
  /* Default to white for many Divi buttons */
  color: var(--brand-blue-light);
  border: 3px solid var(--brand-blue-light);
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  /* Square buttons */
}

/* Variant: Solid Blue Button (if needed) or inverse */
.btn:hover {
  background-color: var(--brand-blue-light);
  color: #fff;
}

.btn--ghost {
  /* Used in Topbar often */
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.btn--ghost:hover {
  background-color: var(--brand-red);
  color: #fff;
}

.btn--light {
  /* For dark backgrounds */
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--light:hover {
  background: #fff;
  color: var(--brand-blue-dark);
}

/* Form Styles Override for new font system */
.form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  padding: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

label {
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.form-section {
  padding: var(--spacing-section) 5vw;
  background: #ffffff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px 20px;
}

.form-section-title {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--text-dark);
}

.form-subtext {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  border: 1px solid #d7d9df;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--font-body);
  background: #fbfbfe;
  transition: border 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand-blue-light);
  box-shadow: 0 0 0 3px rgba(130, 176, 217, 0.35);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.phone-only {
  display: none;
}

.phone-only.visible {
  display: flex;
  flex-direction: column;
}

.form-hint {
  margin: 0;
  color: #6b7280;
}

.form-message {
  min-height: 20px;
  font-weight: 600;
  color: var(--brand-red);
}

.form-message--error {
  color: #c1121f;
}

/* Responsive */
@media (max-width: 768px) {

  .hero,
  .two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .two-col__media,
  .two-col__copy {
    box-shadow: none;
  }

  .two-col__copy {
    margin-left: 0;
    min-height: auto;
    padding: 32px 28px;
    align-items: flex-start;
  }

  .hero__media {
    box-shadow: none;
    /* Simplify on mobile */
  }

  .topbar {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .form-card {
    padding: 22px;
  }

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