/*
 * webstyle.css — legacy compatibility layer, UPGRADED to Swayam Polymer branding.
 * Originally "Dream Clarity — Frontend Design System" (the previous client's
 * theme this app was cloned from). Kept only because some not-yet-rebuilt
 * templates (blog, testimonials, leadership, FAQ) still reference its class
 * names — but every token below now resolves to the Swayam Polymer
 * "Refined Industrial" palette/type system (see public/css/swayam-polymer.css),
 * not the old Dream Clarity gold/navy/Playfair look.
 *
 * Swayam Polymer Palette (upgraded from the old Dream Clarity values):
 *   Navy (was Midnight Blue #0B132B)  : #12233D  → var(--bg-primary)
 *   Steel (was Cosmic Indigo #1D2A53) : #2C4A6E  → var(--bg-secondary)
 *   Cream (was #FBF7F2)               : #F4F1EA  → var(--bg-cream)
 *   Amber (was Soft Gold #FFD369)     : #D98A34  → var(--accent)
 *   Amber Deep (was #FFC34D)          : #C67C29  → var(--accent-deep)
 *   Ivory (unchanged)                 : #F9F9F9  → var(--text-light)
 *
 * Fonts (upgraded from Playfair Display / Inter):
 *   Headings : Space Grotesk  → var(--font-heading)
 *   Body     : IBM Plex Sans  → var(--font-body)
 *
 * Asset paths: /userassets/ (not ../images/)
 */

/* ─────────────────────────────────────────────────────────────
   GOOGLE FONTS
───────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');


/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────────────── */
:root {
  /* Core Palette — Swayam Polymer "Refined Industrial" (was Dream Clarity gold/navy) */
  --bg-primary:    #12233D;   /* Navy (was Midnight Blue #0B132B) */
  --bg-secondary:  #2C4A6E;   /* Steel (was Cosmic Indigo #1D2A53) */
  --bg-cream:      #F4F1EA;   /* was #FBF7F2 */
  --bg-sage:       #2C4A6E;   /* was #B4C5A7 */
  --accent:        #D98A34;   /* Amber (was Soft Gold #FFD369) */
  --accent-deep:   #C67C29;   /* was #FFC34D */
  --text-light:    #F9F9F9;   /* Ivory — unchanged */
  --text-dark:     #12233D;   /* was #0B132B */
  --support-sage:  #2C4A6E;   /* was #B4C5A7 */
  --support-clay:  #A86A43;

  /* Typography — Swayam Polymer (was Playfair Display / Inter) */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'IBM Plex Sans', system-ui, sans-serif;

  /* Spacing */
  --pad-desktop:  120px;
  --pad-mobile:   60px;
  --gutter:       24px;
  --card-gap:     32px;
  --radius:       12px;
  --radius-lg:    16px;

  /* Motion */
  --ease:         0.3s ease;
  --ease-slow:    0.6s ease;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  background-color: #fff;
  overflow-x: hidden;
  padding-top: 0 !important;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.15;
}

h1, .h1 { font-size: 64px; }
h2, .h2 { font-size: 48px; }
h3, .h3 { font-size: 32px; }
h4, .h4 { font-size: 24px; }

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover { color: var(--text-light); }

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


/* ─────────────────────────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────────────────────────── */
.container-custom {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 80px;
}

/* Widen Bootstrap's .container to match approved 1440px design width on xl screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1440px;
    padding-left: 80px;
    padding-right: 80px;
  }
}

.section-padding {
  padding-top: var(--pad-desktop);
  padding-bottom: var(--pad-desktop);
}

.g-card {
  --bs-gutter-x: var(--card-gap);
  --bs-gutter-y: var(--card-gap);
}

/* Background helpers */
.bg-primary   { background-color: var(--bg-primary) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }
.bg-cream     { background-color: var(--bg-cream) !important; }
.bg-sage      { background-color: var(--bg-sage) !important; }

/* Text helpers */
.text-light  { color: var(--text-light) !important; }
.text-dark   { color: var(--text-dark) !important; }
.text-accent { color: var(--accent) !important; }
.text-sage   { color: var(--support-sage) !important; }
.text-clay   { color: var(--support-clay) !important; }


/* ─────────────────────────────────────────────────────────────
   MOTION & INTERACTION
───────────────────────────────────────────────────────────── */
.hover-lift {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}

.btn-glow { transition: box-shadow 0.4s ease; }
.btn-glow:hover {
  box-shadow: 0 0 20px 5px rgba(255,211,105,0.4);
  color: var(--text-dark);
}


/* ─────────────────────────────────────────────────────────────
   SECTION LABELS / SUBTITLES
───────────────────────────────────────────────────────────── */
.section-tag,
.subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

/* On light backgrounds — warm clay tone */
.subtitle-dark { color: var(--support-clay); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}


/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.cta-btn {
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border: none;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 50px;
  padding: 11px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: box-shadow var(--ease), transform var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-btn:hover {
  box-shadow: 0 0 20px 5px rgba(255,211,105,0.4);
  color: var(--text-dark);
}

.cta-btn i {
  background: rgba(0,0,0,0.25);
  padding: 8px 9px;
  font-size: 12px;
  color: #fff;
  transition: transform var(--ease);
  border-radius: 50%;
}
.cta-btn:hover i { transform: rotate(-45deg); }

.btn-outline-dream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all var(--ease);
}
.btn-outline-dream:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--text-light);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid var(--accent);
  transition: all var(--ease);
}
.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--text-dark);
}

.hero-section .btn-secondary {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  margin-left: 16px;
  transition: all var(--ease);
}
.hero-section .btn-secondary:hover {
  background: var(--text-light);
  color: var(--text-dark);
}


