/* ═══════════════════════════════════════════
   CSS RESET & VARIABLES
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --white: #f8f8f6;
  --pure-white: #ffffff;
  --emerald: #1a7a4c;
  --emerald-light: #2ecc71;
  --emerald-dark: #0d5c36;
  --emerald-bg: #e8f5ee;
  --gold: #c9a84c;
  --gold-light: #e8cc6e;
  --gold-dark: #9e7e2e;
  --gray-50: #fafaf8;
  --gray-100: #f0f0ee;
  --gray-200: #d8d8d4;
  --gray-300: #b0b0a8;
  --gray-600: #5a5a56;
  --gray-700: #3a3a38;
  --gray-800: #222220;
  --gray-900: #161614;

  --bg-primary: var(--pure-white);
  --bg-secondary: var(--gray-50);
  --bg-card: var(--pure-white);
  --bg-topbar: var(--emerald-dark);
  --bg-nav: var(--pure-white);
  --text-primary: var(--black);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-300);
  --border-color: rgba(10, 10, 10, 0.08);
  --card-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --input-bg: var(--gray-50);
  --footer-bg: var(--gray-900);
  --overlay: rgba(10, 10, 10, 0.6);
}

[data-theme="dark"] {
  --bg-primary: var(--black);
  --bg-secondary: var(--gray-900);
  --bg-card: var(--gray-800);
  --bg-topbar: #050505;
  --bg-nav: var(--gray-900);
  --text-primary: var(--white);
  --text-secondary: var(--gray-300);
  --text-muted: var(--gray-700);
  --border-color: rgba(248, 248, 246, 0.06);
  --card-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.5);
  --input-bg: var(--gray-900);
  --footer-bg: #050505;
  --overlay: rgba(10, 10, 10, 0.8);
  --emerald-bg: rgba(26, 122, 76, 0.1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  transition:
    background 0.4s,
    color 0.4s;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  font-family: inherit;
}
ul {
  list-style: none;
}

/* ═══════════════════════════════════════════
   TOP UTILITY BAR (Al Falah style)
   ═══════════════════════════════════════════ */
.top-bar {
  background: var(--bg-topbar);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.4s;
}
.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.top-bar-contact a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s;
}
.top-bar-contact a:hover {
  color: var(--gold);
}
.top-bar-contact i {
  font-size: 0.7rem;
}
.top-bar-social {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.top-bar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  transition: all 0.3s;
}
.top-bar-social a:hover {
  background: var(--gold);
  color: var(--black);
}

/* ═══════════════════════════════════════════
   MAIN NAVIGATION (Al Falah style with dropdowns)
   ═══════════════════════════════════════════ */
