/* Design System CSS Variables (Use These Exact Variables) */

:root {
  /* Colors - Base */
  --color-primary: #003D5C;
  --color-secondary: #008B8B;
  --color-accent: #FFB703;
  --color-neutral-light: #F5F5DC;
  --color-neutral-dark: #1F2937;
  --color-background: #F5F5DC;
  --color-text: #1F2937;

  /* Colors - Variations (for sophistication) */
  --color-primary-light: rgba(0, 61, 92, 0.1);
  --color-primary-dark: #003D5C;
  --color-overlay-light: rgba(0, 61, 92, 0.05);
  --color-overlay-dark: rgba(0, 61, 92, 0.15);

  /* Typography - Fonts */
  --font-heading: Bebas Neue, var(--font-body), sans-serif;
  --font-body: Inter, sans-serif;

  /* Typography - Weights (use variety!) */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Typography - Letter Spacing */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;

  /* Typography - Line Height */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;

  /* Shadows - Layered for depth (use multiple!) */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.08);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

  /* Spacing Scale (for rhythm) */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 2rem;       /* 32px */
  --space-xl: 4rem;       /* 64px */
  --space-2xl: 6rem;      /* 96px */
  --space-3xl: 8rem;      /* 128px */

  /* Container */
  --container-width: 1200px;
  --container-padding: var(--space-lg);

  /* Border Radius (vary for visual interest) */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions (use appropriate timing) */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Z-index Scale (for layering) */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Form Styles */
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

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


/* navigation Section */
/* AWARD-WINNING NAVIGATION STYLE */
:root {
  --nav-height: 90px;
  --nav-height-scrolled: 70px;
  --nav-bg: rgba(0, 61, 92, 0.95);
  --nav-text: #F5F5DC;
  --nav-accent: #FFB703;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: all 0.4s var(--ease-out-expo);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scrolled State */
.navigation.is-scrolled {
  height: var(--nav-height-scrolled);
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navigation__container {
  max-width: var(--container-width, 1400px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--container-padding, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Identity */
.navigation__brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  z-index: 1002;
  position: relative;
}

.navigation__brand-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: #fff;
  transition: color 0.3s ease;
}

.navigation__brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nav-accent);
  opacity: 0.9;
}

/* Desktop Navigation */
.navigation__desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .navigation__desktop-nav {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.navigation__list {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.navigation__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--nav-accent);
  transition: width 0.3s var(--ease-out-expo);
}

.navigation__link:hover {
  opacity: 1;
}

.navigation__link:hover::after {
  width: 100%;
}

/* Actions Area */
.navigation__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1002;
}

.navigation__cta {
  display: none;
  background-color: var(--nav-accent);
  color: #002538;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.navigation__cta:hover {
  transform: translateY(-2px);
  background-color: #fff;
}

@media (min-width: 768px) {
  .navigation__cta {
    display: inline-block;
  }
}

/* Mobile Hamburger Toggle */
.navigation__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.navigation__hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navigation__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger Animation States */
.navigation__toggle[aria-expanded="true"] .navigation__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navigation__toggle[aria-expanded="true"] .navigation__bar:nth-child(2) {
  opacity: 0;
}

.navigation__toggle[aria-expanded="true"] .navigation__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 992px) {
  .navigation__toggle {
    display: none;
  }
}

/* Mobile Menu Overlay */
.navigation__mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #003D5C;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.navigation__mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navigation__mobile-container {
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

.navigation__mobile-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}

.navigation__mobile-item {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--delay, 0s);
}

.navigation__mobile-menu.is-open .navigation__mobile-item {
  opacity: 1;
  transform: translateY(0);
}

.navigation__mobile-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.navigation__mobile-link:hover {
  color: var(--nav-accent);
}

.navigation__mobile-info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.5s;
}

.navigation__mobile-menu.is-open .navigation__mobile-info {
  opacity: 1;
  transform: translateY(0);
}

