/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --color-primary: #026A49;
  --color-primary-dark: #014f36;
  --color-accent: #D7A204;
  --color-accent-light: #FAC14B;
  --color-accent-glow: rgba(215, 162, 4, 0.5);
  --color-off-white: #F9FAFC;
  --color-white: #ffffff;
  --transition-color: #013027;

  --font-serif: Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: var(--font-serif);

  --hero-height: 100vh;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --parallax-hand: 0.5;
  --goal-min-height: 80vh;
  --goal-padding: 60px 24px;
  --navbar-bg: rgba(0, 0, 0, 0.6);
  --navbar-height: 70px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #013027;
  font-family: var(--font-sans);
  padding-top: var(--navbar-height);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  opacity: 1;
}

/* ============================================================
   GPU LAYER FIX
   ============================================================ */
.our-goal,
.how-it-works,
.packages,
.locations,
.what-we-ask,
.site-footer {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background: var(--navbar-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  transition: background 0.3s ease;
}

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

.navbar__home-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.navbar__logo-icon {
  height: clamp(40px, 5vw, 56px);
  width: auto;
  display: block;
}

.navbar__brand {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: #B51F3A;
  text-shadow: 0 0 18px rgba(181, 31, 58, 0.3);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.navbar__link {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1vw, 0.95rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 30px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.navbar__link:hover {
  color: var(--color-accent);
  background: rgba(215, 162, 4, 0.15);
}

.navbar__link.active {
  color: var(--color-accent) !important;
  background: rgba(215, 162, 4, 0.15) !important;
}

/* ---- Custom Language Dropdown ---- */
.navbar__lang-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
}

.navbar__lang-wrapper select {
  display: none;
}

.custom-lang-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.custom-lang-trigger {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  padding: 6px 30px 6px 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font-sans);
  display: inline-block;
  white-space: nowrap;
  position: relative;
  user-select: none;
}

.custom-lang-trigger:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.custom-lang-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease;
}

.custom-lang-dropdown.open .custom-lang-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 120px;
  background: #013027;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 6px 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow: visible;
}

.custom-lang-option {
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.custom-lang-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.custom-lang-option.active {
  background: rgba(215, 162, 4, 0.15);
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 12px !important;
    height: auto !important;
    min-height: 56px !important;
    flex-wrap: nowrap !important;
  }
  
  .navbar__brand {
    font-size: 0.85rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 140px !important;
    display: inline-block !important;
  }
  
  .navbar__logo-icon {
    height: clamp(28px, 6vw, 36px) !important;
    width: auto !important;
  }
  
  /* Hide ALL desktop nav links on mobile */
  .navbar__link:not(.navbar__app-mobile):not(.navbar__app-btn) {
    display: none !important;
  }
  
  .navbar__app-mobile {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 30px !important;
    padding: 4px 10px !important;
    font-weight: 500 !important;
    font-size: 0.7rem !important;
    white-space: nowrap !important;
    color: #fff !important;
    transition: background 0.25s ease, border-color 0.25s ease !important;
  }
  
  .navbar__app-btn {
    display: none !important;
  }
  
  .navbar__right {
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
    gap: 4px !important;
    flex-shrink: 1 !important;
  }
  
  .custom-lang-trigger {
    font-size: 0.65rem !important;
    padding: 4px 22px 4px 10px !important;
  }
  
  .custom-lang-arrow {
    right: 6px !important;
    font-size: 7px !important;
  }
  
  .custom-lang-menu {
    min-width: 90px !important;
    right: 0 !important;
  }
  
  .custom-lang-option {
    padding: 8px 14px !important;
    font-size: 0.75rem !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: var(--hero-height);
  overflow: hidden;
  margin-top: calc(-1 * var(--navbar-height));
  z-index: 1;
  background-color: var(--transition-color);
  aspect-ratio: 16 / 9;     /* ← ADD THIS */
  min-height: 100vh;        /* ← ADD THIS */
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.15) 0%, var(--overlay-dark) 90%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, var(--transition-color) 100%);
}

.hero__parallax {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

@keyframes fadeInUp {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: rotate(4deg) translateY(0px); }
  50% { transform: rotate(4deg) translateY(-6px); }
}

.hero__quote {
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: 90%;
  max-width: 680px;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  padding: 0;
  margin-bottom: 4vh;
  transition: opacity 0.1s ease-out;
  opacity: 0;
}

