/* ===========================
   ROOT & RESET
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #3A9DD4;
  --blue-dark:  #2380B5;
  --blue-light: #EBF6FD;
  --navy:       #1B3A5C;
  --navy-dark:  #112840;
  --gold:       #F0A500;
  --white:      #ffffff;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --radius:     14px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --transition: 0.25s ease;
  --focus-ring: 0 0 0 3px rgba(58,157,212,.55);
}

html { scroll-behavior: smooth; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
  .hero-card { animation: none !important; }
}

/* ===========================
   ACCESSIBILITY UTILITIES
=========================== */

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

/* Skip navigation link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--blue);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* Visible focus ring for keyboard navigation */
:focus { outline: none; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
  box-shadow: var(--focus-ring);
}

/* Ensure interactive elements meet 44px touch target */
.btn { min-height: 44px; min-width: 44px; }
.hamburger { min-height: 44px; min-width: 44px; align-items: center; justify-content: center; }
.nav-dropdown-toggle { min-height: 44px; }
.dropdown-menu a { min-height: 44px; display: flex; align-items: center; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===========================
   UTILITY
=========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label.light {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; font-family: 'Playfair Display', serif; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }

.highlight { color: var(--blue); }

p { color: var(--gray-600); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(58,157,212,.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(58,157,212,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-nav {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 10px 22px;
  font-size: 14px;
}
.btn-nav:hover { background: var(--blue); color: var(--white); }

.btn-full { width: 100%; }

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  padding: 12px 0;
}

.navbar .logo-asr { color: var(--blue); }
.navbar .logo-tagline { color: var(--navy); }
.navbar .nav-links a { color: var(--gray-800); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-asr {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: color var(--transition);
}

.logo-tagline {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
  border-left: 2px solid rgba(255,255,255,.4);
  padding-left: 10px;
  transition: color var(--transition);
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

/* ===========================
   DROPDOWN
=========================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
  font-family: inherit;
  padding: 0;
  transition: color var(--transition);
}

.nav-dropdown-toggle:hover { color: var(--blue); }

.navbar.scrolled .nav-dropdown-toggle { color: var(--gray-800); }

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

.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.08);
  border: 1px solid var(--gray-200);
  min-width: 260px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
}

.dropdown-menu a {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu a:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 100px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .22;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,40,64,.97) 0%, rgba(27,58,92,.92) 40%, rgba(29,90,138,.82) 70%, rgba(58,157,212,.7) 100%);
  pointer-events: none;
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

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

.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}

/* Hero card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.card-inner { padding: 36px 32px; }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card-inner h3 { color: var(--navy); margin-bottom: 6px; }
.card-inner > p { color: var(--gray-600); font-size: 14px; margin-bottom: 24px; }

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  color: var(--gray-800);
}

.hero-form input:focus { border-color: var(--blue); }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 10px;
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
}

/* ===========================
   ABOUT
=========================== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap { position: relative; }

.about-photo {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.about-photo:hover img { transform: scale(1.03); }

.about-badge-card {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-num {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.badge-txt {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  text-align: center;
  margin-top: 4px;
}

.about-text h2 { margin-bottom: 16px; }
.about-text > p { margin-bottom: 14px; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 32px;
}

.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pillar-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pillar strong { display: block; color: var(--gray-800); margin-bottom: 2px; }
.pillar p { font-size: 14px; margin: 0; }

/* ===========================
   MISSION
=========================== */
.mission {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 70px 0;
}

.mission-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 50px;
  backdrop-filter: blur(12px);
}

.mission-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
}

.mission-text h2 { color: var(--white); margin-bottom: 14px; }
.mission-text p { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.7; }

/* ===========================
   PROCESS
=========================== */
.process { background: var(--gray-50); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  opacity: 0;
  transition: opacity var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-card:hover::before { opacity: 1; }

.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}

.step-card h3 { color: var(--navy); margin-bottom: 10px; }

.step-connector {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--blue);
  opacity: .3;
  display: none;
}

.process-cta {
  text-align: center;
  margin-top: 50px;
}

/* ===========================
   PHOTO STRIP
=========================== */
.photo-strip { overflow: hidden; }

.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 340px;
}

.strip-photo {
  position: relative;
  overflow: hidden;
}

.strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.strip-photo:hover img { transform: scale(1.06); }

.strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,40,64,.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.strip-photo:hover .strip-overlay { opacity: 1; }

.strip-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ===========================
   WHY CHOOSE US
=========================== */
.why-us { background: var(--white); }

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

.benefit-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: default;
}

.benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card h3 { color: var(--navy); margin-bottom: 10px; }
.benefit-card p { font-size: 14px; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials { background: var(--gray-50); }

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

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.benefits-slider {
  max-width: 980px;
}

.testimonials-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonials-grid.is-slider {
  display: flex;
  gap: 0;
  transition: transform 0.45s ease;
  will-change: transform;
}

.benefits-grid.is-slider {
  display: flex;
  gap: 0;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonials-grid.is-slider .testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
}

.benefits-grid.is-slider .benefit-card {
  flex: 0 0 100%;
  max-width: 100%;
}

.testimonial-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.testimonial-slider-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.testimonial-slider-btn:active {
  transform: translateY(-50%) scale(0.98);
}

.testimonial-slider-btn.prev { left: -22px; }
.testimonial-slider-btn.next { right: -22px; }

.testimonial-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.testimonial-dot.active {
  background: var(--blue);
  transform: scale(1.15);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.testimonial-card.featured .stars { color: var(--gold); }
.testimonial-card.featured p { color: rgba(255,255,255,.85); }
.testimonial-card.featured strong { color: var(--white); }
.testimonial-card.featured span { color: rgba(255,255,255,.5); }
.testimonial-card.featured .author-avatar {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card > p {
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--gray-400);
}

/* ===========================
   CONTACT
=========================== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; font-size: 1.02rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
}

.contact-form-wrap {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--gray-800);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58,157,212,.1);
}

.form-group textarea { resize: vertical; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand .logo-asr { color: var(--blue); text-shadow: none; }
.footer-brand .logo-tagline { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.2); }

.footer-brand p {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  color: rgba(255,255,255,.4);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--blue); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  transition: background .25s, color .25s, border-color .25s, transform .2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social svg {
  display: block;
  flex-shrink: 0;
}

.footer-affiliations {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}

.footer-affiliations .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-affiliations-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}

.footer-affiliations-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-affiliations-logos img {
  height: 40px;
  width: auto;
  opacity: .75;
  filter: brightness(0) invert(1);
  transition: opacity .25s, transform .2s;
}

.footer-affiliations-logos img:nth-child(1),
.footer-affiliations-logos img:nth-child(3),
.footer-affiliations-logos img:nth-child(4) {
  filter: brightness(1.3);
  background: rgba(0,0,0,.85);
  border-radius: 8px;
  padding: 5px 10px;
  height: 48px;
}

.footer-affiliations-logos img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ===========================
   SERVICE PAGES
=========================== */
.page-hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
  background: var(--navy-dark);
}

.page-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,40,64,.97) 0%, rgba(27,58,92,.90) 50%, rgba(29,90,138,.80) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero-content .hero-badge { margin-bottom: 18px; }

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

.page-hero-content p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 620px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}

.hero-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: var(--blue);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpolyline points='1.5,6 4.5,9 10.5,3' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.page-hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.page-hero-wave svg { width: 100%; height: 60px; display: block; }

/* Service overview */
.service-overview {
  padding: 80px 0;
  background: var(--white);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.service-overview-grid.reverse { direction: rtl; }
.service-overview-grid.reverse > * { direction: ltr; }

.service-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-photo:hover img { transform: scale(1.03); }

.service-overview-text h2 { margin-bottom: 14px; }
.service-overview-text > p { margin-bottom: 28px; font-size: 1.02rem; }

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.feature-item strong { display: block; color: var(--navy); font-size: 15px; }
.feature-item p { font-size: 14px; margin: 2px 0 0; }

/* Service cards grid */
.service-cards-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
}

.service-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.service-card p { font-size: 14px; }

/* Page CTA banner */
.page-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.page-cta h2 { color: var(--white); margin-bottom: 14px; }
.page-cta p { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }

.page-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: rgba(255,255,255,.9); }

.breadcrumb-sep {
  color: rgba(255,255,255,.3);
  font-size: 13px;
}

.breadcrumb span {
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

/* Service page responsive */
@media (max-width: 900px) {
  .service-overview-grid,
  .service-overview-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .service-cards-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 0 70px; }
}

/* ===========================
   MODAL
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal { transform: scale(1); }

.modal-icon {
  width: 64px;
  height: 64px;
  background: #ECFDF5;
  border-radius: 50%;
  color: #2ECC71;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal h3 { color: var(--navy); margin-bottom: 10px; }
.modal p { color: var(--gray-600); margin-bottom: 28px; }

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { gap: 40px; grid-template-columns: 1fr 380px; }
}

@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; animation: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .mission-card { flex-direction: column; align-items: center; text-align: center; padding: 36px; }
}

@media (max-width: 960px) {
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr); height: 480px; }
}

@media (max-width: 768px) {
  .navbar,
  .navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(2px);
    z-index: 998;
  }

  .section { padding: 60px 0; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 340px);
    background: var(--white);
    padding: 96px 24px 24px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    border-left: 1px solid var(--gray-200);
    transform: translateX(108%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.2s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .nav-links a { color: var(--gray-800); padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 16px; }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--gray-800);
    background: transparent;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .btn-nav { margin-top: 16px; text-align: center; border-radius: var(--radius); }
  .nav-links .btn-nav {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
    padding: 14px 16px;
    border: none;
    border-bottom: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(35, 128, 181, 0.26);
    transition: none;
  }
  .nav-links .btn-nav:hover,
  .nav-links .btn-nav:focus-visible,
  .nav-links .btn-nav:active {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    transform: none;
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0 10px 24px rgba(35, 128, 181, 0.26);
    outline: none;
  }
  .hamburger {
    display: flex;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    padding: 0;
    background: rgba(17, 40, 64, 0.24);
    border: 1px solid rgba(255,255,255,.35);
    backdrop-filter: blur(8px);
  }
  .hamburger span { width: 20px; }
  .navbar.scrolled .hamburger {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .navbar.scrolled .hamburger span { background: var(--navy); }
  .hamburger.open span { background: var(--navy) !important; }
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr); height: 400px; }
  .nav-dropdown { width: 100%; order: 1; }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800);
    font-size: 16px;
  }
  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus-visible {
    color: var(--gray-800);
    background: transparent;
  }
  .dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    background: var(--gray-50);
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    opacity: 0;
  }
  .nav-dropdown.open .dropdown-menu {
    max-height: 300px;
    opacity: 1;
    pointer-events: all;
  }
  .dropdown-menu::before { display: none; }
  .dropdown-menu a {
    font-size: 15px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
  }
  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    color: var(--gray-600);
    background: transparent;
  }
  .hero { padding: 100px 0 80px; min-height: auto; }
  .hero-text h1 { font-size: 2rem; }
  .trust-inner { gap: 24px; flex-direction: column; align-items: flex-start; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-slider,
  .benefits-slider { padding-bottom: 72px; }
  .testimonial-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 2;
  }
  .testimonial-slider-btn {
    top: auto;
    bottom: 0;
    transform: none;
  }
  .testimonial-slider-btn.prev { left: calc(50% - 84px); }
  .testimonial-slider-btn.next { right: calc(50% - 84px); }
  .testimonial-slider-btn:hover,
  .testimonial-slider-btn:active { transform: none; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .btn { white-space: normal; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .page-cta-btns .btn { width: 100%; }
  .hero-stats { gap: 16px; }
  .mission-card { padding: 28px 22px; }
  .about-badge-card { right: 8px; bottom: 8px; }

  /* Bump paragraph text up on small screens */
  p,
  .hero-sub,
  .service-overview-text > p,
  .pillar p,
  .feature-item p,
  .benefit-card p,
  .service-card p,
  .mission-text p,
  .contact-info > p,
  .footer-brand p,
  .card-inner > p,
  .team-bio p,
  .post-content p {
    font-size: 16px;
    line-height: 1.75;
  }
}