.navigation__info-title {
  color: var(--nav-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.navigation__info-link {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-top: 0.5rem;
  transition: opacity 0.3s ease;
}

.navigation__info-link:hover {
  opacity: 0.8;
}

/* Accessibility: Focus States */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--nav-accent);
  outline-offset: 4px;
}

/* hero Section */
/* AWARD-WINNING HERO SECTION */
:root {
  --hero-bg: #003D5C;
  --hero-text: #F5F5DC;
  --hero-accent: #FFB703;
  --hero-secondary: #008B8B;
}

.hero {
  position: relative;
  background-color: var(--hero-bg);
  color: var(--hero-text);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  isolation: isolate;
}

/* Decorative Background Shape - Subtle yet adds depth */
.hero__bg-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 139, 139, 0.15) 0%, rgba(0, 61, 92, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.hero__container {
  width: 100%;
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 20px);
  position: relative;
  z-index: 2;
}

/* Asymmetric Grid Layout */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr; /* Text takes slightly more space for impact */
    gap: 5rem;
  }
}

/* Content Typography */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 3;
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.hero__title-line {
  display: block;
  color: #fff;
}

.hero__title-line--highlight {
  color: var(--hero-accent);
  position: relative;
  display: inline-block;
}

.hero__description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.6;
  max-width: 540px;
  color: rgba(245, 245, 220, 0.9);
  margin-bottom: 1rem;
}

/* CTAs */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__button--primary {
  background-color: var(--hero-accent);
  color: var(--hero-bg);
  border: 2px solid var(--hero-accent);
}

.hero__button--primary:hover {
  background-color: transparent;
  color: var(--hero-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 183, 3, 0.2);
}

.hero__button--secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 1.5rem;
}

.hero__button--secondary:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Trust Indicators Grid */
.hero__trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
  .hero__trust {
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 1rem 3rem;
  }
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--hero-secondary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.hero__trust-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Visual Area */
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  /* Aspect ratio for the image container - keeps it stable */
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: visible;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  filter: brightness(0.95) contrast(1.05);
}

/* Abstract Frame Decoration */
.hero__image-frame {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 2px solid var(--hero-secondary);
  border-radius: 8px;
  z-index: 1;
  opacity: 0.6;
  transition: transform 0.5s ease;
}

.hero__image-wrapper:hover .hero__image-frame {
  transform: translate(10px, -10px);
}

.hero__attribution {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  margin-top: 0.75rem;
}

.hero__attribution a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.hero__attribution a:hover {
  color: #fff;
}

/* Animations */
.hero__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.hero__fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.hero__title-line:nth-child(1) { transition-delay: 100ms; }
.hero__title-line:nth-child(2) { transition-delay: 200ms; }
.hero__title-line:nth-child(3) { transition-delay: 300ms; }
.hero__description { transition-delay: 400ms; }
.hero__actions { transition-delay: 500ms; }
.hero__trust { transition-delay: 600ms; }
.hero__image-wrapper { transition-delay: 400ms; transform: scale(0.95); opacity: 0; }
.hero__image-wrapper.is-visible { transform: scale(1); opacity: 1; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero__fade-in {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__image-wrapper:hover .hero__image-frame {
    transform: none;
  }
}

/* features Section */
/* SECTION: Features */
.features {
  position: relative;
  padding: 120px 0;
  background-color: #F3F4F6; /* Neutral Light */
  color: #1F2937; /* Neutral Dark */
  overflow: hidden;
  z-index: 1;
}

/* Subtle geometric background decoration */
.features::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 139, 139, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.features__container {
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
}

.features__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* --- Left Column: Narrative --- */
.features__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 2rem;
  color: #003D5C; /* Primary */
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.features__heading-highlight {
  display: block;
  color: #008B8B; /* Secondary */
}

.features__subheadline {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 3rem;
  max-width: 600px;
}

.features__list {
  list-style: none;
  padding: 0;
  margin: 0 0 3.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.features__list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.features__list-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #FFB703; /* Accent */
  margin-top: 2px;
}

.features__list-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #1F2937;
}

