﻿/* ===========================
   YOUSSEFTOUBA â€” STYLES.CSS
   =========================== */

:root {
  --navy: #0a0f1e;
  --navy-2: #0d1526;
  --navy-3: #111e35;
  --purple: #7c5cbf;
  --purple-light: #9e80d4;
  --purple-dark: #5a3d8a;
  --white: #ffffff;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --border-purple: rgba(124,92,191,0.3);
  --green: #25d366;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.07);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 30px rgba(0,0,0,0.4);
  --shadow-purple: 0 0 40px rgba(124,92,191,0.2);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', sans-serif;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

.gradient-text {
  color: var(--purple-light);
  background: linear-gradient(135deg, var(--purple-light), #c4b0e8, var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
#home, #about, #process, #pricing, #faq, #booking { scroll-margin-top: 70px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font); font-weight: 600; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); white-space: nowrap; text-decoration: none;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white); box-shadow: 0 4px 20px rgba(124,92,191,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,92,191,0.5); }

.btn-outline {
  background: transparent; color: var(--purple-light); border-color: var(--purple-light);
}
.btn-outline:hover { background: var(--purple); color: var(--white); border-color: var(--purple); transform: translateY(-2px); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

.btn-call {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff; box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.5); }

.btn-whatsapp-nav {
  background: rgba(37,211,102,0.15); color: #25d366;
  border: 1.5px solid rgba(37,211,102,0.3); padding: 9px 18px;
  border-radius: 50px; font-weight: 600; font-size: 0.88rem; min-height: 44px;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-whatsapp-nav:hover { background: #25d366; color: #fff; }

.btn-call-nav {
  background: rgba(59,130,246,0.15); color: #3b82f6;
  border: 1.5px solid rgba(59,130,246,0.3); padding: 9px 18px;
  border-radius: 50px; font-weight: 600; font-size: 0.88rem; min-height: 44px;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-call-nav:hover { background: #3b82f6; color: #fff; }

.btn-primary-nav {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white); padding: 9px 20px; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem; min-height: 44px;
  transition: var(--transition); display: inline-flex; align-items: center;
}
.btn-primary-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,92,191,0.4); }

.btn-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-light:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.btn-detail {
  background: rgba(124,92,191,0.1); color: var(--purple-light);
  border: 1px solid var(--border-purple); padding: 10px 22px;
  border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
  justify-content: center; width: 100%;
}
.btn-detail:hover { background: var(--purple); color: var(--white); border-color: var(--purple); transform: translateY(-2px); }

/* ---- LANGUAGE TOGGLE ---- */
.lang-toggle {
  display: flex; background: rgba(124,92,191,0.1);
  border: 1px solid var(--border-purple); border-radius: 50px; overflow: hidden;
}
.lang-btn {
  padding: 6px 14px; font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); color: var(--text-muted);
  background: none; border: none; font-family: var(--font); letter-spacing: 0.5px;
  min-height: 44px; min-width: 44px; display: flex; align-items: center; justify-content: center;
}
.lang-btn.active { background: var(--purple); color: white; border-radius: 50px; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(124,92,191,0.15); color: var(--purple-light);
  border: 1px solid var(--border-purple); padding: 0.4rem 1.25rem;
  border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
  width: auto; min-width: fit-content; white-space: nowrap;
  text-align: center; direction: ltr;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.pricing-reassurance { font-size: 0.88rem; color: var(--text-muted); text-align: center; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.pricing-reassurance i { color: var(--purple-light); font-size: 0.85rem; }

/* ---- ANIMATIONS ---- */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ---- NAVBAR ---- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); border-bottom: 1px solid transparent; }
.navbar.scrolled {
  top: 0; background: rgba(10,15,30,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; }
.logo-img { width: 34px; height: 34px; object-fit: contain; }
.logo-text { color: var(--white); }
.logo-accent { color: var(--purple-light); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.lang-fr .nav-links { gap: 16px; }
.nav-mobile-lang { display: none; }
.nav-book-link { display: none; }
.nav-links a {
  color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--purple-light); transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px 8px; min-height: 44px; min-width: 44px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ---- HERO ---- */
#shaderCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero {
  min-height: 100vh; min-height: 100svh; position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 0 110px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,92,191,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,92,191,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.glow-1 { width: 600px; height: 600px; background: rgba(124,92,191,0.08); top: -200px; right: -200px; }
.glow-2 { width: 500px; height: 500px; background: rgba(37,211,102,0.05); bottom: -150px; left: -150px; }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 880px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,92,191,0.1); border: 1px solid var(--border-purple);
  color: var(--purple-light); padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 28px;
}
.hero-title { font-size: clamp(2rem, 5.5vw, 3.5rem); font-weight: 900; line-height: 1.15; color: var(--white); margin-bottom: 28px; }
.hero-title span { display: block; }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--text-muted); margin-bottom: 40px; line-height: 1.8; }
.hero-subtitle strong { color: var(--white); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); }
.trust-item i { color: var(--purple-light); font-size: 0.85rem; }
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.8rem;
}
.scroll-arrow { animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---- TRUST PILLARS ---- */
.trust-pillars-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(124,92,191,0.06), rgba(124,92,191,0.02));
  border-top: 1px solid var(--border-purple); border-bottom: 1px solid var(--border-purple);
}
.trust-pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-pillar-card {
  text-align: center; padding: 36px 24px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); transition: var(--transition);
}
.trust-pillar-card:hover { border-color: var(--border-purple); transform: translateY(-4px); }
.trust-pillar-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(124,92,191,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem; color: var(--purple-light);
}
.trust-pillar-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.trust-pillar-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ---- SERVICES ---- */
.services { padding: 100px 0; background: linear-gradient(180deg, rgba(13,21,38,0.6) 0%, rgba(10,15,30,1) 100%); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 36px 28px;
  position: relative; transition: var(--transition); overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,92,191,0.06), transparent);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-purple); box-shadow: var(--shadow-purple); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: var(--border-purple);
  background: linear-gradient(135deg, rgba(124,92,191,0.08), rgba(124,92,191,0.02));
}
.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white); padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(124,92,191,0.2), rgba(124,92,191,0.05));
  border: 1px solid var(--border-purple); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--purple-light); margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; margin-bottom: 20px; }
