/* ═══════════════════════════════════════════════════════════
   Dragon Umrah — Main Stylesheet
   B2B Umrah Ground Support | Makkah-Based
═══════════════════════════════════════════════════════════ */

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

/* ─── CSS Variables ─── */
:root {
  /* Color Palette */
  --bg-primary:    #141210;
  --bg-secondary:  #1c1916;
  --bg-surface:    #232019;
  --bg-glass:      rgba(255, 255, 255, 0.035);
  --bg-glass-md:   rgba(255, 255, 255, 0.055);

  --gold:          #c6a24e;
  --gold-light:    #d8ba74;
  --gold-faint:    rgba(198, 162, 78, 0.12);
  --gold-border:   rgba(198, 162, 78, 0.22);

  --blue-soft:     #7bafc6;
  --blue-faint:    rgba(123, 175, 198, 0.1);

  --green-cta:     #4a7c5e;
  --green-cta-h:   #5a8f6e;

  --text-primary:  #f2ede6;
  --text-secondary: rgba(242, 237, 230, 0.65);
  --text-muted:    rgba(242, 237, 230, 0.38);

  --border:        rgba(242, 237, 230, 0.08);
  --border-light:  rgba(242, 237, 230, 0.05);

  /* Typography */
  --font-body:     'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Spacing */
  --section-py:    clamp(72px, 10vw, 120px);
  --container:     1140px;
  --gap-lg:        clamp(40px, 6vw, 80px);
  --gap-md:        clamp(24px, 3vw, 40px);

  /* Radius */
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);

  /* Nav height */
  --nav-h:         72px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ─── Typography Utilities ─── */
.eyebrow {
  display: inline-block;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ─── Layout Utilities ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.section-header { margin-bottom: var(--gap-lg); }

/* ─── Dividers / Separators ─── */
.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-border);
  margin: 20px auto 0;
}

/* ══════════════════════════════════════════════════════════
   LANGUAGE MODAL
══════════════════════════════════════════════════════════ */
#lang-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(14, 12, 10, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
#lang-modal-overlay.visible { opacity: 1; }
#lang-modal-overlay.hidden { display: none; }

.lang-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 52px);
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}
#lang-modal-overlay.visible .lang-modal { transform: translateY(0); }

.lang-modal-logo {
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
}
.lang-modal-logo img { width: 100%; height: auto; filter: brightness(0) invert(0.85); }

.lang-modal h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.lang-modal p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.lang-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lang-option-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
}
.lang-option-btn:hover {
  background: var(--gold-faint);
  border-color: var(--gold-border);
  transform: translateY(-1px);
}
.lang-option-btn.detected {
  border-color: var(--gold-border);
  background: var(--gold-faint);
}
.lang-option-btn .lang-flag { font-size: 1.3rem; }
.lang-option-btn .lang-name { font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}
#nav.scrolled {
  background: rgba(20, 18, 16, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-glass); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}
.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.lang-switcher-btn:hover {
  border-color: var(--gold-border);
  color: var(--text-primary);
  background: var(--gold-faint);
}
.lang-switcher-btn svg { width: 12px; height: 12px; transition: transform 0.2s; }
.lang-switcher-btn.open svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 160px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 100;
}
.lang-dropdown.open { opacity: 1; pointer-events: auto; transform: translateY(0); }

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-dropdown-item:hover { background: var(--bg-glass-md); color: var(--text-primary); }
.lang-dropdown-item.active { color: var(--gold); }

/* Nav WhatsApp CTA */
.nav-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--green-cta);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s var(--ease), transform 0.15s;
  white-space: nowrap;
}
.nav-whatsapp-btn:hover { background: var(--green-cta-h); transform: translateY(-1px); }
.nav-whatsapp-btn svg { width: 16px; height: 16px; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(20, 18, 16, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 24px 28px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text-primary); }
.nav-mobile .nav-mobile-cta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  background: var(--green-cta);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 500;
  border-bottom: none;
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: clamp(680px, 100svh, 920px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 10vw, 100px);
  overflow: hidden;
  isolation: isolate;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translate(-50%, -50%);
  opacity: 0.92;
}
.hero-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 12, 10, 0.12) 0%, rgba(14, 12, 10, 0.18) 32%, rgba(14, 12, 10, 0.34) 78%, rgba(14, 12, 10, 0.52) 100%),
    linear-gradient(90deg, rgba(14, 12, 10, 0.18) 0%, rgba(14, 12, 10, 0.04) 36%, rgba(14, 12, 10, 0.12) 100%);
  z-index: 1;
}

