/* ============================================
   PET CARGO — Global Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --navy-primary: #3D5A80;
  --navy-dark: #2B3E55;
  --coral: #E8505B;
  --coral-hover: #D43D48;
  --white: #FFFFFF;
  --off-white: #F7F7F7;
  --light-gray: #F0F0F0;
  --gray-200: #E5E5E5;
  --gray-400: #999999;
  --gray-600: #666666;
  --gray-800: #333333;
  --text-dark: #1A1A1A;
  --text-body: #444444;
  --green-whatsapp: #25D366;
  --green-whatsapp-hover: #1EBE5D;
  --overlay-dark: rgba(43, 62, 85, 0.75);
  --overlay-light: rgba(43, 62, 85, 0.55);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1140px;
  --container-padding: 0 24px;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 30px rgba(0,0,0,0.12);

  /* Transitions */
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol { list-style: none; }

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-coral { color: var(--coral); }
.text-navy { color: var(--navy-primary); }
.bg-white { background: var(--white); }
.bg-off-white {
  background: var(--off-white) url('/assets/images/backgrounds/paw-gray.webp') center/cover no-repeat;
  background-attachment: fixed;
}
.bg-light { background: var(--light-gray); }
.bg-navy { background: var(--navy-primary); }
.bg-navy-dark { background: var(--navy-dark); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar__logo .pet {
  color: var(--coral);
}

.navbar__logo .cargo {
  color: var(--navy-primary);
}

/* Paw print in the O of CARGO */
.navbar__logo .paw-o {
  position: relative;
  display: inline-block;
}

.navbar__logo .paw-o::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

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

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.navbar__links a:hover {
  color: var(--coral);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__social {
  font-size: 1.1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.navbar__social:hover {
  color: var(--coral);
}

.navbar__social::after {
  display: none !important;
}

.navbar__cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}

.navbar__cta:hover {
  background: var(--coral-hover) !important;
}

.navbar__cta::after {
  display: none !important;
}

/* Services Dropdown */
.services-dropdown {
  position: relative;
}

.services-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.services-dropdown > a > .fa-chevron-down {
  font-size: 0.6rem;
  transition: var(--transition);
}

.services-dropdown:hover > a > .fa-chevron-down {
  transform: rotate(180deg);
}

.services-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin-top: 12px;
  z-index: 100;
}

.services-dropdown:hover .services-dropdown__menu {
  opacity: 1;
  visibility: visible;
  margin-top: 4px;
}

.services-dropdown__menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-body);
  transition: var(--transition);
}

.services-dropdown__menu a:hover {
  background: var(--off-white);
  color: var(--coral);
}

.services-dropdown__menu a::after {
  display: none !important;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 24px;
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
}

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

.mobile-nav a.mobile-cta {
  background: var(--coral);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-pill);
  margin-top: 12px;
  padding: 14px;
  border-bottom: none;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

/* Video Hero */
.hero--video .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(43,62,85,0.92) 0%, rgba(43,62,85,0.85) 35%, rgba(43,62,85,0.4) 55%, transparent 70%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
}

.hero--video .hero__content {
  width: 100%;
  max-width: var(--container-width);
  text-align: left;
  align-items: flex-start;
}

.hero--video .hero__title,
.hero--video .hero__subtitle {
  max-width: 520px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 440px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.3);
}

.hero__subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn--coral:hover {
  background: var(--coral-hover);
  border-color: var(--coral-hover);
  transform: translateY(-1px);
}

.btn--coral-outline {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}

.btn--coral-outline:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}

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

.btn--white-outline:hover {
  background: var(--white);
  color: var(--navy-primary);
  transform: translateY(-1px);
}

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

.btn--navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: transparent;
  color: var(--green-whatsapp);
  border-color: var(--green-whatsapp);
}

