/* ============================================
   HealerCedric — Global Styles
   Mobile-first responsive CSS foundation
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-primary: #D4AF37;
  --color-primary-dark: #B8960B;
  --color-secondary: #1a1a2e;
  --color-secondary-light: #16213e;
  --color-secondary-dark: #0d0d1a;
  --color-accent: #f5f0e8;
  --color-text: #2d2d2d;
  --color-text-light: #f8f4ef;
  --color-highlight: #4B2E83;
  --color-success: #4ade80;
  --color-card-bg: #ffffff;

  /* RGB values for opacity use */
  --color-primary-rgb: 212, 175, 55;
  --color-secondary-rgb: 26, 26, 46;
  --color-highlight-rgb: 75, 46, 131;
  --color-success-rgb: 74, 222, 128;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;

  /* Layout */
  --max-width: 1200px;
  --section-padding-mobile: 48px;
  --section-padding-desktop: 80px;

  /* Cards */
  --card-padding: 32px;
  --card-radius: 12px;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  /* Buttons */
  --btn-radius: 8px;
  --btn-padding: 16px 32px;

  /* Transitions */
  --transition: 0.3s ease;
}

/* --- CSS Reset / Normalize --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-accent);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

blockquote {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

/* --- Base Typography (Mobile-First) --- */
h1 {
  font-size: 32px;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  font-weight: 600;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

body {
  font-size: 16px;
  font-weight: 400;
}

small {
  font-size: 14px;
}

/* Ensure minimum 14px font size everywhere */
* {
  min-height: 0;
}

/* --- Utility Classes --- */

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

/* Section */
.section {
  padding-top: var(--section-padding-mobile);
  padding-bottom: var(--section-padding-mobile);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  min-width: 44px;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--card-shadow);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Cards */
.card {
  background-color: var(--color-card-bg);
  padding: var(--card-padding);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Grid Layout */
.grid {
  display: grid;
  gap: var(--space-md);
}

/* Dark Section */
.section-dark {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
}

.section-dark-light {
  background-color: var(--color-secondary-light);
  color: var(--color-text-light);
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--color-primary);
}

/* Section Heading with Gold Underline */
.section-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin-top: var(--space-xs);
}

.section-heading-center {
  text-align: center;
}

.section-heading-center .section-heading::after,
.text-center .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

/* Visually Hidden (Accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Ensure no horizontal overflow */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* --- Responsive Breakpoints (min-width, mobile-first) --- */

/* Tablet: 768px and up */
@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  .section {
    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--section-padding-desktop);
  }

  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop: 1024px and up */
@media (min-width: 1024px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 28px;
  }

  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
}

/* Large Desktop: 1440px and up */
@media (min-width: 1440px) {
  h1 {
    font-size: 56px;
  }

  .container {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

/* ============================================
   Navigation Component
   Fixed nav, hamburger menu, active states
   Requirements: 8.1, 8.2, 8.4, 8.5, 8.6, 9.5
   ============================================ */

/* --- Main Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  padding: var(--space-sm) 0;
  transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition), backdrop-filter var(--transition);
  box-shadow: none;
  background-color: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Scrolled state — tighter, more opaque, stronger shadow */
.navbar.navbar-scrolled {
  padding: 10px 0;
  background-color: rgba(26, 26, 46, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Logo / Brand --- */
.nav-brand {
  text-decoration: none;
  transition: opacity var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-brand:hover,
.nav-brand:focus {
  opacity: 0.85;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(1.2);
}

/* --- Nav Links List --- */
.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  padding: 12px var(--space-sm);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), background-color var(--transition);
  border-radius: 4px;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--color-primary);
}

/* Active Link State */
.nav-links a.active {
  color: var(--color-primary);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 1px;
}

/* --- Hamburger Menu Button --- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--color-text-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background-color var(--transition);
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 5px;
}

/* Hamburger to X animation when nav-open */
.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Mobile Menu Overlay --- */
@media (max-width: 767px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-secondary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-3xl) var(--space-sm);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
  }

  .nav-open .nav-links {
    display: flex;
    opacity: 1;
  }

  .nav-links a {
    font-size: 20px;
    padding: var(--space-sm) var(--space-lg);
    min-width: 44px;
    min-height: 44px;
  }

  /* Ensure tap targets on mobile */
  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    width: 100%;
    justify-content: center;
  }
}