/* Fallback if no video */
.hero-video-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(198, 162, 78, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(123, 175, 198, 0.04) 0%, transparent 55%),
    linear-gradient(135deg, #1c1610 0%, #0e0c0a 50%, #111519 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(242, 237, 230, 0.86);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  #hero {
    min-height: clamp(620px, 100svh, 780px);
    padding-bottom: 72px;
  }

  .hero-video-bg video {
    width: auto;
    height: 100%;
    min-width: 100%;
  }

  .hero-video-bg::after {
    background:
      linear-gradient(180deg, rgba(14, 12, 10, 0.16) 0%, rgba(14, 12, 10, 0.2) 30%, rgba(14, 12, 10, 0.38) 76%, rgba(14, 12, 10, 0.58) 100%),
      linear-gradient(90deg, rgba(14, 12, 10, 0.12) 0%, rgba(14, 12, 10, 0.03) 45%, rgba(14, 12, 10, 0.12) 100%);
  }
}

/* CTA Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--green-cta);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), transform 0.15s;
}
.btn-whatsapp:hover { background: var(--green-cta-h); transform: translateY(-1px); }
.btn-whatsapp svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: var(--gold-border);
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: clamp(24px, 5vw, 52px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 0.8; }
}

/* ══════════════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════════════ */
#services {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}

.services-intro {
  margin-bottom: var(--gap-lg);
}

/* Service modules — scroll-reveal stacked layout */
.services-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* ── Service modules: scroll-reveal cards (no accordion) ── */
.service-module {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(25, 22, 19, 0.92), rgba(19, 17, 14, 0.94));
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    border-color 0.3s var(--ease);
}

/* Staggered reveal delays (applied to nth-child by JS via CSS var) */
.service-module[style*="--reveal-delay"] {
  transition-delay: var(--reveal-delay, 0ms);
}

.service-module.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-module:hover {
  border-color: rgba(198, 162, 78, 0.3);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.service-module-header {
  display: flex;
  align-items: center;
  padding: 32px 36px 20px;
  cursor: default;
}
.service-module-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-faint);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon-badge svg { width: 20px; height: 20px; color: var(--gold); }
.service-module-label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.service-module-name {
  font-size: clamp(1.22rem, 1.65vw, 1.5rem);
  line-height: 1.24;
  font-weight: 500;
  color: var(--text-primary);
}
/* Expand icon removed — content always visible */

.service-module-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.9s var(--ease-out),
    opacity 0.55s var(--ease-out);
}

.service-module-body > * {
  transform: translateY(18px);
  transition: transform 0.7s var(--ease-out);
}

.service-module.expanded .service-module-body {
  max-height: 2200px;
  opacity: 1;
}

.service-module.expanded .service-module-body > * {
  transform: translateY(0);
}

.service-body-inner {
  padding: 0 36px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}

.service-body-inner > * {
  min-width: 0;
}

.service-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.service-desc {
  max-width: 42rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 24px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.68;
}
.service-feature::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.72em;
}
.service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gold-faint);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  margin-top: auto;
}
.service-cta-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

/* Service images */
.service-images {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.service-images-single {
  max-width: 420px;
  justify-self: end;
}
.service-img-slot {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(35, 32, 25, 0.95), rgba(24, 21, 17, 0.98));
  border: 1px solid var(--border-light);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.service-img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-img-slot--hotel {
  height: clamp(230px, 24vw, 320px);
  aspect-ratio: auto;
}

.service-img-slot--hotel img {
  object-fit: cover;
}

.service-img-slot--meal-primary {
  height: clamp(230px, 24vw, 320px);
  aspect-ratio: auto;
}

.service-img-slot--meal-primary img {
  object-fit: cover;
}
.image-center-cta {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  pointer-events: none;
}
.cta-overlay-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  min-width: 164px;
  max-width: min(82%, 220px);
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(214, 184, 116, 0.26);
  background: linear-gradient(180deg, rgba(18, 16, 13, 0.64), rgba(12, 10, 8, 0.76));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(232, 210, 151, 0.03);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  color: #f5e9c6;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  pointer-events: auto;
  transition:
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.34s ease,
    background 0.34s ease,
    color 0.34s ease;
}
.cta-overlay-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.92;
}
.cta-overlay-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 200, 133, 0.44);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(212, 182, 115, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(23, 20, 16, 0.72), rgba(14, 12, 9, 0.84));
}
.cta-overlay-btn:active {
  transform: scale(0.972);
}
.cta-overlay-btn:focus-visible {
  outline: 2px solid rgba(233, 205, 134, 0.82);
  outline-offset: 3px;
}
.cta-overlay-btn--formal {
  min-width: 170px;
  background: linear-gradient(180deg, rgba(28, 24, 18, 0.7), rgba(16, 13, 10, 0.82));
}
.service-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
  padding: 22px;
}
.service-img-placeholder svg { width: 30px; height: 30px; opacity: 0.42; }
.service-location-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.79rem;
  color: var(--blue-soft);
  margin-top: 4px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.service-location-link:hover { opacity: 1; }
.service-location-link svg { width: 12px; height: 12px; }

