/* ============================================================
   SOEN Mühendislik — Corporate Website Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Palette */
  --c-primary: #243C8F;
  --c-primary-dark: #1B2E6F;
  --c-primary-light: #2d4aad;
  --c-accent: #4A6CFF;
  --c-accent-soft: rgba(74, 108, 255, .12);
  /* Neutrals */
  --c-text: #111827;
  --c-text-muted: #6B7280;
  --c-border: #E5E7EB;
  --c-bg: #FFFFFF;
  --c-bg-alt: #F7F8FA;
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,.07);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.10);
  --shadow-header: 0 1px 8px rgba(0,0,0,.06);
  /* Layout */
  --container: 1240px;
  --header-h: 80px;
  --header-h-shrink: 64px;
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .3s;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font: inherit; }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .875rem;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus {
  top: 12px;
}

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

/* ---------- Utility ---------- */
.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;
}

/* ---------- Section Shared ---------- */
.section {
  padding: 80px 0;
}
.section__header {
  text-align: center;
  margin-bottom: 48px;
}
.section__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.section__subtitle {
  font-size: 1rem;
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9375rem;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--c-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--c-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  border: 1.5px solid var(--c-primary);
  color: var(--c-primary);
  background: transparent;
}
.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--sm {
  padding: 8px 20px;
  font-size: .875rem;
}
.btn--white {
  background: #fff;
  color: var(--c-primary);
}
.btn--white:hover {
  background: var(--c-bg-alt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--c-bg);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.header--scrolled {
  height: var(--header-h-shrink);
  box-shadow: var(--shadow-header);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.header__logo img {
  height: 64px;
  width: auto;
  transition: height var(--dur) var(--ease);
}
.header--scrolled .header__logo img {
  height: 46px;
}

/* Desktop Nav */
.header__nav { display: flex; align-items: center; gap: 32px; }
.header__nav a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  padding: 4px 0;
  transition: color var(--dur) var(--ease);
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--c-primary);
  transition: width var(--dur) var(--ease);
  border-radius: 1px;
}
.header__nav a:hover,
.header__nav a:focus-visible {
  color: var(--c-primary);
}
.header__nav a:hover::after,
.header__nav a:focus-visible::after {
  width: 100%;
}

/* Header Right */
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__contact-items {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .8125rem;
  color: var(--c-text-muted);
}
.header__contact-items a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur) var(--ease);
}
.header__contact-items a:hover {
  color: var(--c-primary);
}
.header__contact-items svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}

/* Language Switch */
.lang-switch {
  display: flex;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.lang-switch__btn {
  padding: 5px 12px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: all var(--dur) var(--ease);
  background: transparent;
}
.lang-switch__btn.active {
  background: var(--c-primary);
  color: #fff;
}
.lang-switch__btn:hover:not(.active) {
  background: var(--c-bg-alt);
}
.lang-switch__btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: -2px;
}

/* Hamburger */
.header__hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease);
}
.header__hamburger:hover {
  background: var(--c-bg-alt);
}
.header__hamburger:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.header__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.header__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.header__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
  z-index: 999;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header--scrolled ~ .mobile-nav,
.header--scrolled + .mobile-nav {
  top: var(--header-h-shrink);
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.mobile-nav__links a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease);
}
.mobile-nav__links a:hover,
.mobile-nav__links a:focus-visible {
  background: var(--c-bg-alt);
  color: var(--c-primary);
}
.mobile-nav__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--c-bg-alt);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: .875rem;
  color: var(--c-text-muted);
}
.mobile-nav__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav__contact svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.mobile-nav__lang {
  display: flex;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  margin-top: var(--header-h);
  height: calc(100vh - var(--header-h));
  min-height: 480px;
  overflow: hidden;
  background: var(--c-primary-dark);
}
.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform .6s var(--ease);
}
.hero__slide {
  position: relative;
  flex: 0 0 33.3333%;
  height: 100%;
  overflow: hidden;
}
.hero__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Gradient fallback when no image */
.hero__slide--fallback {
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 50%, #3454b4 100%);
}
.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 24, 39, .65) 0%,
    rgba(17, 24, 39, .35) 50%,
    rgba(17, 24, 39, .15) 100%
  );
  z-index: 1;
}