body.hero-animations-ready .hero__quote {
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

.hero__quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 5vw, 2.8rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.02em;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.2rem 1.8rem;
  border-radius: 24px;
  display: inline-block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--color-accent);
  border-right: 4px solid var(--color-accent);
  overflow-wrap: break-word;
  word-break: normal;
}

.hero__quote-ref {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  font-style: italic;
  letter-spacing: 0.5px;
  opacity: 0.9;
  font-weight: 300;
  color: #f0e6c5;
}

.hero__hand {
  position: absolute;
  bottom: -4%;
  width: min(45vw, 500px);
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
  will-change: transform, opacity;
  transform: rotate(4deg);
}
body.hero-animations-ready .hero__hand {
  animation: fadeInUp 1.2s ease-out 0.3s both;
}
body.hero-animations-ready .hero__hand.floating {
  animation: float 3s ease-in-out infinite;
}
.hero__hand--left {
  left: 2%;
  transform-origin: bottom center;
}
.hero__hand--right {
  right: 2%;
  transform-origin: bottom center;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  padding: 24px 0;
}

@media (max-width: 1024px) {
  .navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.85);
  }
  .hero__quote-text {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 768px) {
  .hero__hand {
    display: none !important;
  }
  .hero::after {
    height: 45%;
  }
  .hero__quote {
    max-width: 92%;
    margin-bottom: 2vh;
  }
  .hero__quote-text {
    padding: 1rem 1.4rem;
    border-left-width: 3px;
    border-right-width: 3px;
    font-size: clamp(1.2rem, 5.5vw, 1.8rem);
  }
}

@media (max-width: 480px) {
  .hero::after {
    height: 50%;
  }
  .hero__quote {
    max-width: 96%;
    margin-bottom: 1vh;
  }
  .hero__quote-text {
    font-size: clamp(1rem, 6vw, 1.4rem);
    padding: 0.8rem 1rem;
    border-left-width: 2px;
    border-right-width: 2px;
  }
  .hero__quote-ref {
    font-size: 0.8rem;
  }
}

/* ============================================================
   OUR GOAL
   ============================================================ */
.our-goal {
  position: relative;
  min-height: var(--goal-min-height);
  padding: var(--goal-padding);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 10;
  margin-top: -1px;
  background-color: var(--transition-color);
}

.our-goal__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('geometric pattern bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  background-color: var(--transition-color);
  background-blend-mode: normal;
}

.our-goal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--transition-color) 0%, transparent 100%);
}

.our-goal__circle {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%) translateX(80px);
  opacity: 0;
  height: 135%;
  width: auto;
  max-width: none;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
              opacity 0.9s ease-out 0.15s;
}

.our-goal__circle.is-visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.our-goal__container {
  position: relative;
  z-index: 3;
  max-width: 420px;
  width: 100%;
  margin-left: 4%;
  transform: translateX(-60px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.8s ease-out;
}

.our-goal__container.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.our-goal__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.our-goal__headline::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: var(--color-accent);
  margin: 14px 0 0;
  border-radius: 4px;
  opacity: 0.7;
}

.our-goal__text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.8;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  opacity: 0.92;
}

.our-goal__text--certified {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(215, 162, 4, 0.3);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--color-accent);
}

.our-goal__cert-link {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.our-goal__cert-link:hover {
  color: var(--color-accent-light);
}

@media (max-width: 768px) {
  .our-goal__circle {
    display: none !important;
  }
}

/* ============================================================
   HOW IT WORKS – Full-width scrollable image, text spaced out
   ============================================================ */
.how-it-works {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  background-color: #013027;
  overflow: visible;
}

.how-it-works__bg {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  display: block;
  z-index: 0;
}

.how-it-works__bg img {
  width: 100%;
  height: auto;
  display: block;
}

.how-it-works__overlay {
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at center 45%,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(1, 48, 39, 0.65) 80%,
    rgba(1, 48, 39, 0.85) 100%
  );
}

.how-it-works__container {
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  min-height: 100vh;
}

/* keep headings and text with default margins, but we can add some spacing */
.how-it-works__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0; /* we rely on flex spacing */
}

.how-it-works__headline::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto 0;
  border-radius: 4px;
  opacity: 0.8;
}

.how-it-works__text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 4vw, 1.2rem);
  line-height: 1.7;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.how-it-works__subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--color-accent);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
  margin: 0;
}

.how-it-works__subheadline::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: rgba(215, 162, 4, 0.5);
  margin: 10px auto 0;
  border-radius: 4px;
}

