/* Root variables */
:root {
  --violet: #ab8bf9;
  --violet-dark: #9a76f3;
  --green: #5fcb91;
  --green-dark: #49b57d;
  --gold: #ffd166;
  --gold-dark: #e7ba45;
  --night-blue: #0f1a2b;
  --dark-gray: #444444;
  --off-white: #faf9ff;
  --soft-gold-line: #f5dfa0;

  --font-display: "Cinzel", serif;
  --font-sans: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Helvetica, Arial, sans-serif;

  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 8px;

  --space-xxl: 6rem;
  --space-xl: 4rem;
  --space-lg: 2rem;
  --space-md: 1rem;
  --space-sm: 0.5rem;
  --dark: #0f1a2b;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.85);
}

/* Reset */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Base */
body {
  font-family: var(--font-sans);
  color: var(--night-blue);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Typography */
h1,
h2,
h3 {
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}
h1 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--violet);
  letter-spacing: 0.3px;
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--night-blue);
}
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--dark-gray);
}
p {
  margin: 0 0 var(--space-md) 0;
  color: var(--night-blue);
}

/* Container */
.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--violet);
  border: 2px solid var(--gold);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 16px rgba(171, 139, 249, 0.35);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  background: var(--violet-dark);
  box-shadow: 0 10px 24px rgba(171, 139, 249, 0.45),
    0 0 18px rgba(231, 186, 69, 0.4);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--green);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 16px rgba(79, 197, 144, 0.35);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  background: var(--green-dark);
  box-shadow: 0 10px 22px rgba(79, 197, 144, 0.45);
}

.btn-premium {
  display: inline-block;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--gold);
  color: var(--night-blue);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 16px rgba(231, 186, 69, 0.35);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-premium:hover {
  transform: translateY(-2px);
  opacity: 0.98;
  background: var(--gold-dark);
  box-shadow: 0 10px 22px rgba(231, 186, 69, 0.45);
}

.btn,
.btn-primary,
.btn-secondary,
.btn-premium,
.btn-outline {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 82vh;
  padding: var(--space-lg) var(--space-md);
  background: var(--off-white);
}
.hero-content {
  max-width: 680px;
  margin: auto;
}
.logo {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.hero-title {
  font-family: var(--font-display);
  color: var(--violet);
  letter-spacing: 0.4px;
  word-spacing: 0.5px;
  font-kerning: normal;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: var(--space-md);
  white-space: nowrap;
  text-shadow: 0 0 2px var(--gold), 0 0 6px rgba(255, 209, 102, 0.5);
}
.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--dark-gray);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  margin-bottom: var(--space-lg);
}
.hero-note {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark-gray);
  opacity: 0.8;
  margin-top: 0.5rem;
  text-align: center;
}
.hero-aspire {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--night-blue);
  font-weight: 400;
  margin-top: var(--space-sm);
  text-align: center;
  letter-spacing: 0.2px;
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
  background: var(--off-white);
}
.section-title {
  font-family: var(--font-display);
  color: var(--night-blue);
  font-weight: 700;
  letter-spacing: 0.35px;
  word-spacing: 0.4px;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  text-align: center;
  margin-bottom: var(--space-md);
}
.section-lead {
  font-family: var(--font-sans);
  color: var(--dark-gray);
  margin-top: -0.4rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}

.problem-card {
  padding: var(--space-lg);
  border: 1px solid var(--violet-dark);
  border-radius: var(--radius-xl);
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 26, 43, 0.08);
}

/* Freebie */
.freebie-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}
.freebie-input {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(15, 26, 43, 0.1);
  border-radius: var(--radius-lg);
  font-family: var(--font-sans);
  font-size: 1rem;
  min-width: 260px;
  flex: 1;
  max-width: 380px;
  color: var(--night-blue);
  background: #ffffff;
  border: 1.5px solid var(--gold);
}
.freebie-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(95, 203, 145, 0.25);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.testimonial-card {
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--violet);
  box-shadow: 0 4px 12px rgba(15, 26, 43, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--violet-dark);
  box-shadow: 0 8px 20px rgba(15, 26, 43, 0.08);
}

