/* ==========================================================================
   COMPONENTS.CSS — Reusable UI components
   Groupe Archipel Design System
   ========================================================================== */

/* ==========================================================================
   NAVBAR — Sticky header with logo, nav links, CTA, and mobile hamburger
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-navbar);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

/* Scrolled state — added via JS after 80px scroll */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-grey-mid);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  padding-inline: var(--section-px);
}

/* Logo */
.navbar__logo {
  flex-shrink: 0;
}

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

/* Nav links — desktop */
.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  letter-spacing: var(--tracking-wide);
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: width var(--duration-normal) var(--ease-out);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--color-primary);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  width: 100%;
}

/* CTA button in navbar */
.navbar__cta {
  flex-shrink: 0;
}

/* Hamburger — mobile only */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: calc(var(--z-navbar) + 1);
  background: var(--color-navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-fast);
}

/* Hamburger open state — X animation */
.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #001B56;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  z-index: 9999;
  padding: var(--space-16) var(--space-8);
  overflow-y: auto;
}

.navbar__mobile-menu.open {
  display: flex;
}

.navbar__mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  transition: color var(--duration-fast);
}

.navbar__mobile-link:hover {
  color: var(--color-peach);
}

/* Responsive: show hamburger, hide desktop links on mobile */
@media (max-width: 900px) {
  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }
}


/* ==========================================================================
   BUTTONS — Primary and Secondary CTA
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}

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

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* White variant for dark backgrounds */
.btn--white {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--white:hover {
  background: var(--color-sand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

/* Large button */
.btn--lg {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
}

/* Button arrow icon */
.btn__arrow {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}


/* ==========================================================================
   SECTION HERO — Full-screen hero with overlay
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--space-32) var(--space-16);
  overflow: hidden;
}

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

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay on hero images */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}

/* Gradient overlay variant */
.hero__overlay--gradient {
  background: linear-gradient(
    180deg,
    rgba(0, 27, 86, 0.85) 0%,
    rgba(0, 27, 86, 0.6) 50%,
    rgba(0, 27, 86, 0.9) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width-sm);
  text-align: center;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--color-sunrise);
  margin-bottom: var(--space-6);
}

.hero__title {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.hero__title em {
  font-style: normal;
  color: var(--color-sunrise);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-10);
  max-width: 55ch;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Smaller hero for sub-pages */
.hero--short {
  min-height: 60vh;
  padding-block: var(--space-24) var(--space-12);
}

@media (max-width: 600px) {
  .hero {
    min-height: 85vh;
    padding-block: var(--space-24) var(--space-12);
  }

  .hero--short {
    min-height: 50vh;
  }

  .hero__title {
    font-size: clamp(1.6rem, 4.5vw + 0.8rem, 2.4rem);
  }
}


/* ==========================================================================
   STATS COUNTER — Key figures in grid
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stats__item {
  padding: var(--space-8) var(--space-4);
}

.stats__number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--fw-heavy);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

/* Navy background variant */
.bg-navy .stats__number {
  color: var(--color-orange);
}

.stats__suffix {
  font-size: var(--text-3xl);
}

.stats__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-grey);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

.bg-navy .stats__label {
  color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .stats__item {
    padding: var(--space-4);
  }
}


/* ==========================================================================
   VALUE CARD — Icon + title + text
   ========================================================================== */

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

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

.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-sand);
  margin-bottom: var(--space-5);
  font-size: 1.5rem;
}

.value-card__icon img {
  width: 28px;
  height: 28px;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.value-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-normal);
}


/* ==========================================================================
   CARD CABINET — Logo + name + external link
   ========================================================================== */

.card-cabinet {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              background var(--duration-normal) var(--ease-out);
}

.card-cabinet:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
  background: var(--color-sand);
}

.card-cabinet__logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.card-cabinet__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  text-align: center;
}

.card-cabinet__region {
  font-size: var(--text-xs);
  color: var(--color-grey);
  font-weight: var(--fw-medium);
  text-align: center;
}

.card-cabinet__link {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}


/* ==========================================================================
   LOGO CAROUSEL — Infinite scrolling logos via CSS animation
   ========================================================================== */

.logo-carousel {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-8);
  /* Fade edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.logo-carousel__track {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  width: max-content;
  animation: carousel-scroll 30s linear infinite;
}

.logo-carousel__track:hover {
  animation-play-state: paused;
}

.logo-carousel__item {
  flex-shrink: 0;
  height: 48px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity var(--duration-normal), filter var(--duration-normal);
}

.logo-carousel__item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ==========================================================================
   FORM CONTACT — Name, email, message, honeypot, submit
   ========================================================================== */

.form-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 600px;
}

.form-contact__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-contact__label {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
}