/* optional: extra spacing for the last text block */
.how-it-works__container .how-it-works__text:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .how-it-works__container { max-width: 900px; padding: 6vh 20px; }
  .how-it-works__headline { font-size: clamp(3rem, 4.5vw, 4.5rem); }
  .how-it-works__text { max-width: 720px; font-size: clamp(1.3rem, 2.2vw, 1.8rem); line-height: 2.0; }
  .how-it-works__subheadline { font-size: clamp(2rem, 3vw, 3rem); }
}

@media (max-width: 768px) {
  .how-it-works__container { width: 94%; padding: 3vh 16px; }
  .how-it-works__headline { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .how-it-works__text { font-size: clamp(1rem, 4vw, 1.2rem); max-width: 100%; }
  .how-it-works__subheadline { font-size: clamp(1.4rem, 5vw, 2rem); }
  .how-it-works__headline::after { width: 50px; margin-top: 12px; }
}

@media (max-width: 480px) {
  .how-it-works__container { width: 96%; padding: 2vh 12px; }
  .how-it-works__headline { font-size: clamp(1.5rem, 8vw, 2.2rem); }
  .how-it-works__text { font-size: clamp(0.95rem, 4.5vw, 1.05rem); }
  .how-it-works__subheadline { font-size: clamp(1.2rem, 6vw, 1.6rem); }
  .how-it-works__headline::after { width: 40px; }
}

/* ============================================================
   PACKAGES – Full-width background (FIXED)
   ============================================================ */
.packages {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 24px;
}

.packages__bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.packages__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.packages__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center 45%, 
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(1, 48, 39, 0.65) 80%,
    rgba(1, 48, 39, 0.85) 100%
  );
}

.packages__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.packages__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.packages__headline::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto 24px;
  border-radius: 4px;
  opacity: 0.8;
}

.packages__subheadline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.packages__card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  color: var(--color-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.packages__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.packages__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(215, 162, 4, 0.3);
}

.packages__card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-accent-light);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.packages__card-duration {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
  opacity: 0.9;
}

.packages__card-desc {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

.packages__card-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-weight: 500;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  letter-spacing: 0.3px;
}

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

@media (max-width: 600px) {
  .packages { padding: 60px 16px; min-height: auto; }
  .packages__grid { grid-template-columns: 1fr; gap: 16px; }
  .packages__card { padding: 24px 16px; }
  .packages__headline::after { width: 50px; margin: 12px auto 20px; }
  .packages__subheadline { margin-bottom: 28px; font-size: clamp(1rem, 4.5vw, 1.2rem); }
  .packages__card:nth-child(2) { order: 1; }
  .packages__card:nth-child(1) { order: 2; }
  .packages__card:nth-child(3) { order: 3; }
  .packages__card:nth-child(4) { order: 4; }
  .packages__card:nth-child(5) { order: 5; }
  .packages__card:nth-child(6) { order: 6; }
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations {
  position: relative;
  padding: 80px 24px;
  background-color: #013027;
  overflow: hidden;
  z-index: 10;
}

.locations__bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23D7A204' stroke-width='1.5' opacity='0.15'%3E%3Cpolygon points='40,0 80,40 40,80 0,40' /%3E%3Cpolygon points='40,20 60,40 40,60 20,40' /%3E%3Ccircle cx='40' cy='40' r='8' fill='%23D7A204' opacity='0.08' /%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  background-repeat: repeat;
}

.locations__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.locations__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.locations__headline::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto 24px;
  border-radius: 4px;
  opacity: 0.8;
}

