/* ============================================================
   Health Pure Bloom v2 — styles.css
   Theme: Warm Cream + Deep Burgundy — Luxury Editorial
   ============================================================ */

:root {
  /* Color Palette */
  --burgundy: #0077b6;
  /* Blue variant of burgundy */
  --burgundy-l: #00b4d8;
  /* Lighter blue shade */
  --burgundy-d: #023e8a;
  /* Darker blue */
  --gold: #00aaff;
  /* Sky blue */
  --gold-l: #80d0ff;
  /* Light sky blue */
  --cream: #cfe9f7;
  /* Soft blue cream */
  --cream-d: #a2c8e1;
  /* Darker blue cream */
  --ivory: #e5f6ff;
  /* Very soft blue ivory */
  --charcoal: #2b3a42;
  /* Dark charcoal with blue undertones */
  --warm-gray: #7a9b8e;
  /* Muted warm gray with blue tones */
  --warm-mid: #4a6572;
  /* Mid-tone blue-gray */
  --white: #ffffff;
  /* Pure white */

  /* Spacing & Shape */
  --r: 14px;
  --r-lg: 22px;
  --r-sm: 8px;

  /* Shadows */
  --sh-soft: 0 4px 24px rgba(124, 29, 62, 0.08);
  --sh-card: 0 8px 40px rgba(30, 24, 18, 0.10);
  --sh-lift: 0 16px 52px rgba(30, 24, 18, 0.16);

  /* Transitions */
  --ease: all 0.32s cubic-bezier(.4, 0, .2, 1);
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

em {
  font-style: italic;
  color: var(--burgundy);
}

section {
  scroll-margin-top: 70px;
}

/* ─── NAVBAR ─── */
#mainNav {
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(124, 29, 62, 0.10);
  padding: 10px 0;
  transition: var(--ease);
  z-index: 999;
}

#mainNav.scrolled {
  box-shadow: 0 4px 28px rgba(30, 24, 18, 0.09);
  padding: 7px 0;
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-d);
  border: 1px solid rgba(124, 29, 62, 0.15);
  border-radius: 40px;
  padding: 7px 16px 7px 10px;
  text-decoration: none;
}

.brand-pill i {
  font-size: 1rem;
  color: var(--burgundy);
  background: var(--burgundy);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-pill span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--warm-mid);
  line-height: 1.2;
}

.brand-pill strong {
  color: var(--burgundy);
  display: block;
  font-weight: 600;
}

.navbar-nav .nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--warm-gray);
  padding: 6px 11px !important;
  border-radius: var(--r-sm);
  transition: var(--ease);
}

.navbar-nav .nav-link:hover {
  color: var(--burgundy);
  background: rgba(124, 29, 62, 0.06);
}

.navbar-nav .nav-link.active {
  color: var(--burgundy);
}

.nav-btn-pill {
  background: var(--burgundy) !important;
  color: white !important;
  border-radius: 30px !important;
  padding: 7px 20px !important;
  font-weight: 500;
}

.nav-btn-pill:hover {
  background: var(--burgundy-l) !important;
  color: white !important;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler i {
  font-size: 1.3rem;
  color: var(--burgundy);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ─── HERO ─── */
.hero-section {
  min-height: 100vh;
  background: var(--ivory);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 90% 50%, rgba(124, 29, 62, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201, 137, 58, 0.07) 0%, transparent 60%);
}

/* Decorative line grid top-right */
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  background-image: repeating-linear-gradient(0deg, rgba(124, 29, 62, 0.06) 0, rgba(124, 29, 62, 0.06) 1px, transparent 0, transparent 28px),
    repeating-linear-gradient(90deg, rgba(124, 29, 62, 0.06) 0, rgba(124, 29, 62, 0.06) 1px, transparent 0, transparent 28px);
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 110px 0 140px;
  max-width: 1180px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
}

.ey-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 22px;
}

.hero-title em {
  color: var(--burgundy);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-sub em {
  color: var(--burgundy);
  font-style: normal;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-solid {
  background: var(--burgundy);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: var(--ease);
}

.btn-solid:hover {
  background: var(--burgundy-l);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 29, 62, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
  border-radius: 10px;
  padding: 12px 26px;
  font-weight: 500;
  font-size: 0.93rem;
  text-decoration: none;
  transition: var(--ease);
}

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

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-d);
  border: 1px solid rgba(124, 29, 62, 0.12);
  color: var(--warm-mid);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 30px;
}