/* --- Desktop Navigation (768px+) --- */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
  }

  .nav-links a {
    font-size: 15px;
    padding: 10px var(--space-sm);
  }
}

/* --- Body offset for fixed nav --- */
body {
  padding-top: 76px;
}

/* ============================================
   Hero Section — Ultra Premium
   Animated gradient, particles, badge, dual CTA
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 30%, var(--color-secondary-light) 70%, var(--color-secondary-dark) 100%);
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1920&h=1080&fit=crop&crop=center&q=70');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 134, 11, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(106, 5, 114, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particle-rise 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; }
.particle:nth-child(2) { left: 15%; animation-delay: 0.8s; }
.particle:nth-child(3) { left: 25%; animation-delay: 1.6s; }
.particle:nth-child(4) { left: 40%; animation-delay: 2.4s; }
.particle:nth-child(5) { left: 55%; animation-delay: 3.2s; }
.particle:nth-child(6) { left: 65%; animation-delay: 4s; }
.particle:nth-child(7) { left: 75%; animation-delay: 4.8s; }
.particle:nth-child(8) { left: 85%; animation-delay: 5.6s; }
.particle:nth-child(9) { left: 35%; animation-delay: 1s; }
.particle:nth-child(10) { left: 92%; animation-delay: 2s; }

.particle-large {
  width: 5px;
  height: 5px;
  animation-name: particle-rise-large;
  animation-duration: 8s;
}

.particle-large:nth-child(11) { left: 20%; animation-delay: 0.5s; }
.particle-large:nth-child(12) { left: 50%; animation-delay: 2.5s; }
.particle-large:nth-child(13) { left: 80%; animation-delay: 4.5s; }

@keyframes particle-rise {
  0% { bottom: -5%; opacity: 0; transform: translateX(0); }
  10% { opacity: 0.6; }
  50% { opacity: 0.4; transform: translateX(20px); }
  90% { opacity: 0.1; }
  100% { bottom: 105%; opacity: 0; transform: translateX(-10px); }
}

@keyframes particle-rise-large {
  0% { bottom: -5%; opacity: 0; transform: translateX(0) scale(1); }
  10% { opacity: 0.5; }
  50% { opacity: 0.3; transform: translateX(-15px) scale(1.3); }
  90% { opacity: 0.05; }
  100% { bottom: 105%; opacity: 0; transform: translateX(10px) scale(0.8); }
}

/* Pulsing glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite alternate;
}

.hero-glow-1 {
  width: 300px;
  height: 300px;
  background: rgba(var(--color-primary-rgb), 0.12);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-glow-2 {
  width: 250px;
  height: 250px;
  background: rgba(var(--color-primary-rgb), 0.08);
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

.hero-glow-3 {
  width: 200px;
  height: 200px;
  background: rgba(var(--color-primary-rgb), 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
  animation-duration: 7s;
}

@keyframes glow-pulse {
  0% { transform: scale(1) translate(0, 0); opacity: 0.4; }
  50% { transform: scale(1.15) translate(10px, -10px); opacity: 0.7; }
  100% { transform: scale(1) translate(-5px, 5px); opacity: 0.4; }
}

/* Rotating energy rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-primary-rgb), 0.1);
  pointer-events: none;
  animation: ring-rotate 20s linear infinite;
}

.hero-ring-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  margin-top: -250px;
  margin-left: -250px;
  border-style: dashed;
  animation-duration: 25s;
}

.hero-ring-2 {
  width: 650px;
  height: 650px;
  top: 50%;
  left: 50%;
  margin-top: -325px;
  margin-left: -325px;
  animation-direction: reverse;
  animation-duration: 35s;
  opacity: 0.5;
}

.hero-ring-3 {
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  margin-top: -400px;
  margin-left: -400px;
  border-style: dotted;
  animation-duration: 45s;
  opacity: 0.3;
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1px solid rgba(184, 134, 11, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: var(--space-md);
  backdrop-filter: blur(4px);
  background: rgba(184, 134, 11, 0.05);
}

.hero h1 {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-size: 40px;
  letter-spacing: -0.5px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.5px;
}

.hero-subtitle {
  color: var(--color-text-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  opacity: 0.85;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-services {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  padding: 0;
  text-align: left;
}

.hero-services li {
  color: var(--color-text-light);
  font-size: 15px;
  padding: 10px var(--space-sm);
  position: relative;
  padding-left: 28px;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.hero-services li:hover {
  opacity: 1;
}

.hero-services li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 8px rgba(184, 134, 11, 0.4);
}

/* Dual CTA buttons */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-sm);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid rgba(248, 244, 239, 0.3);
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(184, 134, 11, 0.05);
}