.btn--whatsapp:hover {
  background: var(--green-whatsapp);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.section {
  padding: var(--section-padding);
}

.section--sm {
  padding: 50px 0;
}

/* About / Intro block with image + text + IPATA */
.intro-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.intro-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.intro-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-block__text h2 {
  margin-bottom: 16px;
}

.intro-block__text h3 {
  margin-bottom: 12px;
}

.intro-block__text p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ipata-badge {
  margin-top: 24px;
  max-width: 140px;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: left;
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card__icon--coral { background: rgba(232,80,91,0.12); color: var(--coral); }
.service-card__icon--navy { background: rgba(61,90,128,0.12); color: var(--navy-primary); }
.service-card__icon--blue { background: rgba(59,130,246,0.12); color: #3B82F6; }

.service-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card .btn {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* ============================================
   PROCESS STEPS (Cómo trabajamos)
   ============================================ */
.steps-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin: 40px 0;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-item__number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  max-width: 260px;
  margin: 0 auto;
}

/* Connector line between steps */
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -16px;
  width: calc(100% - 40px);
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
  left: calc(50% + 24px);
}

/* ============================================
   ICON GRID (Organization steps, includes)
   ============================================ */
/* --- Detail page large icon grid (service detail pages) --- */
.detail-icon-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 48px 0 16px;
}

.detail-icon-item {
  text-align: center;
  max-width: 150px;
  flex: 0 0 auto;
}

.detail-icon-item__box {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 2rem;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 4px 16px rgba(232,80,91,0.18);
  transition: transform 0.25s ease;
}

.detail-icon-item__box--navy {
  background: var(--navy-primary);
  box-shadow: 0 4px 16px rgba(61,90,128,0.18);
}

.detail-icon-item__box:hover {
  transform: translateY(-3px);
}

.detail-icon-item__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

/* --- Legacy small icon grid (keep for other pages) --- */
.icon-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 36px 0;
}

.icon-item {
  text-align: center;
  max-width: 160px;
}

.icon-item__circle {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.5rem;
}

.icon-item__circle--coral { background: rgba(232,80,91,0.12); color: var(--coral); }
.icon-item__circle--navy { background: rgba(61,90,128,0.12); color: var(--navy-primary); }
.icon-item__circle--blue { background: rgba(59,130,246,0.12); color: #3B82F6; }

.icon-item p {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ============================================
   DARK INFO SECTION — Split image+navy with fade
   ============================================ */
.info-split {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--navy-primary);
}

.info-split__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  min-height: 340px;
}

.info-split__text {
  flex: 0 0 50%;
  padding: 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.info-split__text h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.info-split__text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-split__text ul li {
  padding: 7px 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  padding-left: 18px;
  position: relative;
}

.info-split__text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.info-split__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
}

.info-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient fade from navy into image */
.info-split__image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--navy-primary) 0%, rgba(61,90,128,0.45) 50%, rgba(61,90,128,0.10) 100%);
}

/* Legacy fallback for pages still using .info-dark */
.info-dark {
  background: var(--navy-primary);
  color: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  margin: 48px 0;
}

.info-dark h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.info-dark ul {
  list-style: none;
}

.info-dark ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding-left: 16px;
  position: relative;
}

.info-dark ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* ============================================
   PHOTO GRID
   ============================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-grid__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

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

.testimonial-card {
  text-align: center;
  padding: 20px;
}

.testimonial-card__photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto 16px;
  position: relative;
}

.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__photo .heart-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: var(--coral);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  border: 3px solid var(--white);
}

.testimonial-card blockquote {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

/* ============================================
   MILITARY BANNER
   ============================================ */
.military-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.military-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.military-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43,62,85,0.85) 0%, rgba(43,62,85,0.4) 100%);
}

.military-banner__content {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 500px;
}

.military-banner__content h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 12px;
}

.military-banner__content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 72px 0;
  text-align: center;
}

.cta-section h2 {
  font-style: italic;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--gray-600);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   "POR QUE ELEGIR" / Feature box
   ============================================ */
.why-section {
  background: var(--coral) url('/assets/images/backgrounds/paw-coral.webp') center/cover no-repeat;
  background-attachment: fixed;
  padding: 64px 0;
}

