/* ============================================
   ZamzamShehad — Premium Honey Landing Page
   Mobile-first | Gold + White + Dark
   ============================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --gold: #B8930E;
  --gold-light: #D4A017;
  --gold-dark: #B8860B;
  --dark: #1A1A1A;
  --dark-soft: #2C2C2C;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --cream: #FFF8E7;
  --text: #333333;
  --text-light: #6B6B6B;
  --border: #E8E0D0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-urdu: 'Noto Nastaliq Urdu', serif;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Bottom padding so content doesn't hide behind sticky bar */
  padding-bottom: 60px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- SECTION TITLES ---------- */
.section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 8px;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 14px 32px;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 6px 25px rgba(212, 160, 23, 0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn--large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gold);
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ---------- UTILITY ---------- */
.gold {
  color: var(--gold);
}

/* Screen reader only — accessibility skip link */
.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;
}

.sr-only:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius);
  z-index: 9999;
}

/* =========================================
   URDU SEO SECTION
   Localized content for Pakistani market
   ========================================= */
.urdu-seo {
  background: linear-gradient(135deg, #FFF9E6, var(--cream));
  padding: 32px 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.urdu-seo__text {
  font-family: var(--font-urdu);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 2.2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================
   TOP NOTIFICATION BAR
   Trust-building refund guarantee strip
   ========================================= */
.topbar {
  background: #8B1A1A;
  text-align: center;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topbar__text {
  font-family: var(--font-urdu);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.8;
  margin: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* =========================================
   STICKY TOP WRAPPER
   Keeps topbar + header stuck together
   ========================================= */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* =========================================
   HEADER
   ========================================= */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-icon {
  font-size: 1.4rem;
}

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

/* =========================================
   HERO
   ========================================= */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
  padding: 48px 0 40px;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.hero__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-top: 8px;
}

.hero__cta {
  margin-top: 8px;
}

/* =========================================
   HADITH SECTION
   ========================================= */
.hadith {
  background: var(--white);
  padding: 56px 0;
}

.hadith__inner {
  text-align: center;
}

.hadith__ornament {
  color: var(--gold);
  font-size: 1.5rem;
  margin: 12px 0;
  opacity: 0.7;
}

.hadith__quote {
  border: none;
  margin: 0;
  padding: 0;
}

.hadith__quote p {
  font-size: 1.35rem;
  font-weight: 500;
  color: black;
  line-height: 1.5;
  font-style: italic;
}

.hadith__quote footer {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* =========================================
   PRICING
   ========================================= */
.pricing {
  padding: 64px 0;
  background: var(--off-white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 420px;
  margin: 0 auto;
}

.pricing__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing__card--featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #FFFDF5 0%, var(--white) 100%);
  transform: scale(1.02);
}

.pricing__card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing__badge-best {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing__weight {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.pricing__benefit {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* =========================================
   COMPARE SECTION
   ========================================= */
.compare {
  padding: 64px 0;
  background: var(--cream);
}

.compare__title {
  margin-bottom: 40px;
}

.compare__table-wrap {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.compare__table th,
.compare__table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.compare__table th {
  background: var(--dark);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.compare__table th:first-child {
  text-align: left;
}

.compare__table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
}

.compare__table tbody tr:last-child td {
  border-bottom: none;
}

/* Icons styling */
.check {
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

.cross {
  color: #dc3545;
  font-weight: bold;
  font-size: 1.2rem;
}

.dim {
  color: var(--text-light);
  font-style: italic;
  font-size: 0.9rem;
}

/* Secondary highlight for our column */
.compare__table th:nth-child(2) {
  background-color: var(--gold);
  color: var(--white);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  font-size: 1.25rem;
}

.compare__table td:nth-child(2) {
  background-color: #FFFDF5;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.compare__table tbody tr:last-child td:nth-child(2) {
  border-bottom: 2px solid var(--gold);
}

/* =========================================
   GUARANTEE SECTION
   Premium dark section with gold accents
   ========================================= */
.guarantee {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--dark) 0%, #121212 100%);
  overflow: hidden;
  position: relative;
}

.guarantee__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

/* Decorative gold line */
.guarantee__accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* Shield icon */
.guarantee__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.05));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

.guarantee__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.guarantee__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
}

.guarantee__text strong {
  color: var(--gold-light);
}

/* Trust badges */
.guarantee__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.guarantee__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.guarantee__badge:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.guarantee__badge-icon {
  font-size: 1.2rem;
}

/* =========================================
   PAYMENT
   ========================================= */
.payment {
  padding: 64px 0;
  background: var(--white);
}

.payment__methods {
  text-align: center;
  margin-bottom: 40px;
}

.payment__heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.payment__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.payment__method {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

.payment__icon {
  font-size: 1.3rem;
}

/* Steps */
.payment__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto 40px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__text strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.step__text p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Guarantee box */
.payment__guarantee {
  background: linear-gradient(135deg, #FFF9E6, #FFF3CC);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.payment__guarantee .guarantee__icon {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  background: none;
  animation: none;
  font-size: 2.5rem;
  margin: 0 auto 12px;
  display: block;
  text-align: center;
  color: inherit;
}

.payment__guarantee h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.payment__guarantee p {
  font-size: 1rem;
  color: var(--text);
}

.guarantee__sub {
  font-size: 0.875rem !important;
  color: var(--text-light) !important;
  margin-top: 8px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: 64px 0;
  background: var(--off-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 420px;
  margin: 0 auto;
}

.testimonial__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.testimonial__img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid var(--gold-light);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__author strong {
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial__author span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  padding: 64px 0;
  background: var(--white);
}

.faq__list {
  max-width: 680px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.faq__item[open] {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.faq__question {
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark);
  padding: 40px 0;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* =========================================
   STICKY BOTTOM CONTACT BAR
   Full-width fixed bar — two 50/50 buttons
   Mobile-first, conversion-optimized
   ========================================= */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 999;
  /* Subtle top shadow for depth separation */
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

/* Each button takes exactly 50% width */
.sticky-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  /* Smooth hover — lightweight, no layout shift */
  transition: filter 0.2s ease, opacity 0.2s ease;
}

/* Hover: subtle brightness increase */
.sticky-bar__btn:hover {
  filter: brightness(1.12);
}

/* Active press feedback */
.sticky-bar__btn:active {
  filter: brightness(0.92);
}

/* SVG icon inside buttons */
.sticky-bar__btn svg {
  flex-shrink: 0;
}

/* Left button: Dark Premium Red/Maroon */
.sticky-bar__btn--call {
  background: #B8860B;
}

/* Right button: WhatsApp Green */
.sticky-bar__btn--whatsapp {
  background: #25D366;
}

/* =========================================
   RESPONSIVE — TABLET (768px+)
   ========================================= */
@media (min-width: 768px) {

  .section__title {
    font-size: 2.1rem;
  }

  /* Hero */
  .hero {
    padding: 64px 0;
  }

  .hero__inner {
    text-align: center;
  }

  .hero__content {
    flex: 1;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  /* Pricing grid */
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    gap: 20px;
  }

  /* Testimonials grid */
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    gap: 20px;
  }

  /* Payment steps horizontal */
  .payment__steps {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }

  /* Hadith */
  .hadith__quote p {
    font-size: 1.6rem;
  }
}

/* =========================================
   RESPONSIVE — DESKTOP (1024px+)
   ========================================= */
@media (min-width: 1024px) {

  .hero {
    padding: 80px 0;
  }

  .hero__title {
    font-size: 3rem;
  }



  .section__title {
    font-size: 2.3rem;
  }

  .pricing__grid,
  .testimonials__grid {
    max-width: 1000px;
    gap: 28px;
  }

  .hadith {
    padding: 72px 0;
  }

  .hadith__quote p {
    font-size: 1.8rem;
  }

  .payment__steps {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }
}

/* =========================================
   PRINT STYLES
   ========================================= */
@media print {
  .sticky-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}