/* ─────────────────────────────────────────────────────────────
   HEADER & NAVIGATION
───────────────────────────────────────────────────────────── */
.header-nav {
  background: url('/userassets/bkg2.jpg') center/cover no-repeat;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

.header-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,19,43,0.82);
  z-index: 0;
}
.header-nav .container,
.header-nav .container-fluid { position: relative; z-index: 1; }

.header-nav .navbar-brand {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-light);
}
.header-nav .navbar-brand img { max-height: 48px; width: auto; }

.header-nav .nav-link {
  color: var(--text-light);
  font-size: 17px;
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  padding-bottom: 8px;
  transition: color var(--ease);
}
.header-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s ease;
}
.header-nav .nav-link:hover,
.header-nav .nav-link.active,
.navbar-nav .nav-link.show    { color: var(--accent); }
.header-nav .nav-link:hover::after,
.header-nav .nav-link.active::after { width: 100%; }

.navbar-toggler { border-color: rgba(255,211,105,0.4); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C211%2C105%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* ─────────────────────────────────────────────────────────────
   HERO / SLIDER SECTION
───────────────────────────────────────────────────────────── */
.hero-section {
  padding: 170px 50px 90px;
  min-height: 90vh;
  height: 900px;
  display: flex;
  align-items: center;
  background: url('/userassets/slider.jpg') center/cover no-repeat;
  position: relative;
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,19,43,0.85) 0%, rgba(29,42,83,0.55) 100%);
  z-index: 0;
}
.hero-section > * { position: relative; z-index: 1; }

.hero-section h1        { margin-bottom: 24px; color: var(--text-light); }
.hero-section .subtext  {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  color: var(--text-light);
}

/* DB-driven carousel slide background */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.hero-section .carousel-item          { position: relative; }
.hero-section .carousel-item > .container { position: relative; z-index: 1; }
.hero-section .carousel-item img {
  object-fit: cover;
  width: 100%;
  min-height: 600px;
}
.hero-section .carousel-caption {
  text-align: left;
  left: 10%;
  right: 40%;
  bottom: 30%;
}
.hero-section .carousel-caption h1 { color: var(--text-light); }

/* Static inner-page hero */
.hero-section-static {
  padding: 160px 50px 70px;
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: url('/userassets/bkg2.jpg') center/cover no-repeat;
  position: relative;
}
.hero-section-static::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,19,43,0.78);
  z-index: 0;
}
.hero-section-static > * { position: relative; z-index: 1; }

.page-hero h1      { font-size: 52px; }
.page-hero .subtext {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,0.4); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.breadcrumb-item.active { color: rgba(255,255,255,0.55); }


/* ─────────────────────────────────────────────────────────────
   FEATURES / TRUST CARDS  (Why Choose Dream Clarity)
───────────────────────────────────────────────────────────── */
.authority-section {
  padding: 60px 25px 80px;
  background-color: #fff;
}
.authority-section h2,
.authority-section .container-custom h2 { color: var(--text-dark); }

.trust-card {
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: left;
  border: 2px solid rgba(11,19,43,0.12);
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.4s ease;
}

.trust-card .icon {
  font-size: 48px;
  color: var(--accent-deep);
  margin-bottom: 16px;
  float: left;
  margin-right: 20px;
  min-height: 100px;
  position: relative;
  top: 5px;
}

.trust-card h3 {
  color: var(--text-dark);
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 700;
  transition: color var(--ease-slow);
}

.trust-card p {
  font-size: 15.9px;
  margin: 0;
  color: #555;
  transition: color var(--ease-slow);
}

/* Cosmic Indigo sweep from top-right corner on hover */
.trust-card::before {
  content: '';
  height: 40px;
  width: 40px;
  background-color: var(--bg-secondary);
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  transform: scale3d(1,1,1);
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}
.trust-card:hover::before    { transform: scale3d(45,45,1); }
.trust-card:hover            { border-color: var(--bg-secondary); }
.trust-card:hover h3,
.trust-card:hover p          { color: var(--text-light); }


/* ─────────────────────────────────────────────────────────────
   ABOUT SUREN SECTION
   Source: documents/Dream Interpreter Project/css/style.css
   Background: bkg2.jpg with CSS gradient overlay (no position:relative needed)
───────────────────────────────────────────────────────────── */
.about-suren-section {
  background:
    linear-gradient(rgba(251,247,242,0.78), rgba(251,247,242,0.78)),
    url('/userassets/bkg2.jpg') center/cover no-repeat;
  padding: 90px 30px;
}

/* Meet Your Interpreter label */
.about-suren-section h3 {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--support-clay) !important;  /* #A86A43 warm clay */
  margin-bottom: 12px !important;
}

/* Suren Arora heading */
.about-suren-section h2 {
  color: var(--text-dark) !important;   /* #0B132B midnight blue */
}

/* Bio paragraphs */
.about-suren-section p {
  color: #3a3a3a !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

/* CTA button — gold background, dark navy text */
.about-suren-section .btn-about {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--accent) !important;           /* #FFD369 gold */
  color: var(--text-dark) !important;             /* #0B132B dark navy */
  border: 2px solid var(--accent) !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all var(--ease) !important;
}
.about-suren-section .btn-about:hover {
  background: var(--accent-deep) !important;      /* #FFC34D deeper gold */
  border-color: var(--accent-deep) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 6px 20px rgba(255,211,105,0.5) !important;
}

.hero-portrait {
  border-radius: 50%;
  border: 4px solid var(--accent);
  box-shadow: 0 0 40px 10px rgba(255,211,105,0.2);
}


/* ─────────────────────────────────────────────────────────────
   DREAM CATEGORIES SECTION
───────────────────────────────────────────────────────────── */
.categories-section {
  padding: 80px 30px 90px;
  background: var(--bg-cream);
}
.categories-section h2 { color: var(--text-dark); }

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--text-light);
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,19,43,0.92) 0%, rgba(11,19,43,0.05) 100%);
  z-index: 1;
}
.category-card-content { position: relative; z-index: 2; }
.category-card-content h3 {
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 23px;
  font-family: var(--font-body);
  font-weight: 600;
}
.category-card-content .interpret-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  transition: opacity var(--ease);
}
.category-card-content .interpret-link i {
  font-size: 14px;
  margin-left: 2px;
  transition: transform var(--ease);
}
.category-card-content .interpret-link:hover i { transform: rotate(-45deg); }


