/* ========== VARIABLES ========== */
:root {
  --green: #2d7d6b;
  --green-dark: #1a5c4e;
  --green-light: #3a9982;
  --gold: #c9a84c;
  --gold-light: #e2c46a;
  --dark: #0f1f1a;
  --dark-2: #1c3028;
  --text: #2c3e35;
  --text-light: #6b7c74;
  --bg: #f8faf9;
  --white: #ffffff;
  --border: #e0ebe6;
  --shadow: 0 4px 24px rgba(29, 80, 60, 0.10);
  --shadow-lg: 0 12px 48px rgba(29, 80, 60, 0.15);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== CONTAINER ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }


/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.3s ease; border: none;
}
.btn-primary {
  background: var(--green); color: white;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ========== HOVER BORDER GRADIENT ========== */
/* Rotating conic-gradient border — same concept as the React HoverBorderGradient component */
@property --hbg-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0turn;
}
@keyframes hbg-spin {
  to { --hbg-angle: 1turn; }
}
@keyframes hbg-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

.btn-glow {
  position: relative;
  isolation: isolate;
  z-index: 0;
}
/* The spinning gradient ring — sits just outside the button */
.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--hbg-angle),
    transparent        0deg,
    #3aaa8a           50deg,
    var(--gold)       110deg,
    #c9a84c           130deg,
    transparent       180deg,
    transparent       360deg
  );
  filter: blur(4px);
  opacity: 0.6;
  z-index: -1;
  animation: hbg-spin 2.4s linear infinite, hbg-pulse 3s ease-in-out infinite;
  transition: opacity 0.35s, filter 0.35s;
}
/* Solid fill so the button background isn't see-through */
.btn-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  z-index: -1;
}
/* On hover: brighter, wider glow */
.btn-glow:hover::before {
  opacity: 1;
  filter: blur(6px);
  inset: -3px;
}
/* Full-width variant keeps the effect contained */
.btn-full.btn-glow::before { inset: -1.5px; }
.btn-full.btn-glow:hover::before { inset: -2px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }

.btn-whatsapp {
  background: #25d366; color: white;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; border-radius: 12px; }

/* ========== INTRO SCREEN ========== */
.intro-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #0a1f1a 0%, #0f2d26 50%, #0d1f1a 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.intro-screen.hide {
  opacity: 0; transform: translateY(-30px); pointer-events: none;
}
.intro-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(201,168,76,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(45,125,107,0.12) 0%, transparent 50%);
  animation: patternPulse 4s ease-in-out infinite alternate;
}
@keyframes patternPulse { from{opacity:0.6} to{opacity:1} }

.intro-dots-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0;
  animation: introDotsIn 1.4s ease 0.5s forwards;
}
@keyframes introDotsIn { to { opacity: 1; } }


.intro-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.intro-logo-wrap {
  animation: introLogoIn 0.8s cubic-bezier(.34,1.3,.64,1) forwards;
  opacity: 0;
}
@keyframes introLogoIn {
  from { opacity:0; transform: scale(0.7) translateY(20px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.intro-logo { width: 260px; max-width: 70vw; filter: drop-shadow(0 0 40px rgba(201,168,76,0.3)); }

.intro-tagline {
  display: flex; gap: 1px; margin-top: 8px;
}
.intro-tag-char {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 9vw, 80px); letter-spacing: 8px; color: var(--gold);
  opacity: 0; display: inline-block;
  animation: charIn 0.4s ease forwards;
}
@keyframes charIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }

.intro-line {
  width: 0; height: 1px; background: rgba(201,168,76,0.5);
  animation: lineGrow 0.6s ease forwards;
  animation-delay: 2.1s;
}
@keyframes lineGrow { to { width: 340px; } }

.intro-sub {
  font-size: 16px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 300;
  opacity: 0; animation: fadeUp 0.5s ease forwards;
  animation-delay: 2.4s;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }

.intro-progress {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 160px; height: 2px; background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
}
.intro-bar {
  height: 100%; width: 0; border-radius: 2px;
  background: linear-gradient(to right, var(--green), var(--gold));
  animation: barFill 2.8s ease forwards;
  animation-delay: 0.3s;
}
@keyframes barFill { to { width: 100%; } }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-img-footer { height: 80px; filter: none; opacity: 1; }
.hero-logo { width: 220px; max-width: 70%; margin-bottom: 24px; filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4)); }