.why-box {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-box__title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-style: italic;
  line-height: 1.2;
}

.why-box__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-box__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

.why-box__item .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--coral);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  margin-top: 2px;
}

/* ============================================
   ALSO DO / Additional services grid
   ============================================ */
.also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.also-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.also-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
}

.also-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.also-card p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============================================
   PROCESS CARDS (Cómo trabajamos - 6 steps)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.process-card__image {
  height: 200px;
  overflow: hidden;
}

.process-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-card__body {
  padding: 24px;
}

.process-card__body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.process-card__body p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   RELATED SERVICES
   ============================================ */
.related-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.related-section__text h3 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.related-section__text ul li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

.related-section__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.related-section__images img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* ============================================
   BOTTOM CTA — Full-width image bg + coral card
   ============================================ */
.bottom-cta {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.bottom-cta__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
}

/* Subtle darkening for readability */
.bottom-cta__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.20);
}

.bottom-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 480px;
}

.bottom-cta__content {
  background: var(--coral);
  padding: 44px 40px;
  max-width: 440px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.bottom-cta__content h2,
.bottom-cta__content h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 14px;
  line-height: 1.35;
}

.bottom-cta__content p {
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.bottom-cta__content .btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* White outline buttons inside coral CTA */
.bottom-cta__content .btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 600;
}

.bottom-cta__content .btn--white-outline:hover {
  background: var(--white);
  color: var(--coral);
}

.bottom-cta__content .btn--white-solid {
  background: var(--white);
  color: var(--coral);
  border: 2px solid var(--white);
  font-weight: 600;
}

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

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  background: var(--navy-primary);
  padding: 72px 0;
}