.main-nav {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: background 0.4s;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo-icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.5px solid var(--gold);
  border-radius: 9px;
}
.logo-icon i {
  color: var(--gold);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  line-height: 1.1;
}
.logo-text span {
  color: var(--gold);
  display: block;
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.nav-menu {
  display: flex;
  gap: 0;
  align-items: center;
  height: 100%;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-item > a {
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  transition: color 0.3s;
  position: relative;
}
.nav-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--emerald);
  transform: scaleX(0);
  transition: transform 0.3s;
  border-radius: 3px 3px 0 0;
}
.nav-item > a:hover,
.nav-item > a.active {
  color: var(--emerald);
}
.nav-item > a:hover::after,
.nav-item > a.active::after {
  transform: scaleX(1);
}
.nav-item > a .fa-chevron-down {
  font-size: 0.55rem;
  margin-left: 0.3rem;
  transition: transform 0.3s;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s;
  padding: 0.5rem 0;
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-item:hover > a .fa-chevron-down {
  transform: rotate(180deg);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.dropdown a:hover {
  background: var(--emerald-bg);
  color: var(--emerald);
  padding-left: 1.5rem;
}
.dropdown a i {
  width: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gold);
}
.dropdown .tag-soon-sm {
  font-size: 0.6rem;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Nav right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.theme-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.theme-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.nav-cta-btn {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: var(--pure-white);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}
.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 122, 76, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-primary);
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  transition: background 0.4s;
}
.mobile-nav-overlay.open {
  display: block;
}
.mobile-nav-overlay .mobile-nav-group {
  margin-bottom: 1.5rem;
}
.mobile-nav-overlay .mobile-nav-group-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav-overlay a {
  display: block;
  padding: 0.6rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.2s;
}
.mobile-nav-overlay a:hover {
  color: var(--emerald);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--emerald-dark) 0%,
    var(--emerald) 40%,
    #1a8c55 100%
  );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(201, 168, 76, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    );
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text {
  color: var(--pure-white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInDown 0.6s ease both;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease 0.15s both;
}
.hero-title .gold {
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.45s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.45);
}
.btn-outline-white {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-white:hover {
  border-color: var(--pure-white);
  background: rgba(255, 255, 255, 0.1);
}
.btn-emerald {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: var(--pure-white);
  box-shadow: 0 4px 15px rgba(26, 122, 76, 0.3);
}
.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 122, 76, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}
.btn-outline:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-360-display {
  width: 340px;
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
  animation: spinSlow linear infinite;
}
.hero-ring:nth-child(1) {
  inset: 0;
  animation-duration: 10s;
}
.hero-ring:nth-child(2) {
  inset: 20px;
  animation-duration: 14s;
  animation-direction: reverse;
  border-color: rgba(255, 255, 255, 0.2);
}
.hero-ring:nth-child(3) {
  inset: 40px;
  animation-duration: 8s;
  border-color: rgba(201, 168, 76, 0.5);
  border-style: dashed;
}
.hero-ring:nth-child(4) {
  inset: 60px;
  animation-duration: 18s;
  animation-direction: reverse;
  border-color: rgba(255, 255, 255, 0.15);
}
@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}
.hero-center-text {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-center-text .big-360 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  color: var(--pure-white);
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
  line-height: 1;
}
.hero-center-text .sub {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   SERVICE CARDS (Al Falah prayer-time card style)
   ═══════════════════════════════════════════ */
.service-cards-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
  transition: background 0.4s;
  border-bottom: 1px solid var(--border-color);
}
.service-cards-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.service-cards-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.section-label::before,
.section-label::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.svc-card:hover::before {
  transform: scaleX(1);
}
.svc-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.svc-card-icon.emerald-icon {
  background: var(--emerald-bg);
  color: var(--emerald);
}
.svc-card-icon.gold-icon {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}
.svc-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.svc-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.svc-card .status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.status-active {
  background: rgba(26, 122, 76, 0.1);
  color: var(--emerald);
}
.status-soon {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}
.svc-card .btn {
  margin-top: 1rem;
  font-size: 0.8rem;
  padding: 0.6rem 1.4rem;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION (Al Falah "Who Are We" style)
   ═══════════════════════════════════════════ */
.about-section {
  padding: 5rem 0;
  background: var(--bg-primary);
  transition: background 0.4s;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  aspect-ratio: 16/11;
}
.about-image-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.about-image-content i {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.6;
}
.about-image-content span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.about-image-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--pure-white);
}
.about-image-overlay i {
  color: var(--gold);
  font-size: 1.2rem;
}
.about-image-overlay div span {
  display: block;
}
.about-image-overlay .strong {
  font-weight: 600;
  font-size: 0.9rem;
}
.about-image-overlay .light {
  font-size: 0.75rem;
  opacity: 0.7;
}

.about-text .section-label {
  margin-bottom: 0.5rem;
}
.about-text .section-title {
  margin-bottom: 1rem;
}
.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.about-feat {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}
.about-feat:hover {
  transform: translateX(6px);
  border-color: var(--gold);
}
.about-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.about-feat h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.about-feat p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  transition: background 0.4s;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.how-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.steps-row {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--emerald),
    var(--gold),
    var(--emerald)
  );
  opacity: 0.25;
}
.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 0.75rem;
}
.step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  box-shadow: var(--card-shadow);
}
.step-item:hover .step-num {
  background: var(--emerald);
  border-color: var(--gold);
  color: var(--pure-white);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(26, 122, 76, 0.3);
}
.step-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.step-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery-section {
  padding: 5rem 0;
  background: var(--bg-primary);
  transition: background 0.4s;
}
.gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-cell {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
}
.gallery-cell:nth-child(1) {
  grid-column: span 2;
}
.gallery-cell:nth-child(5) {
  grid-column: span 2;
}
.gallery-cell-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.4s;
}
.gallery-cell-inner.g-emerald {
  background: linear-gradient(
    135deg,
    rgba(13, 92, 54, 0.85),
    rgba(26, 122, 76, 0.85)
  );
}
.gallery-cell-inner.g-gold {
  background: linear-gradient(
    135deg,
    rgba(158, 126, 46, 0.85),
    rgba(201, 168, 76, 0.85)
  );
}
.gallery-cell-inner.g-mixed {
  background: linear-gradient(
    135deg,
    rgba(26, 122, 76, 0.85),
    rgba(201, 168, 76, 0.85)
  );
}
.gallery-cell-inner.g-dark {
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85),
    rgba(58, 58, 56, 0.85)
  );
}
.gallery-cell:hover .gallery-cell-inner {
  opacity: 0.9;
}
.gallery-cell-inner i {
  font-size: 1.8rem;
  color: var(--pure-white);
  opacity: 0.6;
}
.gallery-cell-inner span {
  color: var(--pure-white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   PACKAGES
   ═══════════════════════════════════════════ */
.packages-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  transition: background 0.4s;
  border-top: 1px solid var(--border-color);
}
.packages-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: all 0.4s;
  box-shadow: var(--card-shadow);
  position: relative;
}
.pkg-card.featured {
  border-color: var(--gold);
}
.pkg-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  padding: 0.2rem 1rem;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.pkg-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.pkg-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.pkg-price small {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: "Outfit", sans-serif;
}
.pkg-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}
.pkg-features {
  margin-bottom: 1.5rem;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.pkg-features li i {
  color: var(--emerald);
  font-size: 0.75rem;
}
.pkg-card .btn {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-primary);
  transition: background 0.4s;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: left;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.testi-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}