/* ========== ANIMATED HERO LOGO ========== */
.hero-logo-wrap {
  position: relative;
  width: 300px; max-width: 80%;
  margin-bottom: 32px;
}
.hlo-typewriter-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.hlo-tw-text {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: #f5ead8;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.hlo-tw-cursor {
  font-size: 42px; color: var(--gold); font-weight: 300;
  animation: blink 0.7s step-end infinite;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-logo-img {
  width: 100%; display: block; opacity: 0;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  transition: opacity 0.6s ease;
}
.hero-logo-img.visible { opacity: 1; }
.hero-logo-overlay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hlo-arc {
  fill: none; stroke: rgba(255,255,255,0.85); stroke-width: 1.5;
  stroke-dasharray: 4 4;
  stroke-dashoffset: 180;
  animation: drawArc 1.2s ease forwards;
  animation-delay: 1.4s;
}
@keyframes drawArc { to { stroke-dashoffset: 0; } }
.hlo-kaaba-glow {
  fill: none; stroke: var(--gold); stroke-width: 2;
  opacity: 0;
  animation: kaabaPop 0.5s cubic-bezier(.34,1.56,.64,1) forwards;
  animation-delay: 2.5s;
}
@keyframes kaabaPop { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}
.navbar.scrolled .logo-main { color: var(--green); }
.logo-sub {
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.navbar.scrolled .logo-sub { color: var(--text-light); }
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links li a {
  padding: 8px 16px; border-radius: 50px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: all 0.3s;
}
.navbar.scrolled .nav-links li a { color: var(--text); }
.nav-links li a:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-links li a:hover { background: var(--bg); color: var(--green); }
.nav-cta {
  background: var(--white) !important; color: var(--green) !important;
  font-weight: 600 !important;
}
.navbar.scrolled .nav-cta {
  background: var(--green) !important; color: white !important;
}
/* ========== LANG SWITCHER ========== */
.lang-switcher { position: relative; z-index: 1100; }
.lang-current {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px; padding: 7px 14px;
  color: white; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
}
.navbar.scrolled .lang-current {
  background: var(--bg); color: var(--text);
  border-color: var(--border);
}
.lang-current:hover { background: rgba(255,255,255,0.2); }
.navbar.scrolled .lang-current:hover { background: var(--border); }
.lang-arrow { font-size: 10px; opacity: 0.7; }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  background: white; border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  overflow: hidden; min-width: 150px; z-index: 1200;
}
.lang-dropdown.open { display: block; }
.lang-dropdown li {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: 14px; font-weight: 500;
  color: var(--text); cursor: pointer; transition: background 0.2s;
}
.lang-dropdown li:hover { background: var(--bg); }
.lang-dropdown li.active { color: var(--green); font-weight: 600; }

/* ========== RTL (Arabic) ========== */
body.rtl {
  direction: rtl;
  text-align: right;
  font-family: 'Tajawal', 'DM Sans', sans-serif;
  letter-spacing: 0;
}
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4 {
  font-family: 'Tajawal', sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
}
body.rtl .section-eyebrow {
  font-family: 'Tajawal', sans-serif;
  letter-spacing: 1px;
}
body.rtl p, body.rtl li, body.rtl label, body.rtl input, body.rtl select, body.rtl textarea {
  font-family: 'Tajawal', sans-serif;
  line-height: 1.8;
}

/* --- Nav --- */
body.rtl .nav-container { flex-direction: row-reverse; }
body.rtl .logo { align-items: flex-end; }
body.rtl .lang-dropdown { right: auto; left: 0; }

/* --- Stats --- */
body.rtl .stat-item { border-right: none; border-left: 1px solid rgba(255,255,255,0.1); }
body.rtl .stat-item:last-child { border-left: none; }

/* --- Accordion (incluso) --- */
body.rtl .acc-header { text-align: right; }
body.rtl .acc-left { flex-direction: row-reverse; }

/* --- Payment plan arrows --- */
body.rtl .pay-arrow { transform: scaleX(-1); }

/* --- Perché noi --- */
body.rtl .perche-text .section-eyebrow { text-align: right; }
body.rtl .perche-point { flex-direction: row-reverse; }

/* --- Parallax quote --- */
body.rtl .parallax-text p {
  border-left: none;
  border-right: 3px solid var(--gold);
  padding-left: 0;
  padding-right: 20px;
  text-align: right;
}
body.rtl .parallax-text span {
  padding-left: 0;
  padding-right: 23px;
}

/* --- Testimonials --- */
body.rtl .testi-author { flex-direction: row-reverse; }

/* --- FAQ --- */
body.rtl .faq-q { text-align: right; flex-direction: row-reverse; }

/* --- Contatti options --- */
body.rtl .contatti-opt { flex-direction: row-reverse; }
body.rtl .contatti-opt:hover { transform: translateX(-4px); }

/* --- Footer --- */
body.rtl .footer-bottom { flex-direction: row-reverse; }
body.rtl .footer-social { flex-direction: row-reverse; }

/* --- Package badges (corner) --- */
body.rtl .package-badge { right: auto; left: 16px; }
body.rtl .pkg5-special-badge { right: auto; left: 10px; }
body.rtl .pkg5-ram-badge { right: auto; left: 10px; }
body.rtl .pricing-special-badge { right: auto; left: 14px; }

/* --- Controls row & billing pill --- */
body.rtl .pkg-controls-row { flex-direction: row-reverse; }
body.rtl .pkg-billing-pill { flex-direction: row-reverse; }
body.rtl .pkg-persons-counter { flex-direction: row-reverse; }

/* --- Package features list --- */
body.rtl .pkg5-feat { flex-direction: row-reverse; }
body.rtl .pricing-features li { flex-direction: row-reverse; }
body.rtl .package-features li { flex-direction: row-reverse; }

/* --- Ramadan banner --- */
body.rtl .pkg-ramadan-banner { flex-direction: row-reverse; }
body.rtl .pkg-ram-feats li { flex-direction: row-reverse; }

/* --- Hajj banner --- */
body.rtl .hajj-text { border-right: none; border-left: 1px solid rgba(255,255,255,0.08); }

/* --- Guida stats --- */
body.rtl .guida-stats { flex-direction: row-reverse; }

/* --- Nusuk guide --- */
body.rtl .nusuk-guide-header { flex-direction: row-reverse; }
body.rtl .nusuk-steps li { flex-direction: row-reverse; }

/* --- Edu / Perche points --- */
body.rtl .edu-point { flex-direction: row-reverse; }

/* --- Hero buttons --- */
body.rtl .hero-buttons { flex-direction: row-reverse; }

/* --- Countdown --- */
body.rtl .countdown { flex-direction: row-reverse; }

/* --- Hero content center alignment stays center in RTL --- */
body.rtl .hero-content { text-align: center; }
body.rtl .hero-eyebrow { unicode-bidi: plaintext; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px; transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--text); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: url('img/hero-bg.jpg') center 40% / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.65) 100%
  );
}
/* ========== AURORA BACKGROUND ========== */
@keyframes aurora {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 350% 50%, 350% 50%; }
}
.aurora-bg {
  position: absolute;
  inset: -10px;
  pointer-events: none;
  will-change: transform;
  opacity: 0.45;
  background-image:
    repeating-linear-gradient(
      100deg,
      rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.06) 7%,
      transparent 10%, transparent 12%,
      rgba(0,0,0,0.06) 16%
    ),
    repeating-linear-gradient(
      100deg,
      #2d7d6b 10%,
      #3aaa8a 15%,
      #c9a84c 20%,
      #1a5c4a 25%,
      #4db896 30%,
      #b8960a 35%,
      #2d7d6b 40%
    );
  background-size: 300%, 250%;
  background-position: 50% 50%, 50% 50%;
  filter: blur(14px) saturate(1.4);
  animation: aurora 50s linear infinite;
  mask-image: radial-gradient(ellipse at 60% 0%, black 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 0%, black 20%, transparent 72%);
}
.aurora-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      100deg,
      rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.04) 7%,
      transparent 10%, transparent 12%,
      rgba(0,0,0,0.04) 16%
    ),
    repeating-linear-gradient(
      100deg,
      #2d7d6b 10%,
      #c9a84c 18%,
      #3aaa8a 24%,
      #b8960a 30%,
      #1a5c4a 36%,
      #4db896 42%
    );
  background-size: 200%, 150%;
  background-attachment: fixed;
  animation: aurora 50s linear infinite;
  mix-blend-mode: soft-light;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 720px; padding: 120px 24px 80px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 8px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
  border: 2px solid rgba(201,168,76,0.3);
}
.hero-video {
  width: 120%;
  display: block;
  margin-left: -10%;
  margin-top: -8%;
  margin-bottom: -8%;
  pointer-events: none;
}
.hero-video::-webkit-media-controls { display: none !important; }
.hero-video::-webkit-media-controls-enclosure { display: none !important; }
.hero-video::--webkit-media-controls-panel { display: none !important; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 700; line-height: 1.1;
  color: white; margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(15px, 2.5vw, 18px); line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.countdown-box {
  margin-bottom: 40px; display: inline-block;
}
.countdown-label {
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 20px; text-align: center;
}
.countdown {
  display: flex; align-items: flex-start; gap: 12px;
}
.count-item {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 20px;
  min-width: 72px;
  backdrop-filter: blur(8px);
}
.count-item span {
  font-size: 42px; font-weight: 700; color: white;
  font-variant-numeric: tabular-nums;
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
  letter-spacing: -1px;
}
.count-item small {
  font-size: 10px; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px; margin-top: 8px;
  font-weight: 600;
}
.count-sep {
  font-size: 32px; color: rgba(255,255,255,0.3);
  font-weight: 300; margin-top: 14px; line-height: 1;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ========== STATS ========== */
.stats {
  background: var(--green-dark);
  padding: 48px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
  text-align: center; padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px; font-weight: 700;
  color: var(--gold); margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.stat-item p { color: rgba(255,255,255,0.7); font-size: 14px; }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  color: var(--green); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 700;
  color: var(--dark); margin-bottom: 16px; line-height: 1.2;
}
.section-header.light h2 { color: white; }
.section-header.light .section-eyebrow { color: var(--gold); }
.section-desc {
  font-size: 17px; color: var(--text-light); max-width: 480px; margin: 0 auto;
}
.section-header.light .section-desc { color: rgba(255,255,255,0.65); }

/* ========== PACCHETTI ========== */
.pacchetti { padding: 100px 0; background: var(--bg); }
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start;
}
.package-card {
  background: white; border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-featured { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.package-featured:hover { transform: scale(1.03) translateY(-6px); }
.package-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--green); color: white;
  padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
}
.badge-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--dark); }
.badge-dark { background: var(--dark); }