.service-features { margin-bottom: 24px; }
.service-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-muted); padding: 5px 0; }
.service-features li i { color: var(--purple-light); font-size: 0.75rem; }
.service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--purple-light); font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.service-link:hover { gap: 12px; }

/* ---- ABOUT ---- */
.about { padding: 50px 0; background: linear-gradient(180deg, rgba(17,30,53,0.9) 0%, rgba(10,15,30,0.7) 100%); position: relative; overflow: hidden; }
.about::before {
  content: '';
  position: absolute;
  right: -280px; top: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,92,191,0.06), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.about-visual { position: relative; }
.about-visual::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(124,92,191,0.13), transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; pointer-events: none;
}
.about-image-wrapper { position: relative; padding: 0 20px 16px 0; }
.about-photo {
  width: 100%; aspect-ratio: 4/5; max-width: 360px;
  border: 1px solid rgba(124,92,191,0.4); border-radius: var(--radius-lg);
  object-fit: cover; object-position: center top; display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 6px rgba(124,92,191,0.06);
  position: relative; z-index: 1;
}
.about-image-placeholder {
  width: 100%; aspect-ratio: 4/5; max-width: 360px;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
  border: 1px solid var(--border-purple); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; color: rgba(124,92,191,0.3); overflow: hidden; position: relative;
}
.about-badge-card {
  position: absolute; background: var(--navy-2); border: 1px solid var(--border-purple);
  border-radius: var(--radius-sm); padding: 10px 14px;
  display: flex; align-items: center; gap: 9px;
  box-shadow: var(--shadow); animation: float 3s ease-in-out infinite;
  z-index: 2;
}
.about-badge-card i { font-size: 1.15rem; color: var(--purple-light); }
.about-badge-card strong { display: block; color: var(--white); font-size: 0.8rem; }
.about-badge-card span { font-size: 0.7rem; color: var(--text-muted); }
.card-1 { bottom: 20px; left: -20px; animation-delay: 0s; }
.card-2 { top: 40px; right: -10px; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.about-content { padding-right: 20px; }
.about-lead { font-size: 1.15rem; color: var(--white); font-weight: 500; margin-bottom: 20px; line-height: 1.7; }
.about-text { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; }
.about-text strong { color: var(--white); }
.about-commitment { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 28px; }
.commitment-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(124,92,191,0.07); border: 1px solid rgba(124,92,191,0.18);
  border-radius: var(--radius-sm); padding: 16px 20px;
  transition: var(--transition);
}
.commitment-item:hover { background: rgba(124,92,191,0.12); border-color: var(--border-purple); }
.commitment-item > i { font-size: 1.3rem; color: var(--purple-light); margin-top: 2px; flex-shrink: 0; }
.commitment-item strong { display: block; color: var(--white); font-size: 0.93rem; font-weight: 700; margin-bottom: 3px; }
.commitment-item span { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.about-skills { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px; }
.about-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.skill-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,92,191,0.08); border: 1px solid var(--border-purple);
  color: var(--purple-light); padding: 8px 16px; border-radius: 50px; font-size: 0.83rem; font-weight: 500;
}

