/* =====================================================
   FONT CONSISTENCY – MATCH INDEX EXACTLY
   ===================================================== */

.page-wrapper,
.page-wrapper p,
.page-wrapper li,
.page-wrapper a,
.info-card p,
.feature-list li {
  font-family: 'Inter', sans-serif;
}

.page-hero h1,
.content-block h2,
.info-card h3 {
  font-family: 'Playfair Display', serif;
}

/* =====================================================
   HEADER OVERLAP FIX (JS-INJECTED HEADER SAFE)
   ===================================================== */

/* Adjust this if header height changes */
:root {
  --header-offset: 120px;
}

.page-wrapper {
  padding-top: var(--header-offset);
}

/* =====================================================
   GENERIC PAGE LAYOUT
   ===================================================== */

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
}

.page-wrapper a {
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: none;
}

.page-wrapper a:hover {
  text-decoration: underline;
}

/* =====================================================
   PAGE HERO (MATCHES INDEX PREMIUM BLOCKS)
   ===================================================== */

.page-hero {
  background: linear-gradient(
    135deg,
    var(--dark-brown),
    #3b231b
  );
  border-radius: 32px;
  padding: 80px 50px;
  color: white;
  box-shadow: var(--shadow-hover);
  margin-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  background: var(--primary-gold);
  filter: blur(130px);
  opacity: 0.22;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 22px;
}

.page-hero p {
  max-width: 720px;
  font-size: 1.12rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 38px;
}

/* =====================================================
   PRIMARY CTA (SAME AS INDEX CTA ENERGY)
   ===================================================== */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-gold);
  color: var(--dark-brown);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.cta-btn:hover {
  background: white;
  transform: translateY(-3px);
}

/* =====================================================
   CONTENT SECTIONS (SEO-READABLE)
   ===================================================== */

.content-block {
  margin-bottom: 70px;
}

.content-block h2 {
  font-size: 2.1rem;
  margin-bottom: 22px;
  color: var(--dark-brown);
}

.content-block p {
  max-width: 880px;
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
}

/* Soft background blocks */
.soft-bg {
  background: var(--warm-beige);
  padding: 50px 40px;
  border-radius: 28px;
}

/* =====================================================
   FEATURE LIST (CLEAN, GOOGLE FRIENDLY)
   ===================================================== */

.feature-list {
  margin-top: 22px;
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  margin-bottom: 14px;
  font-weight: 600;
  color: #333;
}

/* =====================================================
   INFO CARDS (PACKAGES / ITEMS)
   ===================================================== */

.info-card {
  background: white;
  border-radius: 22px;
  padding: 30px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--primary-gold);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark-brown);
}

.info-card p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #555;
}

/* =====================================================
   PRICE TAG
   ===================================================== */

.price {
  margin-top: 14px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-green);
}

/* =====================================================
   INTERNAL LINKS BLOCK
   ===================================================== */

.content-block ul {
  margin-top: 18px;
  padding-left: 20px;
}

.content-block ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* =====================================================
   MOBILE-FIRST OPTIMIZATION (IMPORTANT)
   ===================================================== */

@media (max-width: 992px) {
  :root {
    --header-offset: 110px;
  }

  .page-hero {
    padding: 60px 35px;
  }

  .content-block h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-offset: 100px;
  }

  .page-hero {
    padding: 45px 26px;
    border-radius: 26px;
  }

  .page-hero h1 {
    font-size: 2.1rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .soft-bg {
    padding: 34px 24px;
  }

  .content-block h2 {
    font-size: 1.7rem;
  }

  .info-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-offset: 95px;
  }

  .page-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* FAQ on Part order*/
.info-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 15px;
}
/* Enhanced Hero Glow */
.page-hero {
  background: linear-gradient(135deg, #3b231b 0%, #2d1a14 100%);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Review Stars */
.stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 8px;
}

/* Add-Ons Styling */
.addons-list {
  list-style: none;
  padding: 0;
}
.addons-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0e8d9;
  font-weight: 600;
}

/* Mobile Enhancements */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  .page-hero::before {
    left: 10%;
    width: 200px;
    height: 200px;
  }
}