/* ─── Pilgrim Kits Special Module ─── */
/* The orbit showcase is embedded as-is from the kit module */
.kits-showcase-wrapper {
  margin-top: -4px;
}

/* Adapted orbit for dark site theme */
.kits-orbit-container {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════════
   SERVICE MODALS
══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px);
  transition: transform 0.4s var(--ease-out);
}
.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
}
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.modal-close:hover { border-color: var(--border); color: var(--text-primary); background: var(--bg-glass); }
.modal-close svg { width: 14px; height: 14px; }

/* Form Styles */
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--gold-border); background: var(--bg-glass-md); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 80px; }
select.form-control { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px; }
select.form-control option { background: var(--bg-surface); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit-btn {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.form-submit-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-success-msg {
  text-align: center;
  padding: 20px;
  color: var(--green-cta-h);
  font-size: 0.95rem;
  display: none;
}
.form-success-msg.visible { display: block; }

/* ══════════════════════════════════════════════════════════
   WORKFLOW SECTION
══════════════════════════════════════════════════════════ */
#workflow {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}
.workflow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.workflow-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--gold-border), var(--border), transparent);
}
.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.workflow-step.revealed { opacity: 1; transform: translateY(0); }
.workflow-step:nth-child(1) { transition-delay: 0s; }
.workflow-step:nth-child(2) { transition-delay: 0.1s; }
.workflow-step:nth-child(3) { transition-delay: 0.2s; }
.workflow-step:nth-child(4) { transition-delay: 0.3s; }
.workflow-step:nth-child(5) { transition-delay: 0.4s; }

.workflow-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}
.workflow-step:hover .workflow-number {
  background: var(--gold-faint);
  border-color: var(--gold-border);
}
.workflow-step-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.workflow-step-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   TRUST SECTION
══════════════════════════════════════════════════════════ */
#trust {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
#trust::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 162, 78, 0.04), transparent 70%);
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: var(--gap-lg);
}
.trust-card {
  padding: 32px 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), border-color 0.3s, background 0.3s;
}
.trust-card.revealed { opacity: 1; transform: translateY(0); }
.trust-card:nth-child(1) { transition-delay: 0s; }
.trust-card:nth-child(2) { transition-delay: 0.08s; }
.trust-card:nth-child(3) { transition-delay: 0.16s; }
.trust-card:nth-child(4) { transition-delay: 0.24s; }
.trust-card:nth-child(5) { transition-delay: 0.32s; }
.trust-card:hover {
  border-color: var(--border);
  background: var(--bg-glass-md);
  transform: translateY(-3px);
}
.trust-card-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.8;
}
.trust-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.trust-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════════════════════════ */
#gallery {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}
.gallery-carousel-wrap {
  position: relative;
  margin-top: 40px;
}
.gallery-carousel {
  display: flex;
  gap: 16px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gallery-slide {
  flex: 0 0 100%;
  aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  position: relative;
  transition: opacity 0.5s var(--ease);
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-secondary) 100%);
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.gallery-dots {
  display: flex;
  gap: 8px;
}
.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.gallery-dot.active { background: var(--gold); transform: scale(1.3); }
.gallery-arrows {
  display: flex;
  gap: 10px;
}
.gallery-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-arrow:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-faint);
}
.gallery-arrow svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════════════════════════ */
#testimonials {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}
.testimonials-carousel {
  position: relative;
  margin-top: 44px;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.55s var(--ease-out);
}
.testimonial-card {
  flex: 0 0 calc(33.33% - 16px);
  margin-right: 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--border); }
