:root {
  --primary: #e65c00; /* darker orange */
  --dark: #0b0b0b;
  --light: #f4f4f4;
  --text: #1e1e1e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

.section { padding: 4rem 0; }
.section.alt { background: var(--light); }
.section.dark { background: var(--dark); color: #fff; }

/* NAV */
.nav {
  background: #fff;
  border-bottom: 3px solid var(--primary);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo span { color: var(--primary); }

nav a {
  margin-left: 1.2rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

/* HERO */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero img {
  width: 100%;
  border-radius: 10px;
}

/* BUTTONS */
.btn {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.btn.outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn.small { padding: 0.4rem 0.9rem; }

.actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.actions.center { justify-content: center; }

.trust span {
  margin-right: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding: 1rem;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: #fff;
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
}

.team-card .role {
  color: var(--primary);
  font-weight: 600;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: #111;
  border: 1px solid #222;
  padding: 1.5rem;
  border-radius: 6px;
}

.stars {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.reviewer {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* CTA */
.cta {
  background: #000;
  color: #fff;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
}

/* AREAS */
#areas {
  background: #000;
  color: #fff;
}

#areas h2,
#areas p {
  color: #fff;
}

.areas-list {
  columns: 3;
  margin-top: 1.5rem;
}

.areas-list li {
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: #fff;
}

/* GUARANTEES */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.guarantee {
  background: #fff;
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
}

/* FAQ */
#faq {
  background: #fff;
  color: #fff;
}

#faq h2 {
  color: #000;
}

.faq-list {
  max-width: 800px;
  margin-top: 2rem;
}

.faq-list details {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 6px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}

.faq-list summary {
  font-weight: 600;
  color: #fff;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 0.8rem;
  color: #fff;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .areas-list {
    columns: 2;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* Optional: only show on mobile */
@media (min-width: 769px) {
  .whatsapp-float {
    display: none;
  }
}

/* ===== PREMIUM HERO ===== */

.hero-premium {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: #0c0c0c;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 400px at 30% 20%,
      rgba(255, 140, 0, 0.35),
      transparent 60%
    ),
    radial-gradient(
      500px 300px at 70% 60%,
      rgba(255, 100, 0, 0.25),
      transparent 65%
    ),
    linear-gradient(180deg, #0b0b0b, #000);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-pill {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #ff8c00;
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 999px;
}

.hero-premium h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-sub {
  max-width: 620px;
  font-size: 1.15rem;
  color: #d0d0d0;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: #bdbdbd;
  flex-wrap: wrap;
}

/* Buttons (if not already defined) */
.btn.primary {
  background: linear-gradient(135deg, #ff8c00, #ff6a00);
  color: #000;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #333;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
}

/* ===== PREMIUM SERVICES ===== */

.services-premium {
  position: relative;
  padding: 120px 0;
  background: #f6f6f6;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 340px;
  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  z-index: 0;
}

.services-premium .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 60px;
  color: #111;
}

/* Cards layout */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: -140px;
}

/* Individual card */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 42px 28px 34px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

/* Icon badge */
.service-icon {
  width: 52px;
  height: 52px;
  background: #000;
  color: #ff8c00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto 20px;
  font-size: 22px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #111;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.service-more {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ff8c00;
  text-transform: uppercase;
}

/* ===== SERVICES SHOWCASE (MATCHES REFERENCE) ===== */

.services-showcase {
  position: relative;
  padding: 140px 0 120px;
  background: #f4f4f4;
}

.services-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: 360px;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  z-index: 0;
}

.services-showcase .container {
  position: relative;
  z-index: 1;
}

.services-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 70px;
  color: #111;
}

/* Cards layout */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: -150px;
}

/* Card styling */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 30px 36px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.2);
}

/* Icon badge */
.service-icon {
  width: 56px;
  height: 56px;
  background: #000;
  color: #ff8c00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin: 0 auto 22px;
  font-size: 22px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: #111;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-more {
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ff8c00;
  text-transform: uppercase;
}

/* Space between hero and services */
.hero-premium + .services-showcase {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .hero-premium + .services-showcase {
    margin-top: 60px;
  }
}

/* ===== SERVICES STAGGER REVEAL ===== */