/* ---- PROCESS ---- */
.process { padding: 50px 0; background: linear-gradient(135deg, rgba(10,15,30,1) 0%, rgba(20,12,42,0.95) 100%); border-top: 1px solid rgba(124,92,191,0.12); border-bottom: 1px solid rgba(124,92,191,0.12); }
.process-steps { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.process-row { display: flex; align-items: flex-start; }
.process-step { flex: 1; text-align: center; padding: 0 20px; position: relative; }
.step-number { font-size: 4rem; font-weight: 900; color: rgba(124,92,191,0.1); line-height: 1; margin-bottom: -20px; }
.step-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(124,92,191,0.15), rgba(124,92,191,0.05));
  border: 1px solid var(--border-purple); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--purple-light); position: relative; z-index: 1;
}
.process-step h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.process-connector {
  flex: 0 0 60px; height: 2px;
  background: linear-gradient(90deg, var(--purple-light), transparent);
  margin-top: 86px; opacity: 0.3;
}

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 100px 0; background: linear-gradient(180deg, rgba(13,21,38,0.7) 0%, rgba(17,30,53,0.85) 100%); }
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 56px; }
.rating-score { font-size: 3.5rem; font-weight: 900; color: var(--purple-light); line-height: 1; }
.rating-stars { font-size: 1.3rem; color: var(--purple-light); }
.rating-count { color: var(--text-muted); font-size: 0.9rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 28px 24px; transition: var(--transition); }
.testimonial-card:hover { border-color: var(--border-purple); transform: translateY(-4px); }
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; color: var(--white); flex-shrink: 0;
}
.testimonial-meta strong { display: block; color: var(--white); font-size: 0.95rem; }
.testimonial-meta span { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-rating { color: var(--purple-light); font-size: 0.75rem; flex-shrink: 0; }
.testimonial-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.review-date { font-size: 0.78rem; color: var(--text-muted); }

/* ---- PRICING ---- */
.pricing { padding: 50px 0; background: linear-gradient(180deg, rgba(10,15,30,1) 0%, rgba(20,12,42,0.9) 50%, rgba(10,15,30,1) 100%); border-top: 1px solid rgba(124,92,191,0.1); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.pricing-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 28px 18px; position: relative; transition: var(--transition); }
.pricing-card:hover { transform: translateY(-6px); border-color: var(--border-purple); }
.pricing-card.featured {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(124,92,191,0.1), rgba(124,92,191,0.03));
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), #7e62b5);
  color: var(--white); padding: 4px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; white-space: nowrap;
}
.pricing-header { margin-bottom: 28px; }
.pricing-header h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.pricing-header p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-amount { font-size: 2.6rem; font-weight: 900; color: var(--purple-light); line-height: 1; }
.price-currency { font-size: 1.1rem; font-weight: 600; color: var(--purple-light); }
.price-note { font-size: 0.8rem; color: var(--text-muted); }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px; padding: 7px 0;
  font-size: 0.9rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li i { font-size: 0.75rem; width: 14px; flex-shrink: 0; }