.chip i {
  color: var(--burgundy);
}

.hero-diagonal-cut {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

/* Floating Cards */
.float-card {
  position: absolute;
  z-index: 4;
  background: white;
  border-radius: var(--r);
  padding: 16px 20px;
  box-shadow: var(--sh-card);
  border: 1px solid rgba(124, 29, 62, 0.08);
  animation: floatY 5s ease-in-out infinite;
}

.fc-left {
  left: 62%;
  top: 28%;
  animation-delay: 0s;
  width: 200px;
}

.fc-right {
  left: 75%;
  top: 55%;
  animation-delay: 2.5s;
  width: 210px;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.fc-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.fc-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.fc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fc-stat-row {
  display: flex;
  flex-direction: column;
}

.fc-big {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1;
}

.fc-big sup {
  font-size: 1rem;
}

.fc-sub {
  font-size: 0.72rem;
  color: var(--warm-gray);
  margin-top: 2px;
  margin-bottom: 10px;
}

.fc-bar {
  height: 6px;
  background: #f0e8dc;
  border-radius: 10px;
  overflow: hidden;
}

.fc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  border-radius: 10px;
  transition: width 1s ease;
}

.fc-avatars {
  display: flex;
  align-items: center;
  gap: -5px;
  margin-bottom: 10px;
}

.fca {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: white;
  border: 2px solid white;
  margin-right: -8px;
}

.a1 {
  background: var(--burgundy)
}

.a2 {
  background: var(--gold)
}

.a3 {
  background: #7b1fa2
}

.fca-more {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--warm-mid);
  background: var(--cream-d);
  border: 2px solid white;
  border-radius: 20px;
  padding: 2px 7px;
  margin-left: 12px;
}

.fc-review-text {
  font-size: 0.75rem;
  color: var(--warm-gray);
  margin: 0 0 8px;
  line-height: 1.4;
}

.fc-review-text strong {
  color: var(--charcoal);
}

.fc-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.7rem;
  color: var(--gold);
}

.fc-stars span {
  color: var(--warm-mid);
  font-weight: 700;
  margin-left: 4px;
}

/* ─── SHARED ─── */
.section-wrap {
  padding: 90px 0;
}

.tag-label {
  display: inline-block;
  background: rgba(124, 29, 62, 0.08);
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.light-tag {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.light-h {
  color: white !important;
}

.light-h em {
  color: var(--gold-l) !important;
}

.body-para {
  font-size: 0.97rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ─── ABOUT ─── */
.about-visual-block {
  position: relative;
  padding: 20px;
}

.avb-main-card {
  background: linear-gradient(135deg, var(--burgundy-d), var(--burgundy));
  border-radius: var(--r-lg);
  padding: 40px 32px;
  color: white;
  text-align: center;
  box-shadow: var(--sh-lift);
}

.avb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.avb-badge i {
  color: var(--gold-l);
}

.avb-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
}

.avb-main-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: white;
}

.avb-main-card p {
  font-size: 0.82rem;
  opacity: 0.7;
  margin: 0;
}

.avb-mini {
  position: absolute;
  background: white;
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow: var(--sh-card);
  border: 1px solid rgba(124, 29, 62, 0.08);
  text-align: center;
  animation: floatY 5s ease-in-out infinite;
}

.avb-m1 {
  bottom: -10px;
  left: -10px;
  animation-delay: 0s;
}

.avb-m2 {
  top: -10px;
  right: -10px;
  animation-delay: 2s;
}

.avbm-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--burgundy);
  display: block;
  line-height: 1;
}

.avbm-num sup {
  font-size: 0.9rem;
}

.avbm-lbl {
  font-size: 0.7rem;
  color: var(--warm-gray);
  font-weight: 500;
  display: block;
  margin-top: 3px;
}

.about-mini-cards {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.amc-item {
  flex: 1;
  min-width: 140px;
  background: var(--cream);
  border: 1px solid rgba(124, 29, 62, 0.08);
  border-radius: var(--r);
  padding: 20px 16px;
  transition: var(--ease);
}

.amc-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card);
}

.amc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.amc-item h6 {
  font-size: 0.88rem;
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.amc-item p {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin: 0;
  line-height: 1.5;
}

/* ─── SERVICES ─── */
.services-section {
  padding: 90px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.services-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
}

.services-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.svc-intro {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  max-width: 220px;
  text-align: right;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 24px 20px;
  position: relative;
  transition: var(--ease);
  cursor: pointer;
}

.svc-tile:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 137, 58, 0.3);
  transform: translateY(-4px);
}

