/* ===== Variables ===== */
:root {
  --primary: #2d6a4f;
  --primary-dark: #1b4332;
  --primary-light: #40916c;
  --primary-lighter: #d8f3dc;
  --sage: #74a893;
  --gold: #c9a227;
  --gold-light: #e6c84e;
  --dark: #1a2e2a;
  --gray: #6b7280;
  --light-gray: #f7f9f8;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s ease;
}

/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tajawal", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13, 122, 95, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 122, 95, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  padding: 18px 0;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  transform: scale(1.8);
  transform-origin: center;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.footer-logo .logo-img {
  height: 88px;
  filter: brightness(0) invert(1);
  transform: scale(1.8);
  transform-origin: center;
}

.footer-logo .logo-img:hover {
  filter: brightness(0) invert(1) opacity(0.85);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--primary);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
  padding: 140px 0 120px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(201, 162, 39, 0.08) 0%,
      transparent 50%
    );
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 8px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 15px;
}

.hero-feature-item i {
  color: var(--gold-light);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.hero-mosque-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mosque-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(201, 162, 39, 0.18) 0%,
    transparent 65%
  );
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.hero-mosque-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 380px;
  height: auto;
  object-fit: contain;
  animation: floatMosque 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 50px rgba(0, 0, 0, 0.3));
}

@keyframes floatMosque {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-lighter);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== How Section ===== */
.how-section {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

/* Section Watermark */
.section-watermark {
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  width: 320px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.section-watermark img {
  width: 100%;
  height: auto;
}

.watermark-left {
  left: auto;
  right: -60px;
}

.section-watermark ~ .container {
  position: relative;
  z-index: 1;
}

.steps-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--primary-lighter);
}

.step-number {
  position: absolute;
  top: -20px;
  right: 50%;
  transform: translateX(50%);
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(13, 122, 95, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 16px auto 24px;
  background: var(--primary-lighter);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary);
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.step-card p {
  color: var(--gray);
  font-size: 15px;
}

.step-connector {
  display: flex;
  align-items: center;
  color: var(--primary);
  font-size: 24px;
}

/* Methods */
.methods-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.method-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.method-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.method-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--primary-lighter);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
}

.method-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.method-card p {
  color: var(--gray);
  font-size: 15px;
}

/* ===== Pricing Section ===== */
.pricing-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 300px;
  height: 400px;
  background: url("../masjed.png") no-repeat center;
  background-size: contain;
  opacity: 0.04;
  pointer-events: none;
}

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

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--primary-light);
}

.pricing-featured {
  border-color: var(--primary);
  background: linear-gradient(
    180deg,
    var(--primary-lighter) 0%,
    var(--white) 30%
  );
  transform: scale(1.05);
}

.pricing-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge-top {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--gold);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-subtitle {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}

.pricing-price .price {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
}

.pricing-price .currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray);
}

.pricing-unit {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
}

.pricing-discount {
  margin-bottom: 24px;
}

.discount-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

.pricing-features {
  text-align: right;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--dark);
  font-size: 15px;
}

.pricing-features li i {
  color: var(--primary);
  font-size: 16px;
}

/* ===== Features Section ===== */
.features-section {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  background: var(--primary-lighter);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-5deg) scale(1.1);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  font-size: 15px;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-box::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-mosque-deco {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.cta-mosque-deco img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
}

.cta-box .btn {
  position: relative;
  z-index: 2;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../masjed.png") no-repeat left -80px center;
  background-size: 280px;
  opacity: 0.04;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo i {
  color: var(--gold);
}

.footer-about p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 400px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-right: 6px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
}

.footer-contact li i {
  color: var(--gold);
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== Clients Section ===== */
.clients-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 300px;
  height: 400px;
  background: url("../masjed.png") no-repeat center;
  background-size: contain;
  opacity: 0.04;
  pointer-events: none;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}

.client-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.client-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary-lighter), #e8f5e9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary);
  transition: var(--transition);
  border: 3px solid var(--primary-lighter);
}

.client-card:hover .client-icon {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
}

.client-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.client-card:hover .client-logo img {
  transform: scale(1.08);
}

.client-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}

.client-card > p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.client-tag {
  display: inline-block;
  background: var(--primary-lighter);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-top: auto;
}

.client-links {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  justify-content: center;
}

.client-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1877f2;
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.client-link:hover {
  background: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-featured {
    transform: scale(1);
  }
  .pricing-featured:hover {
    transform: translateY(-8px);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .methods-container {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: right 0.3s ease;
  }
  .nav-links.active {
    right: 0;
  }
  .menu-toggle {
    display: block;
  }
  .logo-img {
    height: 60px;
    transform: scale(1.6);
  }
  .hero {
    padding: 120px 0 100px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-features {
    justify-content: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 22px;
  }
  .hero-visual {
    margin-top: 40px;
  }
  .hero-mosque-img {
    width: 300px;
  }
  .section-watermark {
    width: 200px;
    left: -40px;
  }
  .watermark-left {
    right: -40px;
  }
  .section-title {
    font-size: 28px;
  }
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    transform: rotate(90deg);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  .cta-mosque-deco {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-about p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .section-title {
    font-size: 24px;
  }
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  .btn-lg {
    padding: 14px 28px;
    font-size: 16px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-floating-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .hero-mosque-img {
    width: 240px;
  }
  .section-watermark {
    display: none;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 20px;
    left: 20px;
  }
}