.footer-container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}
.footer-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #ffffff;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-top: 0.25rem;
}
.footer-nav a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: var(--gold);
}
/* Global Section Alignment & Spacing Fixes */
.section {
  padding: var(--space-xl) 0;
  background: var(--off-white);
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  color: var(--night-blue);
  font-weight: 700;
  letter-spacing: 0.35px;
  word-spacing: 0.4px;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0 auto var(--space-md);
  max-width: 720px;
  line-height: 1.3;
}
.section-lead {
  font-family: var(--font-sans);
  color: var(--dark-gray);
  line-height: 1.75;
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  max-width: 760px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

/* Hero alignment fix */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 82vh;
  padding: var(--space-lg) var(--space-md);
  background: var(--off-white);
}
.hero-content {
  max-width: 720px;
  margin: auto;
}
.hero-title {
  white-space: normal;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: var(--space-sm);
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--dark-gray);
  margin: 0 auto var(--space-md);
  line-height: 1.6;
  max-width: 680px;
}
.hero-benefits {
  font-size: 1rem;
  color: var(--night-blue);
  font-weight: 500;
  margin: var(--space-md) auto;
  line-height: 1.6;
  max-width: 680px;
}

/* Problem grid alignment */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.problem-card {
  padding: var(--space-lg);
  border: 1px solid var(--violet-dark);
  border-radius: var(--radius-xl);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}
.problem-card h3 {
  font-family: var(--font-display);
  color: var(--violet-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.problem-card p {
  font-family: var(--font-sans);
  color: var(--dark-gray);
  line-height: 1.65;
  font-size: 1rem;
}

/* Solution grid */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.solution-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--soft-gold-line);
  padding: var(--space-lg);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 26, 43, 0.08);
}
.solution-title {
  font-family: var(--font-display);
  color: var(--violet);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}
.solution-text {
  font-family: var(--font-sans);
  color: var(--dark-gray);
  line-height: 1.6;
  font-size: 1rem;
}

/* Trust badges layout fix */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1rem;
}
.badge {
  width: 95px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  opacity: 0.95;
  transition: transform 0.2s ease;
}
.badge:hover {
  transform: scale(1.04);
}
.badge-figure {
  text-align: center;
  max-width: 140px;
}
.badge-figure figcaption {
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--dark-gray);
  margin-top: 0.4rem;
}

/* Guarantee section */
.guarantee {
  background: #fff;
  border-top: 2px solid var(--soft-gold-line);
  border-bottom: 2px solid var(--soft-gold-line);
}
.guarantee .section-lead {
  max-width: 680px;
  color: var(--night-blue);
}

/* Responsive optimization */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .solution-card,
  .problem-card {
    text-align: center;
  }
  .problem-card p,
  .solution-text {
    font-size: 0.95rem;
  }
  .badge {
    width: 80px;
  }
  .hero-benefits {
    font-size: 0.9rem;
  }
}

/* === Testimonials Carousel Add-on === */