.package-img {
  height: 220px; background-size: cover; background-position: center;
}
.package-img-1 {
  background: linear-gradient(135deg, #1a4a38, #2d7d6b);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.package-img-2 {
  background: linear-gradient(135deg, #3a2a0a, #c9a84c);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.package-img-3 {
  background: linear-gradient(135deg, #0f1f1a, #2d4a40);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.package-img::after {
  content: '🕋';
  font-size: 72px;
  display: flex; align-items: center; justify-content: center;
  height: 100%;
}
.package-body { padding: 28px; }
.package-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.package-duration { font-size: 13px; color: var(--text-light); margin-bottom: 14px; }
.package-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.package-features { margin-bottom: 24px; }
.package-features li {
  font-size: 14px; color: var(--text);
  padding: 6px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.package-features li:last-child { border-bottom: none; }
.package-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 20px;
}
.price-from { font-size: 13px; color: var(--text-light); }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--green);
}
.price-per { font-size: 13px; color: var(--text-light); }

/* ========== MISSION ========== */
.mission { padding: 100px 0; background: white; }
.mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 16px;
}
.mission-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 32px; text-align: center;
  transition: all 0.3s;
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green); }
.mission-card-featured {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-color: transparent;
}
.mission-card-featured h3, .mission-card-featured p { color: white !important; }
.mission-card-featured:hover { border-color: transparent; }
.mission-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(45,125,107,0.08);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--green);
}
.mission-card-featured .mission-icon {
  background: rgba(255,255,255,0.15);
  color: white;
}
.mission-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.mission-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ========== INCLUSO ========== */
.incluso {
  padding: 100px 0;
  position: relative;
  background: url('img/hero-bg2.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}
.incluso::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,25,20,0.92) 0%,
    rgba(20,70,50,0.80) 40%,
    rgba(10,25,20,0.92) 100%
  );
}
.incluso .container { position: relative; z-index: 1; }
.incluso-accordion { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.acc-item { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; overflow: hidden; }
.acc-header {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left; gap: 16px;
  transition: background 0.2s;
}
.acc-header:hover { background: rgba(255,255,255,0.08); }
.acc-left { display: flex; align-items: center; gap: 16px; }
.acc-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  color: white;
}
.acc-icon svg { stroke: white; stroke-width: 2; }
.acc-left h4 { font-size: 17px; font-weight: 800; color: white; margin-bottom: 2px; letter-spacing: 0.02em; }
.acc-sub { font-size: 13px; color: rgba(255,255,255,0.65); }
.acc-plus {
  font-size: 24px; font-weight: 300; color: white; flex-shrink: 0;
  transition: transform 0.3s; line-height: 1;
}
.acc-item.open .acc-plus { transform: rotate(45deg); }
.acc-body {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 24px;
}
.acc-item.open .acc-body { max-height: 200px; padding: 0 24px 20px; }
.acc-body p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 16px; }

