/* Riverside Plastic Surgery - Design System */

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
}

/* Typography - Clear hierarchy with refined styling */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.3;
  color: #1a3a5c;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #2a7fba;
  text-decoration: none;
}

/* Utility Classes */
.relative {
  position: relative;
}

a:hover {
  text-decoration: underline;
}

/* Container - centered max width with proper padding */
.container {
  max-width: 1152px; /* Tailwind's max-w-6xl equivalent (72rem = 1152px) */
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0;
  }
}

/* Sections - Increased vertical spacing for premium feel */
section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  section {
    padding: 5rem 0; /* py-20 equivalent: 80px = 5rem */
  }
}

section:nth-child(even) {
  background-color: #f8fafb;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  font-size: 2rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Buttons - Pill shaped with generous padding */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px; /* pill shape / rounded-full */
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #2a7fba;
  color: #fff;
}

.btn-primary:hover {
  background-color: #1e6a9e;
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: #2a7fba;
  border: 2px solid #2a7fba;
}

.btn-secondary:hover {
  background-color: #2a7fba;
  color: #fff;
  text-decoration: none;
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Cards - Premium styling with better depth */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card h3 {
  color: #1a3a5c;
}

.card ul {
  list-style: none;
  margin-top: 1rem;
}

.card ul li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.card ul li::before {
  content: "\2713";
  color: #2a7fba;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

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

/* Hero Section - Premium two-column layout */
.hero {
  position: relative;
  overflow: hidden;
  background: #020617; /* slate-950 equivalent */
  padding: 5rem 0;
}

.hero-gradient-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.32), transparent 60%);
}

@media (min-width: 1024px) {
  .hero {
    padding: 6rem 0;
  }
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a3a5c;
}

.hero .subline {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid #d9e6ed;
  padding-top: 2rem;
  margin-top: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  font-size: 0.95rem;
}

.trust-item .icon {
  color: #2a7fba;
  font-size: 1.25rem;
}

/* Trust Pillars */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.pillar {
  padding: 1.5rem;
}

.pillar .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pillar h3 {
  margin-bottom: 0.75rem;
}

.pillar p {
  color: #666;
  font-size: 0.95rem;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #2a7fba;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.step h3 {
  margin-bottom: 0.75rem;
}

.step p {
  color: #666;
  font-size: 0.95rem;
}

/* Gallery / Before-After - responsive grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
  justify-items: center;
}

.gallery-item {
  background: #e8f4fa;
  border-radius: 12px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a7fba;
  font-weight: 500;
  border: 2px dashed #c5dce8;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

.testimonial .author {
  font-weight: 600;
  color: #1a3a5c;
  font-style: normal;
}

/* FAQ Section - refined with panel background */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(42, 56, 73, 0.3);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(139, 122, 184, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(139, 122, 184, 0.2);
  padding: 1.75rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.faq-answer {
  color: #555;
  line-height: 1.7;
}

/* CTA Strip */
.cta-strip {
  background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta-strip h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-strip .btn-primary {
  background: #fff;
  color: #1a3a5c;
}

.cta-strip .btn-primary:hover {
  background: #e8f4fa;
}

/* "Right for me" section */
.fit-section {
  max-width: 800px;
  margin: 0 auto;
}

.fit-section ul {
  list-style: none;
  margin: 1.5rem 0;
}

.fit-section ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.fit-section ul li::before {
  content: "\2192";
  color: #2a7fba;
  position: absolute;
  left: 0;
}

/* Header */
header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e8ed;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a3a5c;
}

/* Desktop Nav - Hidden on mobile */
.desktop-nav {
  display: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #2a7fba;
}

/* Hamburger Button - Shown on mobile only */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #1a3a5c;
  transition: all 0.3s ease;
}

/* Mobile Menu Panel */
.mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid #e0e8ed;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-menu--open {
  display: block;
  max-height: 100vh;
}

.mobile-menu nav ul {
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.mobile-menu nav ul li {
  border-bottom: 1px solid #e0e8ed;
}

.mobile-menu nav ul li:last-child {
  border-bottom: none;
}

.mobile-menu nav ul li a {
  display: block;
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
}

.mobile-menu nav ul li a.btn {
  margin: 1rem 1.5rem;
  text-align: center;
  width: calc(100% - 3rem);
}

/* Desktop styles (md+) */
@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }
  
  .hamburger {
    display: none;
  }
  
  .mobile-menu,
  .mobile-menu.mobile-menu--open {
    display: none;
  }
}

/* Mobile styles */
@media (max-width: 767.98px) {
  header {
    padding: 0.75rem 0; /* Reduced padding on mobile (py-3) */
  }
}

/* Footer */
footer {
  background: #1a3a5c;
  color: #c5dce8;
  padding: 2rem 0;
  text-align: center;
}