/* ─────────────────────────────────────────────────────────────
   RECENT INTERPRETATIONS / SAMPLE CARDS
───────────────────────────────────────────────────────────── */
.samples-section {
  padding: 70px 30px;
  background: var(--bg-cream);
}
.samples-section h2 { color: var(--text-dark); }
.samples-section h3 { color: var(--text-dark); margin: 10px 0; font-size: 28px; }

.sample-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 35px;
  color: var(--text-dark);
  border: 2px solid rgba(11,19,43,0.1);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  min-height: 380px;
}
.sample-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(255,211,105,0.15);
}
.sample-card .text-accent {
  display: inline-block;
  color: var(--text-dark) !important;
  font-size: 14px;
  font-weight: 700;
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 30px;
}
.sample-card .badge {
  background-color: var(--bg-primary);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
}
.sample-card p {
  min-height: 120px;
  color: #555;
  font-size: 16px;
}


/* ─────────────────────────────────────────────────────────────
   CTA BANNER (mid-page strip)
───────────────────────────────────────────────────────────── */
.cta-banner-1 {
  background: linear-gradient(135deg, var(--accent) 0%, var(--bg-primary) 60%);
  color: var(--text-light);
  text-align: center;
  padding: 80px 30px;
}
.cta-banner-1 h2 {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 32px;
  color: var(--text-light);
}
.cta-banner-1 .btn { transform: scale(1.08); }


/* ─────────────────────────────────────────────────────────────
   INTERPRETATION FORM / FORM CARD
───────────────────────────────────────────────────────────── */
.interpretation-form-section { background-color: var(--bg-secondary); }

.form-card {
  max-width: 700px;
  margin-inline: auto;
  background-color: var(--bg-primary);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.form-card .form-control,
.form-card .form-select {
  background-color: var(--text-light);
  border: 1px solid var(--bg-secondary);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-dark);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,211,105,0.2);
  outline: none;
}
.form-card .form-control::placeholder { color: #888; }
.form-card .form-label {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}
.form-card .microcopy {
  font-size: 14px;
  text-align: center;
  opacity: 0.7;
  margin-top: 16px;
  color: var(--text-light);
}


/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--bg-cream);
  padding: 80px 30px 90px;
}
.testimonials-section h2 { color: var(--text-dark); }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(11,19,43,0.08);
  border: 1px solid rgba(11,19,43,0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.testimonial-card:hover {
  box-shadow: 0 16px 36px rgba(11,19,43,0.14);
  transform: translateY(-3px);
}
.testimonial-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: -60px auto 16px;
  border: 4px solid var(--bg-sage);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  object-fit: cover;
}
.testimonial-card .quote {
  font-family: var(--font-heading);
  font-size: 19px;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.45;
  color: var(--text-dark);
}
.testimonial-card .name {
  font-weight: 700;
  color: var(--bg-primary);    /* Midnight Blue */
  font-size: 15px;
}
.testimonial-card .role {
  font-size: 13px;
  color: var(--support-clay);
}
.testimonial-card .stars { color: var(--accent); }


/* ─────────────────────────────────────────────────────────────
   BLOG / DREAM DICTIONARY SECTION
───────────────────────────────────────────────────────────── */
.blog-dictionary-section {
  background: var(--bg-cream);
  padding: 80px 30px 90px;
}
.blog-dictionary-section h2,
.blog-dictionary-section h3,
.blog-dictionary-section p { color: var(--text-dark); }

.blog-dictionary-section .nav-tabs {
  border-bottom: 2px solid rgba(11,19,43,0.1);
}
.blog-dictionary-section .nav-tabs .nav-link {
  color: var(--text-dark);
  font-weight: 700;
  font-family: var(--font-heading);
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: transparent;
  transition: color var(--ease), border-color var(--ease);
}
.blog-dictionary-section .nav-tabs .nav-link.active {
  color: var(--support-clay);
  border-color: var(--support-clay);
  background: transparent;
}
.blog-dictionary-section .nav-tabs .nav-link:hover { color: var(--bg-primary); }

.blog-post-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  border: 1px solid rgba(11,19,43,0.06);
}
.blog-post-card:hover {
  box-shadow: 0 12px 28px rgba(11,19,43,0.12);
  transform: translateY(-3px);
}
.blog-post-card h3,
.blog-post-card h5 { color: var(--text-dark); }
.blog-post-card p  { color: #555; }
.blog-post-card .card-body  { padding: 24px; }
.blog-post-card .card-footer {
  background: transparent;
  border-top: 1px solid #eee;
  padding: 16px 24px;
}


/* ─────────────────────────────────────────────────────────────
   FINAL CTA SECTION
───────────────────────────────────────────────────────────── */
.final-cta-section {
  text-align: center;
  background: url('/userassets/bkg3.jpg') center/cover fixed no-repeat;
  padding: 90px 30px;
  position: relative;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,19,43,0.72);
  z-index: 0;
}
.final-cta-section > .container { position: relative; z-index: 1; }
.final-cta-section h2 {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 32px;
  color: var(--text-light);
}
.final-cta-section p { color: rgba(249,249,249,0.85); }


/* ─────────────────────────────────────────────────────────────
   PACKAGES / PRICING PAGE
───────────────────────────────────────────────────────────── */
.packages-section {
  padding: 80px 30px 90px;
  background: var(--bg-cream);
}
.packages-section h2 { color: var(--text-dark); }

