/* ============================================
   VAJIANDRO WELLNESS LLP — Global Styles
   Luxury Ayurvedic Aesthetic
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Core Palette */
  --forest-deep: #1a3a2a;
  --forest: #2d5a3d;
  --forest-light: #3d7a52;
  --gold-deep: #8B6914;
  --gold: #c4972a;
  --gold-light: #d4a83a;
  --gold-glow: #e8c96a;
  --saffron: #d4882a;
  --cream: #faf6ee;
  --cream-dark: #f0e8d8;
  --cream-light: #fdfbf7;
  --charcoal: #2a2a28;
  --charcoal-light: #3a3a38;
  --text-primary: #2a2a28;
  --text-secondary: #5a5a55;
  --text-muted: #8a8a82;
  --white: #ffffff;
  --danger: #c44b3a;
  --success: #3d7a52;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Sizing */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --header-height: 80px;
  --border-radius: 4px;
  --border-radius-lg: 8px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 300ms ease;
  --transition-slow: 500ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(42, 42, 40, 0.08);
  --shadow: 0 4px 12px rgba(42, 42, 40, 0.1);
  --shadow-lg: 0 8px 30px rgba(42, 42, 40, 0.12);
  --shadow-xl: 0 16px 50px rgba(42, 42, 40, 0.15);
  --shadow-gold: 0 4px 20px rgba(196, 151, 42, 0.15);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--cream-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--forest);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 600px;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--cream {
  background-color: var(--cream);
}

.section--dark {
  background-color: var(--forest-deep);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--cream);
}

.section--dark p {
  color: rgba(250, 246, 238, 0.8);
}

.section--dark .section-label {
  color: var(--gold-light);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header--transparent {
  background-color: transparent;
}

.site-header--solid {
  background-color: rgba(253, 251, 247, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-deep);
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--gold);
  font-style: italic;
  display: block;
  letter-spacing: 0.05em;
}

.site-header--transparent .logo-text {
  color: var(--white);
}

.site-header--transparent .logo-tagline {
  color: var(--gold-light);
}

/* Navigation */
.nav-main {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.site-header--transparent .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header--transparent .nav-links a:hover {
  color: var(--gold-light);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}

.site-header--transparent .nav-toggle span {
  background-color: var(--white);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--cream-light);
    flex-direction: column;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    transition: right var(--transition);
    box-shadow: var(--shadow-xl);
    z-index: 999;
  }

  .nav-main.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: flex-start;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--text-primary) !important;
  }

  .site-header--transparent .nav-links a {
    color: var(--text-primary) !important;
  }
}

/* Mobile menu overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.8rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--primary:hover {
  background-color: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn--secondary {
  background-color: transparent;
  color: var(--forest-deep);
  border-color: var(--forest-deep);
}

.btn--secondary:hover {
  background-color: var(--forest-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--white {
  background-color: var(--white);
  color: var(--forest-deep);
  border-color: var(--white);
}

.btn--white:hover {
  background-color: var(--cream);
  border-color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background-color: var(--white);
  color: var(--forest-deep);
  transform: translateY(-1px);
}

.btn--gold-outline {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--gold-outline:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 1rem 2.4rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.card-body {
  padding: var(--space-lg);
}

/* --- Product Image Placeholders --- */
.product-image-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 50%, var(--cream-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(196, 151, 42, 0.03) 20px,
    rgba(196, 151, 42, 0.03) 40px
  );
}

.product-image-placeholder .placeholder-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.product-image-placeholder .placeholder-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.product-image-placeholder .placeholder-label {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* --- Discount Badge --- */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 3px;
  text-transform: uppercase;
}

.badge--discount {
  background-color: var(--saffron);
  color: var(--white);
}

.badge--ayurvedic {
  background-color: var(--forest);
  color: var(--white);
}

/* --- Price Display --- */
.price-group {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.price-current {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-deep);
}

.price-mrp {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-savings {
  font-size: 0.8rem;
  color: var(--saffron);
  font-weight: 600;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--forest-deep);
  padding: var(--space-md) 0;
  overflow: hidden;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-light);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .trust-items {
    gap: var(--space-md);
    justify-content: flex-start;
    animation: trustScroll 20s linear infinite;
    flex-wrap: nowrap;
    width: max-content;
  }

  @keyframes trustScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

/* --- Form Styles --- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d4d0c8;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 151, 42, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(42, 42, 40, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  gap: var(--space-md);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-answer-inner {
  padding-bottom: var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--charcoal);
  color: var(--cream);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

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

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

.footer-brand .logo-text {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.footer-brand .logo-tagline {
  color: var(--gold-light);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(250, 246, 238, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(250, 246, 238, 0.6);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: rgba(250, 246, 238, 0.6);
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: rgba(250, 246, 238, 0.4);
  font-size: 0.8rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: rgba(250, 246, 238, 0.4);
  font-size: 0.8rem;
}

.footer-legal a:hover {
  color: var(--gold-light);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: rgba(250, 246, 238, 0.6);
  transition: fill var(--transition-fast);
}

.social-icon:hover svg {
  fill: var(--white);
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--white);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* --- Cookie Consent --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: var(--space-lg) var(--space-xl);
  z-index: 1100;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-inner p {
  color: rgba(250, 246, 238, 0.7);
  font-size: 0.85rem;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs span {
  margin: 0 var(--space-sm);
  color: var(--text-muted);
}

/* --- Testimonial Cards --- */
.testimonial-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Decorative Elements --- */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-lg) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.ornament {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}

/* --- Steps / How It Works --- */
.step-card {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.step-card h3 {
  margin-bottom: var(--space-sm);
}

/* --- Privacy Badge --- */
.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(61, 122, 82, 0.08);
  border: 1px solid rgba(61, 122, 82, 0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--forest);
}

.privacy-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--forest);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--forest-deep);
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(196, 151, 42, 0.02) 40px,
    rgba(196, 151, 42, 0.02) 80px
  );
}

.page-hero h1 {
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.page-hero .section-subtitle {
  color: rgba(250, 246, 238, 0.7);
  position: relative;
  z-index: 1;
  margin: var(--space-md) auto 0;
}

.page-hero .section-label {
  position: relative;
  z-index: 1;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mb-4 { margin-bottom: var(--space-3xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: var(--forest-deep);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 899;
  box-shadow: var(--shadow);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Blog card styles */
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-image-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 15px,
    rgba(255, 255, 255, 0.03) 15px,
    rgba(255, 255, 255, 0.03) 30px
  );
}

.blog-image-placeholder span {
  font-family: var(--font-accent);
  color: rgba(250, 246, 238, 0.5);
  font-style: italic;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.blog-card-body {
  padding: var(--space-lg);
}

.blog-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  display: flex;
  gap: var(--space-md);
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.blog-card h3 a {
  color: var(--charcoal);
}

.blog-card h3 a:hover {
  color: var(--gold);
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.read-more:hover {
  color: var(--gold-deep);
}

/* --- Print --- */
@media print {
  .site-header,
  .whatsapp-float,
  .scroll-top,
  .cookie-banner {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