footer p {
  margin-bottom: 0.5rem;
}

/* Plastic / cosmetic surgery theme - Premium color palette */
.theme-plastic {
  --accent: #8B7AB8; /* Muted royal purple/amethyst */
  --accent-soft: #2D3A4A; /* Deep slate for borders */
  --accent-hover: #A293C8;
  --accent-hover-dark: #7A69A7;
  --bg-dark: #1A2332; /* Deep ink/midnight blue base */
  --bg-darker: #141B28; /* Darker variant for layering */
  --bg-light: #243442; /* Slightly lighter for panels */
  --bg-card: #2A3849; /* Warm slate/graphite for cards */
  --text-primary: #E8EDF2; /* Softer white, not pure */
  --text-secondary: #B8C5D0; /* Softer slate for body text */
  --text-muted: #8899A6; /* Stone color for muted text */
  --text-on-accent: #FAFBFC;
}

/* Dark background for plastic theme - warmer navy/charcoal */
.theme-plastic {
  background-color: var(--bg-dark);
  color: var(--text-secondary);
}

.theme-plastic h1,
.theme-plastic h2,
.theme-plastic h3,
.theme-plastic h4 {
  color: var(--text-primary);
}

.theme-plastic a {
  color: var(--accent);
}

.theme-plastic a:hover {
  color: var(--accent-hover);
}

/* Primary buttons - softer purple accent */
.theme-plastic .btn-primary {
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

.theme-plastic .btn-primary:hover,
.theme-plastic .btn-primary:focus-visible {
  background-color: var(--accent-hover-dark);
  color: var(--text-on-accent);
}

/* Secondary buttons - ghost/outline style */
.theme-plastic .btn-secondary {
  color: var(--text-secondary);
  border-color: var(--text-muted);
  background-color: transparent;
}

.theme-plastic .btn-secondary:hover {
  background-color: var(--bg-light);
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

/* Header styling */
.theme-plastic header {
  background: var(--bg-darker);
  border-bottom-color: var(--accent-soft);
}

.theme-plastic .logo {
  color: var(--text-primary);
}

.theme-plastic nav a {
  color: var(--text-secondary);
}

.theme-plastic nav a:hover {
  color: var(--accent);
}

/* Hero section - Two column layout */
.theme-plastic .hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  padding: 5rem 0;
}

.theme-plastic .hero h1 {
  color: var(--text-primary);
}

.theme-plastic .hero .subline {
  color: var(--text-secondary);
}

.theme-plastic .trust-strip {
  border-top-color: var(--accent-soft);
}

.theme-plastic .trust-item {
  color: var(--text-secondary);
}

.theme-plastic .trust-item .icon {
  color: var(--accent);
}

/* Hero two-column layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-content h1 {
  margin-bottom: 1rem;
}

.hero-content .subline {
  text-align: left;
  margin: 0 0 1.5rem 0;
}

.hero-content .hero-buttons {
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.hero-content .trust-strip {
  justify-content: flex-start;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.hero-image-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(139, 122, 184, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-placeholder {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--accent-soft) 100%);
  border-radius: 16px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  text-align: center;
  padding: 1.5rem;
  border: 2px solid rgba(139, 122, 184, 0.15);
  position: relative;
}

.hero-image-placeholder::before {
  content: "Board-certified surgeon";
  /* Mobile: normal positioning, no overlap */
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Desktop (md+): reintroduce overlap */
@media (min-width: 768px) {
  .hero-image-placeholder::before {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(0.625rem);
    margin-bottom: 0;
  }
}

.hero-image-placeholder .placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.surgeon-photo-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 1rem;
}

.surgeon-photo-ring {
  /* Mobile: w-28 h-28 (7rem = 28 * 0.25rem) */
  height: 7rem;
  width: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  /* Ring styling */
  box-shadow: 0 0 0 2px rgba(241, 245, 249, 0.6), /* ring-2 ring-slate-100/60 */
              0 0 0 6px rgba(15, 23, 42, 0.7), /* ring-offset-4 ring-offset-slate-900/70 */
              0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
}

/* Desktop (md+): w-36 h-36 */
@media (min-width: 768px) {
  .surgeon-photo-ring {
    height: 9rem; /* 36 * 0.25rem */
    width: 9rem;
  }
}

@media (min-width: 1024px) {
  .surgeon-photo-ring {
    /* Desktop: w-40 h-40 (10rem = 40 * 0.25rem) */
    height: 10rem;
    width: 10rem;
  }
}

.surgeon-photo {
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  object-fit: cover;
  object-position: center;
}

.doctor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.5rem;
}

.doctor-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

.doctor-proof {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0.125rem 0 0 0;
}