.service-card {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.service-card.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHY CHOOSE US (HEX GRID) ===== */

.why-us-section {
  padding: 120px 0;
  background: #fafafa;
}

.why-intro {
  max-width: 640px;
  margin: -30px auto 90px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

/* Auto-balancing centered grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px 34px;
  justify-items: center;
}

/* Hex card */
.why-card {
  width: 260px;
  background: #fff;
  padding: 46px 26px;
  text-align: center;

  clip-path: polygon(
    25% 6%,
    75% 6%,
    100% 50%,
    75% 94%,
    25% 94%,
    0% 50%
  );

  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  opacity: 0;
  transform: translateY(18px);
}

.why-card.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hover glow effect */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.18),
    0 0 0 2px rgba(255, 140, 0, 0.25),
    0 0 40px rgba(255, 140, 0, 0.25);
}

/* Icon glow */
.why-card:hover .why-icon {
  background: rgba(255, 140, 0, 0.25);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.18);
}

/* Icon badge */
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,140,0,0.15);
  color: #ff8c00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 18px;
  font-size: 24px;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #111;
}

.why-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
}

/* =====================================================
   WHY CHOOSE US – FINAL HEX LAYOUT (OVERRIDES ALL)
===================================================== */

.why-us-section {
  padding: 120px 0;
  background: #fafafa;
}

.why-us-section .section-title {
  text-align: center;
}

.why-intro {
  max-width: 640px;
  margin: 20px auto 90px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

/* CENTERED AUTO-BALANCING GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 260px));
  justify-content: center;
  gap: 42px 36px;
}

/* HEX CARD */
.why-card {
  width: 260px;
  background: #fff;
  padding: 48px 28px;
  text-align: center;

  clip-path: polygon(
    25% 6%,
    75% 6%,
    100% 50%,
    75% 94%,
    25% 94%,
    0% 50%
  );

  box-shadow: 0 24px 55px rgba(0,0,0,0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  opacity: 0;
  transform: translateY(18px);
}

/* REVEAL */
.why-card.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER GLOW */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.18),
    0 0 0 2px rgba(230, 92, 0, 0.35),
    0 0 45px rgba(230, 92, 0, 0.35);
}

/* ICON */
.why-icon {
  width: 58px;
  height: 58px;
  background: rgba(230, 92, 0, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 18px;
  font-size: 24px;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.why-card:hover .why-icon {
  background: rgba(230, 92, 0, 0.25);
  box-shadow: 0 0 22px rgba(230, 92, 0, 0.6);
}

/* TEXT */
.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #111;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-grid {
    gap: 36px;
  }
}

/* =====================================================
   WHY CHOOSE US — HARD OVERRIDE (FINAL)
   This forces hex layout no matter what
===================================================== */

#why-us .why-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 260px)) !important;
  justify-content: center !important;
  gap: 44px 36px !important;
  margin-top: 60px !important;
}

#why-us .why-card {
  width: 260px !important;
  background: #fff !important;
  padding: 48px 28px !important;
  text-align: center !important;

  clip-path: polygon(
    25% 6%,
    75% 6%,
    100% 50%,
    75% 94%,
    25% 94%,
    0% 50%
  ) !important;

  box-shadow: 0 24px 55px rgba(0,0,0,0.12) !important;

  opacity: 1 !important;
  transform: none !important;
}

#why-us .why-icon {
  width: 58px !important;
  height: 58px !important;
  background: rgba(230, 92, 0, 0.15) !important;
  color: #e65c00 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50% !important;
  margin: 0 auto 18px !important;
  font-size: 24px !important;
}

#why-us .why-card h3 {
  font-size: 1.05rem !important;
  margin-bottom: 10px !important;
  color: #111 !important;
}

#why-us .why-card p {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  color: #555 !important;
}

/* Hover glow */
#why-us .why-card:hover {
  transform: translateY(-10px) !important;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.18),
    0 0 0 2px rgba(230, 92, 0, 0.35),
    0 0 45px rgba(230, 92, 0, 0.35) !important;
}

#why-us .why-card:hover .why-icon {
  background: rgba(230, 92, 0, 0.25) !important;
  box-shadow: 0 0 22px rgba(230, 92, 0, 0.6) !important;
}

/* =====================================================
   WHY CHOOSE US – HARD RESET & HEX GRID (FINAL)
   This block OVERRIDES all previous styles
===================================================== */