.locations__subheadline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 48px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.locations__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.locations__card {
  display: flex;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.locations__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.locations__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.locations__card--left .locations__card-image { order: 0; }
.locations__card--left .locations__card-content { order: 1; }
.locations__card--right .locations__card-image { order: 1; }
.locations__card--right .locations__card-content { order: 0; }

.locations__card-image {
  flex: 0 0 50%;
  overflow: hidden;
}

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

.locations__card:hover .locations__card-image img { transform: scale(1.03); }

.locations__card-content {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.locations__card-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: 8px;
  opacity: 0.8;
}

.locations__card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.locations__card-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.locations__card-text p { margin: 0; }

.locations__read-more {
  display: none;
  margin-top: 12px;
  background: transparent;
  border: none;
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  transition: color 0.2s;
}
.locations__read-more:hover { color: #e6b800; }

@media (max-width: 768px) {
  .locations__card { flex-direction: column; gap: 0; opacity: 0; transform: translateY(20px); }
  .locations__card--left .locations__card-image,
  .locations__card--left .locations__card-content,
  .locations__card--right .locations__card-image,
  .locations__card--right .locations__card-content { order: unset; }
  .locations__card-image { flex: none; height: 200px; }
  .locations__card-content { padding: 20px 16px; }
  .locations__card-text p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .locations__card-text p.expanded {
    -webkit-line-clamp: none;
    overflow: visible;
    display: block;
  }
  .locations__read-more { display: inline-block; }
  .locations__card-title { font-size: 1.4rem; }
  .locations__card-tag { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .locations { padding: 60px 16px; }
  .locations__headline::after { width: 50px; margin: 12px auto 20px; }
  .locations__subheadline { margin-bottom: 30px; font-size: 1rem; }
  .locations__card-image { height: 160px; }
  .locations__card-content { padding: 16px 14px; }
  .locations__card-text { font-size: 0.95rem; }
}

@media (min-width: 769px) {
  .locations__card {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
  }
  .locations__card--left { transform: translateX(-40px); opacity: 0; }
  .locations__card--left.is-visible { transform: translateX(0); opacity: 1; }
  .locations__card--right { transform: translateX(40px); opacity: 0; }
  .locations__card--right.is-visible { transform: translateX(0); opacity: 1; }
}

/* ============================================================
   WHAT WE ASK – Full-width background (FIXED)
   ============================================================ */
.what-we-ask {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.what-we-ask__bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.what-we-ask__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.what-we-ask__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, 
    rgba(0, 0, 0, 0.2) 0%,
    rgba(1, 48, 39, 0.5) 60%,
    rgba(1, 48, 39, 0.7) 100%
  );
}

.what-we-ask__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.what-we-ask__card {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.what-we-ask__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.what-we-ask__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.what-we-ask__headline::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto 24px;
  border-radius: 4px;
  opacity: 0.8;
}

.what-we-ask__intro {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 36px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.what-we-ask__points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.what-we-ask__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 20px;
}

.what-we-ask__point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.what-we-ask__number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 2px;
}

.what-we-ask__point-title {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 600;
  color: var(--color-accent-light);
  margin-bottom: 4px;
}

.what-we-ask__point-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .what-we-ask { padding: 60px 16px; min-height: 90vh; }
  .what-we-ask__card { padding: 32px 20px; }
  .what-we-ask__point { gap: 12px; padding-bottom: 16px; }
  .what-we-ask__number { width: 30px; height: 30px; font-size: 0.9rem; }
  .what-we-ask__intro { margin-bottom: 28px; }
  .what-we-ask__point-text { font-size: clamp(1rem, 3vw, 1.1rem); }
}

@media (max-width: 480px) {
  .what-we-ask__card { padding: 24px 16px; }
  .what-we-ask__point { gap: 10px; padding-bottom: 14px; }
  .what-we-ask__number { width: 26px; height: 26px; font-size: 0.8rem; }
  .what-we-ask__point-text { font-size: 0.95rem; }
}

/* ============================================================
   DOWNLOAD + FAQ
   ============================================================ */
.download-faq {
  position: relative;
  padding: 80px 24px;
  background-color: #013027;
  overflow: hidden;
  z-index: 10;
}

.download-faq__bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23D7A204' stroke-width='1.5' opacity='0.15'%3E%3Cpolygon points='40,0 80,40 40,80 0,40' /%3E%3Cpolygon points='40,20 60,40 40,60 20,40' /%3E%3Ccircle cx='40' cy='40' r='8' fill='%23D7A204' opacity='0.08' /%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  background-repeat: repeat;
}

.download-faq__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.download-faq__card {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.download-faq__download {
  text-align: center;
}

.download-faq__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.download-faq__headline::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto 24px;
  border-radius: 4px;
  opacity: 0.8;
}

.download-faq__subheadline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 32px;
}

.download-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-bottom: 24px;
}

.download-faq__grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-faq__grid-item .download-faq__badge {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
}

.download-faq__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: default;
}
.download-faq__badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.download-faq__badge svg {
  flex-shrink: 0;
}

.download-faq__badge--play {
  background: #1a1a2e;
  border-color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}
.download-faq__badge--play:hover {
  background: #2a2a4e;
  border-color: rgba(255, 255, 255, 0.3);
}