.hero-image-caption {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-image-caption::after {
  content: "Over 15 years experience · Private clinic";
  display: block;
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Section backgrounds */
.theme-plastic section {
  background-color: var(--bg-dark);
}

.theme-plastic section:nth-child(even) {
  background-color: var(--bg-darker);
}

.theme-plastic .section-subtitle {
  color: var(--text-muted);
}

/* Cards with premium styling for dark theme */
.theme-plastic .card {
  background: var(--bg-card);
  border: 1px solid rgba(139, 122, 184, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
}

.theme-plastic .card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(139, 122, 184, 0.2);
  transform: translateY(-2px);
}

.theme-plastic .card h3 {
  color: var(--text-primary);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.theme-plastic .card p {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1rem;
}

.theme-plastic .card ul li::before {
  color: var(--accent);
}

/* Card icons - circular containers */
.card-icon {
  font-size: 2.5rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--accent-soft) 100%);
  border-radius: 50%;
  border: 2px solid rgba(139, 122, 184, 0.2);
}

/* Trust pillars */
.theme-plastic .pillar p {
  color: var(--text-muted);
}

/* Combined Trust & Journey Section - tinted panel */
.trust-journey-section {
  padding: 4rem 0;
  background: var(--bg-darker);
}

@media (min-width: 1024px) {
  .trust-journey-section {
    padding: 5rem 0;
  }
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  background: rgba(42, 56, 73, 0.3);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(139, 122, 184, 0.1);
}

.trust-row .pillar {
  text-align: center;
  padding: 1rem;
}

.trust-row .pillar .icon {
  font-size: 2.5rem;
  margin: 0 auto 1rem;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--accent-soft) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(139, 122, 184, 0.2);
}

.trust-row .pillar p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* Journey Timeline - enhanced with icons and better spacing */
.journey-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem 0;
  background: rgba(42, 56, 73, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 4.5rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.timeline-step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.timeline-step .step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(139, 122, 184, 0.4);
  border: 3px solid var(--bg-darker);
}

.timeline-step h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 600;
}

/* Process steps */
.theme-plastic .step-number {
  background: var(--accent);
}

.theme-plastic .step p {
  color: var(--text-muted);
}

/* Gallery items - pill tabs/compact cards with active state */
.theme-plastic .gallery-item {
  background: var(--bg-card);
  border: 2px solid rgba(139, 122, 184, 0.2);
  color: var(--text-secondary);
  border-radius: 9999px;
  height: auto;
  padding: 1rem 1.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-plastic .gallery-item:hover,
.theme-plastic .gallery-item.active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 4px 12px rgba(139, 122, 184, 0.3);
}

/* Hero before/after card - wider with clear split layout */
.hero-result-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(139, 122, 184, 0.2);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-result-card .result-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-result-card .result-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-result-card .result-badge--before {
  background: rgba(42, 56, 73, 0.8);
  color: var(--text-secondary);
}

.hero-result-card .result-badge--after {
  background: var(--accent);
  color: var(--text-on-accent);
}

.hero-result-card .result-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-light);
  border: 2px solid rgba(139, 122, 184, 0.15);
  aspect-ratio: 3 / 4;
  width: 100%;
}

.hero-result-card .result-image-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-result-card .result-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.75rem;
  font-weight: 500;
}

.results-disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  opacity: 0.7;
}