.contact-form-section h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form-section .lead {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.contact-form {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.contact-form textarea {
  border-radius: var(--radius-md);
  min-height: 120px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-400);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(232,80,91,0.3);
}

.contact-form .btn {
  align-self: flex-start;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand .navbar__logo {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.footer__brand .footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer__brand .airline-logo {
  max-width: 120px;
  margin-top: 12px;
  opacity: 0.8;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
}

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

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  padding: 0;
}

.footer__social a:hover {
  background: var(--coral);
}

.footer__ipata-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.footer__ipata-badge i {
  color: var(--coral);
  font-size: 1rem;
}

.footer__ipata-badge span {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

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

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

/* ============================================
   CARGO SHIPPING PAGE
   ============================================ */

/* Intro section - image left, text right, full width */
.cargo-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.cargo-intro__image {
  position: relative;
  overflow: hidden;
}

.cargo-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cargo-intro__text {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cargo-intro__text h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.cargo-intro__text p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.cargo-intro__text .ipata-logo {
  margin-top: 16px;
  max-width: 120px;
  opacity: 0.7;
}

/* How transport is organized - white bg, centered red icons */
.cargo-steps {
  background: var(--white);
  padding: 64px 0;
}

.cargo-steps h2 {
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 8px;
}

.cargo-steps .subtitle {
  color: var(--gray-600);
  margin-bottom: 48px;
}

.cargo-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.cargo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cargo-step__icon {
  width: 64px;
  height: 64px;
  background: var(--coral);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.cargo-step h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  max-width: 140px;
}

/* What the service includes - gray bg */
.cargo-includes {
  background: var(--off-white);
  padding: 64px 0;
}

.cargo-includes h2 {
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 8px;
}

.cargo-includes .subtitle {
  color: var(--gray-600);
  margin-bottom: 48px;
}

.cargo-includes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.cargo-include {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cargo-include__icon {
  width: 64px;
  height: 64px;
  background: var(--coral);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.cargo-include h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.cargo-include p {
  font-size: 0.85rem;
  color: var(--gray-600);
  max-width: 260px;
}

.cargo-note {
  text-align: center;
  color: var(--gray-600);
  font-style: italic;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* Important notes - dark navy box */
.cargo-important {
  background: var(--navy-dark);
  padding: 48px;
  border-radius: var(--radius-md);
  color: var(--white);
}

.cargo-important h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 20px;
}

.cargo-important ul {
  list-style: none;
}

.cargo-important ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.cargo-important ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}

/* Related services - overlapping images */
.cargo-related {
  padding: 64px 0;
}

.cargo-related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cargo-related__text h2 {
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 8px;
}

.cargo-related__text .subtitle {
  color: var(--gray-600);
  margin-bottom: 24px;
}

.cargo-related__text ul li {
  padding: 6px 0;
  color: var(--text-body);
  font-size: 0.95rem;
}

.cargo-related__images {
  position: relative;
  height: 340px;
}

.cargo-related__images img {
  border-radius: var(--radius-md);
  object-fit: cover;
  position: absolute;
  box-shadow: var(--shadow-card);
}

.cargo-related__images img:first-child {
  width: 58%;
  height: 220px;
  top: 0;
  left: 0;
  z-index: 2;
}

.cargo-related__images img:last-child {
  width: 58%;
  height: 220px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

/* Contact page channels */
.contact-channels {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
}

.contact-channel:hover {
  color: var(--coral);
}

.contact-channel i {
  font-size: 2rem;
  color: var(--coral);
}

.contact-channel span {
  font-size: 0.85rem;
  font-weight: 500;
}

.contact-channel::after {
  display: none !important;
}

.contact-form-bg {
  background: var(--off-white);
  padding: 48px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    min-height: 400px;
  }

  .hero__overlay {
    background: linear-gradient(to right, rgba(43,62,85,0.92) 0%, rgba(43,62,85,0.8) 50%, rgba(43,62,85,0.5) 75%, transparent 100%);
  }

  .hero__content {
    max-width: 400px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .intro-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-grid,
  .testimonials-grid,
  .process-grid,
  .also-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .related-section {
    grid-template-columns: 1fr;
  }

  .bottom-cta {
    min-height: 400px;
  }

  .bottom-cta__inner {
    justify-content: center;
    min-height: 400px;
    padding: 32px 24px;
  }

  .bottom-cta__content {
    max-width: 90%;
  }

  .info-split__inner {
    flex-direction: column;
    min-height: auto;
  }

  .info-split__text {
    flex: none;
    padding: 40px 0;
  }

  .info-split__image {
    position: relative;
    width: 100%;
    height: 220px;
  }

  .info-split__image::before {
    background: linear-gradient(180deg, var(--navy-primary) 0%, rgba(61,90,128,0.3) 100%);
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .icon-grid {
    gap: 24px;
  }

  .cargo-intro {
    grid-template-columns: 1fr;
  }
  .cargo-intro__image {
    max-height: 350px;
  }
  .cargo-steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cargo-related__grid {
    grid-template-columns: 1fr;
  }
  .cargo-related__images {
    height: 300px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding: 48px 0;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    min-height: 360px;
  }

  .hero__overlay {
    background: linear-gradient(to bottom, rgba(43,62,85,0.88) 0%, rgba(43,62,85,0.75) 50%, rgba(43,62,85,0.55) 100%);
  }

  .hero .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero__content,
  .hero--video .hero__content {
    max-width: 90%;
    padding: 60px 0 40px;
  }

  .hero__title {
    font-size: 1.6rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  .hero__bg {
    background-position: center top;
  }

  .services-grid,
  .testimonials-grid,
  .process-grid,
  .also-grid {
    grid-template-columns: 1fr;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-dark {
    padding: 32px 24px;
  }

  .why-box {
    padding: 32px 24px;
  }

  .military-banner__content {
    padding: 32px 24px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px 16px;
  }

  .icon-grid {
    gap: 20px;
  }

  .icon-item {
    max-width: 130px;
  }

  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .team-carousel__track {
    scroll-snap-type: x mandatory;
  }

  .team-member {
    min-width: 200px;
  }

  .services-grid-image {
    grid-template-columns: 1fr;
  }

  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cargo-steps__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .cargo-includes__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cargo-related__images {
    height: 260px;
  }
  .cargo-related__images img:first-child {
    width: 58%;
    height: 180px;
  }
  .cargo-related__images img:last-child {
    width: 58%;
    height: 180px;
  }
  .cargo-important {
    padding: 32px 24px;
  }
  .contact-channels {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .contact-channel i {
    font-size: 1.6rem;
  }

  .contact-channel span {
    font-size: 0.8rem;
  }

  /* Center standalone buttons in sections */
  .section.bg-off-white .container {
    text-align: center;
  }

  .services-dropdown__menu {
    left: 0;
    transform: none;
  }

  /* Disable parallax on mobile (iOS doesn't support background-attachment: fixed) */
  .bg-off-white,
  .why-section {
    background-attachment: scroll;
  }

  /* Mobile nav services dropdown: static, click-toggled */
  .mobile-nav .services-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: var(--off-white);
    border-radius: 0;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile-nav .services-dropdown.open .services-dropdown__menu {
    max-height: 300px;
  }

  .mobile-nav .services-dropdown > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
  }
}

/* ============================================
   NEW HOMEPAGE SECTIONS
   ============================================ */

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown__current {
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.lang-dropdown__current:hover {
  color: var(--coral);
}

.lang-dropdown__current i {
  font-size: 0.7rem;
  transition: var(--transition);
}

.lang-dropdown.open .lang-dropdown__current i {
  transform: rotate(180deg);
}

.lang-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 100;
  min-width: 160px;
  margin-top: 8px;
}

.lang-dropdown.open .lang-dropdown__menu {
  display: block;
}

.lang-dropdown__item {
  display: block;
  padding: 12px 16px;
  color: var(--text-dark);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.lang-dropdown__item:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.lang-dropdown__item:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.lang-dropdown__item:hover:not(.lang-dropdown__item--disabled):not(.lang-dropdown__item--active) {
  background: var(--light-gray);
  color: var(--coral);
}

.lang-dropdown__item--active {
  background: rgba(232, 80, 91, 0.1);
  color: var(--coral);
  font-weight: 600;
}

.lang-dropdown__item--disabled {
  color: var(--gray-400);
  cursor: not-allowed;
  opacity: 0.6;
}

.lang-dropdown__item--disabled:hover {
  background: transparent;
  color: var(--gray-400);
}

.lang-dropdown--mobile {
  width: 100%;
  margin: 12px 0;
}

.lang-dropdown--mobile .lang-dropdown__current {
  width: 100%;
  justify-content: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
}

.lang-dropdown--mobile .lang-dropdown__menu {
  position: static;
  display: none;
  border: none;
  box-shadow: none;
  background: transparent;
  margin-top: 0;
}

.lang-dropdown--mobile.open .lang-dropdown__menu {
  display: block;
}

.lang-dropdown--mobile .lang-dropdown__item {
  padding: 8px 16px;
  border-bottom: 1px solid var(--light-gray);
  background: var(--off-white);
}

.lang-dropdown--mobile .lang-dropdown__item:last-child {
  border-bottom: none;
}

/* Stats/Credentials Bar */
.stats-bar {
  background: var(--off-white);
  padding: 48px 0;
  border-bottom: 1px solid var(--light-gray);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}

.stats-bar__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-bar__ipata {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.stats-bar__ipata:hover {
  box-shadow: 0 4px 12px rgba(232, 80, 91, 0.2);
  transform: translateY(-2px);
}

.stats-bar__ipata-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--coral);
  line-height: 1.2;
  text-align: center;
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 4px;
}

.stats-bar__text {
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.4;
}

.stats-bar__icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

/* Team Section */
.team-section {
  background: var(--navy-primary);
}

.team-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.team-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0;
  /* Hide scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.team-carousel__track::-webkit-scrollbar {
  height: 4px;
}

.team-carousel__track::-webkit-scrollbar-track {
  background: transparent;
}

.team-carousel__track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

.team-carousel__track::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.5);
}

.team-member {
  flex: 0 0 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

.team-member__photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto 16px;
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.team-member__years {
  font-size: 0.8rem;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-member__quote {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.5;
}

/* Service Image Cards */
.services-grid-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-image-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-image-card:hover .service-image-card__img img {
  transform: scale(1.05);
}

.service-image-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--light-gray);
}

.service-image-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-image-card__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-image-card__body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-image-card__body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.6;
}

.service-image-card__body .btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.85rem;
}

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

.video-testimonial {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--light-gray);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.video-testimonial:hover {
  box-shadow: var(--shadow-card-hover);
}

.video-testimonial img,
.video-testimonial video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.video-testimonial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
}

.video-testimonial:hover .video-testimonial__overlay {
  opacity: 1;
}

.play-button {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--coral);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.play-button:hover {
  background: var(--coral-hover);
  transform: scale(1.1);
}

.video-testimonial__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
  padding: 24px;
  color: var(--white);
  z-index: 1;
}

.video-testimonial__caption p {
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.95);
}

.video-testimonial__caption cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  color: var(--white);
}

/* Military Section - Full Width */
.military-section-full {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

.military-section-full__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.military-section-full__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43,62,85,0.85) 0%, rgba(43,62,85,0.4) 100%);
}