.download-faq__badge--appstore {
  background: #1a1a2e;
  border-color: rgba(255, 255, 255, 0.1);
}
.download-faq__badge--active {
  opacity: 1 !important;
  cursor: pointer !important;
}
.download-faq__badge--active:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.download-faq__badge--qr {
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  cursor: default;
  opacity: 0.85;
}
.download-faq__badge--qr img {
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  width: 200px;
  height: 200px;
}
.download-faq__badge--qr span {
  font-size: 0.7rem;
  opacity: 0.7;
  font-family: var(--font-sans);
}

.download-faq__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-style: italic;
  color: var(--color-accent-light);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-top: 8px;
  opacity: 0.9;
}

.download-faq__divider {
  width: 60%;
  height: 1px;
  margin: 32px auto;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.download-faq__faq-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.download-faq__faq-headline::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin: 12px auto 0;
  border-radius: 4px;
  opacity: 0.7;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
  gap: 16px;
}
.faq-question:hover { color: var(--color-accent); }
.faq-question span { flex: 1; }

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.4);
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
  padding: 0 0 0 0;
}
.faq-answer p {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 12px 0;
}
.faq-item:last-child .faq-answer p { margin-bottom: 0; }
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0 12px 0;
}

.download-faq__map {
  margin: 24px 0 8px;
  text-align: center;
}

.download-faq__map-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.download-faq__map-headline::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin: 10px auto 0;
  border-radius: 4px;
  opacity: 0.7;
}

.download-faq__map-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.download-faq__map-address {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .download-faq { padding: 60px 16px; }
  .download-faq__card { padding: 32px 20px; }
  .download-faq__badge--qr { display: none !important; }
  .download-faq__divider { width: 80%; margin: 24px auto; }
  .faq-question { font-size: 0.95rem; padding: 14px 0; }
  .faq-answer p { font-size: 0.95rem; }
  .faq-item.open .faq-answer { max-height: 400px; }
  .download-faq__grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  .download-faq { padding: 40px 12px; }
  .download-faq__card { padding: 24px 16px; border-radius: 16px; }
  .download-faq__badge { padding: 6px 14px; font-size: 0.8rem; gap: 8px; }
  .download-faq__badge svg { width: 18px; height: 18px; }
  .download-faq__headline::after { width: 50px; margin: 12px auto 18px; }
  .download-faq__subheadline { font-size: 1rem; margin-bottom: 24px; }
  .faq-question { font-size: 0.9rem; padding: 12px 0; }
  .faq-answer p { font-size: 0.9rem; }
  .faq-item.open .faq-answer { max-height: 500px; }
  .download-faq__badge--qr img { width: 120px; height: 120px; }
}