/* ========== WHY ATTEND ========== */
.why-attend { padding: 100px 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  background: white; border-radius: 20px; padding: 36px 28px;
  border: 1px solid var(--border); transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.why-num { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; color: var(--green); opacity: 0.25; margin-bottom: 16px; line-height: 1; letter-spacing: -1px; }
.why-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ========== PAYMENT PLAN ========== */
.payment-plan { padding: 100px 0; background: white; }
.pay-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 48px 0 40px;
}
.pay-step {
  text-align: center; padding: 40px 32px;
  background: var(--bg); border-radius: 20px;
  border: 2px solid var(--border); flex: 1; max-width: 280px;
  transition: all 0.3s;
}
.pay-step:hover { border-color: var(--green); box-shadow: var(--shadow); }
.pay-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white; font-size: 22px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.pay-step h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.pay-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.pay-arrow { font-size: 28px; color: var(--green); padding: 0 16px; flex-shrink: 0; }
.pay-cta { text-align: center; }

/* ========== PERCHÉ NOI ========== */
.perche { padding: 100px 0; background: white; }
.perche-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.perche-text .section-eyebrow { display: block; text-align: left; }
.perche-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: var(--dark);
  margin-bottom: 20px; line-height: 1.2;
}
.perche-text p {
  color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: 16px;
}
.perche-points { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.perche-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: 16px;
  background: var(--bg); border: 1px solid var(--border);
  transition: all 0.3s;
}
.perche-point:hover { border-color: var(--green); box-shadow: var(--shadow); }
.pp-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.perche-point h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.perche-point p { font-size: 13px; color: var(--text-light); }
.perche-image { position: relative; }
.perche-img-inner {
  border-radius: 24px; overflow: hidden;
  height: 500px;
  background: linear-gradient(135deg, #0f2922, #2d7d6b);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.perche-img-kaaba {
  font-size: 120px;
}
.perche-img-kaaba::after { content: '🕋'; }
.perche-img-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.15), transparent 60%);
}

/* ========== TESTIMONIANZE ========== */
.parallax-banner {
  position: relative;
  height: 340px;
  background: url('img/hero-bg2.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.parallax-text {
  position: relative; z-index: 1;
  text-align: center; padding: 0 32px;
  max-width: 800px;
}
.parallax-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 2vw, 22px);
  font-weight: 300;
  color: white;
  letter-spacing: 0.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  text-align: left;
  white-space: nowrap;
}
.parallax-text span {
  display: block;
  font-size: 12px; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase;
  font-weight: 600;
  padding-left: 23px;
  opacity: 0.85;
}

.testimonianze { padding: 100px 0; background: var(--bg); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: white; border-radius: 20px;
  padding: 32px; box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p {
  font-size: 15px; color: var(--text-light);
  line-height: 1.7; margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 15px; color: var(--dark); }
.testi-author small { font-size: 13px; color: var(--text-light); }

/* ========== FAQ ========== */
.faq { padding: 100px 0; background: white; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(45,125,107,0.08); }
.faq-item.open { border-color: var(--green); box-shadow: 0 4px 20px rgba(45,125,107,0.12); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-size: 16px; font-weight: 500;
  color: var(--dark); text-align: left; gap: 16px;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--green); }
.faq-plus {
  font-size: 22px; color: var(--green); font-weight: 300;
  flex-shrink: 0; transition: transform 0.3s;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 0 24px 20px; font-size: 15px;
  color: var(--text-light); line-height: 1.7;
}

/* ========== CONTATTI ========== */
.contatti {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}
.contatti-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contatti-text .section-eyebrow { color: var(--gold); display: block; }
.contatti-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 700; color: white;
  margin-bottom: 20px; line-height: 1.2;
}
.contatti-text > p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.8; margin-bottom: 36px; }
.contatti-options { display: flex; flex-direction: column; gap: 16px; }
.contatti-opt {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px;
  transition: all 0.3s; cursor: pointer;
}
.contatti-opt:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}
.co-icon { font-size: 28px; flex-shrink: 0; }
.contatti-opt strong { display: block; font-size: 15px; color: white; margin-bottom: 2px; }
.contatti-opt span { font-size: 13px; color: rgba(255,255,255,0.5); }

.contatti-form {
  background: white; border-radius: 24px; padding: 40px;
}
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 15px; font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--bg);
  transition: border-color 0.3s; outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); background: white; }
.form-group textarea { resize: vertical; }