.pricing-features li:not(.disabled) i { color: var(--purple-light); }
.pricing-features li.disabled { color: #8fa0b2; text-decoration: line-through; }
.pricing-features li.disabled i { color: #e74c3c; }
.pricing-why { font-size: 0.8rem; font-style: italic; color: #8fa0b2; text-align: center; margin-bottom: 14px; line-height: 1.5; }
.pricing-actions { display: flex; flex-direction: column; gap: 10px; }
.pricing-note {
  text-align: center; padding: 20px;
  background: rgba(124,92,191,0.06); border: 1px solid var(--border-purple);
  border-radius: var(--radius-sm); color: var(--text-muted); font-size: 0.93rem; margin-bottom: 28px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.pricing-note i { color: var(--purple-light); margin-right: 8px; }
.pricing-note a { color: var(--purple-light); font-weight: 600; }
.guarantee-banner {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(37,211,102,0.02));
  border: 1px solid rgba(37,211,102,0.2); border-radius: var(--radius); padding: 24px 28px;
  max-width: 700px; margin-left: auto; margin-right: auto; text-align: center;
}
.guarantee-icon { font-size: 2.5rem; color: #25d366; flex-shrink: 0; }
.guarantee-banner strong { display: block; color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.guarantee-banner p { color: var(--text-muted); font-size: 0.9rem; }

/* ---- FAQ ---- */
.faq { padding: 50px 0; background: linear-gradient(180deg, rgba(13,21,38,0.75) 0%, rgba(10,15,30,1) 100%); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  color: var(--white); font-family: var(--font); font-size: 0.97rem; font-weight: 600;
  text-align: start; transition: var(--transition);
}
.faq-question:hover { color: var(--purple-light); }
.faq-question i { color: var(--purple-light); transition: var(--transition); flex-shrink: 0; }
.faq-question.open { color: var(--purple-light); }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 600px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.8; }
.faq-answer strong { color: var(--white); }

/* ---- BOOKING ---- */
.booking {
  padding: 50px 0;
  background: linear-gradient(180deg, rgba(20,12,42,0.85) 0%, rgba(10,15,30,1) 100%);
  border-top: 1px solid rgba(124,92,191,0.1);
  position: relative; overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,191,0.07), transparent 70%);
  top: 50%; left: -200px; transform: translateY(-50%); pointer-events: none;
}
.booking-wrapper { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.booking-info { padding-top: 12px; }
.booking-info p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 20px; }
.booking-proof {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(124,92,191,0.08); border: 1px solid rgba(124,92,191,0.2);
  border-radius: 50px; padding: 8px 18px; margin-bottom: 28px;
  color: var(--text-muted); font-size: 0.86rem;
}
.booking-proof i { color: var(--purple-light); }
.booking-proof strong { color: var(--white); }
.booking-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.booking-benefit {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(124,92,191,0.15);
  border-radius: var(--radius-sm); padding: 16px 20px;
  transition: var(--transition);
}
.booking-benefit:hover { border-color: var(--border-purple); background: rgba(124,92,191,0.07); }
.booking-benefit i {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(124,92,191,0.12); border: 1px solid var(--border-purple);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--purple-light); font-size: 1rem;
}
.booking-benefit strong { display: block; color: var(--white); font-size: 0.95rem; }
.booking-benefit span { font-size: 0.85rem; color: var(--text-muted); }
.booking-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.booking-form-wrapper {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.booking-form-top {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 32px;
  background: linear-gradient(135deg, rgba(124,92,191,0.18), rgba(124,92,191,0.05));
  border-bottom: 1px solid var(--border-purple);
  color: var(--white); font-size: 1.05rem; font-weight: 700;
}
.booking-form-top i { color: var(--purple-light); font-size: 1.1rem; }
.booking-form { padding: 28px 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.form-row .form-group { margin-bottom: 0; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.turnstile-widget { margin-bottom: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); color: var(--white);
  font-family: var(--font); font-size: 0.93rem; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple); background: rgba(124,92,191,0.04);
  outline: 2px solid var(--purple); outline-offset: 2px;
}
.form-group select option { background: var(--navy-2); }
.form-group textarea { resize: vertical; min-height: 80px; }
.booking-form .form-group label:has(+ input:required)::after,
.booking-form .form-group label:has(+ select:required)::after { content: ' *'; color: var(--purple-light); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; }
.form-note i { color: var(--purple-light); margin-right: 4px; }
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 4rem; color: #25d366; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 12px; }
.form-success p { color: var(--text-muted); margin-bottom: 24px; }

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(124,92,191,0.1), rgba(124,92,191,0.03));
  border-top: 1px solid var(--border-purple); border-bottom: 1px solid var(--border-purple);
  position: relative; overflow: hidden;
}
.cta-bg-glow {
  position: absolute; width: 800px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,191,0.1), transparent);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-content p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.8; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer { padding: 80px 0 0; background: var(--navy-2); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 12px 0 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.95rem; transition: var(--transition);
}
.footer-social a:hover { border-color: var(--purple-light); color: var(--purple-light); }
.footer-social a:first-child:hover { border-color: #25d366; color: #25d366; }
.footer-links h4, .footer-contact h4 { color: var(--white); font-weight: 700; margin-bottom: 16px; font-size: 0.97rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; line-height: 1.4; }
.footer-links a:hover { color: var(--purple-light); }
.footer-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.footer-contact-item i { color: var(--purple-light); width: 18px; text-align: center; }
.footer-contact-item a, .footer-contact-item span { color: var(--text-muted); font-size: 0.9rem; }
.footer-contact-item a { display: inline-flex; align-items: center; }
.footer-contact-item a:hover { color: var(--purple-light); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.83rem; }

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; box-shadow: 0 6px 30px rgba(37,211,102,0.5); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-tooltip {
  position: absolute; right: 70px; background: var(--navy-2); color: var(--white); padding: 8px 14px;
  border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600;
  white-space: nowrap; border: 1px solid var(--border-purple);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-pulse { position: absolute; inset: 0; border-radius: 50%; background: rgba(37,211,102,0.4); animation: pulse 2.5s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(2); opacity: 0; } }

/* ---- REVEAL ON SCROLL ---- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- DETAIL PAGES ---- */
.detail-hero {
  padding: 160px 0 80px; text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  position: relative; overflow: hidden;
}
.detail-hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,92,191,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(124,92,191,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.detail-hero-glow {
  position: absolute; width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,191,0.12), transparent);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.detail-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.detail-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; transition: var(--transition);
}
.detail-back:hover { color: var(--purple-light); }
.detail-price-tag {
  display: inline-flex; align-items: baseline; gap: 10px;
  background: rgba(124,92,191,0.1); border: 1px solid var(--border-purple);
  padding: 14px 32px; border-radius: var(--radius); margin-bottom: 20px;
}
.price-big { font-size: 3.2rem; font-weight: 900; color: var(--purple-light); line-height: 1; }
.price-unit { font-size: 1.1rem; color: var(--text-muted); }
.detail-delivery {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2);
  color: #25d366; padding: 7px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  margin-bottom: 32px;
}
.detail-features-section { padding: 80px 0; }
.detail-features-top { padding-top: 120px; }
.package-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-bottom: 36px; }
.package-nav .detail-back { margin-bottom: 0; }
.pkg-nav-btn { padding: 8px 18px; border-radius: 50px; border: 1px solid var(--border-purple); color: var(--text-muted); font-size: 0.83rem; font-weight: 500; transition: var(--transition); min-height: 44px; display: inline-flex; align-items: center; }
.pkg-nav-btn:hover { border-color: var(--purple-light); color: var(--white); background: rgba(124,92,191,0.1); }
.pkg-nav-btn.active { background: rgba(124,92,191,0.2); border-color: var(--purple-light); color: var(--purple-light); font-weight: 600; }
.detail-top-row { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 48px; gap: 8px; }
.detail-top-row .section-header { margin-bottom: 0; text-align: center; }
.detail-top-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.detail-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 60px; }
.detail-feature-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 16px; transition: var(--transition);
}
.detail-feature-card:hover { border-color: var(--border-purple); transform: translateY(-3px); }
.detail-feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(124,92,191,0.1); border: 1px solid var(--border-purple);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--purple-light); font-size: 1.2rem;
}
.detail-feature-card h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.detail-feature-card h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.detail-feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.detail-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(124,92,191,0.08), rgba(124,92,191,0.02));
  border-top: 1px solid var(--border-purple); text-align: center;
}
.detail-cta-section h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.detail-cta-section p { color: var(--text-muted); margin-bottom: 32px; font-size: 1rem; line-height: 1.7; }
.detail-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- ADD-ONS DETAIL ---- */
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.addon-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: var(--transition); display: flex; flex-direction: column; gap: 14px;
}
.addon-card:hover { border-color: var(--border-purple); transform: translateY(-4px); }
.addon-header { display: flex; align-items: center; gap: 14px; }
.addon-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(124,92,191,0.12); border: 1px solid var(--border-purple);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--purple-light); font-size: 1.15rem;
}
.addon-header h3 { color: var(--white); font-size: 1rem; font-weight: 700; }
.addon-features { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.addon-features li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.86rem; }
.addon-features li i { color: var(--purple-light); font-size: 0.7rem; flex-shrink: 0; }
.addon-price {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: rgba(124,92,191,0.1); border: 1px solid var(--border-purple);
  border-radius: 50px; padding: 6px 16px; align-self: flex-start;
}
.addon-price strong { color: var(--purple-light); font-size: 0.97rem; font-weight: 700; }
.addon-price span { color: var(--text-muted); font-size: 0.8rem; }
.discount-note {
  background: rgba(231,76,60,0.08); border: 1px solid rgba(231,76,60,0.25);
  border-radius: var(--radius-sm); padding: 16px 24px;
  display: flex; align-items: center; gap: 12px;
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 48px;
}
.discount-note i { color: #e74c3c; font-size: 1.2rem; flex-shrink: 0; }
.discount-note strong { color: var(--white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta .btn-call-nav { display: none; }
  .about-grid { gap: 48px; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content { padding-right: 0; }
  .about-image-wrapper { max-width: 340px; }
  .card-1 { left: 0; }
  .card-2 { top: auto; bottom: 60px; right: 0; }
  .booking-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-note { max-width: 480px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .trust-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 40px; flex: 0; margin: 0; background: linear-gradient(180deg, var(--purple-light), transparent); }
  .detail-features-grid { grid-template-columns: 1fr; }
  .detail-top-meta { flex-direction: column; gap: 10px; }
  .addons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,15,30,0.98); flex-direction: column; align-items: center;
    justify-content: center; gap: 36px; font-size: 1.2rem; z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 999; }
  .nav-cta .lang-toggle { display: none; }
  .nav-mobile-lang { display: flex !important; }
  .nav-book-link { display: flex !important; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links a { min-height: 44px; }
  .footer-contact-item a { min-height: 44px; }
  .footer-contact-item { margin-bottom: 12px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .reviews-summary { flex-direction: column; text-align: center; }
  .detail-cta-buttons { flex-direction: column; align-items: center; }

  /* --- MOBILE EXPERIENCE IMPROVEMENTS --- */

  /* Performance: kill WebGL canvas & heavy CSS blurs on mobile */
  #shaderCanvas { display: none; }
  .glow-1, .glow-2 { display: none; }
  .about::before { display: none; }
  .booking::before { display: none; }

  /* Container: tighter side padding on phones */
  .container { padding: 0 16px; }

  /* Hero: reduce excessive vertical padding, use safe viewport height */
  .hero { padding: 90px 0 56px; min-height: 100vh; min-height: 100svh; }
  .hero-badge { font-size: 0.78rem; padding: 7px 14px; margin-bottom: 18px; flex-wrap: wrap; justify-content: center; text-align: center; }
  .hero-title { margin-bottom: 20px; }
  .hero-subtitle { margin-bottom: 24px; font-size: 0.97rem; }
  .hero-actions { margin-bottom: 24px; gap: 10px; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust { gap: 12px; }
  .hero-scroll-indicator { display: none; }

  /* Section padding: 100px → 32px */
  .trust-pillars-section { padding: 48px 0; }
  .services { padding: 64px 0; }
  .about { padding: 32px 0; }
  .process { padding: 32px 0; }
  .pricing { padding: 32px 0; }
  .testimonials { padding: 64px 0; }
  .faq { padding: 32px 0; }
  .booking { padding: 32px 0; }
  .cta-banner { padding: 56px 0; }
  .footer { padding: 56px 0 0; }
  .section-header { margin-bottom: 40px; }

  /* About: stop infinite float animation (battery drain), fix card overflow */
  .about-badge-card { animation: none; }
  .about-image-wrapper { padding: 8px 8px 8px 0; }
  .about-visual::before { width: 260px; height: 260px; }
  .card-1 { left: 4px; bottom: 8px; }
  .card-2 { right: 4px; top: auto; bottom: 56px; }

  /* Trust pillars */
  .trust-pillar-card { padding: 28px 16px; }

  /* Process */
  .process-step { padding: 0 12px; }

  /* Booking form */
  .booking-form { padding: 22px 20px; }
  .booking-form-top { padding: 16px 20px; }

  /* Footer */
  .footer-grid { margin-bottom: 40px; }

  /* CTA section */
  .cta-actions .btn { width: 100%; max-width: 340px; }

  /* WhatsApp float: avoid mobile browser bottom chrome */
  .whatsapp-float { bottom: calc(20px + env(safe-area-inset-bottom, 0px)); right: 20px; width: 54px; height: 54px; font-size: 1.4rem; }

  /* Pricing: horizontal scroll carousel on mobile */
  .pricing-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: .75rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .pricing-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .pricing-scroll-hint {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: 12px;
    color: var(--text-muted);
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    padding: .5rem 0;
  }
  .pricing-grid { padding-top: 16px; }
}
@media (max-width: 500px) {
  .hero-trust { flex-direction: column; align-items: center; }
  .guarantee-banner { flex-direction: column; }
  .booking-form-top { padding: 16px 16px; }
  .booking-form { padding: 18px 16px; }

  /* Hero: further reduce on tiny screens */
  .hero { padding: 80px 0 48px; }
  .hero-badge { font-size: 0.73rem; padding: 6px 12px; }
  .hero-subtitle { font-size: 0.93rem; }
  .trust-item { font-size: 0.82rem; }

  /* Trust pillars: single column on tiny screens */
  .trust-pillars-grid { grid-template-columns: 1fr; }
  .trust-pillar-card { padding: 24px 16px; }

  /* Section padding: further reduction */
  .services { padding: 50px 0; }
  .about { padding: 25px 0; }
  .process { padding: 25px 0; }
  .pricing { padding: 25px 0; }
  .testimonials { padding: 50px 0; }
  .faq { padding: 25px 0; }
  .booking { padding: 25px 0; }
  .cta-banner { padding: 40px 0; }
  .section-header { margin-bottom: 32px; }
  .section-desc { font-size: 0.93rem; }

  /* About: hide floating badges on tiny screens, center photo */
  .about-badge-card { display: none; }
  .about-image-wrapper { padding: 0; margin: 0 auto; max-width: 260px; }

  /* Process: compact */
  .step-number { font-size: 3rem; }
  .step-icon { width: 60px; height: 60px; font-size: 1.2rem; margin-bottom: 16px; }
  .process-step { padding: 0 8px; max-width: 280px; }

  /* Testimonials */
  .testimonial-card { padding: 20px 16px; }

  /* Pricing */
  .pricing-card { padding: 28px 18px; }
  .pricing-features li { font-size: 0.87rem; }

  /* FAQ */
  .faq-question { padding: 16px 18px; font-size: 0.92rem; }
  .faq-answer.open { padding: 0 18px 16px; }

  /* Footer */
  .footer-grid { gap: 28px; }
  .footer-links ul { gap: 8px; }
}

/* ---- DETAIL PAGE FOOTER SOCIAL LINKS ---- */
.img-hidden { display: none; }
.pricing-scroll-hint { display: none; }
.booking-form--hidden { display: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-error-msg { color: #e74c3c; font-size: 0.85rem; margin-bottom: 12px; text-align: center; }
.pkg-info-box { background: linear-gradient(135deg, rgba(124,92,191,0.1) 0%, var(--card-bg) 60%); border: 1px solid var(--border-purple); border-radius: var(--radius); padding: 28px 32px; max-width: 700px; margin: 0 auto; }
.pkg-info-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.pkg-info-box h2 { color: var(--white); font-size: 1.05rem; font-weight: 700; }
.pkg-info-box p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.pkg-info-box p strong { color: var(--purple-light); }
.pkg-info-card { max-width: 700px; margin: 0 auto; }
.pkg-excluded-box { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 32px 36px; max-width: 700px; margin: 0 auto; }
.pkg-excluded-box h2 { color: var(--white); font-size: 1.15rem; margin-bottom: 18px; font-weight: 700; }
.pkg-not-included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 24px; }
.pkg-excluded-item { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.88rem; text-decoration: line-through; }
.pkg-excluded-item i { color: #e74c3c; font-size: 0.75rem; flex-shrink: 0; }
.pkg-upgrade-row { display: flex; gap: 12px; flex-wrap: wrap; }
.detail-footer-wa { color: var(--text-muted); transition: color 0.2s; display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
.detail-footer-wa:hover { color: #25d366; }
.detail-footer-phone { color: var(--text-muted); transition: color 0.2s; display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
.detail-footer-phone:hover { color: var(--purple-light); }
.detail-footer-icons { display: flex; gap: 12px; }
.detail-top-meta .detail-delivery { margin: 0; }

/* ===========================
   RTL â€” ARABIC LAYOUT
   =========================== */

/* Arabic font */
.lang-ar body,
.lang-ar h1, .lang-ar h2, .lang-ar h3, .lang-ar h4,
.lang-ar p, .lang-ar span, .lang-ar a, .lang-ar li,
.lang-ar button, .lang-ar input, .lang-ar select, .lang-ar textarea, .lang-ar label {
  font-family: 'Cairo', sans-serif;
}

[dir="rtl"] { text-align: right; }
[dir="rtl"] .flex-row, [dir="rtl"] .flex { flex-direction: row-reverse; }

/* Section tag â€” uniform pill in all directions */
[dir="rtl"] .section-tag {
  border: 1px solid var(--border-purple);
  padding: 0.4rem 1.25rem;
  direction: ltr;
}

/* Navbar â€” logo stays at inline-start, no changes needed for flex row-reverse;
   only fix the hamburger area */
[dir="rtl"] .nav-container { flex-direction: row-reverse; }
[dir="rtl"] .hamburger { order: -1; }
[dir="rtl"] .nav-links { text-align: right; }
[dir="rtl"] .nav-links a::after { right: 0; left: auto; }

/* Hero text alignment */
[dir="rtl"] .hero { padding-bottom: 110px; }
[dir="rtl"] .hero-content { text-align: center; }
[dir="rtl"] .hero-trust { justify-content: center; }
[dir="rtl"] .hero-badge { flex-direction: row-reverse; }
[dir="rtl"] .hero-actions { justify-content: center; }
[dir="rtl"] .hero-title { line-height: 1.35; }

/* Services */
[dir="rtl"] .service-features li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .service-features li i { margin-right: 0; margin-left: 10px; }

[dir="rtl"] .nav-logo { direction: ltr; }

/* About grid â€” flip image/text columns */
[dir="rtl"] .about-grid { direction: ltr; }
[dir="rtl"] .about-visual { direction: rtl; }
[dir="rtl"] .about-content { direction: rtl; text-align: right; }
[dir="rtl"] .about-skills { justify-content: flex-end; }
[dir="rtl"] .skill-tag { flex-direction: row-reverse; }
[dir="rtl"] .about-badge-card.card-1 { right: auto; left: -20px; }
[dir="rtl"] .about-badge-card.card-2 { left: auto; right: -10px; }
[dir="rtl"] .about-badge-card { flex-direction: row-reverse; text-align: right; }

/* Process steps — flip connector arrows */
[dir=”rtl”] .process-row { flex-direction: row-reverse; }
[dir=”rtl”] .process-connector { transform: scaleX(-1); }
[dir=”rtl”] .process-step { text-align: right; }

/* Testimonials */
[dir="rtl"] .testimonial-header { flex-direction: row-reverse; }
[dir="rtl"] .testimonial-card { text-align: right; }

/* Pricing */
[dir="rtl"] .pricing-features li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .pricing-features li i { margin-right: 0; margin-left: 10px; }
[dir="rtl"] .pricing-badge { left: 50%; right: auto; transform: translateX(-50%); }
[dir="rtl"] .pricing-card.featured .pricing-badge { left: 50%; right: auto; transform: translateX(-50%); }

/* FAQ */
[dir="rtl"] .faq-question { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .faq-answer p { text-align: right; }

/* Booking benefits */
[dir="rtl"] .booking-benefit { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .booking-info { text-align: right; }

/* Form */
[dir="rtl"] .form-group label { text-align: right; display: block; }
[dir="rtl"] .booking-form-wrapper { text-align: right; }
[dir="rtl"] .form-note { text-align: right; flex-direction: row-reverse; }

/* Footer */
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-brand { text-align: right; }
[dir="rtl"] .footer-logo { display: inline-flex; }
[dir="rtl"] .footer-social { justify-content: flex-start; }
[dir="rtl"] .footer-links ul { text-align: right; }
[dir="rtl"] .footer-contact-item { flex-direction: row-reverse; }
[dir="rtl"] .footer-contact-item a[href^="tel:"],
[dir="rtl"] .footer-contact-item a[href^="https://wa.me"] { direction: ltr; unicode-bidi: embed; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }

/* Section headers â€” always centered regardless of direction */
[dir="rtl"] .section-badge,
[dir="rtl"] .section-header,
[dir="rtl"] .section-header h1,
[dir="rtl"] .section-header h2,
[dir="rtl"] .section-header p { text-align: center; margin-inline: auto; }
[dir="rtl"] .section-badge-wrapper { display: flex; justify-content: center; }

/* Guarantee banner */
[dir="rtl"] .guarantee-banner { flex-direction: row; justify-content: center; text-align: center; }
[dir="rtl"] .guarantee-banner strong,
[dir="rtl"] .guarantee-banner p { text-align: center; }

/* CTA banner */
[dir="rtl"] .cta-content { text-align: center; }
[dir="rtl"] .cta-actions { justify-content: center; }

@media (max-width: 900px) {
  [dir="rtl"] .about-image-wrapper { margin-left: auto; }
  [dir="rtl"] .about-skills { justify-content: flex-end; }
  [dir="rtl"] .about-cta { justify-content: flex-end; }
  [dir="rtl"] .process-row { flex-direction: column; }
  [dir="rtl"] .process-connector { transform: none; }
}

@media (max-width: 768px) {
  [dir="rtl"] .about-badge-card.card-2 { top: -50px; }
}

/* Scroll progress bar â€” grows from right to left in RTL */
[dir="rtl"] #scroll-bar-rtl { right: 0; left: auto; }

/* Buttons with icons â€” flip icon/text order */
[dir="rtl"] .btn i, [dir="rtl"] .btn-whatsapp i, [dir="rtl"] .btn-call i,
[dir="rtl"] .btn-primary i, [dir="rtl"] .btn-outline i {
  margin-right: 0;
  margin-left: 8px;
}

/* WhatsApp float â€” mirror side */
[dir="rtl"] .whatsapp-float { right: auto; left: calc(24px + env(safe-area-inset-left, 0px)); }
[dir="rtl"] .whatsapp-tooltip { right: auto; left: 100%; margin-right: 0; margin-left: 10px; }

/* Trust items */
[dir="rtl"] .trust-item { flex-direction: row-reverse; }


/* Reviews summary */
[dir="rtl"] .reviews-summary { flex-direction: row-reverse; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Skip navigation link */
.skip-link { position: absolute; top: -100%; left: 0; padding: .5rem 1rem; background: var(--purple); color: #fff; font-weight: 600; text-decoration: none; z-index: 9999; border-radius: 0 0 4px 0; }
.skip-link:focus { top: 0; }

.btn:focus-visible,
.btn-detail:focus-visible,
.btn-call-nav:focus-visible,
.btn-whatsapp-nav:focus-visible,
.btn-primary-nav:focus-visible,
.pkg-nav-btn:focus-visible,
.faq-question:focus-visible,
.lang-btn:focus-visible,
.hamburger:focus-visible,
.nav-links a:focus-visible,
.nav-logo:focus-visible,
.whatsapp-float:focus-visible,
.detail-footer-wa:focus-visible,
.detail-footer-phone:focus-visible,
.footer-social a:focus-visible,
.footer-links a:focus-visible,
.footer-contact-item a:focus-visible,
.footer-bottom a:focus-visible,
.pricing-grid:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 3px;
}

/* ---- PACKAGE NOT-INCLUDED GRID ---- */
.pkg-not-included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
@media (max-width: 500px) { .pkg-not-included-grid { grid-template-columns: 1fr; } }

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .animate-fade-up { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