.hero-cta {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}

/* Hero responsive adjustments */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero-tagline {
    font-size: 24px;
  }

  .hero-services {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 64px;
  }

  .hero-tagline {
    font-size: 26px;
  }

  .hero-services {
    max-width: 700px;
  }
}

@media (min-width: 1440px) {
  .hero h1 {
    font-size: 72px;
  }
}


/* ============================================
   Why Choose Section
   Value proposition cards on dark background
   Requirements: 5.1, 5.2, 5.3, 5.4, 9.2, 9.3
   ============================================ */

.section-dark-light .card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.2);
  color: var(--color-text-light);
}

.section-dark-light .card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-dark-light .card p {
  color: var(--color-text-light);
  opacity: 0.9;
  line-height: 1.7;
}

.section-dark-light .card:hover {
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.08);
}

.why-choose-grid {
  margin-top: var(--space-lg);
}

/* Tablet: 2 columns for why choose on smaller tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   About Section
   Requirements: 2.1, 2.2, 2.3, 2.4
   ============================================ */

.about-section-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--card-radius);
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content {
  max-width: 780px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin-top: var(--space-sm);
}

.about-content p:first-of-type {
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .about-section-layout {
    grid-template-columns: 1fr 1.2fr;
  }

  .about-image img {
    height: 500px;
  }

  .about-content p {
    font-size: 18px;
  }
}


/* ============================================
   Services Page Styles
   Service cards grid and section styling
   Requirements: 3.1–3.7, 4.1–4.7, 9.3
   ============================================ */

/* --- Services Section --- */
.services-section {
  padding-top: var(--section-padding-mobile);
  padding-bottom: var(--section-padding-mobile);
}

.services-section + .services-section {
  padding-top: 0;
}

/* --- Services Grid Cards --- */
.services-grid {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xl);
}

.services-grid .card h3 {
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
}

.services-grid .card p {
  color: var(--color-text);
  line-height: 1.7;
}

/* Service cards with images */
.service-card-img {
  padding: 0;
  overflow: hidden;
}

.service-card-img h3,
.service-card-img p {
  padding: 0 var(--card-padding);
}

.service-card-img h3 {
  padding-top: var(--space-md);
}

.service-card-img p {
  padding-bottom: var(--card-padding);
}

.service-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-img:hover .service-card-image img {
  transform: scale(1.08);
}

/* --- Services CTA --- */
.services-cta {
  margin-top: var(--space-lg);
}

/* --- Responsive: Services --- */
@media (min-width: 768px) {
  .services-section {
    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--section-padding-desktop);
  }

  .services-section + .services-section {
    padding-top: 0;
  }
}