#why-us {
  padding: 120px 0;
  background: #fafafa;
}

#why-us .section-title {
  text-align: center;
}

#why-us .why-intro {
  max-width: 640px;
  margin: 20px auto 80px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

/* FORCE GRID (no flex, no lists, no columns) */
#why-us .why-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, 260px) !important;
  justify-content: center !important;
  gap: 42px !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

/* REMOVE ANY LIST BEHAVIOUR */
#why-us .why-grid * {
  list-style: none !important;
}

/* HEX CARD */
#why-us .why-card {
  width: 260px !important;
  background: #fff !important;
  padding: 48px 28px !important;
  text-align: center !important;

  clip-path: polygon(
    25% 6%,
    75% 6%,
    100% 50%,
    75% 94%,
    25% 94%,
    0% 50%
  ) !important;

  box-shadow: 0 24px 55px rgba(0,0,0,0.12) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* ICON */
#why-us .why-icon {
  width: 58px !important;
  height: 58px !important;
  margin: 0 auto 18px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50% !important;
  font-size: 24px !important;

  background: rgba(255,140,0,0.15) !important;
  color: #ff8c00 !important;
}

/* TEXT */
#why-us .why-card h3 {
  font-size: 1.05rem !important;
  margin-bottom: 10px !important;
  color: #111 !important;
}

#why-us .why-card p {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  color: #555 !important;
}

/* HOVER GLOW */
#why-us .why-card:hover {
  transform: translateY(-10px) !important;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.18),
    0 0 0 2px rgba(255,140,0,0.35),
    0 0 45px rgba(255,140,0,0.35) !important;
}

#why-us .why-card:hover .why-icon {
  background: rgba(255,140,0,0.25) !important;
  box-shadow: 0 0 22px rgba(255,140,0,0.6) !important;
}

/* =====================================================
   PREMIUM FAQ SECTION
===================================================== */

.faq-premium {
  padding: 140px 0;
  background: linear-gradient(180deg, #0e1621, #0b121b);
  color: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* LEFT SIDE */
.faq-left h2 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}

.faq-left p {
  max-width: 420px;
  color: #b6c0cc;
  line-height: 1.6;
}

/* RIGHT SIDE (ACCORDION) */
.faq-right {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 30px 34px;
}

/* SINGLE ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #eaeef3;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  flex: 1;
}

/* ICON */
.faq-icon {
  color: var(--primary);
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  color: #b6c0cc;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-bottom: 22px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* =====================================================
   FAQ TEXT CONTRAST FIX
===================================================== */

/* Section base */
.faq-premium {
  color: #e6edf5;
}

/* Left side text */
.faq-left h2 {
  color: #ffffff;
}

.faq-left p {
  color: #c7d2de;
}

/* Question text */
.faq-question {
  color: #f1f5f9;
}

.faq-question span:first-child {
  color: #f1f5f9;
}

/* Answer text */
.faq-answer p {
  color: #cbd5e1;
}

/* Divider lines */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

/* Accordion container */
.faq-right {
  background: rgba(255,255,255,0.06);
}

/* =====================================================
   FAQ – HARD TEXT COLOR OVERRIDE (FINAL)
===================================================== */

#faq,
#faq * {
  color: #e6edf5 !important;
}

/* Title */
#faq h2 {
  color: #ffffff !important;
}

/* Left intro text */
#faq .faq-left p {
  color: #cbd5e1 !important;
}

/* Question text */
#faq .faq-question,
#faq .faq-question span {
  color: #f8fafc !important;
}

/* Answer text */
#faq .faq-answer p {
  color: #d1dae6 !important;
}

/* Divider lines */
#faq .faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}

/* Accordion panel */
#faq .faq-right {
  background: rgba(255,255,255,0.06) !important;
}

/* =====================================================
   FAQ – FINAL COLOR BALANCE FIX
===================================================== */

/* Ensure dark background stays */
#faq {
  background: linear-gradient(180deg, #0e1621, #0b121b) !important;
}

/* Left column */
#faq .faq-left h2 {
  color: #ffffff !important;
}

#faq .faq-left p {
  color: #c7d2de !important;
}

/* Accordion container */
#faq .faq-right {
  background: rgba(255,255,255,0.06) !important;
}

/* Questions */
#faq .faq-question {
  color: #f1f5f9 !important;
}