.package-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  color: var(--text-dark);
  border: 2px solid rgba(11,19,43,0.1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.package-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 36px rgba(255,211,105,0.18);
  transform: translateY(-4px);
}
.package-card-popular,
.package-card.featured {
  border: 3px solid var(--accent);
  box-shadow: 0 12px 36px rgba(255,211,105,0.22);
}
.package-card .price {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.package-card .price-sub {
  color: #888;
  font-size: 15px;
  margin-bottom: 20px;
}
.package-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  flex-grow: 1;
}
.package-card ul li {
  padding: 9px 0;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.package-card ul li:last-child { border-bottom: none; }
.package-card ul li i {
  color: var(--accent-deep);   /* Gold — not purple */
  flex-shrink: 0;
  margin-top: 3px;
}

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 30px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}


/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────────── */
.contact-info-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  color: var(--text-light);
}
.contact-info-card h4 { color: var(--text-light); }
.contact-info-card p,
.contact-info-card a  { color: rgba(249,249,249,0.85); }
.contact-info-card a:hover { color: var(--accent); }

.contact-info-card .contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,211,105,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────────────────────
   CHECKOUT PAGE
───────────────────────────────────────────────────────────── */
.checkout-section {
  background: var(--bg-cream);
  padding: 80px 30px 100px;
}
.checkout-section .form-control,
.checkout-section .form-select {
  border: 1px solid rgba(11,19,43,0.18);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-dark);
  font-size: 16px;
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.checkout-section .form-control:focus,
.checkout-section .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,211,105,0.2);
  outline: none;
}
.checkout-section .form-label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
}

.cart-summary {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 16px rgba(11,19,43,0.08);
  border: 1px solid rgba(11,19,43,0.06);
}
.cart-summary h4 { color: var(--bg-primary); }


/* ─────────────────────────────────────────────────────────────
   BLOG SINGLE POST PAGE
───────────────────────────────────────────────────────────── */
.blog-single-section { background: var(--bg-cream); }

.blog-single-section article h2,
.blog-single-section article h3 { color: var(--text-dark); }
.blog-single-section article p,
.blog-single-section article li {
  color: #444;
  font-size: 17px;
  line-height: 1.8;
}
.blog-single-section blockquote {
  border-left: 5px solid var(--accent);
  background: #fff;
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--text-dark);
  margin: 32px 0;
}

.blog-post-hero {
  background: url('/userassets/bkg2.jpg') center/cover no-repeat;
  position: relative;
  padding: 160px 50px 70px;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
}
.blog-post-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,19,43,0.92) 0%, rgba(11,19,43,0.45) 100%);
  z-index: 0;
}
.blog-post-hero > .container { position: relative; z-index: 1; }

/* Blog sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.blog-sidebar .sidebar-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(11,19,43,0.07);
  box-shadow: 0 4px 12px rgba(11,19,43,0.05);
}
.blog-sidebar .sidebar-card h5 {
  color: var(--text-dark);
  font-size: 17px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.blog-sidebar .sidebar-cta {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: var(--text-light);
}
.blog-sidebar .sidebar-cta h5 { color: var(--text-light); }
.blog-sidebar .sidebar-cta p  { color: rgba(249,249,249,0.8); font-size: 15px; }


/* ─────────────────────────────────────────────────────────────
   VIDEO EMBEDS (Testimonials / Reels)
───────────────────────────────────────────────────────────── */
/* Container for the video to prevent it from touching edges */
.video-container {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    /* Dark background while video loads */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Standard 16:9 Landscape Video (YouTube/Vimeo) */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

/* Vertical 9:16 Video (Reels/Shorts/TikTok) */
.video-portrait {
    position: relative;
    padding-bottom: 177.77%;
    /* 9:16 Aspect Ratio (16/9 * 100) */
    height: 0;
    overflow: hidden;
    /* Optional: Limit width on desktop so it doesn't take the whole screen height */
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* Universal Iframe Styling */
.video-responsive iframe,
.video-portrait iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 576px) {
    .video-portrait {
        max-width: 100%;
        /* Allow it to be wider on small phones */
        border-radius: 0;
        /* Optional: edge-to-edge look on mobile */
    }
}


/* ─────────────────────────────────────────────────────────────
   BLOG LIST PAGE
───────────────────────────────────────────────────────────── */
.blog-list-section {
  background: var(--bg-cream);
  padding: 80px 30px 100px;
}
.blog-list-section h2 { color: var(--text-dark); }

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(11,19,43,0.07);
  box-shadow: 0 4px 12px rgba(11,19,43,0.05);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 12px 28px rgba(11,19,43,0.13);
  transform: translateY(-4px);
}
.blog-card img           { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body          { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-body h5,
.blog-card-body h3       { color: var(--text-dark); font-size: 20px; }
.blog-card-body p        { color: #555; font-size: 15px; flex-grow: 1; }

.category-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg-secondary);
  color: var(--text-light);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 10px;
}
.category-pill.active {
  background: var(--accent);
  color: var(--text-dark);
}

.blog-search-bar .form-control {
  border: 1px solid rgba(11,19,43,0.15);
  border-radius: 8px 0 0 8px;
  padding: 12px 18px;
  font-size: 16px;
  color: var(--text-dark);
}
.blog-search-bar .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,211,105,0.2);
  outline: none;
}
.blog-search-bar .btn {
  background: var(--bg-primary);
  color: var(--text-light);
  border-radius: 0 8px 8px 0;
  padding: 12px 20px;
  border: none;
}
.blog-search-bar .btn:hover { background: var(--bg-secondary); color: var(--text-light); }