.military-section-full__content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
}

.military-section-full__content h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 12px;
}

.military-section-full__content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Responsive adjustments for new sections */
@media (max-width: 991px) {
  .stats-bar__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .stats-bar__item:nth-child(4),
  .stats-bar__item:nth-child(5) {
    grid-column: span 1;
  }

  .stats-bar__number {
    font-size: 2rem;
  }

  .services-grid-image {
    grid-template-columns: 1fr 1fr;
  }

  .video-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .military-section-full {
    min-height: 280px;
  }

  .military-section-full__content {
    padding: 32px 0;
  }
}

@media (max-width: 767px) {
  .stats-bar {
    padding: 36px 0;
  }

  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stats-bar__number {
    font-size: 1.8rem;
  }

  .stats-bar__text {
    font-size: 0.8rem;
  }

  .stats-bar__ipata {
    width: 70px;
    height: 70px;
  }

  .team-carousel__track {
    gap: 16px;
  }

  .team-member {
    flex: 0 0 200px;
  }

  .services-grid-image {
    grid-template-columns: 1fr;
  }

  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .military-section-full {
    min-height: 240px;
  }

  .military-section-full__content {
    padding: 24px 0;
  }

  .lang-dropdown {
    width: 100%;
  }
}

/* ==========================================
   SERVICES PAGE - Additional Styles
   ========================================== */