/* Answers */
#faq .faq-answer p {
  color: #d1dae6 !important;
}

/* Dividers */
#faq .faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.18) !important;
}

/* Icons */
#faq .faq-icon {
  color: var(--primary) !important;
}

/* =====================================================
   FAQ – MEDIUM DARK GREY BACKGROUND
===================================================== */

#faq {
  background: linear-gradient(
    180deg,
    #1c1f24,
    #16191d
  ) !important;
}

/* =====================================================
   SERVICES – BIGGER BACKGROUND IMAGE
===================================================== */

.services-showcase {
  padding-top: 200px;   /* more space above cards */
  padding-bottom: 140px;
}

.services-image {
  height: 840px;        /* was ~360px before */
  width: 96%;
  border-radius: 32px;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .services-showcase {
    padding-top: 160px;
  }

  .services-image {
    height: 420px;
    width: 94%;
  }
}

/* =====================================================
   SERVICES – REMOVE BACKGROUND IMAGE ON MOBILE
===================================================== */

@media (max-width: 768px) {
  .services-image {
    display: none;
  }

  .services-showcase {
    padding-top: 80px;
    background: #f4f4f4;
  }

  .services-cards {
    margin-top: 0;
  }
}

/* =====================================================
   WHATSAPP FLOATING BUTTON
===================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 18px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.whatsapp-float .wa-icon {
  font-size: 26px;
  color: #fff;
  line-height: 1;
}

/* =====================================================
   MOBILE HEADER FIX
===================================================== */

@media (max-width: 768px) {
  header {
    padding: 12px 16px;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .nav-links {
    display: none; /* hide desktop nav on mobile */
  }

  .header-phone {
    padding: 10px 14px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
}

/* =====================================================
   MOBILE HEADER FIX
===================================================== */

@media (max-width: 768px) {
  header {
    padding: 12px 16px;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .nav-links {
    display: none; /* hide desktop nav on mobile */
  }

  .header-phone {
    padding: 10px 14px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
}
/* =====================================================
   HAMBURGER MENU – MOBILE ONLY
===================================================== */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 16px;
  border-top: 1px solid #eee;
}

.mobile-menu a {
  padding: 14px 0;
  font-size: 1rem;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* OPEN STATE */
header.menu-open .mobile-menu {
  display: flex;
}

header.menu-open .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

header.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

header.menu-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* MOBILE OVERRIDES */
@media (max-width: 768px) {

  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: block;
  }

  .nav-container {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .header-phone {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   MOBILE HEADER – HARD RESET & FIX
===================================================== */

@media (max-width: 768px) {

  /* Reset all header links */
  header a {
    color: inherit;
    text-decoration: none;
  }

  header {
    background: #fff;
    padding: 14px 16px 16px;
    border-bottom: 1px solid #eee;
  }

  .nav-container {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
  }

  /* Logo */
  .logo {
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 600;
  }

  /* 🔴 Kill desktop nav on mobile */
  .nav-links {
    display: none !important;
  }

  /* Phone CTA */
  .header-phone {
    grid-column: 1 / -1;
    margin-top: 8px;
    background: #ff8c00;
    color: #000;
    padding: 14px 16px;
    text-align: center;
    font-weight: 600;
    border-radius: 12px;
  }

  /* Hamburger button */
  .hamburger {
    display: block;
    background: none;
    border: none;
    width: 28px;
    height: 22px;
    position: relative;
    cursor: pointer;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #111;
    border-radius: 2px;
    transition: 0.3s ease;
  }

  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 9px; }
  .hamburger span:nth-child(3) { top: 18px; }

  /* Mobile menu */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 8px 16px 16px;
    border-bottom: 1px solid #eee;
  }

  .mobile-menu a {
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }

  /* Open state */
  header.menu-open .mobile-menu {
    display: flex;
  }

  header.menu-open .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }

  header.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
  }

  header.menu-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
  }
}

/* =====================================================
   DESKTOP HEADER – RESTORE LAYOUT
===================================================== */

header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ff8c00;
}