.testimonial-carousel {
  position: relative;
  max-width: 760px;
  margin: var(--space-xl) auto var(--space-lg);
  overflow: hidden;
  text-align: center;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.6s ease;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--violet);
  padding: var(--space-lg);
  box-shadow: 0 6px 20px rgba(15, 26, 43, 0.06);
}
.testimonial-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.testimonial-slide.fade-in {
  animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-text {
  font-family: var(--font-sans);
  color: var(--dark-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  font-family: var(--font-display);
  color: var(--violet-dark);
  font-weight: 600;
  margin-top: var(--space-sm);
}

.testimonial-discipline {
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.stars {
  color: var(--gold-dark);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin: var(--space-sm) 0;
  animation: glowStars 2.4s ease-in-out infinite alternate;
}
@keyframes glowStars {
  from {
    text-shadow: 0 0 6px rgba(255, 209, 102, 0.4);
  }
  to {
    text-shadow: 0 0 14px rgba(231, 186, 69, 0.7);
  }
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}
.carousel-controls button {
  background: transparent;
  border: 2px solid var(--gold-dark);
  color: var(--gold-dark);
  font-size: 1.4rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-controls button:hover {
  background: var(--gold-dark);
  color: var(--night-blue);
  transform: scale(1.1);
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  .testimonial-slide {
    padding: var(--space-md);
  }
  .testimonial-text {
    font-size: 0.95rem;
  }
}

/* === Carousel Dots === */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-md);
  gap: 0.6rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(231, 186, 69, 0.3);
  border: 1px solid var(--gold-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot:hover {
  background: var(--gold-dark);
  transform: scale(1.1);
}
.dot.active {
  background: var(--gold-dark);
  box-shadow: 0 0 8px rgba(231, 186, 69, 0.6);
}

/* Navbar */
.navbar {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem;
  background: var(--glass);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  backdrop-filter: blur(10px);
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}

/* Primary nav */
.nav-links ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--dark);
  font-weight: 500;
  transition: color 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--violet);
}

/* CTA */
.cta-btn {
  background-color: var(--gold);
  color: var(--night-blue);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  top: 0;
  right: 0;
  flex-shrink: 0;
  border: none;
}
.cta-btn:hover {
  background-color: var(--gold-dark);
  color: var(--night-blue);
}

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 26px;
  background: var(--dark);
  border-radius: 3px;
}

/* Mobile menu */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    z-index: 1200;
  }
  .nav-links ul {
    flex-direction: column;
    padding: 1.25rem 0;
    gap: 1rem;
  }
  .nav-links.active {
    display: flex;
    justify-content: center;
    pointer-events: auto;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1300;
  }
  .cta-btn {
    display: none;
  }
}

/* Optional spacing for page content below navbar (if needed on pages without hero) */
.main-offset {
  padding-top: 1.25rem;
}

/* ============================
   SERVICES PAGE STYLING
   ============================ */

/* Section base */
#individual-sessions,
#courses-programs {
  background: var(--off-white);
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--space-lg);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin: 0 auto;
}

/* Service blocks */
.service-block {
  background: #fff;
  border: 1px solid var(--soft-gold-line);
  border-radius: var(--radius-xl);
  box-shadow: 0 6px 16px rgba(15, 26, 43, 0.05);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 26, 43, 0.08);
}
.service-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--violet);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}
.service-intro {
  font-family: var(--font-sans);
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.service-list {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding-left: 1rem;
}
.service-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--night-blue);
  font-size: 1rem;
  line-height: 1.65;
}
.service-list li::before {
  content: "✦";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
}

/* CTAs */
.service-cta {
  margin-top: var(--space-sm);
  text-align: right;
}
.service-cta .btn {
  font-size: 0.9rem;
  text-transform: uppercase;
  border: 1.5px solid var(--violet-dark);
  color: var(--violet-dark);
  background: transparent;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}
.service-cta .btn:hover {
  background: var(--violet-dark);
  color: #fff;
}

/* Testimonial text uniform style */
.testimonial-text {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--dark-gray);
  font-style: italic;
  text-align: left;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding-top: 0.4rem;
  border-top: 1px solid rgba(15, 26, 43, 0.08);
  opacity: 0.95;
}
.testimonial-text::before {
  content: "“";
  font-size: 1.4rem;
  color: var(--gold-dark);
  vertical-align: top;
  margin-right: 2px;
}
.testimonial-text::after {
  content: "”";
  font-size: 1.4rem;
  color: var(--gold-dark);
  vertical-align: bottom;
  margin-left: 2px;
}

/* Button layout stability inside service blocks */
.service-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.service-intro,
.testimonial-text {
  flex-grow: 1;
}