.st-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.st-ico {
  width: 46px;
  height: 46px;
  background: var(--b, rgba(255, 255, 255, 0.1));
  color: var(--c, #fff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.st-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
}

.svc-tile h5 {
  font-size: 0.97rem;
  color: white;
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.svc-tile p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  margin-bottom: 12px;
}

.st-link {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.2);
  transition: var(--ease);
  display: inline-block;
}

.st-link:hover,
.svc-tile:hover .st-link {
  color: var(--gold);
  transform: scale(1.2);
}

.st-link.light-link {
  color: rgba(255, 255, 255, 0.5);
}

.svc-featured {
  background: linear-gradient(135deg, var(--burgundy-d), var(--burgundy)) !important;
  border-color: var(--burgundy) !important;
}

.svc-featured h5,
.svc-featured p {
  color: white !important;
}

.svc-featured p {
  opacity: 0.75;
}

.featured-badge-tag {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.svc-cta {
  background: rgba(201, 137, 58, 0.07) !important;
  border: 2px dashed rgba(201, 137, 58, 0.3) !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.svc-cta-ico {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.btn-dark-pill {
  background: white;
  color: var(--charcoal);
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--ease);
}

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

/* ─── WHY US ─── */
.whyus-section {
  padding: 90px 0;
  background: var(--cream);
}

.why-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.why-left {
  flex: 0 0 320px;
}

.why-right {
  flex: 1;
}

.why-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wc-card {
  border-radius: var(--r);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(124, 29, 62, 0.10);
  transition: var(--ease);
}

.wc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lift);
}

.c1 {
  background: #fff8f0;
}

.c2 {
  background: #fff0f4;
}

.c3 {
  background: #f0fff4;
}

.c4 {
  background: #f0f4ff;
}

.wc-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: var(--burgundy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.c2 .wc-ico {
  background: #c2185b;
}

.c3 .wc-ico {
  background: #2e7d32;
}

.c4 .wc-ico {
  background: #1565c0;
}

.wc-card h5 {
  font-size: 0.97rem;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.wc-card p {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin: 0;
}

.wc-bg-num {
  position: absolute;
  right: 12px;
  bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

/* ─── SUBSCRIBE ─── */
.subscribe-section {
  padding: 90px 0;
  background: var(--ivory);
}

.sub-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.sub-left {
  flex: 0 0 380px;
}

.sub-right {
  flex: 1;
  min-width: 300px;
}

.sub-perks {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.sub-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--warm-mid);
  padding: 7px 0;
  border-bottom: 1px solid rgba(124, 29, 62, 0.07);
}

.sub-perks li i {
  color: var(--burgundy);
  font-size: 1rem;
}

.sub-form-card {
  background: var(--cream-d);
  border: 1px solid rgba(124, 29, 62, 0.12);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}

.sub-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
}

/* ─── FORMS ─── */
.field-wrap {
  margin-bottom: 18px;
}

.field-wrap label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--warm-mid);
  text-transform: uppercase;
  display: block;
  margin-bottom: 7px;
}

.f-input {
  width: 100%;
  background: white;
  border: 1.5px solid rgba(124, 29, 62, 0.12);
  border-radius: var(--r-sm);
  padding: 12px 15px;
  font-size: 0.91rem;
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: var(--ease);
}

.f-input:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(124, 29, 62, 0.10);
}

.f-input::placeholder {
  color: #c4b8b0;
}

.f-input.is-invalid {
  border-color: #c62828;
}

.f-input.is-valid {
  border-color: #2e7d32;
}

.f-err {
  display: none;
  font-size: 0.75rem;
  color: #c62828;
  margin-top: 5px;
  padding-left: 2px;
}

.f-input.is-invalid~.f-err {
  display: block;
}

textarea.f-input {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-l));
  color: white;
  border: none;
  border-radius: var(--r-sm);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--ease);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--burgundy-d), var(--burgundy));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 29, 62, 0.3);
}

/* ─── FAQ ─── */
.faq-section {
  padding: 90px 0;
  background: white;
}

.faq-side-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-d);
  border: 1px solid rgba(124, 29, 62, 0.12);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--warm-mid);
}

.faq-side-box i {
  font-size: 1.4rem;
  color: var(--burgundy);
}

.faq-side-box strong {
  color: var(--charcoal);
  display: block;
}