/* Desktop phone CTA */
.header-phone {
  background: #ff8c00;
  color: #000;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* =====================================================
   MOBILE HEADER – FINAL POLISH
===================================================== */

@media (max-width: 768px) {

  /* Remove phone number from header on mobile */
  .header-phone {
    display: none !important;
  }

  /* Right-indent / align company name */
  .logo {
    padding-left: 4px; /* subtle right indent */
  }

}

/* =====================================================
   BLUE AURA LIGHT THEME
   (Spiritual / Healing Vibe Override)
===================================================== */

:root {
  --primary: #5ecbff;
  --secondary: #7a6bff;
  --aura-light: #e6f7ff;
  --aura-glow: rgba(94, 203, 255, 0.45);
  --text-dark: #2b2b4f;
}

/* ===== BODY BACKGROUND AURA ===== */

body {
  background:
    radial-gradient(800px 500px at 20% 10%, rgba(94,203,255,0.35), transparent 60%),
    radial-gradient(700px 500px at 80% 30%, rgba(122,107,255,0.35), transparent 60%),
    linear-gradient(180deg, #f8fdff, #eef6ff);
  color: var(--text-dark);
}

/* ===== HEADER ===== */

header {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(94,203,255,0.3);
}

.nav-links a:hover {
  color: var(--primary);
}

.header-phone {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

/* ===== HERO SECTION ===== */

.hero-premium {
  background: transparent;
  color: var(--text-dark);
}

.hero-bg {
  background:
    radial-gradient(600px 400px at 30% 20%, rgba(94,203,255,0.45), transparent 60%),
    radial-gradient(600px 400px at 70% 60%, rgba(122,107,255,0.35), transparent 65%);
}

.hero-pill {
  background: rgba(94,203,255,0.15);
  border: 1px solid rgba(94,203,255,0.35);
  color: var(--primary);
}

.hero-sub {
  color: #5a5a7a;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 10px 40px var(--aura-glow);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px var(--aura-glow);
}

.btn.ghost {
  border: 1px solid rgba(94,203,255,0.4);
  color: var(--primary);
}

/* ===== SERVICES ===== */

.services-showcase {
  background: transparent;
}

.services-image {
  background:
    linear-gradient(rgba(94,203,255,0.4), rgba(122,107,255,0.4)),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773");
  background-size: cover;
  background-position: center;
}

.service-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(94,203,255,0.2);
  box-shadow: 0 20px 50px rgba(94,203,255,0.15);
}

.service-card:hover {
  box-shadow: 0 30px 70px rgba(94,203,255,0.25);
}

.service-icon {
  background: rgba(94,203,255,0.15);
  color: var(--primary);
}

/* ===== WHY US HEX ===== */

#why-us {
  background: transparent !important;
}

#why-us .why-card {
  background: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(94,203,255,0.25) !important;
  box-shadow: 0 20px 50px rgba(94,203,255,0.15) !important;
}

#why-us .why-card:hover {
  box-shadow:
    0 30px 70px rgba(94,203,255,0.3),
    0 0 40px rgba(94,203,255,0.35) !important;
}

#why-us .why-icon {
  background: rgba(94,203,255,0.2) !important;
  color: var(--primary) !important;
}

/* ===== FAQ ===== */

#faq {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(94,203,255,0.2), transparent 60%),
    #f4faff !important;
}

#faq .faq-right {
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(10px);
}

#faq .faq-question {
  color: var(--text-dark) !important;
}

#faq .faq-answer p {
  color: #5a5a7a !important;
}

/* ===== CTA ===== */

