/* ============================================
   TAYSEER TOUR LIMITED — Main Stylesheet
   Aesthetic: Refined Islamic Luxury
   ============================================ */

/* ===== CSS Variables ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --deep: #0D1117;
  --deep-2: #141A24;
  --deep-3: #1C2535;
  --cream: #FAF6EE;
  --cream-2: #F2EBD9;
  --text-main: #1A1A2E;
  --text-body: #3D4455;
  --text-muted: #8A8FA8;
  --white: #FFFFFF;
  --border: rgba(201, 168, 76, 0.2);
  --border-light: rgba(201, 168, 76, 0.12);
  --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.18);
  --shadow-deep: 0 20px 60px rgba(13, 17, 23, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-arabic: 'Tajawal', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h: 76px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Utilities ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }
.section-sm { padding: 60px 0; }
.section-eyebrow {
  font-family: var(--font-arabic);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc { font-size: 1.15rem; color: var(--text-body); max-width: 600px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }
.section-header.light .section-title { color: var(--cream); }
.section-header.light .section-desc { color: rgba(250, 246, 238, 0.7); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-arabic);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--deep);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 238, 0.4);
}
.btn-outline:hover {
  background: rgba(250, 246, 238, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13, 17, 23, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-arabic {
  font-family: var(--font-arabic);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.logo-ltd { font-weight: 400; opacity: 0.7; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(250, 246, 238, 0.8);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--font-arabic);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 22px;
  border-radius: 3px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold); color: var(--deep); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    linear-gradient(160deg, #0D1117 0%, #141A24 50%, #0D1117 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M50 10 L90 50 L50 90 L10 50 Z' fill='none' stroke='rgba(201,168,76,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  background-size: 80px 80px;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201,168,76,0.5) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201,168,76,0.5) 40px);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: calc(var(--nav-h) + 40px) 24px 40px;
}
.hero-bismillah {
  font-family: var(--font-arabic);
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(250, 246, 238, 0.72);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--font-arabic);
  font-size: 0.78rem;
  color: rgba(250, 246, 238, 0.8);
  letter-spacing: 0.04em;
}
.badge-icon { font-size: 1rem; }
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-arabic);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(250, 246, 238, 0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== Marquee Strip ===== */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  gap: 0;
}
.marquee-track span {
  font-family: var(--font-arabic);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  padding: 0 16px;
  white-space: nowrap;
}
.marquee-track .sep { color: var(--deep); opacity: 0.4; padding: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== About ===== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  position: relative;
  padding: 40px;
}
.about-pattern-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--deep) 0%, var(--deep-3) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.about-portrait {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.15), var(--shadow-gold);
}
.portrait-initials {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: 0.05em;
}
.portrait-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.15), transparent 70%);
  pointer-events: none;
}
.about-stat-card {
  position: absolute;
  z-index: 3;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-deep);
}
.about-stat-card.card-1 { bottom: -10px; left: -20px; }
.about-stat-card.card-2 { top: 20px; right: -20px; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-arabic);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-body);
  margin-top: 4px;
  display: block;
}
.about-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-body {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.85;
}
.about-contact-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.contact-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-arabic);
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.contact-chip svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.contact-chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(201, 168, 76, 0.05); }

/* ===== Services ===== */
.services { background: var(--deep); }
.services .section-eyebrow { color: var(--gold); }
.services .section-title { color: var(--cream); }
.services .section-desc { color: rgba(250, 246, 238, 0.65); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { border-color: rgba(201, 168, 76, 0.4); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.06);
}
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--font-arabic);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
}
.service-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}
.service-card p {
  font-size: 1rem;
  color: rgba(250, 246, 238, 0.65);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.7);
  padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 3px;
}