.service-cta {
  margin-top: auto;
  text-align: right;
  position: relative;
  z-index: 2;
}

.testimonial-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark-gray);
  font-style: italic;
  margin-top: 0.6rem;
  padding-top: 0.3rem;
  border-top: 1px solid rgba(15, 26, 43, 0.1);
}

/* Notice (availability) */
.notice {
  background: var(--violet);
  color: #fff;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: var(--space-lg);
  line-height: 1.6;
  box-shadow: 0 6px 20px rgba(171, 139, 249, 0.35);
}
.notice strong {
  color: var(--gold);
  font-weight: 700;
}
.notice .btn {
  margin-top: var(--space-sm);
}

/* Course blocks */
#courses-programs .service-block {
  border-color: var(--violet-dark);
}
#courses-programs .service-title {
  color: var(--night-blue);
}
#courses-programs .service-cta .btn {
  border-color: var(--gold);
  color: var(--gold-dark);
}
#courses-programs .service-cta .btn:hover {
  background: var(--gold);
  color: var(--night-blue);
}

/* Footer CTA */
.footer-cta {
  background: var(--night-blue);
  color: #fff;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}
.footer-cta h2 {
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.footer-cta .btn {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
}
.footer-cta .btn:hover {
  background: var(--gold);
  color: var(--night-blue);
}

/* Responsive */
@media (max-width: 768px) {
  .service-cta {
    text-align: center;
  }
  .service-block {
    padding: var(--space-md);
  }
  .service-title {
    font-size: 1.2rem;
    text-align: center;
  }
}

.page {
  padding: 2rem 0;
}

/* Footer */
.footer {
  background: var(--night-blue);
  border-top: 3px solid var(--soft-gold-line);
  color: #fff;
  /* full width without horizontal scroll */
  width: 100%;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
}
.footer-nav a:hover {
  color: var(--gold);
}

/* ============================
   BLOG ARTICLE STYLES
   ============================ */

.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px rgba(15, 26, 43, 0.05);
  text-align: left;
}

.article-content h1,
.article-content h2,
.article-content h3 {
  font-family: var(--font-display);
  color: var(--violet-dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.article-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--violet);
}

.article-content h2 {
  font-size: clamp(1.4rem, 3.2vw, 1.8rem);
}

.article-content p {
  font-family: var(--font-sans);
  color: var(--dark-gray);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.article-content strong {
  color: var(--night-blue);
  font-weight: 600;
}

.article-content em {
  color: var(--violet);
  font-style: italic;
}

.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--night-blue);
  background: rgba(255, 209, 102, 0.08);
  border-radius: var(--radius-md);
}

.article-content ul,
.article-content ol {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
  padding: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-gray);
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content li::marker {
  color: var(--gold-dark);
}

.article-content a {
  color: var(--violet);
  text-decoration: underline;
  transition: color 0.25s ease;
}

.article-content a:hover {
  color: var(--violet-dark);
}

.article-content img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  box-shadow: 0 4px 16px rgba(15, 26, 43, 0.06);
}

/* Recommended Reads Section */
.recommended-reads {
  max-width: 760px;
  margin: var(--space-xl) auto;
  padding: var(--space-lg);
  background: var(--off-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--soft-gold-line);
  box-shadow: 0 2px 10px rgba(15, 26, 43, 0.04);
}

.recommended-reads h3 {
  font-family: var(--font-display);
  color: var(--night-blue);
  margin-bottom: var(--space-md);
  text-align: center;
}

.recommended-reads a {
  display: block;
  text-align: center;
  color: var(--violet-dark);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color 0.25s ease;
}

.recommended-reads a:hover {
  color: var(--gold-dark);
}

/* Responsive readability */
@media (max-width: 768px) {
  .article-content {
    padding: var(--space-lg) var(--space-sm);
  }
  .article-content p {
    font-size: 1rem;
  }
  .recommended-reads {
    padding: var(--space-md);
  }
}