/* Slide Content — directly on image */
.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  padding-left: max(24px, calc((100% - var(--container)) / 2 + 24px));
  padding-right: 40%;
  color: #fff;
}
.hero__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
  letter-spacing: -.02em;
  max-width: 640px;
}
.hero__desc {
  font-size: clamp(.9375rem, 1.3vw, 1.125rem);
  line-height: 1.7;
  opacity: .92;
  margin-bottom: 28px;
  max-width: 520px;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.btn--hero {
  width: fit-content;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

/* Hero Dots */
.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 2px solid rgba(255,255,255,.7);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  padding: 0;
}
.hero__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.hero__dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ============================================================
   ABOUT (Biz Kimiz) — 2 Column
   ============================================================ */
.about {
  padding: 100px 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__left {
  position: relative;
}
.about__accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  border-radius: 2px;
  margin-bottom: 20px;
}
.about__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.about__text {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.about__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.about__stat {
  display: flex;
  flex-direction: column;
}
.about__stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.2;
}
.about__stat-label {
  font-size: .8125rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}
/* About Right — Image */
.about__right {
  position: relative;
}
.about__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.about__image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--c-primary);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__badge-year {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-text {
  font-size: .75rem;
  opacity: .85;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   SERVICES (Faaliyet Alanları)
   ============================================================ */
.services {
  padding: 80px 0;
  background: var(--c-bg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.service-card {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--dur) var(--ease);
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
  transform-origin: left;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent-soft);
  border-radius: var(--radius-md);
  color: var(--c-primary);
}
.service-card__icon svg,
.service-card__icon i {
  width: 32px; height: 32px;
}
.service-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--c-text);
}
.service-card__desc {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.services__more-note {
  text-align: center;
  font-size: .875rem;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}
.services__more-note .badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--c-accent-soft);
  color: var(--c-primary);
  font-weight: 600;
  font-size: .8125rem;
  padding: 4px 12px;
  border-radius: 999px;
}
.services__cta {
  text-align: center;
}

/* ============================================================
   REFERENCES (Referanslar)
   ============================================================ */
.references {
  padding: 80px 0;
}
.references__slider-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -12px;
  padding: 0 12px;
}
.references__track {
  display: flex;
  transition: transform .5s var(--ease);
}
.references__slide {
  flex-shrink: 0;
  padding: 0 12px;
}
.ref-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--dur) var(--ease);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.ref-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary);
}
img.ref-card__logo {
  width: 100%;
  max-width: 200px;
  height: 80px;
  object-fit: contain;
}

/* Ref Slider Controls */
.references__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.references__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  transition: all var(--dur) var(--ease);
  background: var(--c-bg);
}
.references__arrow:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.references__arrow:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.references__arrow svg {
  width: 18px; height: 18px;
}
.references__dots {
  display: flex;
  gap: 8px;
}
.references__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-border);
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  padding: 0;
}
.references__dot.active {
  background: var(--c-primary);
  transform: scale(1.15);
}
.references__dot:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

/* ============================================================
   WHY US (Neden Biz) — Modern Cards
   ============================================================ */