.cta {
  background:
    radial-gradient(circle at center, rgba(94,203,255,0.4), transparent 70%),
    linear-gradient(135deg, #dff6ff, #e9f0ff);
  color: var(--text-dark);
}

.cta .btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

/* ===== FOOTER ===== */

.footer {
  background: linear-gradient(135deg, #dff6ff, #eef3ff);
  color: var(--text-dark);
  border-top: 1px solid rgba(94,203,255,0.2);
}

/* ===== WHATSAPP BUTTON SOFT GLOW ===== */

.whatsapp-float {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 40px rgba(94,203,255,0.4);
}
/* =====================================================
   EXTRA COSMIC AURA BACKGROUND
===================================================== */

body {
  background: linear-gradient(120deg, #e6f7ff, #eef3ff, #e6f7ff);
  background-size: 300% 300%;
  animation: auraShift 18s ease infinite;
  overflow-x: hidden;
}

/* Slow gradient movement */
@keyframes auraShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =====================================================
   FLOATING AURA BLOBS
===================================================== */

body::before,
body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: -1;
  animation: floatAura 25s ease-in-out infinite;
}

body::before {
  background: #5ecbff;
  top: -150px;
  left: -150px;
}

body::after {
  background: #7a6bff;
  bottom: -150px;
  right: -150px;
  animation-delay: 10s;
}

@keyframes floatAura {
  0% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(80px) translateX(60px); }
  100% { transform: translateY(0px) translateX(0px); }
}

/* =====================================================
   LIGHT PARTICLES
===================================================== */

.aura-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.aura-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0.4;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  from {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  to {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-premium h1 {
  text-shadow:
    0 0 20px rgba(94,203,255,0.5),
    0 0 40px rgba(122,107,255,0.4);
}
.service-card,
#why-us .why-card,
.faq-right {
  backdrop-filter: blur(18px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover,
#why-us .why-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* =====================================================
   CRYSTAL REFRACTION SHIMMER (VISIBLE VERSION)
===================================================== */

.hero-premium {
  position: relative;
  overflow: hidden;
}

/* moving shimmer light */
.hero-premium::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.25) 45%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0.25) 55%,
    transparent 70%
  );
  transform: rotate(25deg);
  animation: crystalSweep 6s linear infinite;
  pointer-events: none;
}

@keyframes crystalSweep {
  0% { transform: translateX(-60%) rotate(25deg); }
  100% { transform: translateX(60%) rotate(25deg); }
}

/* =====================================================
   MANDALA CORNER OVERLAYS
===================================================== */

body::marker { content: none; }

.mandala-top,
.mandala-bottom {
  position: fixed;
  width: 320px;
  opacity: 0.18;
  z-index: -1;
  pointer-events: none;
}

.mandala-top {
  top: -40px;
  left: -40px;
}

.mandala-bottom {
  bottom: -40px;
  right: -40px;
  transform: rotate(180deg);
}

/* =====================================================
   HERO BREATHING ANIMATION
===================================================== */

.hero-premium {
  animation: heroBreathing 6s ease-in-out infinite;
}

@keyframes heroBreathing {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* =====================================================
   CRYSTAL PRISM RAINBOW LIGHT
===================================================== */

.hero-premium {
  position: relative;
  overflow: hidden;
}

.hero-premium::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: linear-gradient(
    120deg,
    rgba(255,0,150,0.15),
    rgba(0,204,255,0.15),
    rgba(0,255,150,0.15),
    rgba(255,255,0,0.15),
    rgba(255,0,150,0.15)
  );
  filter: blur(60px);
  animation: prismMove 18s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes prismMove {
  0% { transform: translateX(-20%) rotate(0deg); }
  100% { transform: translateX(20%) rotate(360deg); }
}

/* Keep hero content above it */
.hero-content {
  position: relative;
  z-index: 2;
}

/* =====================================================
   LUXURY SPIRITUAL TYPOGRAPHY
===================================================== */

body {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-premium h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
}

/* =====================================================
   FAQ – FINAL CLEAN COLOR FIX
   (Overrides EVERYTHING above)
===================================================== */

#faq {
  background: linear-gradient(180deg, #f4faff, #eef6ff) !important;
  color: #2b2b4f !important;
}

/* Title */
#faq h2 {
  color: #2b2b4f !important;
}

/* Accordion container */
#faq .faq-right {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(14px);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(94,203,255,0.15);
}

/* Question text */
#faq .faq-question {
  color: #2b2b4f !important;
  font-weight: 600;
}

/* Answer text */
#faq .faq-answer p {
  color: #4a4a6a !important;
  line-height: 1.7;
}

/* Icon color */
#faq .faq-icon {
  color: #5ecbff !important;
}

/* Divider lines */
#faq .faq-item {
  border-bottom: 1px solid rgba(94,203,255,0.25) !important;
}

/* =====================================================
   FAQ – COMPLETE HARD RESET FIX
===================================================== */

/* Reset everything inside FAQ */
#faq * {
  color: inherit !important;
}

/* Section background */
#faq {
  background: linear-gradient(180deg, #f4faff, #eef6ff) !important;
  color: #2b2b4f !important;
}

/* Title */
#faq h2 {
  color: #2b2b4f !important;
}

/* Question text */
#faq .faq-question {
  color: #2b2b4f !important;
  font-weight: 600 !important;
}