/* ========== FOOTER ========== */
.footer { background: #070f0c; padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-main { color: var(--green); font-size: 26px; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand p {
  margin-top: 16px; font-size: 14px;
  color: rgba(255,255,255,0.4); line-height: 1.7;
}
.footer-links h4, .footer-contact h4 {
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-links ul li a:hover { color: var(--green-light); }
.footer-contact p {
  font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 8px;
}
.footer-social {
  display: flex; gap: 10px; margin-top: 16px;
}
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--green); color: white; transform: translateY(-2px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

/* ========== PACKAGES SECTION LABEL ========== */
/* ========== PRICING TOGGLE ========== */
.pkg-toggle-wrapper {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 0 auto 48px;
  background: white; border: 1.5px solid var(--border);
  border-radius: 50px; padding: 10px 24px;
  width: fit-content; box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.toggle-opt {
  font-size: 15px; font-weight: 600; color: var(--text-light);
  transition: color 0.25s; cursor: default; user-select: none;
  display: flex; align-items: center; gap: 6px;
}
.toggle-opt-active { color: var(--dark); }
.toggle-extra {
  font-style: normal; font-size: 12px; font-weight: 700;
  color: var(--green); background: rgba(45,125,107,0.12);
  padding: 2px 7px; border-radius: 20px;
}
.pkg-toggle {
  position: relative; width: 52px; height: 28px;
  background: #e2e8e6; border: none; border-radius: 50px;
  cursor: pointer; transition: background 0.3s ease; flex-shrink: 0;
}
.pkg-toggle.active { background: var(--green); }
.pkg-toggle-pill {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: white; border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.pkg-toggle.active .pkg-toggle-pill { transform: translateX(24px); }

/* ========== NEW PRICING GRID ========== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start; margin-bottom: 0;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}
.pricing-card {
  background: white; border-radius: 20px;
  border: 1.5px solid var(--border);
  overflow: hidden; position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.pricing-card-featured {
  border-color: var(--green);
  box-shadow: 0 4px 32px rgba(45,125,107,0.2);
  transform: scale(1.03);
}
.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.pricing-card-gold { border-color: rgba(201,168,76,0.4); }
.pricing-card-ramadan { border-color: rgba(74,26,138,0.3); }

.pricing-popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: white;
  font-size: 12px; font-weight: 700;
  padding: 5px 16px; border-radius: 0 0 12px 12px;
  letter-spacing: 0.3px; white-space: nowrap;
  z-index: 2;
}
.pricing-special-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  padding: 5px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
}
.badge-gold { background: linear-gradient(135deg, var(--gold), #e0b840); color: #3a2500; }
.badge-ramadan { background: linear-gradient(135deg, #1a0a3a, #4a1a8a); color: white; }

.pricing-month {
  padding: 11px 20px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: white;
}
.pricing-inner { padding: 24px; }

.pricing-dates {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--green-dark);
  background: rgba(45,125,107,0.08);
  border: 1px solid rgba(45,125,107,0.2);
  border-radius: 8px; padding: 5px 11px;
  margin-bottom: 14px; letter-spacing: 0.2px;
}
.pricing-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700; color: var(--dark);
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 14px; color: var(--text-light);
  line-height: 1.6; margin-bottom: 20px;
}
.pricing-price-block {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 20px; padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-price-tag {
  display: flex; align-items: baseline; gap: 2px;
}
.pp-currency {
  font-size: 22px; font-weight: 700; color: var(--green);
  font-family: 'DM Sans', sans-serif;
}
.pp-amount {
  font-size: 42px; font-weight: 800; color: var(--green);
  font-family: 'DM Sans', sans-serif; line-height: 1;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.pp-amount.price-flip {
  transform: scale(0.85); opacity: 0;
}
.pp-gold { }
.pp-gold .pp-currency, .pp-gold .pp-amount { color: var(--gold); }
.pp-ramadan .pp-currency, .pp-ramadan .pp-amount { color: #4a1a8a; }
.pp-per {
  font-size: 13px; color: var(--text-light); font-weight: 500;
}

.pricing-features {
  list-style: none; margin-bottom: 24px;
}
.pricing-features li {
  font-size: 14px; color: var(--text);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pf-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(45,125,107,0.12);
  color: var(--green); font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}
.pf-gold { background: rgba(201,168,76,0.15) !important; color: #b8860b !important; }
.pf-ram { background: rgba(74,26,138,0.12) !important; color: #4a1a8a !important; }

.packages-section-label {
  font-size: 18px; font-weight: 700; color: var(--dark);
  margin-bottom: 28px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  letter-spacing: 0.3px;
}

/* ========== PACKAGE MONTH BAR ========== */
.package-month-bar {
  padding: 12px 20px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: white;
}
.bar-green { background: var(--green); }
.bar-teal { background: var(--green-dark); }
.bar-gold { background: linear-gradient(135deg, #b8860b, var(--gold)); }
.bar-ramadan { background: linear-gradient(135deg, #1a0a3a, #4a1a8a); }

.package-dates {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--green-dark);
  background: rgba(45,125,107,0.1);
  border: 1px solid rgba(45,125,107,0.25);
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

/* ========== PRICE OPTIONS ========== */
.price-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 20px;
}
.price-options-single { grid-template-columns: 1fr; }
.price-option {
  border: 1.5px solid var(--border); border-radius: 12px;
  padding: 12px 14px; text-align: center;
  transition: all 0.3s;
}
.po-featured {
  border-color: var(--green);
  background: rgba(45,125,107,0.05);
}
.po-full { width: 100%; }
.po-label { font-size: 12px; color: var(--text-light); margin-bottom: 4px; font-weight: 500; }
.po-price { font-size: 22px; font-weight: 700; color: var(--green); font-family: 'Playfair Display', serif; }
.po-price span { font-size: 12px; font-weight: 400; color: var(--text-light); }

/* ========== PACKAGES GRID 2 COL ========== */
.packages-grid-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

/* ========== SPECIAL PACKAGES ========== */
.package-special { position: relative; }

/* ========== BADGE INLINE ========== */
.package-badge-inline {
  display: inline-block;
  padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 12px;
}

/* ========== RAMADAN BTN ========== */
.btn-ramadan {
  background: linear-gradient(135deg, #1a0a3a, #4a1a8a);
  color: white;
}
.btn-ramadan:hover { opacity: 0.9; transform: translateY(-2px); }

/* ========== PKG5 — PRICING SECTION (React-inspired 5-col) ========== */
.pkg-controls-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 40px;
}
.pkg-billing-pill {
  display: flex; background: #f1f5f3; border-radius: 50px;
  padding: 4px; gap: 2px;
}
.billing-btn {
  padding: 9px 20px; border-radius: 50px; border: none; cursor: pointer;
  font-size: 14px; font-weight: 600; transition: all 0.25s;
  background: transparent; color: var(--text-light);
  display: flex; align-items: center; gap: 6px;
}
.billing-btn.billing-active { background: var(--dark); color: white; }
.billing-extra {
  font-style: normal; font-size: 12px; font-weight: 700;
  color: var(--green); background: rgba(45,125,107,0.15);
  padding: 2px 7px; border-radius: 20px;
}
.billing-btn.billing-active .billing-extra { color: var(--gold); background: rgba(201,168,76,0.2); }

.pkg-persons-counter {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border); border-radius: 50px;
  padding: 8px 18px; font-size: 14px; font-weight: 500;
  background: white;
}
.persons-label { color: var(--text-light); }
.persons-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border); background: white;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: var(--text);
}
.persons-btn:hover { background: var(--green); border-color: var(--green); color: white; }
.persons-num { font-size: 16px; font-weight: 700; color: var(--dark); min-width: 24px; text-align: center; }

/* 3-column grid (2 rows × 3 cards) */
.pkg5-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start; margin-bottom: 0;
}
.pkg5-card {
  background: white; border-radius: 20px;
  border: 1.5px solid var(--border);
  overflow: hidden; position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.pkg5-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.10); }
.pkg5-featured {
  border-color: var(--green);
  box-shadow: 0 4px 28px rgba(45,125,107,0.18);
}
.pkg5-gold { border-color: rgba(201,168,76,0.5); }
.pkg5-ramadan { border-color: rgba(74,26,138,0.35); }

/* Badges */
.pkg5-popular {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--green); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  padding: 4px 14px; border-radius: 0 0 10px 10px;
  white-space: nowrap; z-index: 2;
}
.pkg5-special-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: linear-gradient(135deg, var(--gold), #e0b840);
  color: #3a2500; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}
.pkg5-ram-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: linear-gradient(135deg, #1a0a3a, #4a1a8a);
  color: white; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}

/* Card sections */
.pkg5-top { padding: 16px 14px 12px; }
.pkg5-featured .pkg5-top { padding-top: 26px; } /* space for popular badge */

.pkg5-name {
  font-size: 13px; font-weight: 600; color: var(--text-light);
  display: block; margin-bottom: 8px;
}
.pkg5-price-wrap {
  display: flex; align-items: baseline; gap: 1px;
  margin-bottom: 4px;
}
.pkg5-eur { font-size: 18px; font-weight: 700; color: var(--green); }
.pkg5-amount {
  font-size: 36px; font-weight: 800; color: var(--green);
  font-family: 'DM Sans', sans-serif; line-height: 1;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.pkg5-amount.flip { transform: scale(0.85); opacity: 0; }
.pkg5-price-gold .pkg5-eur,
.pkg5-price-gold .pkg5-amount { color: var(--gold); }
.pkg5-price-ram .pkg5-eur,
.pkg5-price-ram .pkg5-amount { color: #5b2ca0; }

.pkg5-per { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.pkg5-dates {
  font-size: 11px; color: var(--green-dark); font-weight: 600;
  background: rgba(45,125,107,0.07); border-radius: 6px;
  padding: 4px 8px; display: inline-block;
}

.pkg5-cta { padding: 0 14px 10px; }
.pkg5-cta .btn { font-size: 14px; padding: 10px 16px; }
.pkg5-mode-note {
  font-size: 11px; text-align: center; color: var(--text-light);
  margin-top: 6px; height: 18px;
  overflow: hidden;
  transition: opacity 0.2s;
}

.pkg5-features { padding: 12px 14px 16px; border-top: 1px solid var(--border); flex: 1; }
.pkg5-feat-hdr { font-size: 11px; color: var(--text-light); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.pkg5-feat {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--text); padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.pkg5-feat:last-child { border-bottom: none; }
.pkg5-chk {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(45,125,107,0.12); color: var(--green);
  font-size: 10px; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}
.pkg5-chk-gold { background: rgba(201,168,76,0.15); color: #b8860b; }
.pkg5-chk-ram  { background: rgba(74,26,138,0.12); color: #4a1a8a; }

/* ========== RAMADAN FULL-WIDTH BANNER ========== */
.pkg-ramadan-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px;
  background: linear-gradient(135deg, #0e0520 0%, #1a0a3a 50%, #2a1060 100%);
  border-radius: 24px; padding: 40px 48px;
  border: 1px solid rgba(139,92,246,0.25);
  box-shadow: 0 8px 40px rgba(74,26,138,0.2);
}
.pkg-ram-left { flex: 1; }
.pkg-ram-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: white;
  margin-bottom: 6px;
}
.pkg-ram-sub {
  font-size: 13px; font-weight: 600; color: rgba(180,150,255,0.8);
  margin-bottom: 14px; letter-spacing: 0.3px;
}
.pkg-ram-desc {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 20px; max-width: 480px;
}
.pkg-ram-feats {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
}
.pkg-ram-feats li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.8);
}

.pkg-ram-right {
  flex-shrink: 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.pkg-ram-price-block { text-align: center; }
.pkg-ram-from {
  font-size: 12px; font-weight: 600; color: rgba(180,150,255,0.7);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.pkg-ram-price {
  display: flex; align-items: baseline; gap: 2px; justify-content: center;
}
.pkg-ram-eur {
  font-size: 22px; font-weight: 700; color: #c4a7ff;
}
.pkg-ram-amount {
  font-size: 56px; font-weight: 800; color: white;
  font-family: 'DM Sans', sans-serif; line-height: 1;
}
.pkg-ram-per {
  font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px;
}
.pkg-ram-right .btn-ramadan {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: white; font-size: 15px; padding: 13px 32px;
  border-radius: 50px; font-weight: 600;
  transition: all 0.3s; white-space: nowrap;
}
.pkg-ram-right .btn-ramadan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(109,40,217,0.45);
}
.pkg-ram-note {
  font-size: 12px; color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  .pkg-ramadan-banner { flex-direction: column; padding: 32px 28px; gap: 32px; }
  .pkg-ram-feats { grid-template-columns: 1fr; }
  .pkg-ram-right { width: 100%; }
  .pkg-ram-right .btn-ramadan { width: 100%; justify-content: center; }
}

/* Responsive */
@media (max-width: 1200px) {
  .pkg5-amount { font-size: 30px; }
}
@media (max-width: 900px) {
  .pkg5-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pkg5-grid { grid-template-columns: 1fr; }
  .pkg-controls-row { flex-direction: column; align-items: flex-start; }
}

/* ========== HAJJ BANNER ========== */
.hajj-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1c3028 100%);
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.hajj-banner-content {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 0;
}
.hajj-text {
  padding: 48px; border-right: 1px solid rgba(255,255,255,0.08);
}
.hajj-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: white;
  margin-bottom: 16px;
}
.hajj-text p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.hajj-features li { color: rgba(255,255,255,0.75) !important; border-bottom-color: rgba(255,255,255,0.08) !important; }
.hajj-cta {
  padding: 48px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 16px;
}
.hajj-price-note {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--gold);
}
.hajj-note { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ========== LA GUIDA ========== */
.guida { padding: 100px 0; background: var(--bg); }
.guida-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center;
}
.guida-media { display: flex; flex-direction: column; gap: 20px; }
.guida-photo-placeholder {
  border-radius: 20px; overflow: hidden;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.guida-real-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.guida-reel { border-radius: 12px; overflow: hidden; width: 100%; }

.guida-text .section-eyebrow { display: block; }
.guida-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: var(--dark);
  margin-bottom: 8px;
}
.guida-title {
  font-size: 15px; color: var(--green); font-weight: 500;
  margin-bottom: 24px;
}
.guida-text p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.guida-stats {
  display: flex; gap: 24px; margin: 32px 0;
  padding: 24px; background: white;
  border-radius: 16px; border: 1px solid var(--border);
}
.gs-item { text-align: center; flex: 1; }
.gs-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--green); margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.gs-item p { font-size: 13px; color: var(--text-light); }

/* ========== INCLUSO NOTE ========== */
.incluso-note {
  margin-top: 40px; text-align: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 20px 28px;
}
.incluso-note p { color: rgba(255,255,255,0.8); font-size: 15px; }

/* ========== FORM TITLE ========== */
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--dark);
  margin-bottom: 24px;
}