.why-us {
  padding: 80px 0;
  background: var(--c-bg);
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  position: relative;
  padding: 36px 24px 32px;
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-accent-soft);
  line-height: 1;
  pointer-events: none;
  opacity: .7;
}
.why-card__body {
  position: relative;
  z-index: 1;
}
.why-card__icon {
  width: 52px; height: 52px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  border-radius: var(--radius-md);
  color: #fff;
}
.why-card__icon svg,
.why-card__icon i {
  width: 24px; height: 24px;
}
.why-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.why-card__desc {
  font-size: .875rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ============================================================
   FAQ (Sıkça Sorulan Sorular)
   ============================================================ */
.faq {
  padding: 80px 0;
}
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.faq__item[open] {
  border-color: var(--c-primary);
  box-shadow: 0 2px 12px rgba(36, 60, 143, .08);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  transition: color var(--dur) var(--ease);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover {
  color: var(--c-primary);
}
.faq__question:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}
.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-bg-alt);
  transition: all var(--dur) var(--ease);
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--c-text);
  border-radius: 1px;
  transition: transform var(--dur) var(--ease);
}
.faq__icon::before {
  width: 12px; height: 2px;
}
.faq__icon::after {
  width: 2px; height: 12px;
}
.faq__item[open] .faq__icon {
  background: var(--c-primary);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: #fff;
}
.faq__item[open] .faq__icon::after {
  transform: rotate(90deg);
}
.faq__answer {
  padding: 0 24px 20px;
  font-size: .9375rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-text);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand-desc {
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 16px;
  opacity: .85;
}
.footer__logo {
  display: inline-block;
}
.footer__logo img {
  height: 44px;
  width: auto;
}
.footer__heading {
  font-size: .9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: .875rem;
  transition: color var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__links a:hover {
  color: #fff;
}
.footer__links--plain span {
  font-size: .875rem;
  opacity: .85;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer__contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: .7;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer__social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  transition: all var(--dur) var(--ease);
}
.footer__social a:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.footer__social svg {
  width: 16px; height: 16px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: .8125rem;
  opacity: .7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* <= 1024px */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* <= 768px */
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
    --header-h-shrink: 56px;
  }
  .section {
    padding: 56px 0;
  }
  .section__header {
    margin-bottom: 32px;
  }

  /* Header Mobile */
  .header__nav,
  .header__contact-items,
  .header__right .lang-switch {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
  .header__right {
    gap: 8px;
  }

  /* Hero */
  .hero {
    height: calc(100vh - var(--header-h));
    min-height: 360px;
  }
  .hero__content {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero__title {
    font-size: 1.5rem;
    max-width: 100%;
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .about__accent {
    margin: 0 auto 20px;
  }
  .about__stats {
    justify-content: center;
  }
  .about__left .btn {
    margin: 0 auto;
  }
  .about__image {
    height: 300px;
  }

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

/* <= 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero__content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero__title {
    font-size: 1.25rem;
    max-width: 100%;
  }
  .hero__desc {
    font-size: .875rem;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .why-us__grid {
    grid-template-columns: 1fr;
  }
  .hero__dots {
    bottom: 20px;
  }
  .about__stats {
    gap: 20px;
  }
  .about__stat-number {
    font-size: 1.375rem;
  }
}

/* ============================================================
   SCROLL ANIMATIONS (intersectionObserver driven)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ABOUT PAGE — PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  margin-top: var(--header-h);
  height: clamp(280px, 40vh, 420px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--c-primary-dark);
}
.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, .72) 0%,
    rgba(36, 60, 143, .55) 100%
  );
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.page-hero__desc {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  opacity: .9;
  max-width: 560px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,.2);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  margin-bottom: 16px;
  opacity: .85;
}
.breadcrumb a {
  color: rgba(255,255,255,.8);
  transition: color var(--dur) var(--ease);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span[aria-current] {
  color: #fff;
  font-weight: 500;
}

/* ============================================================
   ABOUT PAGE — DETAIL CONTENT
   ============================================================ */
.about-detail {
  padding: 80px 0;
}
.about-detail__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-detail__accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  border-radius: 2px;
  margin-bottom: 20px;
}
.about-detail__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.about-detail__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  max-width: 600px;
}
.about-detail__text p:last-of-type {
  margin-bottom: 0;
}
.about-detail__image-col {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.about-detail__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-detail__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-detail__image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--c-primary);
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* ============================================================
   ABOUT PAGE — VALUES
   ============================================================ */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--c-border);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
  transform-origin: left;
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.value-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent-soft);
  border-radius: var(--radius-md);
  color: var(--c-primary);
}
.value-card__icon svg,
.value-card__icon i {
  width: 28px; height: 28px;
}
.value-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--c-text);
}
.value-card__desc {
  font-size: .9375rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ============================================================
   ABOUT PAGE — PROCESS TIMELINE
   ============================================================ */
.process__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.process__timeline::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-primary), var(--c-accent));
  border-radius: 1px;
}
.process__step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
}
.process__number {
  flex-shrink: 0;
  width: 70px; height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(36, 60, 143, .25);
  z-index: 1;
}
.process__body {
  padding-top: 12px;
}
.process__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
}
.process__desc {
  font-size: .9375rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE — STATS BAR
   ============================================================ */
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-bar__item {
  padding: 32px 16px;
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  transition: all var(--dur) var(--ease);
}
.stats-bar__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.stats-bar__number {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 6px;
}
.stats-bar__label {
  font-size: .875rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

/* Nav active state for sub-pages */
.header__nav a.active,
.header__nav a[aria-current="page"] {
  color: var(--c-primary);
}
.header__nav a.active::after,
.header__nav a[aria-current="page"]::after {
  width: 100%;
}

/* ============================================================
   ABOUT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-detail__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-detail__image-col {
    position: static;
  }
  .about-detail__image {
    height: 280px;
  }
  .about-detail__text p {
    max-width: 100%;
  }
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__timeline::before {
    left: 24px;
  }
  .process__number {
    width: 50px; height: 50px;
    font-size: 1.125rem;
  }
  .process__step {
    gap: 20px;
    padding: 20px 0;
  }
  .page-hero {
    height: clamp(220px, 35vh, 320px);
  }
}
@media (max-width: 480px) {
  .values__grid {
    grid-template-columns: 1fr;
  }
  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .process__timeline::before {
    display: none;
  }
  .process__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 0;
  }
  .process__body {
    padding-top: 0;
  }
}

/* ============================================================
   SERVICES PAGE ADDITIONS
   ============================================================ */

/* ---------- Services Intro ---------- */
.svc-intro {
  padding: 80px 0;
}
.svc-intro__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.svc-intro__accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  border-radius: 2px;
  margin-bottom: 20px;
}
.svc-intro__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.svc-intro__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text-muted);
  margin-bottom: 16px;
  max-width: 560px;
}
.svc-intro__text p:last-of-type {
  margin-bottom: 0;
}
.svc-intro__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.svc-intro__image {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ---------- Service Zigzag Blocks ---------- */
.svc-block {
  padding: 64px 0;
}
.svc-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.svc-block--reverse .svc-block__content {
  order: 2;
}
.svc-block--reverse .svc-block__visual {
  order: 1;
}
.svc-block__title {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 16px;
  letter-spacing: -.01em;
  position: relative;
  padding-left: 16px;
}
.svc-block__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: linear-gradient(180deg, var(--c-primary), var(--c-accent));
  border-radius: 2px;
}
.svc-block__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}
.svc-block__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-block__features li {
  position: relative;
  padding-left: 24px;
  font-size: .9375rem;
  color: var(--c-text);
  line-height: 1.6;
}
.svc-block__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  border-radius: 50%;
}
.svc-block__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--c-primary);
  color: #fff;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  box-shadow: 0 2px 8px rgba(36, 60, 143, .18);
}
.svc-block__btn:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(36, 60, 143, .28);
}
.svc-block__btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.svc-block__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.svc-block__visual img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.svc-block__visual:hover img {
  transform: scale(1.03);
}