/* ─────────────────────────────────────────────────────────────
   CMS PAGES
───────────────────────────────────────────────────────────── */
.cms-content h2,
.cms-content h3 { color: var(--text-dark); }
.cms-content p,
.cms-content li { color: #444; font-size: 17px; line-height: 1.8; }
.cms-content a  { color: var(--bg-secondary); }
.cms-content a:hover { color: var(--accent-deep); }

.cms-sidebar .highlights-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--text-light);
}
.cms-sidebar .highlights-card h5  { color: var(--text-light); font-size: 17px; }
.cms-sidebar .highlights-card li  {
  color: rgba(249,249,249,0.85);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cms-sidebar .highlights-card li:last-child { border-bottom: none; }
.cms-sidebar .highlights-card li i { color: var(--accent); margin-right: 8px; }

.cms-widget-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(11,19,43,0.07);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.cms-widget-card:hover {
  box-shadow: 0 8px 24px rgba(11,19,43,0.1);
  transform: translateY(-3px);
}
.cms-widget-card h4        { color: var(--text-dark); font-size: 18px; }
.cms-widget-card p         { color: #555; font-size: 15px; }
.cms-widget-card .widget-key {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--support-clay);
  margin-bottom: 6px;
}

/* Journey tabs */
.journey-tabs .nav-tabs {
  border-bottom: 2px solid rgba(11,19,43,0.1);
  gap: 4px;
}
.journey-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  color: var(--text-dark);
  font-weight: 600;
  font-family: var(--font-heading);
  background: transparent;
  transition: color var(--ease), border-color var(--ease);
}
.journey-tabs .nav-tabs .nav-link.active {
  color: var(--bg-primary);
  border-color: var(--accent);
  background: transparent;
}
.journey-tabs .nav-tabs .nav-link:hover {
  color: var(--bg-primary);
  border-color: rgba(255,211,105,0.4);
}
.journey-tabs .tab-content { padding-top: 32px; }


/* ─────────────────────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid rgba(11,19,43,0.1) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
  background: #fff;
}
.accordion-button:not(.collapsed) {
  background: var(--bg-primary);
  color: var(--text-light);
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(255,211,105,0.25); }
.accordion-body { color: #444; font-size: 16px; line-height: 1.75; }


/* ─────────────────────────────────────────────────────────────
   LEADERSHIP / TEAM GRID
───────────────────────────────────────────────────────────── */
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 24px;
  border: 1px solid rgba(11,19,43,0.07);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.team-card:hover {
  box-shadow: 0 10px 28px rgba(11,19,43,0.12);
  transform: translateY(-4px);
}
.team-card img  { width: 100%; height: 260px; object-fit: cover; }
.team-card h4   { color: var(--text-dark); font-size: 20px; margin-top: 16px; }
.team-card .role { color: var(--support-clay); font-size: 14px; font-weight: 600; }
.team-card p    { color: #555; font-size: 15px; padding: 0 20px; }


/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.footer-main {
  background: url('/userassets/bkg2.jpg') center/cover no-repeat;
  color: var(--text-light);
  padding-top: var(--pad-desktop);
  padding-bottom: 60px;
  font-size: 16px;
  position: relative;
}
.footer-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,19,43,0.97);
  z-index: 0;
}
.footer-main > .container { position: relative; z-index: 1; }

.footer-main h5 {
  font-family: var(--font-heading);
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 20px;
}
.footer-main ul           { list-style: none; padding: 0; }
.footer-main ul li        { margin-bottom: 12px; }
.footer-main ul li a      { color: rgba(249,249,249,0.72); transition: color var(--ease); }
.footer-main ul li a:hover { color: var(--accent); }
.footer-main p            { color: rgba(249,249,249,0.72); font-size: 15px; }

.footer-main .social-icons a {
  color: var(--accent);
  font-size: 24px;
  margin-right: 16px;
  transition: color var(--ease), transform var(--ease);
}
.footer-main .social-icons a:hover {
  color: var(--text-light);
  transform: translateY(-2px);
}

.footer-main .divider {
  border-top: 1px solid rgba(255,211,105,0.2);
  margin-top: 60px;
  padding-top: 30px;
  font-size: 14px;
  color: rgba(249,249,249,0.45);
}
.footer-main .divider a       { color: rgba(249,249,249,0.45); }
.footer-main .divider a:hover { color: var(--accent); }


/* ─────────────────────────────────────────────────────────────
   FLOATING CHAT BUBBLE
───────────────────────────────────────────────────────────── */
.chat-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--text-dark);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 1000;
  transition: transform var(--ease), box-shadow var(--ease);
}
.chat-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px 5px rgba(255,211,105,0.4);
}


/* ─────────────────────────────────────────────────────────────
   GLOBAL FORM INPUTS
───────────────────────────────────────────────────────────── */
.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,211,105,0.2);
}


/* ─────────────────────────────────────────────────────────────
   PAGINATION
───────────────────────────────────────────────────────────── */
.pagination .page-item.active .page-link {
  background-color: var(--bg-primary);
  border-color: var(--bg-primary);
  color: var(--text-light);
}
.pagination .page-link {
  color: var(--bg-primary);
  border-color: rgba(11,19,43,0.15);
  font-weight: 500;
}
.pagination .page-link:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--text-dark);
}


/* ─────────────────────────────────────────────────────────────
   READING PROGRESS BAR (blog post)
───────────────────────────────────────────────────────────── */
#reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  z-index: 9999;
  transition: width 0.1s linear;
}


/* ─────────────────────────────────────────────────────────────
   INLINE BLOCK TYPES (blog & CMS child blocks)
───────────────────────────────────────────────────────────── */
/* typeid 86 — Quote */
.block-quote {
  border-left: 5px solid var(--accent);
  background: #fff;
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--text-dark);
  margin: 32px 0;
}

/* typeid 87 — Highlight */
.block-highlight {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
}
.block-highlight h4 { color: var(--accent); }

/* typeid 90 — Inline CTA */
.block-cta {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}
.block-cta h3,
.block-cta h4 { color: var(--text-dark); }

/* typeid 92 — YouTube embed */
.block-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 32px 0;
}
.block-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* typeid 98 — Inline Banner */
.block-banner { border-radius: var(--radius); overflow: hidden; margin: 32px 0; }
.block-banner img { width: 100%; display: block; }