/* ========== GALLERIA ========== */
.galleria { padding: 100px 0; background: white; }
.gallery-slider-wrap {
  position: relative;
  overflow: visible;
  margin: 0 -24px;
  padding: 24px 24px;
  direction: ltr;
}
.gallery-slider-clip {
  overflow: hidden;
  border-radius: 4px;
}

/* Arrows */
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.92);
  border: none; border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 20px; cursor: pointer; color: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-arrow:hover { background: var(--green); color: white; transform: translateY(-50%) scale(1.08); }
.gallery-arrow-prev { left: 28px; }
.gallery-arrow-next { right: 28px; }
.gallery-grid {
  display: flex;
  gap: 16px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gallery-item {
  position: relative; border-radius: 16px; overflow: hidden;
  flex: 0 0 360px;
  height: 260px; cursor: zoom-in;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
}
.gallery-item:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
  z-index: 2;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ccc; cursor: pointer; transition: background 0.3s, transform 0.3s;
  border: none;
}
.gallery-dot.active { background: var(--green); transform: scale(1.3); }

/* ========== GALLERY LIGHTBOX ========== */
.gallery-lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  align-items: center; justify-content: center;
}
.gallery-lightbox.open { display: flex; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(6px);
}
.lightbox-img-wrap {
  position: relative; z-index: 1;
  max-width: 92vw; max-height: 88vh;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: lb-in 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes lb-in {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox-img-wrap img {
  display: block; max-width: 92vw; max-height: 88vh;
  object-fit: contain; transition: opacity 0.18s;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px; z-index: 2;
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 44px; height: 44px; font-size: 20px; color: white;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 52px; height: 52px; font-size: 24px; color: white;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ========== SESSIONE EDUCATIVA ========== */
.educativa { padding: 100px 0; background: var(--bg); }
.edu-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: center;
}
.edu-reel { display: flex; justify-content: center; }
.edu-text { display: flex; flex-direction: column; gap: 0; }
.edu-points { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.edu-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: 16px;
  background: white; border: 1px solid var(--border);
  transition: all 0.3s;
}
.edu-point:hover { border-color: var(--green); box-shadow: var(--shadow); }
.edu-icon { font-size: 28px; flex-shrink: 0; }
.edu-point h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.edu-point p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ========== NUSUK GUIDE ========== */
.nusuk-guide {
  margin: 0 40px 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 32px 0 0;
  display: flex; flex-direction: column; gap: 20px;
}
.nusuk-guide-header {
  display: flex; align-items: flex-start; gap: 16px;
}
.nusuk-icon { font-size: 32px; flex-shrink: 0; line-height: 1; }
.nusuk-guide-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 6px;
}
.nusuk-guide-header p { font-size: 14px; color: rgba(255,255,255,0.5); }
.nusuk-steps {
  list-style: none; display: flex; flex-direction: column; gap: 14px;
}
.nusuk-steps li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.5;
}
.nusuk-steps li strong { color: #fff; }
.nusuk-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(45,125,107,0.5); border: 1px solid rgba(45,125,107,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.nusuk-link {
  color: var(--gold); text-decoration: underline; font-weight: 600;
  transition: color 0.2s;
}
.nusuk-link:hover { color: var(--gold-light); }
@media (max-width: 768px) {
  .nusuk-guide { margin: 0 24px 28px; }
}

/* ========== SOFT GRADIENT BACKGROUND ANIMATION ========== */
@property --sg-hue1 {
  syntax: '<angle>';
  inherits: false;
  initial-value: 145deg;
}
@property --sg-hue2 {
  syntax: '<angle>';
  inherits: false;
  initial-value: 195deg;
}
@keyframes sg_anim {
  0%   { --sg-hue1: 145deg; --sg-hue2: 195deg; }
  100% { --sg-hue1: 505deg; --sg-hue2: 555deg; }
}
/* Apply animated green-tinted oklch gradient overlay to all light sections */
.mission,
.payment-plan,
.perche,
.faq,
.galleria,
.pacchetti,
.why-attend,
.testimonianze,
.guida,
.educativa {
  background-image:
    linear-gradient(
      in oklch longer hue to right,
      oklch(0.97 0.025 var(--sg-hue1) / 55%),
      oklch(0.95 0.03 var(--sg-hue2) / 55%)
    ),
    linear-gradient(
      in oklch longer hue to bottom,
      oklch(0.97 0.025 var(--sg-hue1) / 55%),
      oklch(0.95 0.03 var(--sg-hue2) / 55%)
    );
  animation: sg_anim 10s linear infinite;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .gallery-item { flex: 0 0 80vw; height: 240px; }
  .edu-grid { grid-template-columns: 1fr; }
  .edu-reel { max-width: 400px; width: 100%; margin: 0 auto; }
  .packages-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .packages-grid-2 { grid-template-columns: 1fr !important; max-width: 520px; }
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 520px; margin: 0 auto; }
  .pricing-grid-2 { grid-template-columns: 1fr !important; max-width: 520px; margin: 0 auto; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-6px); }
  .pkg-toggle-wrapper { padding: 8px 16px; gap: 10px; }
  .package-featured { transform: none; }
  .mission-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .pay-grid { flex-direction: column; gap: 16px; }
  .pay-arrow { transform: rotate(90deg); padding: 0; }
  .perche-grid { grid-template-columns: 1fr; gap: 48px; }
  .perche-image { display: none; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contatti-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hajj-banner-content { grid-template-columns: 1fr; }
  .hajj-text { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 36px; }
  .hajj-cta { padding: 36px; }
  .guida-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; top: 0; background: white; flex-direction: column; justify-content: center; align-items: center; gap: 0; z-index: 1000; }
  .nav-links.open { display: flex; }
  .nav-links li a { color: var(--dark) !important; font-size: 20px !important; padding: 16px !important; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .countdown { gap: 4px; }
  .count-item { min-width: 52px; }
  .count-item span { font-size: 28px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contatti-form { padding: 28px 20px; }

  /* --- Mobile fixes --- */
  .hero-content { padding: 70px 20px 50px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 28px; }
  .mission { padding: 72px 0; }
  .mission-card { padding: 24px 20px; }
  .section-header { margin-bottom: 40px; }
  .gallery-item { flex: 0 0 85vw; height: 220px; }
  .gallery-arrow-prev { left: 12px; }
  .gallery-arrow-next { right: 12px; }
  .gallery-arrow { width: 38px; height: 38px; font-size: 16px; }
}

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

  /* --- Small phone fixes --- */
  .hero-content { padding: 56px 16px 40px; }
  .hero-subtitle { font-size: 15px; }
  .countdown { gap: 3px; }
  .count-item { min-width: 44px; padding: 10px 10px; border-radius: 10px; }
  .count-item span { font-size: 22px; }
  .count-item small { font-size: 9px; letter-spacing: 0.5px; }
  .count-sep { font-size: 20px; margin-top: 8px; }
  .section-header { margin-bottom: 32px; }
  .mission { padding: 56px 0; }
  .mission-card { padding: 20px 16px; }
  .nusuk-guide { margin: 0 16px 20px; }
  .gallery-item { flex: 0 0 92vw; height: 200px; }
  .gallery-arrow-prev { left: 8px; }
  .gallery-arrow-next { right: 8px; }
  .stat-item { padding: 16px 12px; }
}

/* ========== PREMIUM POLISH ========== */

/* --- Focus states (accessibility + polish) --- */
.btn:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(45,125,107,0.12);
}