/* ---------- Commitment Section ---------- */
.svc-commitment {
  padding: 80px 0;
}
.svc-commitment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-commitment__card {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--c-border);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-commitment__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
  transform-origin: left;
}
.svc-commitment__card:hover::before {
  transform: scaleX(1);
}
.svc-commitment__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-commitment__icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent-soft);
  border-radius: var(--radius-md);
  color: var(--c-primary);
}
.svc-commitment__icon svg,
.svc-commitment__icon i {
  width: 28px; height: 28px;
}
.svc-commitment__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--c-text);
}
.svc-commitment__card-desc {
  font-size: .9375rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ---------- CTA Band ---------- */
.svc-cta {
  padding: 56px 0;
}
.svc-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}
.svc-cta__text {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 600;
  color: var(--c-text);
}
.svc-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--c-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  box-shadow: 0 2px 8px rgba(36, 60, 143, .18);
}
.svc-cta__btn:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(36, 60, 143, .28);
}
.svc-cta__btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

/* ---------- Services Page Responsive ---------- */
@media (max-width: 1024px) {
  .svc-commitment__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .svc-intro__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-intro__text p {
    max-width: 100%;
  }
  .svc-intro__image {
    height: 280px;
  }
  .svc-block__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc-block--reverse .svc-block__content {
    order: 1;
  }
  .svc-block--reverse .svc-block__visual {
    order: 2;
  }
  .svc-block__visual img {
    height: 260px;
  }
  .svc-block {
    padding: 48px 0;
  }
  .svc-commitment__grid {
    grid-template-columns: 1fr;
  }
  .svc-cta__inner {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .svc-block__title {
    font-size: 1.1875rem;
  }
  .svc-block__visual img {
    height: 220px;
  }
  .svc-intro {
    padding: 56px 0;
  }
  .svc-commitment {
    padding: 56px 0;
  }
}

/* ============================================================
   REFERENCES PAGE – SIMPLE LOGO GRID
   ============================================================ */

/* ---------- Ref Intro ---------- */
.ref-intro {
  padding: 64px 0 0;
}
.ref-intro__text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--c-text-muted);
}