/* Short Hero variant (for inner pages) */
.hero--short {
  min-height: 340px;
}

.hero--short .hero__content {
  padding-top: 100px;
}

/* "Also Do" Section - Dark navy background, split layout */
.also-do-wrapper {
  background: var(--navy-primary);
  padding: 72px 0;
}

.also-do-section {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.also-do-section__left {
  flex: 0 0 280px;
}

.also-do-section__left h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.also-do-section__left p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.also-do-section__right {
  flex: 1;
}

/* Also Do Grid - 3x2 cards */
.also-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.also-do-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}

.also-do-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

/* Highlighted cards variant (teal accent) */
.also-do-card--highlight {
  background: rgba(99,179,186,0.18);
  border-color: rgba(99,179,186,0.25);
}

.also-do-card--highlight:hover {
  background: rgba(99,179,186,0.28);
}

.also-do-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232,80,91,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.1rem;
  color: var(--coral);
}

.also-do-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.4;
}

.also-do-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* Service Card icon color variant */
.service-card__icon--blue {
  background-color: rgba(61,90,128,0.15);
  color: #4A90D9;
}

/* Responsive - Also Do */
@media (max-width: 991px) {
  .also-do-section {
    flex-direction: column;
    gap: 24px;
  }

  .also-do-section__left {
    flex: none;
    width: 100%;
  }

  .also-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .also-do-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .also-do-card {
    padding: 16px 12px;
  }

  .hero--short {
    min-height: 280px;
  }

  .hero--short .hero__content {
    padding-top: 80px;
  }
}