.testi-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-weight: 700;
  font-size: 0.85rem;
}
.testi-name {
  font-weight: 600;
  font-size: 0.85rem;
}
.testi-event {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   DOWNLOAD PDF FORM (Al Falah "Download App" style)
   ═══════════════════════════════════════════ */
.download-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(201, 168, 76, 0.12),
    transparent 60%
  );
}
.download-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.download-text {
  color: var(--pure-white);
  max-width: 550px;
}
.download-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.download-text p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.download-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--pure-white);
  color: var(--emerald-dark);
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: none;
}
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.download-btn i {
  font-size: 1.1rem;
}
.download-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--pure-white);
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s;
}
.download-btn-outline:hover {
  border-color: var(--pure-white);
  background: rgba(255, 255, 255, 0.1);
}
.download-visual {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.download-doc-icon {
  width: 120px;
  height: 150px;
  background: var(--pure-white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.download-doc-icon i {
  font-size: 2.5rem;
  color: var(--emerald);
}
.download-doc-icon span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray-600);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   CONTACT FORM SECTION
   ═══════════════════════════════════════════ */
.contact-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  transition: background 0.4s;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info {
}
.contact-info .section-title {
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-detail h4 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.contact-detail p,
.contact-detail a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.contact-detail a:hover {
  color: var(--emerald);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
}
.contact-form-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.contact-form-card > p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  background: var(--input-bg);
  color: var(--text-primary);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  padding: 0.85rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: var(--pure-white);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 122, 76, 0.35);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-message {
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(26, 122, 76, 0.1);
  color: var(--emerald);
}
.form-message.error {
  display: block;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

/* ═══════════════════════════════════════════
   FOOTER (Al Falah style)
   ═══════════════════════════════════════════ */
footer {
  background: var(--footer-bg);
  color: var(--gray-300);
  padding: 4rem 2rem 1.5rem;
  transition: background 0.4s;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo {
  margin-bottom: 1rem;
}
.footer-brand .logo-text {
  color: var(--gray-300);
}
.footer-brand > p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--gray-300);
  max-width: 280px;
}
.footer-col h5 {
  color: var(--pure-white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--gold);
}
.footer-col a {
  display: block;
  color: var(--gray-300);
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-col a i {
  width: 16px;
  margin-right: 0.4rem;
  font-size: 0.75rem;
  color: var(--emerald);
}

/* Newsletter */
.footer-newsletter p {
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  color: var(--gray-300);
}
.newsletter-form {
  display: flex;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px 0 0 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--pure-white);
  font-size: 0.82rem;
  font-family: "Outfit", sans-serif;
}
.newsletter-form input::placeholder {
  color: var(--gray-600);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.newsletter-form button {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 0 6px 6px 0;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 0.85rem;
  transition: all 0.3s;
  margin: 0;
  padding: 0;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gray-600);
}
.footer-bottom a {
  color: var(--gray-600);
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   ANIMATIONS & UTILITIES
   ═══════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--pure-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(26, 122, 76, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  transform: translateY(10px);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--emerald-dark);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub {
    margin: 0 auto 2rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-360-display {
    width: 250px;
    height: 250px;
  }
  .hero-center-text .big-360 {
    font-size: 3.5rem;
  }
  .service-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .download-inner {
    flex-direction: column;
    text-align: center;
  }
  .download-actions {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .top-bar-contact {
    display: none;
  }
  .top-bar-inner {
    justify-content: center;
  }
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
  }
  .gallery-cell:nth-child(1),
  .gallery-cell:nth-child(5) {
    grid-column: span 1;
  }
  .steps-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .steps-row::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .download-actions {
    flex-direction: column;
    align-items: center;
  }
}