/* Answer text */
#faq .faq-answer p {
  color: #4a4a6a !important;
}

/* Icon */
#faq .faq-icon {
  color: #5ecbff !important;
}

/* Divider lines */
#faq .faq-item {
  border-bottom: 1px solid rgba(94,203,255,0.35) !important;
}

/* Accordion panel */
#faq .faq-right {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(12px);
  border-radius: 16px;
}
/* =====================================================
   FAQ – NUCLEAR COLOR FIX
===================================================== */

/* Force section base */
section#faq {
  background: linear-gradient(180deg, #f4faff, #eef6ff) !important;
}

/* Force title */
section#faq > .container > h2 {
  color: #2b2b4f !important;
}

/* Force each question */
section#faq .faq-item .faq-question,
section#faq .faq-item .faq-question span {
  color: #2b2b4f !important;
  font-weight: 600 !important;
}

/* Force answers */
section#faq .faq-item .faq-answer p {
  color: #4a4a6a !important;
}

/* Force icon */
section#faq .faq-item .faq-icon {
  color: #5ecbff !important;
}

/* Force dividers */
section#faq .faq-item {
  border-bottom: 1px solid rgba(94,203,255,0.35) !important;
}

/* =====================================================
   PRICING SECTION
===================================================== */

.pricing-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f4faff, #eef6ff);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(94,203,255,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(94,203,255,0.3);
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  color: #2b2b4f;
}

.pricing-duration {
  font-size: 0.95rem;
  color: #6a6a8a;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5ecbff;
  margin-bottom: 10px;
}

.pricing-note {
  font-size: 0.85rem;
  color: #888;
}

/* =====================================================
   MODERN PRICING SECTION
===================================================== */

.pricing-modern {
  padding: 120px 0;
  background: linear-gradient(180deg, #f4faff, #eef6ff);
  text-align: center;
}

.pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 70px;
  color: #2b2b4f;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.price-card {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(94,203,255,0.15);
  transition: 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(94,203,255,0.3);
}

.price-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #2b2b4f;
}

.price-desc {
  font-size: 0.95rem;
  color: #6a6a8a;
  margin-bottom: 30px;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #5ecbff;
  margin-bottom: 25px;
}

.price span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: #6a6a8a;
  margin-top: 6px;
}

.price-btn {
  display: inline-block;
  margin-bottom: 30px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #5ecbff, #7a6bff);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.price-btn:hover {
  transform: scale(1.05);
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #4a4a6a;
}

/* Highlighted card */
.price-card.highlight {
  border: 3px solid #5ecbff;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #5ecbff;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* =====================================================
   WHY CHOOSE US – HEX GRID
===================================================== */

.why-us-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f4faff, #eef6ff);
}

.why-us-section .section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #2b2b4f;
}

.why-intro {
  max-width: 640px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #6a6a8a;
}

/* GRID */
#why-us .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 260px));
  justify-content: center;
  gap: 42px 36px;
}

/* HEX CARD */
#why-us .why-card {
  width: 260px;
  background: #ffffff;
  padding: 48px 28px;
  text-align: center;

  clip-path: polygon(
    25% 6%,
    75% 6%,
    100% 50%,
    75% 94%,
    25% 94%,
    0% 50%
  );

  box-shadow: 0 24px 55px rgba(94,203,255,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#why-us .why-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 90px rgba(94,203,255,0.25),
    0 0 45px rgba(94,203,255,0.25);
}

/* ICON */
#why-us .why-icon {
  width: 58px;
  height: 58px;
  background: rgba(94,203,255,0.15);
  color: #5ecbff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  margin: 0 auto 18px;
  font-size: 24px;
}

/* TEXT */
#why-us .why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #2b2b4f;
}

#why-us .why-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #6a6a8a;
}

/* =====================================================
   PRICING GRID (2x2 Layout)
===================================================== */

.pricing-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f4faff, #eef6ff);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.pricing-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  padding: 50px 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(94,203,255,0.15);
  text-align: center;
}

.pricing-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #5a4ccf;
  margin-bottom: 30px;
}

.pricing-card p {
  color: #4a4a6a;
  line-height: 1.6;
}

.pricing-card ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
  display: inline-block;
  margin-top: 10px;
}