/* ─────────────────────────────────────────────────────────────
   ALERTS
───────────────────────────────────────────────────────────── */
.alert-success {
  background: rgba(180,197,167,0.18);
  border-color: var(--bg-sage);
  color: #2d5a27;
}
.alert-danger {
  background: rgba(220,53,69,0.07);
  border-color: rgba(220,53,69,0.28);
  color: #842029;
}


/* ─────────────────────────────────────────────────────────────
   UTILITY — PILL BADGES, SEPARATORS, STARS
───────────────────────────────────────────────────────────── */
.heading-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 2px;
  margin-bottom: 20px;
}

.stars { color: var(--accent); letter-spacing: 2px; }

.pill         { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; padding: 5px 14px; border-radius: 30px; }
.pill-gold    { background: var(--accent); color: var(--text-dark); }
.pill-navy    { background: var(--bg-primary); color: var(--text-light); }
.pill-indigo  { background: var(--bg-secondary); color: var(--text-light); }
.pill-clay    { background: var(--support-clay); color: var(--text-light); }
.pill-sage    { background: var(--bg-sage); color: var(--text-dark); }

.sep          { border: none; border-top: 1px solid rgba(11,19,43,0.1); margin: 40px 0; }
.sep-light    { border-top-color: rgba(255,255,255,0.15); }


/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET (≤ 1024px)
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container-custom { padding-inline: 60px; }

  h1, .h1 { font-size: 50px; }
  h2, .h2 { font-size: 40px; }
  h3, .h3 { font-size: 28px; }

  .hero-section { padding: 130px 50px 90px; height: 600px; }
  .trust-card p { font-size: 15.5px; }
  .navbar-collapse .cta-btn { display: none; }
}


/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤ 768px)
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .container-custom { padding-inline: 24px; }

  h1, .h1 { font-size: 40px; }
  h2, .h2 { font-size: 32px; }
  h3, .h3 { font-size: 24px; }

  .section-padding { padding-top: var(--pad-mobile); padding-bottom: var(--pad-mobile); }

  .navbar           { padding: 0; }
  .header-nav       { padding-top: 12px; padding-bottom: 12px; }
  .navbar-nav       { margin-top: 16px; align-items: center; }
  .header-nav .nav-link { margin: 8px 0; }
  .header-nav .cta-btn  { margin-top: 16px; }

  .hero-section {
    padding-top: calc(var(--pad-mobile) + 70px);
    text-align: center;
    height: 521px;
  }
  .hero-section .row           { flex-direction: column-reverse; }
  .hero-section .subtext       { margin-inline: auto; }
  .hero-section .btn-secondary { margin-left: 0; }
  .hero-section .btn-group     { display: flex; gap: 0; align-items: center; }

  .trust-card .icon {
    float: none; margin-right: 0;
    min-height: unset; top: 0;
    text-align: center; display: block;
  }
  .trust-card { padding: 22px; text-align: center; }

  .about-suren-section .row { flex-direction: column-reverse; }
  .about-suren-section img  { margin-bottom: 32px; }
  .sample-card              { height: auto; }

  .footer-main              { text-align: center; }
  .footer-main .footer-col  { margin-bottom: 40px; }
  .footer-main .social-icons { justify-content: center; display: flex; }

  .blog-sidebar { position: static; top: auto; }
}


/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE (≤ 480px)
───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  h1, .h1 { font-size: 30px; }
  h2, .h2 { font-size: 23px; }

  .container-custom { padding-inline: 16px; }

  .hero-section             { height: 437px; background-position: center; }
  .hero-section .subtext    { display: none; }
  .hero-section .btn-group  { display: block; }

  .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 12px;
  }
  .btn-group > :not(.btn-check) + .btn {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .btn-group a,
  .hero-section .btn-secondary { padding: 12px 28px; font-size: 15px; }

  .authority-section  { padding: 45px 20px 60px !important; }
  .about-suren-section { padding: 50px 20px 40px !important; }
  .subtitle           { font-size: 11px; }

  .category-card-content h3               { font-size: 20px; margin-bottom: 5px; }
  .category-card-content .interpret-link  { font-size: 14px; }

  .samples-section  { padding: 50px 20px !important; }
  .samples-section h3 { font-size: 22px; }

  .package-card .price { font-size: 44px; }
  .cta-btn { padding: 12px 24px; font-size: 15px; }
}


/* ─────────────────────────────────────────────────────────────
   LARGE SCREENS (≥ 1500px)
───────────────────────────────────────────────────────────── */
@media screen and (min-width: 1500px) {
  .hero-section h1       { font-size: 72px; }
  .hero-section .subtext { font-size: 22px; }
}


/* ═══════════════════════════════════════════════════════════════
   STORM WIDGETS — Dream Clarity Visual Brand System
   All widgets use the project's CSS variables so they
   automatically inherit any future palette changes.
   Covers: top-bar · modal · trust toast · cookie · whatsapp
           chat-fab · chat-window
═══════════════════════════════════════════════════════════════ */

/* ── Shared base reset ──────────────────────────────────────── */
.sw-widget {
  font-family: var(--font-body);
  box-sizing: border-box;
  line-height: 1.5;
}
.sw-widget *,
.sw-widget *::before,
.sw-widget *::after { box-sizing: border-box; }


/* ─────────────────────────────────────────────────────────────
   1. TOP NOTIFICATION BAR
───────────────────────────────────────────────────────────── */
.sw-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Urgent — gold gradient bar (event / deadline feel) */
.sw-top-bar.sw-style-urgent {
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  color: var(--text-dark);
}
.sw-top-bar.sw-style-urgent .sw-top-cta {
  background: var(--bg-primary);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: opacity var(--ease);
}
.sw-top-bar.sw-style-urgent .sw-top-cta:hover { opacity: .8; }
.sw-top-bar.sw-style-urgent .sw-close        { color: var(--bg-primary); }