@media (min-width: 769px) {
  .download-faq__badge--qr { display: flex !important; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
body.legal-page {
  background-color: #013027;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23D7A204' stroke-width='1.5' opacity='0.15'%3E%3Cpolygon points='40,0 80,40 40,80 0,40' /%3E%3Cpolygon points='40,20 60,40 40,60 20,40' /%3E%3Ccircle cx='40' cy='40' r='8' fill='%23D7A204' opacity='0.08' /%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  background-repeat: repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-container {
  flex: 1;
  max-width: 900px;
  margin: 100px auto 60px;
  padding: 0 24px;
  width: 100%;
}

.legal-card {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.legal-card h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.legal-card h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto 24px;
  border-radius: 4px;
  opacity: 0.8;
}

.legal-card .legal-meta {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.legal-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  color: var(--color-accent-light);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-card h2:first-of-type { margin-top: 0; }

.legal-card p,
.legal-card li {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
}

.legal-card ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-card ul li { margin-bottom: 6px; }

.legal-card strong {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-container { margin: 80px auto 40px; padding: 0 16px; }
  .legal-card { padding: 32px 20px; }
  .legal-card h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .legal-card h2 { font-size: clamp(1.2rem, 4.5vw, 1.5rem); }
  .legal-card p,
  .legal-card li { font-size: clamp(0.95rem, 3.5vw, 1.05rem); }
  .legal-card ul { padding-left: 18px; }
}

@media (max-width: 480px) {
  .legal-container { margin: 70px auto 30px; padding: 0 12px; }
  .legal-card { padding: 24px 16px; border-radius: 16px; }
  .legal-card h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .legal-card h1::after { width: 50px; margin: 12px auto 18px; }
  .legal-card p,
  .legal-card li { font-size: 0.95rem; }
}

/* ============================================================
   HALAL PAGE – DOCUMENT FRAME & LIGHTBOX
   ============================================================ */
.halal-document {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(215, 162, 4, 0.3);
  position: relative;
  transition: border-color 0.3s ease;
}

.halal-document::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(215, 162, 4, 0.2);
  border-radius: 12px;
  pointer-events: none;
}

.halal-document img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.halal-document img:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-overlay img {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(215, 162, 4, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

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

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s, transform 0.2s;
  font-family: Arial, sans-serif;
  line-height: 1;
}

.lightbox-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .halal-document { padding: 12px; }
  .halal-document::before { inset: 6px; }
  .lightbox-close { top: 20px; right: 20px; font-size: 2rem; }
  .lightbox-overlay { padding: 16px; }
}

@media (max-width: 480px) {
  .halal-document { padding: 8px; }
  .halal-document::before { inset: 4px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #013027;
  color: var(--color-white);
  padding: 40px 24px 16px;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23D7A204' stroke-width='1.5' opacity='0.1'%3E%3Cpolygon points='40,0 80,40 40,80 0,40' /%3E%3Cpolygon points='40,20 60,40 40,60 20,40' /%3E%3Ccircle cx='40' cy='40' r='8' fill='%23D7A204' opacity='0.05' /%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.5;
}

.site-footer__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__left {
  flex: 1 1 50%;
}

.site-footer__brand {
  margin-bottom: 16px;
}

.site-footer__logo {
  height: 40px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.site-footer__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #B51F3A;
  vertical-align: middle;
}

.site-footer__tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 12px;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, transform 0.2s;
}
.site-footer__social-link:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}
.site-footer__social-link svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.site-footer__social-link span {
  font-family: var(--font-sans);
}

.site-footer__partners {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.site-footer__partners-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.site-footer__partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 50px;
}

.site-footer__partners-logos img {
  height: 55px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0.9) saturate(1.1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.site-footer__partners-logos img:hover {
  filter: brightness(1) saturate(1.2);
  transform: scale(1.08);
}

.site-footer__right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.site-footer__contact-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.site-footer__contact-link:hover {
  color: var(--color-accent);
}
.site-footer__address {
  cursor: default;
  opacity: 0.8;
}

.site-footer__legal {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 16px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 12px;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__legal a:hover {
  color: var(--color-accent);
}

.site-footer__legal-right {
  display: flex;
  gap: 16px;
}

@media (max-width: 768px) {
  .site-footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer__right {
    align-items: center;
  }
  .site-footer__social {
    justify-content: center;
  }
  .site-footer__legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer__legal-right {
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-footer__partners-logos {
    gap: 20px 30px;
  }
  .site-footer__partners-logos img {
    height: 40px;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .site-footer { padding: 30px 16px 16px; }
  .site-footer__social-link { font-size: 0.8rem; }
  .site-footer__social-link svg { width: 24px; height: 24px; }
  .site-footer__partners-logos {
    gap: 16px 24px;
  }
  .site-footer__partners-logos img {
    height: 35px;
    max-width: 100px;
  }
}

/* ============================================================
   APP POPUP
   ============================================================ */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 99999;
  display: none; /* NOT flex */
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.popup-overlay.active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
}

.popup-container {
  background: #013027;
  border: 1px solid rgba(215, 162, 4, 0.2);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 1200px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 28px 32px 32px 32px;
}

@media (min-width: 769px) {
  .popup-container {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23D7A204' stroke-width='1.5' opacity='0.1'%3E%3Cpolygon points='40,0 80,40 40,80 0,40' /%3E%3Cpolygon points='40,20 60,40 40,60 20,40' /%3E%3Ccircle cx='40' cy='40' r='8' fill='%23D7A204' opacity='0.05' /%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
    background-repeat: repeat;
  }
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.popup-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-lang-select {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  font-size: 0.85rem;
  padding: 6px 30px 6px 14px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-sans);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.6)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: background 0.2s, border-color 0.2s;
}

.popup-lang-select:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.popup-lang-select option {
  background: #013027;
  color: #fff;
}

.popup-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 0 4px;
}
.popup-close:hover {
  color: var(--color-accent);
}

.popup-content {
  display: flex;
  gap: 40px;
  flex: 1;
  min-height: 0;
}

.popup-carousel {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 436 / 893;
  max-height: 75vh;
}

.popup-carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.popup-carousel-slide {
  width: 33.333%;
  height: 100%;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.popup-carousel-click {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.popup-download {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 0;
}

.popup-download-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.popup-title-logo {
  height: 28px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.popup-title-text {
  color: #B51F3A;
  vertical-align: middle;
  font-family: var(--font-sans);
  font-weight: 600;
}

.popup-download-desktop {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 340px;
  align-items: center;
}

.popup-download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  width: 100%;
  justify-content: center;
}
.popup-download-btn:hover {
  background: #2a2a4e;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.popup-download-btn svg {
  flex-shrink: 0;
}

.popup-download-btn--play {
  background: #1a1a2e;
}
.popup-download-btn--appstore {
  background: #1a1a2e;
}
.popup-download-btn--dynamic {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 700;
  border-color: var(--color-accent);
}
.popup-download-btn--dynamic:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
}

.popup-qr-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.popup-qr {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  margin-top: 2px;
}

.popup-qr-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.popup-download-mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 320px;
  align-items: center;
}

.popup-qr-modal-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
  width: 100%;
}
.popup-qr-modal-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.popup-qr-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.popup-qr-lightbox.active {
  display: flex;
}

.popup-qr-lightbox-content {
  background: #013027;
  border: 1px solid rgba(215, 162, 4, 0.2);
  border-radius: 24px;
  padding: 32px 28px;
  max-width: 450px;
  width: 100%;
  position: relative;
  text-align: center;
}

.popup-qr-lightbox-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

.popup-qr-lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.popup-qr-lightbox-close:hover {
  color: var(--color-accent);
}

.popup-qr-lightbox-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.popup-qr-lightbox-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.popup-qr-lightbox-item img {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.popup-qr-lightbox-item span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
  .popup-container { padding: 20px; }
  .popup-carousel { flex: 0 0 40%; max-width: 40%; }
  .popup-qr { width: 120px; height: 120px; }
}

@media (max-width: 768px) {
  .popup-overlay { padding: 8px !important; }
  .popup-container {
    height: 92vh;
    max-height: 92vh;
    width: 100%;
    max-width: 100%;
    border-radius: 20px !important;
    padding: 16px 16px 12px 16px;
    border: 1px solid rgba(215, 162, 4, 0.25);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  }
  .popup-header { margin-bottom: 8px; flex-shrink: 0; }
  .popup-header-left { display: flex; align-items: center; }
  .popup-header-right { display: flex; align-items: center; }
  .popup-lang-select { font-size: 0.85rem; padding: 6px 30px 6px 14px; }
  .popup-content { flex-direction: column; gap: 12px; min-height: 0; }
  .popup-download {
    flex: 0 0 auto;
    width: 100%;
    padding: 0;
    justify-content: flex-start;
    order: 0;
  }
  .popup-download-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .popup-title-logo { height: 24px; margin-right: 4px; }
  .popup-title-text { font-size: 1.1rem; }
  .popup-download-desktop { display: none; }
  .popup-download-mobile { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 320px; align-items: center; }
  .popup-download-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    gap: 10px;
    width: 100%;
  }
  .popup-download-btn svg { width: 20px; height: 20px; }
  .popup-qr-modal-btn {
    font-size: 0.8rem;
    padding: 6px 20px;
    width: auto;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 30px;
    align-self: center;
  }
  .popup-qr-modal-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }
  .popup-carousel {
    flex: 1 1 auto;
    max-width: 100%;
    max-height: none !important;
    aspect-ratio: auto;
    min-height: 0;
    width: 100%;
    order: 1;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
  }
  .popup-carousel-track {
    height: 100%;
    display: flex;
    width: 300%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .popup-carousel-slide {
    width: 33.333%;
    height: 100%;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .popup-overlay { padding: 6px !important; }
  .popup-container {
    height: 90vh;
    max-height: 90vh;
    padding: 14px 12px 10px 12px;
    border-radius: 16px !important;
  }
  .popup-content { gap: 8px; }
  .popup-download-title { font-size: 1rem; }
  .popup-title-logo { height: 20px; }
  .popup-title-text { font-size: 1rem; }
  .popup-download-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .popup-download-btn svg { width: 18px; height: 18px; }
  .popup-qr-modal-btn { font-size: 0.7rem; padding: 5px 16px; }
  .popup-carousel { border-radius: 8px; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  color: transparent !important;
  background: transparent !important;
}