.form-contact__input,
.form-contact__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border: 1.5px solid var(--color-grey-mid);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.form-contact__input:focus,
.form-contact__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 73, 255, 0.12);
}

.form-contact__input::placeholder,
.form-contact__textarea::placeholder {
  color: var(--color-grey);
}

.form-contact__textarea {
  min-height: 140px;
  resize: vertical;
}

/* Select dropdown */
.form-contact__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  cursor: pointer;
}

.bg-navy .form-contact__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
}

/* Honeypot — hidden from humans, visible to bots */
.form-contact__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  tab-index: -1;
}

/* Success message after submit */
.form-contact__success {
  display: none;
  padding: var(--space-4) var(--space-6);
  background: var(--color-sand);
  border: 1px solid var(--color-orange-light);
  border-radius: var(--radius-md);
  color: var(--color-navy);
  font-weight: var(--fw-medium);
  text-align: center;
}

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

/* Dark background variant */
.bg-navy .form-contact__input,
.bg-navy .form-contact__textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.bg-navy .form-contact__input:focus,
.bg-navy .form-contact__textarea:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(0, 73, 255, 0.25);
}

.bg-navy .form-contact__label {
  color: rgba(255, 255, 255, 0.8);
}


/* ==========================================================================
   STEP PROCESS — Timeline: horizontal desktop / vertical mobile
   ========================================================================== */

.step-process {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  position: relative;
}

/* Connecting line behind steps — desktop horizontal */
.step-process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--color-orange-light);
  border-radius: 2px;
  z-index: 0;
}

.step-process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.step-process__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-extrabold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.step-process__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  max-width: 200px;
}

/* Vertical timeline on mobile */
@media (max-width: 768px) {
  .step-process {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-8);
  }

  /* Vertical line */
  .step-process::before {
    top: 28px;
    bottom: 28px;
    left: 27px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .step-process__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: var(--space-5);
  }

  .step-process__desc {
    max-width: none;
  }
}

/* Light variant for dark backgrounds */
.bg-navy .step-process__number {
  background: var(--color-primary);
}

.bg-navy .step-process__title {
  color: var(--color-white);
}

.bg-navy .step-process__desc {
  color: rgba(255, 255, 255, 0.7);
}

.bg-navy .step-process::before {
  background: rgba(255, 255, 255, 0.15);
}


/* ==========================================================================
   VIDEO PLACEHOLDER — 16:9 ratio, dark bg, centered play icon
   ========================================================================== */

.video-placeholder {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.video-placeholder:hover {
  box-shadow: var(--shadow-lg);
}

.video-placeholder__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.video-placeholder:hover .video-placeholder__poster {
  opacity: 0.7;
}

.video-placeholder__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--color-sunrise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-normal) var(--ease-spring),
              background var(--duration-fast),
              opacity 0.3s ease;
  z-index: 2;
}

.video-placeholder:hover .video-placeholder__play {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Iframe inline — fills the 16:9 container exactly */
.video-placeholder__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  z-index: 3;
}

/* Playing state — subtle lift, no cursor */
.video-placeholder--playing {
  cursor: default;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  transition: box-shadow 0.4s var(--ease-out);
}

/* Play triangle */
.video-placeholder__play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--color-white);
  margin-left: 3px;
}


/* ==========================================================================
   TESTIMONIAL CARD — Photo + quote + name/role
   ========================================================================== */

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

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

/* Quote mark */
.testimonial-card__quote {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: var(--leading-normal);
  font-style: italic;
  position: relative;
  padding-left: var(--space-6);
}

.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  font-style: normal;
  line-height: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-primary), var(--color-navy));
}

/* Initials placeholder when no photo */
.testimonial-card__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-grey);
}


/* ==========================================================================
   FOOTER — 3 columns: logo/desc | links | contact
   ========================================================================== */

.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding-block: var(--space-16) var(--space-8);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.footer__brand-logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--leading-normal);
  max-width: 40ch;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--duration-fast);
}

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

/* Footer bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--section-px);
  padding-top: var(--space-8);
  margin-top: var(--space-12);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer__socials {
  display: flex;
  gap: var(--space-4);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  transition: background var(--duration-fast), color var(--duration-fast);
}

.footer__social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}


/* ==========================================================================
   SERVICE CARD — Used on Services page for missions / client types
   ========================================================================== */

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-grey-mid);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal);
}

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

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-sand);
  margin-bottom: var(--space-5);
  font-size: 1.3rem;
}

.service-card__icon img {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-extrabold);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.service-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-normal);
}


/* ==========================================================================
   MAP CONTAINER — For embedded Google Maps
   ========================================================================== */

.map-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 600px) {
  .map-container iframe {
    height: 300px;
  }
}