/* ============================================
   Contact Page Styles
   Requirements: 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 9.5
   ============================================ */

/* --- Contact Section --- */
.contact-section {
  min-height: auto;
  display: block;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
}

.contact-subtitle {
  font-size: 18px;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

/* --- Contact Cards --- */
.contact-cards {
  margin-bottom: var(--space-xl);
}

.contact-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--card-padding);
}

.contact-icon {
  font-size: 40px;
  display: block;
  margin-bottom: var(--space-xs);
}

.contact-label {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.contact-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: 12px 24px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius);
  border: 2px solid var(--color-primary);
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.contact-link:hover,
.contact-link:focus {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: var(--card-shadow);
}

.contact-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* --- Worldwide Notice --- */
.contact-worldwide {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  padding: var(--space-md) 0;
  letter-spacing: 0.5px;
}

/* --- Responsive: Mobile Contact Cards Stack --- */
@media (max-width: 767px) {
  .contact-cards.grid-3 {
    grid-template-columns: 1fr;
  }

  .contact-link {
    min-width: 44px;
    min-height: 44px;
    padding: 14px 28px;
  }

  .contact-subtitle {
    font-size: 16px;
  }
}


/* ============================================
   Testimonials Section
   Blockquote cards with gold accent border
   Requirements: 6.1, 6.2, 6.3, 6.4, 11.1, 11.2
   ============================================ */

/* --- Testimonial Card --- */
.testimonial-card {
  text-align: left;
  border-left: 4px solid var(--color-primary);
  padding: var(--card-padding);
}

.testimonial-card blockquote p {
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.testimonial-card blockquote cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  display: block;
}

/* --- Responsive: Mobile Testimonials Stack --- */
@media (max-width: 767px) {
  .testimonial-card {
    padding: var(--space-md);
  }
}


/* ============================================
   Footer
   Premium site footer with brand, links, contact
   ============================================ */

.site-footer {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  padding: var(--space-3xl) 0 var(--space-md);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, var(--color-primary) 50%, transparent 90%);
  opacity: 0.6;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.15);
}

.footer-logo {
  display: inline-block;
  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(1.3);
}

.footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
  opacity: 0.7;
  margin-top: var(--space-md);
  max-width: 360px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.7;
  margin-top: var(--space-xs);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: var(--space-xs);
}

.footer-links a,
.footer-contact a {
  font-size: 15px;
  color: var(--color-text-light);
  opacity: 0.8;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-primary);
  opacity: 1;
}

.footer-bottom {
  padding-top: var(--space-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.6;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-text-light);
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
  }
}


/* ============================================
   Contact Icon SVG Styling
   Premium SVG icons replacing emoji
   ============================================ */

.contact-icon {
  font-size: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(184, 134, 11, 0.1);
  margin-bottom: var(--space-sm);
}

.contact-icon svg {
  color: var(--color-primary);
  width: 32px;
  height: 32px;
}


/* ============================================
   Floating WhatsApp Button
   Always visible, bottom-right corner
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 2px 12px rgba(0, 0, 0, 0.2); }
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}


/* ============================================
   Testimonials Section Background
   Subtle texture for depth
   ============================================ */

.testimonials-section {
  position: relative;
  background-color: var(--color-accent);
  padding-bottom: var(--space-lg);
}

.testimonials-section .editorial-header {
  margin-bottom: var(--space-lg);
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.3;
}


/* ============================================
   Services Page Header Banner
   ============================================ */

.services-section:first-of-type {
  position: relative;
}

.services-section:first-of-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, var(--color-secondary) 0%, transparent 100%);
  opacity: 0.03;
  pointer-events: none;
}


/* ============================================
   Hero Premium Animations
   Staggered reveals, breathing badge, vibrant energy
   ============================================ */

/* Staggered fade-in for hero elements */
.hero-badge {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards, badge-breathe 3s ease-in-out 1.5s infinite;
}