/* ---------- Logo Grid Section ---------- */
.ref-logos {
  padding: 48px 0 80px;
}
.ref-logos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---------- Logo Card ---------- */
.ref-logo-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.ref-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-primary);
}
.ref-logo-card img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform var(--dur) var(--ease);
}
.ref-logo-card:hover img {
  transform: scale(1.05);
}

/* Card with logo + text lines */
.ref-logo-card--with-text {
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
}
.ref-logo-card--with-text img {
  max-height: 50%;
}
.ref-logo-card__text {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1.3;
}

/* ---------- CTA Band ---------- */
.ref-cta {
  padding: 0 0 80px;
}
.ref-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--c-primary);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}
.ref-cta__text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.ref-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--c-primary);
  background: #fff;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.ref-cta__btn:hover {
  background: var(--c-bg-alt);
  transform: translateY(-2px);
}
.ref-cta__btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

/* ---------- References Page Responsive ---------- */
@media (max-width: 1024px) {
  .ref-logos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .ref-logos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ref-cta__inner {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
    gap: 20px;
  }
  .ref-intro__text {
    font-size: 1rem;
  }
  .ref-logos {
    padding: 32px 0 56px;
  }
  .ref-cta {
    padding: 0 0 56px;
  }
}
@media (max-width: 480px) {
  .ref-logos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ref-logo-card {
    padding: 16px;
  }
  .ref-intro {
    padding: 48px 0 0;
  }
}

/* ============================================================
   CONTACT PAGE ADDITIONS
   ============================================================ */

/* ---------- Contact Block ---------- */
.contact-block {
  padding: 64px 0 80px;
}
.contact-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-block__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.contact-block__subtitle {
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}

/* ---------- Contact Cards ---------- */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-style: normal;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.contact-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 60, 143, .08);
  border-radius: var(--radius-md);
}
.contact-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--c-primary);
}
.contact-card__body {
  flex: 1;
}
.contact-card__label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.contact-card__text {
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--c-text);
}
.contact-card__text a {
  color: var(--c-text);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.contact-card__text a:hover {
  color: var(--c-primary);
}

/* ---------- Map ---------- */
.contact-map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
}
.contact-map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Contact Page Responsive ---------- */
@media (max-width: 768px) {
  .contact-block {
    padding: 48px 0 56px;
  }
  .contact-block__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-map-wrapper {
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 480px) {
  .contact-block {
    padding: 40px 0 48px;
  }
  .contact-card {
    padding: 16px 18px;
  }
  .contact-block__heading {
    font-size: 1.25rem;
  }
}