.features__action {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.features__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #003D5C; /* Primary */
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid #003D5C;
}

.features__cta:hover {
  background-color: transparent;
  color: #003D5C;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 61, 92, 0.15);
}

.features__trust {
  font-size: 0.875rem;
  color: #6B7280;
  margin-top: 0.5rem;
  font-style: italic;
}

/* --- Right Column: The Card --- */
.features__card-wrapper {
  position: relative;
  margin-top: 2rem;
}

.features__card {
  background-color: #003D5C; /* Primary Dark */
  color: #ffffff;
  border-radius: 0;
  position: relative;
  padding: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: grid;
  grid-template-rows: 240px auto;
  transition: transform 0.5s ease;
}

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

/* The geometric accent image */
.features__card-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: #002d44;
}

.features__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
  opacity: 0.9;
  mix-blend-mode: luminosity;
}

.features__card:hover .features__card-image {
  transform: scale(1.05);
  mix-blend-mode: normal;
}

.features__card-content {
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}

.features__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.features__card-icon {
  font-size: 1.5rem;
}

.features__card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: #FFB703; /* Accent Gold */
  margin: 0;
  letter-spacing: 0.02em;
}

.features__card-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #E5E7EB;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

.features__stat-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.features__stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: #ffffff;
}

.features__stat-label {
  font-size: 0.9rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features__micro-story {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-left: 3px solid #FFB703;
  font-size: 0.9rem;
  color: #D1D5DB;
  font-style: italic;
}

/* Decorative element on card */
.features__card-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, #FFB703 50%);
  opacity: 0.2;
  pointer-events: none;
}

.features__photo-credit {
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-top: 0.75rem;
  text-align: right;
}

.features__photo-credit a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.features__photo-credit a:hover {
  color: #003D5C;
}

/* --- Animations --- */
.features__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.features__fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.features__list-item:nth-child(1) { transition-delay: 100ms; }
.features__list-item:nth-child(2) { transition-delay: 200ms; }
.features__list-item:nth-child(3) { transition-delay: 300ms; }
.features__action { transition-delay: 400ms; }
.features__card-wrapper { transition-delay: 200ms; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features__grid {
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 80px 0;
  }
  
  .features__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .features__heading {
    font-size: 3.5rem;
  }

  .features__card {
    margin-top: 0;
    /* Make card full width on mobile */
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .features__heading {
    font-size: 3rem;
  }
  
  .features__card-image-container {
    height: 180px;
  }
  
  .features__card-content {
    padding: 1.5rem;
  }
  
  .features__stat-number {
    font-size: 3.5rem;
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .features__fade-in {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .features__card,
  .features__card-image,
  .features__cta {
    transition: none !important;
    transform: none !important;
  }
}

/* about-preview Section */
/* SECTION CONFIGURATION */
.about-preview {
  --about-text-color: #1F2937;
  --about-bg-color: #F3F4F6;
  --about-card-bg: #FFFFFF;
  --about-primary: #003D5C;
  --about-accent: #FFB703;
  
  position: relative;
  background-color: var(--about-bg-color);
  color: var(--about-text-color);
  padding: 120px 0;
  overflow: hidden;
}

.about-preview__container {
  width: 100%;
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 20px);
}

/* HEADER */
.about-preview__header {
  margin-bottom: 4rem;
  max-width: 900px;
}

.about-preview__eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--about-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.about-preview__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--about-primary);
  margin: 0;
  text-transform: uppercase;
}

.about-preview__title--accent {
  display: block;
  color: var(--about-text-color);
  opacity: 0.9;
}

/* MAIN LAYOUT - ASYMMETRIC OVERLAP */
.about-preview__layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
}

/* VISUAL SIDE (Left) */
.about-preview__visual {
  grid-column: 1 / 8;
  position: relative;
  z-index: 1;
}

.about-preview__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 61, 92, 0.1);
}

.about-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.about-preview__image-wrapper:hover .about-preview__image {
  transform: scale(1.05);
}