.hero h1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.hero-tagline {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-subtitle {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.hero-services {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.hero-cta-group {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.7s forwards;
}

/* Badge breathing glow */
@keyframes badge-breathe {
  0%, 100% { box-shadow: 0 0 0 rgba(var(--color-primary-rgb), 0); border-color: rgba(var(--color-primary-rgb), 0.4); }
  50% { box-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.2); border-color: rgba(var(--color-primary-rgb), 0.8); }
}

/* Service list items stagger in */
.hero-services li {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.hero-services li:nth-child(1) { animation-delay: 1.5s; }
.hero-services li:nth-child(2) { animation-delay: 1.6s; }
.hero-services li:nth-child(3) { animation-delay: 1.7s; }
.hero-services li:nth-child(4) { animation-delay: 1.8s; }
.hero-services li:nth-child(5) { animation-delay: 1.9s; }
.hero-services li:nth-child(6) { animation-delay: 2.0s; }
.hero-services li:nth-child(7) { animation-delay: 2.1s; }
.hero-services li:nth-child(8) { animation-delay: 2.2s; }

/* Dot pulse on service items */
.hero-services li::before {
  animation: dot-pulse 2s ease-in-out infinite;
  animation-delay: inherit;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 4px rgba(var(--color-primary-rgb), 0.3); transform: translateY(-50%) scale(1); }
  50% { box-shadow: 0 0 12px rgba(var(--color-primary-rgb), 0.7); transform: translateY(-50%) scale(1.3); }
}

/* CTA button shimmer effect */
.hero-cta-group .btn-primary {
  position: relative;
  overflow: hidden;
}

.hero-cta-group .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s ease-in-out infinite;
  animation-delay: 2.5s;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .particle,
  .hero-glow,
  .hero-ring,
  .hero-badge,
  .hero h1,
  .hero-tagline,
  .hero-subtitle,
  .hero-services,
  .hero-services li,
  .hero-cta-group,
  .hero-cta-group .btn-primary::after {
    animation: none;
    opacity: 1;
  }
}


/* ============================================
   Typewriter Effect
   Animated text cycling in hero subtitle
   ============================================ */

.hero-subtitle {
  min-height: 60px;
}

.typewriter-static {
  color: var(--color-text-light);
  opacity: 0.85;
}

.typewriter-text {
  color: var(--color-primary);
  font-weight: 500;
}

.typewriter-cursor {
  color: var(--color-primary);
  font-weight: 300;
  animation: cursor-blink 0.7s step-end infinite;
  margin-left: 2px;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 767px) {
  .hero-subtitle {
    min-height: 80px;
  }
}


/* ============================================
   Editorial Layout
   Magazine-style sections with asymmetry and depth
   ============================================ */

/* Editorial Section Header */
.editorial-header {
  margin-bottom: var(--space-2xl);
}

.editorial-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  position: relative;
}

.editorial-label::before,
.editorial-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-primary);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.5;
}

/* Editorial Grid - Why Choose */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.editorial-card {
  padding: var(--space-lg) var(--space-lg);
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.editorial-card:hover {
  border-color: rgba(var(--color-primary-rgb), 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.editorial-card-featured {
  border-color: rgba(var(--color-primary-rgb), 0.3);
  background: rgba(var(--color-primary-rgb), 0.04);
}

.editorial-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.editorial-card h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.editorial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
  opacity: 0.8;
}

@media (min-width: 768px) {
  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .editorial-card-featured {
    grid-column: span 1;
  }
}

@media (min-width: 1024px) {
  .editorial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .editorial-card h3 {
    font-size: 22px;
  }
}

/* Why Section Specific */
.why-section {
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.03) 0%, transparent 70%);
  pointer-events: none;
}


/* ============================================
   Editorial Testimonials
   Pull-quote magazine style
   ============================================ */

.testimonials-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-editorial-card {
  background: #ffffff;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-editorial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-editorial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
}