/* --- Smoother image loading --- */
img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* --- Why cards: icon glow on hover --- */
.why-card:hover .why-icon {
  background: var(--green);
  color: white;
  transform: scale(1.1);
}
.why-icon {
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

/* --- Mission card: subtle left border on hover --- */
.mission-card:hover {
  border-left: 3px solid var(--green);
}

/* --- Testimonial card: softer shadow on hover --- */
.testi-card:hover {
  box-shadow: 0 12px 40px rgba(45,125,107,0.12);
}

/* --- Contatti option: smooth icon scale --- */
.contatti-opt:hover .contatti-icon {
  transform: scale(1.15);
}
.contatti-icon {
  transition: transform 0.3s;
}

/* --- FAQ plus icon: smooth color transition --- */
.faq-plus {
  transition: transform 0.3s ease, color 0.3s;
}
.faq-item.open .faq-plus { color: var(--green); }

/* --- Nav link: underline reveal on hover --- */
.nav-links li a {
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; border-radius: 2px;
  background: var(--gold);
  transition: left 0.25s ease, right 0.25s ease;
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  left: 16px; right: 16px;
}

/* --- Section headers: consistent spacing --- */
.section-header {
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

/* --- Gallery: cursor affordance --- */
.gallery-wrapper { cursor: grab; }
.gallery-wrapper:active { cursor: grabbing; }

/* --- Arabic RTL: mobile font size boost --- */
@media (max-width: 768px) {
  body.rtl p { font-size: 16px; line-height: 1.85; }
  body.rtl h2 { font-size: clamp(26px, 6vw, 40px); }
  body.rtl h3 { font-size: clamp(18px, 4.5vw, 24px); }
  body.rtl .hero-subtitle { font-size: 17px; line-height: 1.9; }
  body.rtl .faq-q span:first-child { font-size: 16px; }
}

/* --- Arabic RTL: nav mobile overlay --- */
body.rtl .nav-links.open {
  text-align: right;
  align-items: flex-end;
  padding-right: 40px;
}

/* --- Smooth section fade-in performance --- */
.fade-up { will-change: opacity, transform; }
.fade-up.visible { will-change: auto; }

/* --- Pkg5 featured card: stronger visual weight --- */
.pkg5-featured {
  border-width: 2px;
}

/* --- Form submit button: loading state width stability --- */
.form-btn {
  min-width: 160px;
}

/* --- Footer links: gentle underline on hover --- */
.footer-nav a,
.footer-col a {
  position: relative;
  transition: color 0.25s;
}
.footer-nav a::after,
.footer-col a::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; width: 0;
  height: 1px; background: var(--gold);
  transition: width 0.25s;
}
.footer-nav a:hover::after,
.footer-col a:hover::after { width: 100%; }