.about-preview__credits {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0,0,0,0.3);
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: auto;
  z-index: 20;
}

.about-preview__credits a {
  color: inherit;
  text-decoration: underline;
}

/* STATS CARD (Floating) */
.about-preview__stats {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: var(--about-primary);
  color: white;
  padding: 2.5rem 2rem;
  display: flex;
  gap: 3rem;
  border-radius: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.about-preview__stat-item {
  display: flex;
  flex-direction: column;
}

.about-preview__stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--about-accent);
  margin-bottom: 0.25rem;
}

.about-preview__stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* NARRATIVE SIDE (Right) */
.about-preview__narrative {
  grid-column: 7 / 13;
  background: var(--about-card-bg);
  padding: 3.5rem;
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--about-accent);
}

.about-preview__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--about-primary);
  margin-bottom: 1.5rem;
}

.about-preview__story p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 1.5rem;
}

.about-preview__quote-box {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--about-primary);
}

.about-preview__quote {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--about-text-color);
  margin-bottom: 0.5rem;
}

.about-preview__author {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--about-primary);
  letter-spacing: 0.05em;
}

.about-preview__btn {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--about-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--about-accent);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.about-preview__btn:hover {
  color: var(--about-accent);
  border-bottom-color: var(--about-primary);
}

/* VALUES GRID */
.about-preview__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 61, 92, 0.1);
}

.about-preview__value-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--about-primary);
  margin-bottom: 1rem;
}

.about-preview__value-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4B5563;
}

/* ANIMATIONS */
.about-preview__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-preview__fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-preview__reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.about-preview__reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-preview__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-preview__visual {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
  }

  .about-preview__narrative {
    grid-column: 1 / -1;
    margin-top: -3rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .about-preview__stats {
    right: 2rem;
    bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .about-preview__header {
    margin-bottom: 2.5rem;
  }
  
  .about-preview__narrative {
    margin: 0;
    padding: 2rem;
    border-left: none;
    border-top: 4px solid var(--about-accent);
  }

  .about-preview__stats {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    justify-content: space-around;
    padding: 1.5rem;
  }

  .about-preview__visual {
    margin-bottom: 0;
  }

  .about-preview__values {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 550px) {
  .about-preview__values {
    grid-template-columns: 1fr;
  }

  .about-preview__stats {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .about-preview__image-wrapper {
    aspect-ratio: 1/1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-preview__fade-in,
  .about-preview__reveal,
  .about-preview__image {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    clip-path: inset(0) !important;
    opacity: 1 !important;
  }
}

/* testimonials Section */
/* AWARD-WINNING TESTIMONIALS SECTION */
.testimonials {
  position: relative;
  background-color: #003D5C; /* Brand Primary - Dark Mode feel */
  color: #F3F4F6;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle architectural background pattern */
.testimonials__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 183, 3, 0.05) 0%, transparent 40%),
                    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  z-index: -1;
  opacity: 0.6;
}

.testimonials__container {
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 24px);
}

/* HEADER */
.testimonials__header {
  max-width: 800px;
  margin-bottom: 80px;
}

.testimonials__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials__title-highlight {
  color: #FFB703; /* Accent Gold */
  display: inline-block;
  position: relative;
}

/* Underline effect for highlight */
.testimonials__title-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 0.1em;
  background-color: currentColor;
  opacity: 0.3;
  transform: skewX(-20deg);
}

.testimonials__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #D1D5DB;
  max-width: 60ch;
}

/* FEATURED STORY LAYOUT */
.testimonials__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.testimonials__featured-visual {
  position: relative;
}

.testimonials__image-wrapper {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials__featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials__featured:hover .testimonials__featured-img {
  transform: scale(1.05);
}

.testimonials__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #FFB703;
  color: #003D5C;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonials__featured-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonials__rating {
  color: #FFB703;
  font-size: 1.25rem;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials__rating-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.testimonials__featured-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  line-height: 1.1;
  color: #FFFFFF;
  border-left: 4px solid #FFB703;
  padding-left: 24px;
  margin: 0;
}