.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.78;
  font-style: italic;
  position: relative;
  padding-left: 18px;
}
.testimonial-quote::before {
  content: """;
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.testimonial-author { display: flex; flex-direction: column; gap: 3px; }
.testimonial-name { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-country { font-size: 0.82rem; color: var(--text-secondary); margin-top: 2px; }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.testimonials-nav .gallery-arrow { /* reuses gallery-arrow */ }

/* ══════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════ */
#contact {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  transition: border-color 0.2s, background 0.2s;
}
.contact-card:hover { border-color: var(--border); background: var(--bg-glass-md); }
.contact-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.contact-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}
.contact-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  transition: color 0.2s;
}
.contact-card-action:hover { color: var(--gold); }
.contact-card-action svg { width: 14px; height: 14px; }

.contact-form-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.contact-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}
.contact-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-secondary);
  cursor: pointer;
}
.contact-checkbox input {
  width: 15px;
  height: 15px;
  accent-color: var(--gold);
}

/* Map embed */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin-top: 20px;
}
.contact-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
  filter: grayscale(0.5) invert(0.9) hue-rotate(190deg);
}

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════════ */
#faq {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  user-select: none;
}
.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.2s, border-color 0.2s;
}
.faq-arrow svg {
  width: 12px;
  height: 12px;
  color: var(--text-secondary);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  background: var(--gold-faint);
  border-color: var(--gold-border);
}
.faq-item.open .faq-arrow svg { color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 26px 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.78;
}

/* ══════════════════════════════════════════════════════════
   PARTNER STRIP
══════════════════════════════════════════════════════════ */
#partners {
  padding: clamp(52px, 7vw, 80px) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  overflow: hidden;
}
.partners-header {
  text-align: center;
  margin-bottom: 36px;
}
.partners-header .eyebrow { margin-bottom: 8px; }
.partners-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--text-secondary);
}
.partners-strip-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.partners-strip {
  display: flex;
  gap: 32px;
  animation: partners-scroll 28s linear infinite;
  width: max-content;
}
.partners-strip:hover { animation-play-state: paused; }
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-flag {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.partner-flag:hover { border-color: var(--gold-border); transform: scale(1.08); }
.partner-flag img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  padding: clamp(52px, 8vw, 80px) 0 clamp(28px, 4vw, 40px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-text { font-size: 0.95rem; font-weight: 600; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--green-cta);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s;
}
.footer-whatsapp:hover { background: var(--green-cta-h); }
.footer-whatsapp svg { width: 15px; height: 15px; }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════════════════════════ */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  z-index: 500;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}
.fab-whatsapp svg { width: 26px; height: 26px; fill: #fff; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .service-module-header {
    padding: 28px 28px 18px;
  }
  .service-body-inner {
    padding: 0 28px 32px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.82fr);
    gap: 24px;
  }
  .service-images-single {
    max-width: none;
    justify-self: stretch;
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .workflow-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .workflow-steps::before { display: none; }
  .workflow-step {
    padding: 28px 22px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg-glass);
  }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-whatsapp-btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 10px; }
  .lang-switcher-btn {
    padding: 7px 10px;
    font-size: 0.78rem;
  }
  .lang-switcher-btn span:nth-child(2) {
    max-width: 82px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .service-module-header {
    padding: 24px 22px 14px;
  }
  .service-body-inner {
    grid-template-columns: 1fr;
    padding: 0 22px 28px;
    gap: 20px;
  }
  .service-module-name {
    font-size: clamp(1.12rem, 4.8vw, 1.34rem);
  }
  .service-desc {
    font-size: 0.96rem;
    line-height: 1.78;
    margin-bottom: 20px;
  }
  .service-feature {
    font-size: 0.9rem;
  }
  .service-images {
    display: flex;
    order: 2;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-self: stretch;
    align-self: stretch;
    margin-inline: 0;
  }
  .service-images-single {
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
  }
  .service-img-slot {
    aspect-ratio: 16 / 10;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }
  .service-img-slot--hotel {
    height: clamp(220px, 56vw, 320px);
  }
  .service-img-slot--meal-primary {
    height: clamp(220px, 56vw, 320px);
  }
  .image-center-cta {
    padding: 14px;
  }
  .cta-overlay-btn {
    min-width: 148px;
    max-width: min(86%, 208px);
    min-height: 42px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }

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

  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-step {
    padding: 24px 18px;
  }
  .workflow-step-title {
    font-size: 0.98rem;
  }
  .workflow-step-desc {
    font-size: 0.9rem;
    line-height: 1.72;
  }

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

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

  .testimonial-card { flex: 0 0 100%; }
  .testimonial-card {
    padding: 26px 22px;
  }
  .testimonial-quote {
    font-size: 0.95rem;
  }

  .lang-options { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .contact-checkboxes { grid-template-columns: 1fr; }

  .gallery-slide {
    aspect-ratio: 4 / 3;
  }
  .gallery-controls {
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .nav-logo img,
  .footer-logo img {
    height: 32px;
  }

  .nav-logo-text {
    font-size: 0.96rem;
  }
  .lang-switcher-btn {
    padding: 7px 9px;
    gap: 5px;
  }
  .lang-switcher-btn span:nth-child(2) {
    max-width: 56px;
  }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-whatsapp { width: 100%; justify-content: center; }
  .service-module-header {
    padding: 22px 18px 12px;
  }
  .service-body-inner {
    padding: 0 18px 24px;
  }
  .service-images,
  .service-images-single,
  .service-img-slot {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    margin-inline: 0;
  }
  .image-center-cta {
    padding: 10px;
  }
  .cta-overlay-btn {
    min-width: 140px;
    max-width: min(84%, 196px);
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.78rem;
  }
  .service-feature {
    font-size: 0.88rem;
  }
  .service-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .gallery-slide-placeholder {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    padding: 18px;
    text-align: center;
  }
  .gallery-arrow {
    width: 44px;
    height: 44px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .lang-options { grid-template-columns: 1fr; }
}

/* ─── Scroll-Reveal Base ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ─── Utility ─── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