/* Professional — midnight navy bar (calm authority) */
.sw-top-bar.sw-style-professional {
  background: var(--bg-primary);
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,211,105,0.15);
}
.sw-top-bar.sw-style-professional .sw-top-cta {
  background: var(--accent);
  color: var(--text-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: background var(--ease);
}
.sw-top-bar.sw-style-professional .sw-top-cta:hover { background: var(--accent-deep); }

/* Close × — both styles */
.sw-top-bar .sw-close {
  margin-left: auto;
  cursor: pointer;
  font-size: 18px;
  opacity: .55;
  transition: opacity var(--ease);
  line-height: 1;
  padding: 0 4px;
  user-select: none;
}
.sw-top-bar .sw-close:hover { opacity: 1; }


/* ─────────────────────────────────────────────────────────────
   2. MODAL (on-load & exit-intent)
───────────────────────────────────────────────────────────── */
.sw-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(11,19,43,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: swFadeIn .25s ease;
}

.sw-modal-card,
.popup-box {
  background: var(--bg-primary);
  border: 1px solid rgba(255,211,105,0.18);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  animation: swSlideUp .3s ease;
  position: relative;
}

.sw-modal-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.sw-modal-content {
  padding: 32px 36px 36px;
}

.sw-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 12px;
  line-height: 1.3;
}

.sw-modal-content p {
  font-size: 15px;
  color: rgba(249,249,249,0.72);
  margin: 0 0 24px;
  line-height: 1.7;
}

/* Primary CTA (registration button) */
.sw-modal-content button:not(.closebtn) {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  color: var(--text-dark);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow var(--ease), transform var(--ease);
}
.sw-modal-content button:not(.closebtn):hover {
  box-shadow: 0 0 18px 4px rgba(255,211,105,0.35);
  transform: translateY(-1px);
}

/* Close × button */
.sw-modal-content .closebtn,
.sw-modal-card .closebtn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: rgba(255,255,255,0.07);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
  line-height: 1;
}
.sw-modal-content .closebtn:hover,
.sw-modal-card .closebtn:hover { background: rgba(255,255,255,0.15); }


/* ─────────────────────────────────────────────────────────────
   3. TRUST / SOCIAL PROOF TOAST
   Classes: .sw-trust-card  +  .sw-trust-visible (added by JS)
───────────────────────────────────────────────────────────── */
.sw-trust-card {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  background: var(--bg-primary);
  border: 1px solid rgba(255,211,105,0.22);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 18px;
  max-width: 280px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);

  /* Hidden by default — JS adds .sw-trust-visible */
  opacity: 0;
  transform: translateX(-16px);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.sw-trust-card.sw-trust-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.sw-trust-card b:first-child {
  display: block;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2px;
}

.sw-trust-card div {
  font-size: 12.5px;
  color: rgba(249,249,249,0.72);
  line-height: 1.45;
}

.sw-trust-card b {
  color: var(--text-light);
  font-weight: 600;
}

/* Tiny pulse badge on the left border */
.sw-trust-card::before {
  content: '';
  position: absolute;
  top: 14px;
  left: -7px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  animation: swPulse 2s infinite;
}

@keyframes swPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,211,105,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(255,211,105,0); }
}


/* ─────────────────────────────────────────────────────────────
   4. COOKIE CONSENT BANNER
   Classes: .sw-cookie-banner  +  .sw-pos-bottom-left / right
───────────────────────────────────────────────────────────── */
.sw-cookie-banner {
  position: fixed;
  z-index: 9997;
  background: var(--bg-primary);
  border: 1px solid rgba(255,211,105,0.18);
  border-radius: var(--radius);
  padding: 18px 22px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: swSlideUp .3s ease;
}

.sw-cookie-banner.sw-pos-bottom-left  { bottom: 24px; left:  24px; }
.sw-cookie-banner.sw-pos-bottom-right { bottom: 24px; right: 24px; }
.sw-cookie-banner.sw-pos-bottom       { bottom: 0; left: 0; right: 0; max-width: 100%; border-radius: var(--radius) var(--radius) 0 0; }

.sw-cookie-banner p {
  margin: 0;
  font-size: 13px;
  color: rgba(249,249,249,0.75);
  line-height: 1.6;
}

.sw-cookie-banner p a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.sw-cookie-banner p a:hover { text-decoration: underline; }

.sw-cookie-banner button {
  align-self: flex-start;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  color: var(--text-dark);
  border: none;
  border-radius: 50px;
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.sw-cookie-banner button:hover {
  box-shadow: 0 0 14px 3px rgba(255,211,105,0.3);
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────────────────────
   5. WHATSAPP FLOATING BUTTON
   Classes: .sw-wa-fab  +  .sw-pos-right / .sw-pos-left
───────────────────────────────────────────────────────────── */
.sw-wa-fab {
  position: fixed;
  bottom: 28px;
  z-index: 9996;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease);
}
.sw-wa-fab.sw-pos-right { right: 28px; }
.sw-wa-fab.sw-pos-left  { left:  28px; }
.sw-wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}
/* Ripple ring */
.sw-wa-fab::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: swPulse 2.5s infinite;
}


/* ─────────────────────────────────────────────────────────────
   6. CHAT — FAB BUTTON
───────────────────────────────────────────────────────────── */
.sw-chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9996;
  width: 54px;
  height: 54px;
  background: var(--bg-secondary);
  border: 2px solid rgba(255,211,105,0.3);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  user-select: none;
}
.sw-chat-fab:hover {
  transform: scale(1.08);
  border-color: var(--accent);
  box-shadow: 0 6px 22px rgba(255,211,105,0.25);
}
/* Push WhatsApp up if both are visible */
.sw-wa-fab.sw-pos-right ~ .sw-chat-fab,
body:has(.sw-wa-fab.sw-pos-right) .sw-chat-fab {
  bottom: 92px;
}