.pricing-card li {
  margin-bottom: 8px;
  color: #4a4a6a;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   MODERN SaaS STYLE PRICING
========================================= */

.pricing-modern {
  padding: 120px 0;
  background: #f7f9fc;
  text-align: center;
}

.pricing-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 60px;
  color: #2b2b4f;
}

.pricing-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.pricing-plan {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 14px;
  border: 1px solid #e5e8f0;
  transition: 0.3s ease;
  position: relative;
}

.pricing-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pricing-plan h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #2b2b4f;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #5a4ccf;
  margin-bottom: 20px;
}

.price span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: #777;
  margin-top: 6px;
}

.plan-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #5a4ccf;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 30px;
  transition: 0.3s ease;
}

.plan-btn:hover {
  background: #4638b8;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.plan-features li {
  margin-bottom: 12px;
  color: #555;
  font-size: 0.95rem;
}

/* Highlighted Plan */
.featured {
  border: 2px solid #5a4ccf;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #5a4ccf;
  color: #fff;
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .pricing-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-sub {
    color: #2b2b4f !important;   /* darker readable text */
    opacity: 1 !important;
  }
}

.hero-premium p {
  color: #2b2b4f !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .btn.ghost {
    background: #ffffff !important;
    color: #5a4ccf !important;
    border: 1px solid #5a4ccf !important;
  }
}

@media (max-width: 768px) {
  .hero-trust span {
    color: #4a4a6a !important;
    opacity: 1 !important;
  }
}

@media (max-width: 768px) {
  .hero-bg {
    opacity: 0.6;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 42px;
  width: auto;
  border-radius: 8px;
}

.healing-gallery {
  padding: 120px 0;
  text-align: center;
}

.gallery-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(94,203,255,0.2);
  transition: 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 15px;
}

.footer-socials a {
  color: #5a4ccf;
  font-weight: 600;
  text-decoration: none;
}

.footer-socials a:hover {
  text-decoration: underline;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.healing-gallery {
  padding: 80px 0;
  text-align: center;
}

.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(94,203,255,0.15);
  transition: 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* =====================================================
   FINAL POLISH FIXES – BLUE AURA
===================================================== */


/* ===============================
   HEADER SPACING FIX
=============================== */

.nav-container {
  padding: 10px 20px !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo span {
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  header {
    padding: 8px 14px 10px !important;
  }
}


/* ===============================
   PERFECT HEX SHAPES (WHY US)
=============================== */

#why-us .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 260px);
  justify-content: center;
  gap: 50px 36px;
}

#why-us .why-card {
  width: 260px;
  aspect-ratio: 1 / 1.15; /* forces uniform hex shape */
  background: #ffffff;
  padding: 30px 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  clip-path: polygon(
    25% 6%,
    75% 6%,
    100% 50%,
    75% 94%,
    25% 94%,
    0% 50%
  );

  box-shadow: 0 24px 55px rgba(94,203,255,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#why-us .why-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 70px rgba(94,203,255,0.25),
    0 0 40px rgba(94,203,255,0.25);
}

#why-us .why-icon {
  margin-bottom: 14px;
}

#why-us .why-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

#why-us .why-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 180px;
}


/* ===============================
   FAQ SPACING FIX
=============================== */

#faq .faq-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(94,203,255,0.35);
}

#faq .faq-question {
  padding: 0;
  margin: 0;
  font-weight: 600;
}

#faq .faq-answer {
  padding-top: 10px;
}

#faq .faq-answer p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #4a4a6a;
}


/* ===============================
   HERO MOBILE POLISH
=============================== */

@media (max-width: 768px) {
  .hero-premium h1 {
    font-size: clamp(2.2rem, 6vw, 2.8rem);
  }

  .hero-sub {
    font-size: 1rem;
  }
}

/* =====================================================
   FAQ – CLEAN SPACING FIX
===================================================== */

#faq .container {
  max-width: 900px;
  margin: 0 auto;
}

#faq h2 {
  margin-bottom: 50px;
}

#faq .faq-item {
  padding: 26px 0;
  border-bottom: 1px solid rgba(94,203,255,0.35);
}

#faq .faq-question {
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#faq .faq-question span:first-child {
  max-width: 85%;
}

#faq .faq-icon {
  font-size: 16px;
}

#faq .faq-answer {
  padding-top: 16px;
}

#faq .faq-answer p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
  color: #4a4a6a;
}