.faq-acc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fq-item {
  background: var(--cream) !important;
  border: 1px solid rgba(124, 29, 62, 0.10) !important;
  border-radius: var(--r) !important;
  overflow: hidden;
}

.fq-btn {
  background: var(--cream) !important;
  color: var(--charcoal) !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.93rem !important;
  padding: 18px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px;
  box-shadow: none !important;
  border: none !important;
}

.fq-btn:focus {
  box-shadow: none !important;
}

.fq-ico {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  background: rgba(124, 29, 62, 0.10);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--ease);
}

.fq-btn:not(.collapsed) .fq-ico {
  background: var(--burgundy);
  color: white;
  transform: rotate(45deg);
}

.fq-body {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.75;
  padding: 4px 20px 20px 64px !important;
  background: var(--cream) !important;
}

/* ─── POLICY ─── */
.policy-section {
  padding: 90px 0;
}

.alt-bg {
  background: var(--cream);
}

.policy-block {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid rgba(124, 29, 62, 0.08);
  box-shadow: var(--sh-soft);
  padding: 40px;
  margin-top: 24px;
}

.policy-meta {
  font-size: 0.8rem;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pol-item {
  padding-left: 16px;
  border-left: 3px solid var(--cream-d);
}

.pol-item:hover {
  border-left-color: var(--burgundy);
}

.pol-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pol-item h4 {
  font-size: 0.97rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pol-item p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin: 0;
}

.pol-link {
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 500;
}

.pol-link:hover {
  text-decoration: underline;
}

/* ─── CONTACT ─── */
.contact-section {
  padding: 90px 0;
  background: linear-gradient(155deg, var(--burgundy-d) 0%, var(--burgundy) 50%, #8a2040 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
}

.contact-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.contact-intro-text {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  text-align: right;
}

.contact-body {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-info-col {
  flex: 0 0 300px;
}

.ci-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  height: 100%;
}

.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.ci-item:last-child {
  margin-bottom: 0;
}

.ci-ico {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-l);
  flex-shrink: 0;
}

.ci-item strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.ci-item p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.6;
}

.emerg-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 0.7rem;
  font-weight: 700;
}

.contact-form-col {
  flex: 1;
  min-width: 280px;
  background: white;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--sh-lift);
}

.contact-form-col .field-wrap label {
  color: var(--warm-mid);
}

.contact-form-col .f-input {
  background: var(--cream);
}

.contact-form-col .f-input:focus {
  background: white;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--charcoal);
  padding: 40px 0 24px;
}

.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 28px;
}

.footer-brand {
  max-width: 260px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

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

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 5px 11px;
  border-radius: 20px;
  transition: var(--ease);
}

.footer-nav a:hover {
  color: var(--gold-l);
  background: rgba(201, 137, 58, 0.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Overlay Styles */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.overlay-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 300px;
}


/* ─── SUCCESS OVERLAY ─── */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(30, 24, 18, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.success-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.success-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 52px 44px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.30);
  transform: scale(0.88) translateY(24px);
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
  border-top: 5px solid var(--burgundy);
}

.success-overlay.active .success-card {
  transform: scale(1) translateY(0);
}

.sc-ring {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-l));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 20px;
  animation: popIn .5s cubic-bezier(.4, 0, .2, 1) .1s both;
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0
  }

  65% {
    transform: scale(1.15)
  }

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

.success-card h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.success-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* ─── RESPONSIVE ─── */
@media(max-width:1100px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:991px) {
  .float-card {
    display: none;
  }

  .hero-inner {
    padding: 80px 0 100px;
  }

  .why-layout {
    flex-direction: column;
  }

  .why-left {
    flex: none;
    width: 100%;
  }

  .sub-layout {
    flex-direction: column;
  }

  .sub-left {
    flex: none;
  }

  .contact-body {
    flex-direction: column;
  }

  .contact-info-col {
    flex: none;
    width: 100%;
  }
}

@media(max-width:767px) {

  .section-wrap,
  .services-section,
  .whyus-section,
  .subscribe-section,
  .faq-section,
  .policy-section,
  .contact-section {
    padding: 60px 0;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card-grid {
    grid-template-columns: 1fr;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .sub-form-card {
    padding: 24px;
  }

  .policy-block {
    padding: 24px;
  }

  .contact-form-col {
    padding: 24px;
  }
}

@media(max-width:480px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about-mini-cards {
    flex-direction: column;
  }

  .services-hdr {
    flex-direction: column;
  }

  .svc-intro {
    text-align: left;
    max-width: none;
  }

  .footer-row {
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}