.testimonials__story-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #D1D5DB;
}

.testimonials__featured-meta {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonials__author-name {
  display: block;
  font-weight: 700;
  color: #FFFFFF;
  font-style: normal;
  font-size: 1.125rem;
}

.testimonials__author-role {
  display: block;
  font-size: 0.875rem;
  color: #9CA3AF;
}

.testimonials__result-tag {
  background: rgba(0, 139, 139, 0.2);
  color: #4FD1C5;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* GRID ITEMS (Bottom) */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 80px;
}

.testimonials__card {
  background: #002D45; /* Slightly lighter than section bg */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonials__card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 183, 3, 0.3);
}

.testimonials__card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.testimonials__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #E5E7EB;
  flex-grow: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonials__card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.testimonials__card-author {
  color: #FFB703;
  font-weight: 600;
}

.testimonials__card-type {
  color: #9CA3AF;
}

/* STATS BAR */
.testimonials__stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonials__stat-item {
  flex: 1;
  text-align: center;
  min-width: 200px;
}

.testimonials__stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: #008B8B; /* Secondary Teal */
  line-height: 1;
  margin-bottom: 8px;
}

.testimonials__stat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #D1D5DB;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials__stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

.testimonials__cta-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.testimonials__cta-button {
  display: inline-block;
  background-color: #FFB703;
  color: #003D5C;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.testimonials__cta-button:hover {
  background-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 183, 3, 0.2);
}

/* ANIMATIONS */
.testimonials__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.testimonials__fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGERED DELAYS */
.testimonials__card:nth-child(2) { transition-delay: 0.1s; }
.testimonials__card:nth-child(3) { transition-delay: 0.2s; }

/* PHOTO CREDITS */
.photo-credits {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
}
.photo-credits a {
  color: inherit;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .testimonials__featured {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .testimonials__image-wrapper {
    aspect-ratio: 16/9;
  }
  
  .testimonials__badge {
    right: 20px;
  }
  
  .testimonials__featured-quote {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }

  /* Convert Grid to Scroll-Snap Carousel on Mobile */
  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
    margin: 0 -24px 60px -24px;
    padding-left: 24px;
    padding-right: 24px;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .testimonials__grid::-webkit-scrollbar {
    display: none;
  }

  .testimonials__card {
    flex: 0 0 85%; /* Shows part of next card */
    scroll-snap-align: center;
    min-height: 300px;
  }

  .testimonials__stats {
    flex-direction: column;
    gap: 40px;
  }
  
  .testimonials__stat-divider {
    width: 60px;
    height: 1px;
  }
  
  .testimonials__stat-number {
    font-size: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__featured-img,
  .testimonials__card,
  .testimonials__cta-button {
    transition: none !important;
    transform: none !important;
  }
}

/* cta Section */
/* CRITICAL: Section-prefixed BEM classes only */

/* Main Section Wrapper */
.cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #F5F5DC;
  background-color: #003D5C;
  padding: 120px 0;
  isolation: isolate;
}

/* Full-bleed Background Elements */
.cta__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.cta__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, #005a85 0%, #003D5C 60%);
  opacity: 0.8;
}

.cta__curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
}

/* Content Container */
.cta__container {
  width: 100%;
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.cta__content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Urgency Badge */
.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #F5F5DC;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cta__badge-pulse {
  width: 8px;
  height: 8px;
  background-color: #FFB703;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(255, 183, 3, 0.4);
  animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 183, 3, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 183, 3, 0); }
}

/* Typography */
.cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  color: #FFFFFF;
}

.cta__title--highlight {
  color: #FFB703;
  display: block;
  position: relative;
  /* Subtle glow */
  text-shadow: 0 0 40px rgba(255, 183, 3, 0.15);
}

.cta__description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(245, 245, 220, 0.9);
  max-width: 60ch;
  font-weight: 400;
}

/* Actions */
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  width: 100%;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 200px;
}