.testimonial-editorial-featured {
  background: var(--color-secondary);
  color: var(--color-text-light);
  border: 1px solid rgba(var(--color-primary-rgb), 0.3);
}

.testimonial-editorial-featured::before {
  background: linear-gradient(180deg, var(--color-primary), #ffffff);
}

.testimonial-editorial-featured .testimonial-quote-mark {
  color: var(--color-primary);
  opacity: 0.6;
}

.testimonial-editorial-featured blockquote p {
  color: #ffffff !important;
  opacity: 1 !important;
  font-style: italic;
}

.testimonial-editorial-featured .testimonial-author span {
  color: var(--color-primary);
}

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  right: 24px;
}

.testimonial-editorial-card blockquote {
  margin: 0;
  padding: 0;
}

.testimonial-editorial-card blockquote p {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

/* Override for featured dark card */
.testimonial-editorial-card.testimonial-editorial-featured blockquote p {
  color: #ffffff;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.6;
}

.testimonial-author span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .testimonials-editorial {
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: stretch;
  }

  .testimonial-editorial-featured {
    transform: scale(1.03);
  }

  .testimonial-editorial-featured:hover {
    transform: scale(1.03) translateY(-4px);
  }

  .testimonial-editorial-card blockquote p {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  .testimonial-editorial-card blockquote p {
    font-size: 19px;
  }
}


/* ============================================
   Contact Page Trust Badges
   ============================================ */

.contact-trust {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.15);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.trust-badge svg {
  color: var(--color-primary);
  width: 28px;
  height: 28px;
}

.trust-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* Tighter contact card spacing */
.contact-cards {
  margin-bottom: var(--space-lg);
}

.contact-worldwide {
  margin-bottom: 0;
}


/* ============================================
   Testimonials Marquee / Infinite Scroll
   Two rows flowing in opposite directions
   ============================================ */

.testimonials-marquee {
  overflow: hidden;
  padding: var(--space-xs) 0;
  position: relative;
}

.testimonials-marquee::before,
.testimonials-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
}

.testimonials-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-accent) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: var(--space-md);
  animation: marquee-scroll 60s linear infinite;
  width: max-content;
}

.marquee-reverse .marquee-track {
  animation-name: marquee-scroll-reverse;
  animation-duration: 45s;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-card {
  flex-shrink: 0;
  width: 320px;
  padding: var(--space-lg);
  background: #ffffff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  border-left: 3px solid var(--color-primary);
  transition: transform var(--transition);
}

.marquee-card:hover {
  transform: scale(1.02);
}

.marquee-card p {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.marquee-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

/* Dark variant cards for second row */
.marquee-card-dark {
  background: var(--color-secondary);
  border-left-color: var(--color-primary);
}

.marquee-card-dark p {
  color: #ffffff;
}

.marquee-card-dark span {
  color: var(--color-primary);
}

/* Pause on hover */
.testimonials-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@media (max-width: 767px) {
  .marquee-card {
    width: 280px;
    padding: var(--space-md);
  }

  .marquee-card p {
    font-size: 15px;
  }

  .testimonials-marquee::before,
  .testimonials-marquee::after {
    width: 40px;
  }
}


/* ============================================
   Social Proof Stats Bar
   Buyer psychology: authority + social proof
   ============================================ */

.stats-bar {
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.15);
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-plus,
.stat-percent {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  opacity: 0.7;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-plus,
  .stat-percent {
    font-size: 32px;
  }

  .stat-label {
    font-size: 15px;
  }
}


/* ============================================
   Urgency CTA Section
   Buyer psychology: scarcity + urgency + safety
   ============================================ */

.urgency-cta {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.urgency-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.urgency-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.1);
  border: 1px solid rgba(var(--color-primary-rgb), 0.4);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: var(--space-md);
  animation: urgency-pulse 2s ease-in-out infinite;
}

@keyframes urgency-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.urgency-heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.urgency-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-light);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.btn-large {
  padding: 18px 40px;
  font-size: 17px;
}