/* ===== Packages ===== */
.packages { background: var(--cream-2); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.package-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.package-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}
.package-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.package-ribbon {
  position: absolute;
  top: 18px; right: -28px;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--font-arabic);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 40px;
  transform: rotate(45deg);
  transform-origin: top right;
}
.package-header {
  background: var(--deep);
  padding: 36px 32px 28px;
  text-align: center;
}
.package-tag {
  font-family: var(--font-arabic);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.package-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
}
.package-arabic {
  font-family: var(--font-arabic);
  font-size: 1.2rem;
  color: rgba(201, 168, 76, 0.6);
  margin-top: 6px;
}
.package-body { padding: 28px 32px; flex: 1; }
.package-duration {
  font-family: var(--font-arabic);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.package-includes { display: flex; flex-direction: column; gap: 10px; }
.package-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-body);
}
.package-includes li.muted { opacity: 0.4; text-decoration: line-through; }
.tick { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.package-footer { padding: 24px 32px; border-top: 1px solid rgba(201, 168, 76, 0.1); }
.package-price-label {
  font-family: var(--font-arabic);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.package-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
}
.package-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.packages-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== Why Us ===== */
.why-us {
  background: var(--deep-2);
  position: relative;
  overflow: hidden;
}
.why-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.why-card {
  padding: 36px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.04);
  transform: translateY(-4px);
}
.why-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.18);
  line-height: 1;
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.why-card p { font-size: 0.98rem; color: rgba(250, 246, 238, 0.6); line-height: 1.8; }

/* ===== Accreditations ===== */
.accreditations {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.accred-title {
  font-family: var(--font-arabic);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 36px;
}
.accred-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.accred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.accred-logo { color: var(--text-muted); opacity: 0.7; transition: opacity var(--transition); }
.accred-item:hover .accred-logo { opacity: 1; color: var(--gold); }
.accred-item span {
  font-family: var(--font-arabic);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ===== Contact ===== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-desc { font-size: 1.05rem; color: var(--text-body); margin-bottom: 40px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
a.contact-detail-item:hover { border-color: var(--gold); background: rgba(201, 168, 76, 0.04); }
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label {
  display: block;
  font-family: var(--font-arabic);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-value {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
}
.whatsapp-btn {
  background: #25D366;
  color: var(--white) !important;
  display: inline-flex;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn:hover {
  background: #20BD5A;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}
.whatsapp-btn svg { width: 20px; height: 20px; }

/* ===== Contact Form ===== */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 8px 40px rgba(13, 17, 23, 0.06);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-arabic);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  background: var(--cream);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-sm);
  color: #1a7a40;
  font-family: var(--font-arabic);
  font-size: 0.9rem;
  text-align: center;
}
.form-success.visible { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Footer ===== */
.footer { background: var(--deep); color: var(--cream); }
.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(201, 168, 76, 0.12); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-tagline { font-size: 0.95rem; color: rgba(250, 246, 238, 0.55); margin-top: 16px; line-height: 1.75; max-width: 280px; }
.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-arabic);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.92rem;
  color: rgba(250, 246, 238, 0.6);
  transition: color 0.3s;
}
.footer-links-col a:hover { color: var(--gold); }
.footer-contact-col p { font-size: 0.92rem; color: rgba(250, 246, 238, 0.6); margin-bottom: 8px; }
.footer-contact-col a { color: rgba(250, 246, 238, 0.6); transition: color 0.3s; }
.footer-contact-col a:hover { color: var(--gold); }
.footer-accred-badges {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.accred-badge {
  font-family: var(--font-arabic);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 4px 10px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 3px;
  color: var(--gold);
}
.footer-bottom {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-arabic);
  font-size: 0.8rem;
  color: rgba(250, 246, 238, 0.35);
  letter-spacing: 0.03em;
}
.footer-dua {
  font-family: var(--font-arabic);
  font-size: 0.95rem !important;
  color: rgba(201, 168, 76, 0.4) !important;
  letter-spacing: 0.05em !important;
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); background: var(--gold-light); }
.back-to-top svg { width: 20px; height: 20px; }

/* ===== Scroll Animations ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 32px; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-6px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 80px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13, 17, 23, 0.98);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
  }
  .nav-links.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { font-size: 1.1rem; color: var(--cream); }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .accred-row { gap: 32px; }
  .contact-form-wrap { padding: 32px 24px; }
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .about-stat-card.card-1 { left: 0; bottom: 0; }
  .about-stat-card.card-2 { right: 0; top: 0; }
}