.cta__button--primary {
  background-color: #FFB703;
  color: #003D5C;
  border: 2px solid #FFB703;
}

.cta__button--primary:hover {
  background-color: #e0a100;
  border-color: #e0a100;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(255, 183, 3, 0.4);
}

.cta__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta__button--secondary:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Benefits Grid */
.cta__benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  width: 100%;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cta__benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.cta__check {
  width: 24px;
  height: 24px;
  color: #FFB703;
}

/* Animations */
.cta__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta__fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.cta__fade-in:nth-child(1) { transition-delay: 100ms; }
.cta__fade-in:nth-child(2) { transition-delay: 200ms; }
.cta__fade-in:nth-child(3) { transition-delay: 300ms; }
.cta__fade-in:nth-child(4) { transition-delay: 400ms; }
.cta__fade-in:nth-child(5) { transition-delay: 500ms; }

/* Responsive */
@media (max-width: 1024px) {
  .cta__benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .cta__title {
    font-size: 3rem;
  }
  
  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta__benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }

  .cta__benefit-item {
    flex-direction: row;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta__fade-in {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .cta__badge-pulse {
    animation: none;
  }
}

/* footer Section */
/* AWARD-WINNING FOOTER - PATTERN: GRAND-FINALE-ARCHITECTURAL */
.footer {
  position: relative;
  background-color: var(--primary, #003D5C);
  color: var(--neutral-light, #F5F5DC);
  padding: 100px 0 40px;
  overflow: hidden;
  isolation: isolate;
}

/* Full-width Watermark Decoration */
.footer__watermark {
  position: absolute;
  bottom: -5vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(150px, 25vw, 400px);
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.footer__container {
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
  position: relative;
  z-index: 1;
}

/* Main Grid Layout */
.footer__grid {
  display: grid;
  /* 4-column layout: Brand gets 1.5fr, others get 1fr */
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 80px;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Brand Column Styles */
.footer__logo {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 0.9;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.footer__logo-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--accent, #FFB703);
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.footer__description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 245, 220, 0.8);
  max-width: 320px;
  margin-bottom: 2rem;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
  background: var(--accent, #FFB703);
  color: var(--primary, #003D5C);
  transform: translateY(-3px);
  border-color: var(--accent, #FFB703);
}

/* Navigation Headings */
.footer__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

/* Decorative accent line under headings */
.footer__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 20px;
  height: 2px;
  background-color: var(--accent, #FFB703);
}

/* Links */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-family: 'Inter', sans-serif;
  color: rgba(245, 245, 220, 0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer__link:hover {
  color: var(--accent, #FFB703);
  transform: translateX(5px);
}

/* Address & Contact */
.footer__address {
  font-family: 'Inter', sans-serif;
  color: rgba(245, 245, 220, 0.7);
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer__contact-link:hover {
  color: var(--accent, #FFB703);
}

.footer__accent-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent, #FFB703);
  border-radius: 50%;
}

/* Hours List */
.footer__hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__hours-item {
  display: flex;
  justify-content: space-between;
  color: rgba(245, 245, 220, 0.7);
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.25rem;
}

.footer__day {
  font-weight: 500;
  color: #fff;
}

.footer__cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: 1px solid var(--accent, #FFB703);
  color: var(--accent, #FFB703);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  text-align: center;
}

.footer__cta-button:hover {
  background-color: var(--accent, #FFB703);
  color: var(--primary, #003D5C);
}

/* Bottom Bar */
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(245, 245, 220, 0.5);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__legal-link {
  color: rgba(245, 245, 220, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal-link:hover {
  color: #fff;
}

.footer__credits a {
  color: inherit;
  text-decoration: underline;
}

.footer__credits a:hover {
  color: var(--accent, #FFB703);
}

/* Animation Classes */
.footer__fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer__fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer__fade-in:nth-child(2) { transition-delay: 100ms; }
.footer__fade-in:nth-child(3) { transition-delay: 200ms; }
.footer__fade-in:nth-child(4) { transition-delay: 300ms; }