.urgency-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-md);
  font-size: 13px;
  color: var(--color-text-light);
  opacity: 0.6;
}

.urgency-note svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .urgency-heading {
    font-size: 42px;
  }
}


/* ============================================
   Locations Page
   SEO-focused area pages for local visibility
   ============================================ */

.locations-hero {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
}

.locations-hero h1 {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.locations-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-light);
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
}

.locations-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.locations-grid {
  margin-top: var(--space-md);
}

.location-card {
  padding: var(--space-lg);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  transition: border-color var(--transition), transform var(--transition);
}

.location-card:hover {
  border-color: rgba(var(--color-primary-rgb), 0.4);
  transform: translateY(-2px);
}

.location-card h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.location-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Light section location cards */
.locations-section:not(.section-dark-light) .location-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: var(--card-shadow);
}

.locations-section:not(.section-dark-light) .location-card p {
  color: var(--color-text);
}

/* Dark section location cards */
.section-dark-light .location-card p {
  color: var(--color-text-light);
}


/* ============================================
   Problem Agitation Section
   Buyer Psychology: Empathy, Pain Identification
   ============================================ */

.problem-section {
  background-color: var(--color-accent);
}

.problem-grid {
  max-width: 800px;
  margin: var(--space-lg) auto;
  text-align: left;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--card-radius);
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--color-primary);
  transition: transform var(--transition);
}

.problem-item:hover {
  transform: translateX(4px);
}

.problem-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.problem-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.problem-reassurance {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  opacity: 0.8;
  max-width: 600px;
  margin: var(--space-lg) auto var(--space-md);
}

@media (min-width: 768px) {
  .problem-item p {
    font-size: 17px;
  }
}


/* ============================================
   How It Works Section
   Buyer Psychology: Reduce Uncertainty, Show Simplicity
   ============================================ */

.how-it-works {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
}

.steps-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: var(--space-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step-item {
  text-align: center;
  padding: var(--space-lg);
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
}

.step-item h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  font-size: 20px;
}

.step-item p {
  color: var(--color-text-light);
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.step-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--color-primary), transparent);
  opacity: 0.4;
}

@media (min-width: 768px) {
  .steps-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    margin-top: 28px;
    flex-shrink: 0;
  }

  .step-item {
    flex: 1;
  }
}


/* ============================================
   Live Online Indicator
   Buyer Psychology: Availability, Immediacy
   ============================================ */

.urgency-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-success);
  margin-bottom: var(--space-md);
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(var(--color-success-rgb), 0.08);
  border: 1px solid rgba(var(--color-success-rgb), 0.2);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  animation: live-blink 1.5s ease-in-out infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--color-success-rgb), 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 8px 4px rgba(var(--color-success-rgb), 0.2); }
}


/* ============================================
   Services Page Hero
   Buyer Psychology: Emotional framing before options
   ============================================ */

.services-page-hero {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
}

.services-page-hero h1 {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.services-hero-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-light);
  opacity: 0.85;
  max-width: 650px;
  margin: 0 auto;
}


/* ============================================
   Floating Social Sidebar (Left)
   Fixed vertical strip with socials + online status
   ============================================ */

.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 10px;
  background: rgba(var(--color-secondary-rgb), 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 12px 12px 0;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.social-sidebar-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.2);
  margin-bottom: 4px;
}

.social-sidebar-status .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  animation: live-blink 1.5s ease-in-out infinite;
}

.social-sidebar-status span {
  font-size: 9px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.social-sidebar a:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: scale(1.15);
}

.social-sidebar a svg {
  width: 16px;
  height: 16px;
}

/* Hide sidebar on small mobile (too cramped) */
@media (max-width: 767px) {
  .social-sidebar {
    display: none;
  }
}