/* ─────────────────────────────────────────────────────────────
   7. CHAT — WINDOW
───────────────────────────────────────────────────────────── */
.sw-chat-window {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 9995;
  width: 320px;
  background: var(--bg-primary);
  border: 1px solid rgba(255,211,105,0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  overflow: hidden;
  animation: swSlideUp .25s ease;
}
.sw-chat-window.sw-hidden { display: none; }

/* Header strip */
.sw-chat-header {
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}
.sw-chat-header span {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}
.sw-chat-header button {
  background: rgba(0,0,0,0.15);
  border: none;
  color: var(--text-dark);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}
.sw-chat-header button:hover { background: rgba(0,0,0,0.28); }

/* Body */
.sw-chat-body { padding: 20px; }

.sw-chat-msg {
  font-size: 13.5px;
  color: rgba(249,249,249,0.72);
  margin: 0 0 16px;
  line-height: 1.6;
}

/* Form inputs */
.sw-chat-body form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sw-chat-body input,
.sw-chat-body textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 13px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color var(--ease);
  resize: none;
}
.sw-chat-body input::placeholder,
.sw-chat-body textarea::placeholder { color: rgba(249,249,249,0.3); }
.sw-chat-body input:focus,
.sw-chat-body textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,211,105,0.12);
}
.sw-chat-body textarea { min-height: 72px; }

/* Send button */
.sw-chat-body button[type="submit"] {
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  color: var(--text-dark);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow var(--ease), transform var(--ease);
}
.sw-chat-body button[type="submit"]:hover {
  box-shadow: 0 0 14px 3px rgba(255,211,105,0.3);
  transform: translateY(-1px);
}

/* Success message */
.sw-chat-success {
  text-align: center;
  padding: 20px 0 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--accent);
  font-style: italic;
}

/* Inline error message */
.sw-chat-error {
  font-size: 12.5px;
  color: #ff8585;
  background: rgba(255,100,100,0.08);
  border: 1px solid rgba(255,100,100,0.2);
  border-radius: 6px;
  padding: 8px 12px;
  margin: 0 0 10px;
  line-height: 1.5;
}


/* ─────────────────────────────────────────────────────────────
   SHARED KEYFRAMES
───────────────────────────────────────────────────────────── */
@keyframes swFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes swSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0);    }
}


/* ─────────────────────────────────────────────────────────────
   STORM WIDGETS — RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .sw-trust-card        { max-width: calc(100vw - 32px); left: 16px; bottom: 16px; }
  .sw-cookie-banner     { max-width: calc(100vw - 32px); left: 16px; right: 16px; bottom: 0;
                          border-radius: var(--radius) var(--radius) 0 0; }
  .sw-cookie-banner.sw-pos-bottom-left,
  .sw-cookie-banner.sw-pos-bottom-right { left: 0; right: 0; bottom: 0; max-width: 100%; }
  .sw-chat-window       { right: 12px; left: 12px; width: auto; bottom: 80px; }
  .sw-modal-content     { padding: 24px 22px 28px; }
  .sw-modal-content h3  { font-size: 20px; }
  .sw-top-bar           { font-size: 12px; gap: 8px; }
}


/* ─────────────────────────────────────────────────────────────
   BOOTSTRAP PRIMARY COLOR OVERRIDE
   Eliminates #0d6efd Bootstrap blue — replaces with brand colors
───────────────────────────────────────────────────────────── */
:root {
  --bs-primary:           #12233D;   /* was #0B132B (Dream Clarity navy) */
  --bs-primary-rgb:       18, 35, 61;
  --bs-link-color:        #D98A34;   /* was #FFD369 (Dream Clarity gold) */
  --bs-link-color-rgb:    217, 138, 52;
  --bs-link-hover-color:  #C67C29;
  --bs-link-hover-color-rgb: 198, 124, 41;
}

/* btn-primary → Swayam Polymer amber CTA (was Dream Clarity gold gradient) */
.btn-primary {
  background: #D98A34;
  border-color: #D98A34;
  color: #fff;
  font-weight: 600;
  border-radius: 2px;
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background: #C67C29;
  border-color: #C67C29;
  color: #fff;
  box-shadow: none;
}
.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(255,211,105,0.4);
}

/* btn-outline-primary → navy outline */
.btn-outline-primary {
  color: #0B132B;
  border-color: #0B132B;
  border-radius: 50px;
  font-weight: 600;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background: #0B132B;
  border-color: #0B132B;
  color: #F9F9F9;
}

/* text-primary → brand navy */
.text-primary { color: #0B132B !important; }

/* border-primary → brand gold */
.border-primary { border-color: #FFD369 !important; }

/* bg-primary already overridden above — keep consistent */
.bg-primary { background-color: #0B132B !important; }

/* Pagination — active page uses brand navy */
.pagination .page-link {
  color: #0B132B;
  border-color: rgba(11,19,43,0.15);
}
.pagination .page-link:hover {
  color: #0B132B;
  background-color: #FBF7F2;
  border-color: rgba(11,19,43,0.25);
}
.pagination .page-link:focus {
  box-shadow: 0 0 0 3px rgba(255,211,105,0.25);
  outline: none;
}
.pagination .page-item.active .page-link {
  background-color: #0B132B;
  border-color: #0B132B;
  color: #F9F9F9;
}
.pagination .page-item.disabled .page-link {
  color: rgba(11,19,43,0.35);
}

/* Form control focus rings — brand gold glow */
.form-control:focus,
.form-select:focus {
  border-color: #FFD369;
  box-shadow: 0 0 0 3px rgba(255,211,105,0.25);
  outline: none;
}

/* Input group text (search bars etc.) */
.input-group-text { border-color: rgba(11,19,43,0.18); }

/* Badge bg-primary */
.badge.bg-primary { background-color: #0B132B !important; }