/* Testimonials - proper cards with quote styling */
.theme-plastic .testimonial {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
  border: 1px solid rgba(139, 122, 184, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.theme-plastic .testimonial::before {
  content: """;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
}

.theme-plastic .testimonial p {
  color: var(--text-secondary);
  font-style: italic;
  padding-top: 2rem;
  line-height: 1.7;
}

.theme-plastic .testimonial .author {
  color: var(--text-primary);
  font-weight: 600;
  font-style: normal;
  display: block;
  margin-top: 1rem;
}

/* Fit section - Surgery right for me card */
.theme-plastic .fit-section ul li::before {
  color: var(--accent);
}

.fit-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(139, 122, 184, 0.2);
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 2rem 0;
}

.fit-column {
  background: rgba(26, 35, 50, 0.4);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(139, 122, 184, 0.15);
}

.fit-column h4 {
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.fit-column.good {
  border-color: rgba(127, 183, 126, 0.3);
}

.fit-column.good h4 {
  color: #8FC78E;
}

.fit-column.not-good {
  border-color: rgba(232, 168, 124, 0.3);
}

.fit-column.not-good h4 {
  color: #E8A87C;
}

.fit-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fit-column ul li {
  padding: 0.625rem 0 0.625rem 2rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
}

.fit-column.good ul li::before {
  content: "✓";
  color: #8FC78E;
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.125rem;
}

.fit-column.not-good ul li::before {
  content: "✗";
  color: #E8A87C;
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.125rem;
}

.fit-reassurance {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 122, 184, 0.2);
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
}

/* FAQ Section - Accordion style with better spacing */
.theme-plastic .faq-item {
  border-bottom-color: rgba(139, 122, 184, 0.2);
  padding: 1.75rem 0;
}

.theme-plastic .faq-question {
  color: var(--text-primary);
  font-size: 1.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.theme-plastic .faq-question:hover {
  color: var(--accent);
}

.theme-plastic .faq-question:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.theme-plastic .faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.theme-plastic .faq-item--open .faq-question::after {
  content: "−";
  transform: rotate(0deg);
}

.theme-plastic .faq-answer {
  color: var(--text-muted);
  margin-top: 1rem;
  padding-left: 0;
  line-height: 1.7;
  display: none;
  font-size: 0.95rem;
}

.theme-plastic .faq-item--open .faq-answer {
  display: block;
}

/* CTA strip - rich gradient with strong hierarchy */
.theme-plastic .cta-strip {
  background: linear-gradient(135deg, #2A3849 0%, #1A2332 100%);
  padding: 5rem 0;
  border-top: 1px solid rgba(139, 122, 184, 0.2);
}

@media (min-width: 1024px) {
  .theme-plastic .cta-strip {
    padding: 6rem 0;
  }
}

.theme-plastic .cta-strip h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.theme-plastic .cta-strip p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.theme-plastic .cta-strip .btn-primary {
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 1.25rem 3rem;
  box-shadow: 0 6px 20px rgba(139, 122, 184, 0.4);
}

.theme-plastic .cta-strip .btn-primary:hover,
.theme-plastic .cta-strip .btn-primary:focus-visible {
  background: var(--accent-hover-dark);
  color: var(--text-on-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 122, 184, 0.5);
}

/* Footer - understated with dimmed colors */
.theme-plastic footer {
  background: var(--bg-darker);
  color: var(--text-muted);
  padding: 2.5rem 0 2rem;
}

.theme-plastic footer p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.theme-plastic footer a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.theme-plastic footer a:hover {
  color: var(--accent);
}

/* Section title with refined styling */
.theme-plastic .section-title {
  position: relative;
  padding-bottom: 1rem;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.theme-plastic .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

/* Demo Banner */
.demo-banner {
  background-color: var(--bg-darker);
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.demo-banner a {
  color: var(--accent);
}

.demo-banner a:hover {
  color: var(--accent-hover);
}

/* Demo Note in Footer */
.demo-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--accent-soft);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.demo-note p {
  margin-bottom: 0.5rem;
}

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

.demo-note a:hover {
  color: var(--accent);
}

/* Brand links - scroll to top */
.brand-link,
.footer-brand {
  color: inherit;
  text-decoration: none;
}

.brand-link:hover,
.footer-brand:hover {
  text-decoration: none;
  color: inherit;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-4,
  .trust-pillars,
  .process-steps,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content .subline {
    text-align: center;
  }
  
  .hero-content .hero-buttons {
    justify-content: center;
  }
  
  .hero-content .trust-strip {
    justify-content: center;
  }
  
  .hero-result-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .journey-timeline {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .journey-timeline::before {
    display: none;
  }
  
  .timeline-step {
    flex: 0 0 calc(50% - 1rem);
  }
  
  .fit-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .grid-2,
  .grid-3,
  .grid-4,
  .trust-pillars,
  .process-steps,
  .trust-row,
  .gallery-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .trust-row {
    padding: 2rem 1.5rem;
  }
  
  .journey-timeline {
    padding: 2rem 1.5rem;
  }
  
  .timeline-step {
    flex: 0 0 100%;
  }
  
  .trust-strip {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .fit-card {
    padding: 2rem 1.5rem;
  }
  
  .fit-column {
    padding: 1.5rem;
  }
  
  .faq-list {
    padding: 2rem 1.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
}

/* Mobile Sticky CTA - Book Consult button fixed at bottom */
.mobile-sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 30;
  display: none; /* Hidden by default; shown on mobile via media query and managed by JS for menu state */
}

.mobile-sticky-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
}

/* Show on mobile only (below 768px) */
@media (max-width: 767.98px) {
  .mobile-sticky-cta {
    display: block;
  }
}

/* Hide sticky CTA when hero is visible */
.mobile-sticky-cta.hidden-by-hero {
  display: none !important;
}

/* Theme-specific styling for mobile sticky button */
.theme-plastic .mobile-sticky-cta .mobile-sticky-btn {
  background-color: var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 4px 16px rgba(139, 122, 184, 0.4);
}

.theme-plastic .mobile-sticky-cta .mobile-sticky-btn:hover,
.theme-plastic .mobile-sticky-cta .mobile-sticky-btn:active {
  background-color: var(--accent-hover-dark);
  transform: scale(0.95);
  text-decoration: none;
}
