/* Oshun Cosmetics Limited - v2 Styles — Luxury Edition */

:root {
  /* Colors — Navy & Gold Luxury Palette */
  --color-primary: #0f172a;
  /* Deep Navy */
  --color-secondary: #c9a84c;
  /* Warm Gold */
  --color-gold-light: #D8CFB0;
  /* Soft Gold */
  --color-bg-light: #faf8f5;
  /* Warm Cream */
  --color-text-dark: #0f172a;
  /* Navy for text */
  --color-text-light: #64748b;
  /* Muted slate for subtext */
  --color-white: #ffffff;

  /* Fonts */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;

  /* Spacing */
  --spacing-section: 6rem;
  --spacing-container: 1.5rem;

  /* Luxury Shadows */
  --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lifted: 0 12px 40px rgba(15, 23, 42, 0.1);
  --shadow-gold-glow: 0 0 20px rgba(201, 168, 76, 0.25);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Luxury Section Divider */
.section-divider,
.procedure-section + .procedure-section::before {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  margin: 0 auto;
}

/* Fade-in on scroll animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-container);
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.text-gold {
  color: var(--color-secondary);
}

/* Buttons — Luxury Gold System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0.375rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  position: relative;
}

/* Booking buttons — all gold */
.btn-primary,
.btn-gold,
.btn-book {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-secondary);
}

.btn-primary:hover,
.btn-gold:hover,
.btn-book:hover {
  background-color: #b8963f;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.2);
}

/* WhatsApp buttons — all green */
.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border: 1px solid transparent;
}

.btn-whatsapp:hover {
  background-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Header — Refined Luxury */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 0.875rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--color-text-dark);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-secondary);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover {
  color: var(--color-secondary);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section — Cinematic Luxury */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Fallback hero background image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.6) 40%,
    rgba(15, 23, 42, 0.75) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-logo {
  max-width: 280px;
  margin: 0 auto 2.5rem;
  filter: brightness(0) invert(1);
}

/* Gold accent line above headline */
.hero-accent-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-secondary);
  margin: 0 auto 1.5rem;
}

.hero-title {
  font-size: 3.75rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.06em;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-secondary);
  font-size: 0.85rem;
  padding: 1rem 2.5rem;
}

.hero .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.hero .btn-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  padding: 1rem 2.5rem;
}

.hero .btn-outline:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background: rgba(201, 168, 76, 0.08);
}

/* Section Title — Luxury Underline Accent */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

/* Procedure Sections */
.procedure-section {
  padding: 1.25rem 0;
  border-bottom: none;
  overflow: hidden;
  /* For animations */
}

.procedure-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: stretch;
}

.procedure-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.procedure-title {
  font-size: 2.75rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.25rem;
}

.procedure-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25em;
  bottom: 0.25em;
  width: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.procedure-desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.services-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.category-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  margin-top: 1.25rem;
}

.category-column .category-title:first-child {
  margin-top: 0;
}

.procedure-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

.procedure-item button {
  width: 100%;
  text-align: left;
  padding: 0.875rem 1.5rem;
  background: var(--color-white);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.procedure-item button:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
  background: rgba(201, 168, 76, 0.04);
}

.procedure-item button::after {
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--color-secondary);
  border-bottom: 1.5px solid var(--color-secondary);
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.procedure-item button:hover::after {
  opacity: 1;
}

.section-image-wrapper {
  position: relative;
  min-height: 260px;
  /* Stretches to match content height */
  border-radius: 0.75rem;
  overflow: hidden;
  /* Initial state for animation */
  opacity: 0;
  /* Slower animation: 2s */
  transition: all 2s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-soft);
}

.section-image-wrapper:hover {
  box-shadow: var(--shadow-lifted);
}

.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-image-wrapper:hover .section-image {
  transform: scale(1.03);
}

/* Alternating Layout */
.procedure-section:nth-child(even) .procedure-grid {
  direction: rtl;
  /* Flip the grid */
}

.procedure-section:nth-child(even) .procedure-content {
  direction: ltr;
  /* Reset content direction */
}

/* Animations */
.slide-in-left {
  opacity: 0;
  transform: translateX(-100%);
  /* Start furthest left (side of page) */
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100%);
  /* Start furthest right */
}

.animate-in {
  opacity: 1;
  transform: translateX(0);
  /* Move to center */
}

/* Procedure Details Hover — Luxury Popup */
.procedure-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 248, 245, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 2.5rem;
  text-align: left;
  direction: ltr;
  backdrop-filter: blur(4px);
}

.procedure-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-content h4 {
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.popup-content h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-secondary);
}

.popup-list li {
  display: flex;
  align-items: start;
  margin-bottom: 0.625rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.popup-list li::before {
  content: '\2022';
  color: var(--color-secondary);
  margin-right: 0.625rem;
  font-weight: bold;
}

.popup-list.benefits li::before {
  content: '\2713';
  color: var(--color-primary);
}

.popup-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin: 0.75rem 0 0.4rem;
  font-weight: 600;
}

.popup-label:first-of-type {
  margin-top: 0;
}

/* Dimming effect on image when popup is active */
.section-image-wrapper.has-active-popup .section-image {
  opacity: 0.15;
  filter: grayscale(100%);
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  background: var(--color-bg-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 1px;
}

.feature-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--color-text-light);
  line-height: 1.7;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lifted);
  border-color: rgba(201, 168, 76, 0.25);
}

/* Footer — Luxury Dark */
footer {
  background-color: #0f172a;
  color: #e2e8f0;
  padding: 3rem 0 1.5rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-hours h4 {
  color: var(--color-secondary);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1rem;
}

/* Branding Col */
.footer-logo {
  max-width: 160px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 300px;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.footer-links a {
  display: block;
  padding: 0.35rem 0;
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 0.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--color-white);
}

/* Contact Col */
.footer-contact-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.footer-hours .hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94a3b8;
  padding: 0.2rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--color-secondary);
  margin-top: 0.2rem;
}

/* Visit Us / Map */
.map-placeholder {
  background: #f1f5f9;
  border-radius: 0.75rem;
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.map-error-msg {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.error-icon {
  width: 30px;
  height: 30px;
  background: #94a3b8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.map-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-primary);
  /* Royal Blue */
  color: white;
  padding: 1rem;
  font-size: 0.85rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #64748b;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.separator {
  color: #475569;
}

.footer-bottom-links a:hover {
  color: var(--color-secondary);
}


/* Floating Actions - Bottom Right — Luxury Gold */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  z-index: 900;
}

.action-btn {
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-gold-glow);
}

.calendar-btn {
  width: 50px;
  height: 50px;
  background: var(--color-secondary);
  color: var(--color-primary);
}

.learn-more-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chat-btn {
  width: 60px;
  height: 60px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.2rem;
}

/* Mega Menu Styles - Refined Dark Theme */
.nav-item.has-dropdown {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}

/* ── Mega Menu ── */
.mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 96vw;
  max-width: 1200px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1), visibility 0s 0.4s;
  z-index: 1000;
  padding-top: 0;
}

/* Invisible bridge between nav link and dropdown — prevents gap hover-out */
.mega-menu-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.nav-item.has-dropdown:hover .mega-menu-wrapper,
.nav-item.has-dropdown:focus-within .mega-menu-wrapper,
.nav-item.has-dropdown.menu-open .mega-menu-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1), visibility 0s 0s;
}

.mega-menu-container {
  background: #faf9f7;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(216, 207, 176, 0.15);
  border: 1px solid rgba(216, 207, 176, 0.25);
}

.mega-menu-grid {
  display: flex;
  min-height: 420px;
  font-size: 0.875em;
}

/* Column 1: Categories (Dark Sidebar) */
.categories-column {
  flex: 1;
  background: linear-gradient(180deg, #0c1425 0%, #0f172a 100%);
  padding: 1.75rem 0;
  border-right: 1px solid rgba(216, 207, 176, 0.1);
  border-radius: 0.75rem 0 0 0.75rem;
}

.category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #c9a84c;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  letter-spacing: 0.01em;
}

.category-btn small {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: #7a8a9e;
  margin-top: 0.15rem;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
}

.category-btn:hover {
  color: #e2c66b;
  background: rgba(216, 207, 176, 0.06);
  border-left-color: rgba(216, 207, 176, 0.3);
}

.category-btn.active {
  background: #D8CFB0;
  color: #0f172a;
  border-left-color: #c9a84c;
  border-radius: 0 0.4rem 0.4rem 0;
}

.category-btn.active small {
  color: #3a3520;
}

/* Column 2: Procedures */
.procedures-column {
  flex: 1;
  padding: 2rem 1.75rem;
  background: #fff;
  border-right: 1px solid #eee;
}

.menu-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #0f172a;
  padding-bottom: 0;
  border-bottom: none;
}

.procedures-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-proc-btn {
  text-align: left;
  background: #f8f8f6;
  border: 1px solid #eee;
  padding: 0.65rem 1rem;
  border-radius: 0.35rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
  font-weight: 500;
  font-size: 0.82rem;
  color: #334155;
  font-family: var(--font-sans);
}

.menu-proc-btn:hover {
  background: #f0ede6;
  color: #0f172a;
  border-color: #d4cfb8;
}

.menu-proc-btn.active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

/* Column 3: Details */
.details-column {
  flex: 1;
  background: #fff;
  padding: 1.75rem 1.75rem;
  position: relative;
  min-width: 0;
  border-radius: 0 0.75rem 0.75rem 0;
}

.detail-view {
  animation: fadeIn 0.3s cubic-bezier(.4,0,.2,1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.detail-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.detail-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: auto;
}

.detail-section h5.detail-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c9a84c;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.bullet-list li::before {
  content: '\2022';
  color: #c9a84c;
  font-size: 1.1em;
  line-height: 1.4;
}

.check-list li::before {
  content: '\2713';
  color: #c9a84c;
  font-weight: 600;
  font-size: 0.85em;
}

.mega-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #0f172a;
  color: #D8CFB0;
  padding: 0.65rem 1.5rem;
  border-radius: 0.4rem;
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 1.25rem;
  align-self: stretch;
  text-align: center;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  letter-spacing: 0.02em;
  border: 1px solid rgba(216, 207, 176, 0.2);
}

.mega-menu-cta:hover {
  background: #1e293b;
  color: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #b5a77c;
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.7;
}

.empty-state .icon-placeholder {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .procedure-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .procedure-section:nth-child(even) .procedure-grid {
    direction: ltr;
  }

  .procedure-section {
    padding: 2rem 0;
  }

  .section-image-wrapper {
    min-height: 280px;
    max-height: 350px;
    order: -1;
  }

  .slide-in-left,
  .slide-in-right {
    transform: translateY(50px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .procedure-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .header-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.25rem;
    letter-spacing: 0.03em;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .procedure-title {
    font-size: 1.875rem;
  }

  .procedure-list {
    grid-template-columns: 1fr;
  }
}

/* ============================
   Procedure Page Luxury Styles
   (affects botox.html and all procedure pages)
   ============================ */

/* Procedure Hero — Taller, richer gradient */
.proc-hero {
  padding: 9rem 0 7rem !important;
  background-size: cover !important;
  background-position: center !important;
}

.proc-hero h1 {
  font-weight: 400 !important;
  letter-spacing: 0.02em;
}

.proc-hero h4 {
  color: var(--color-gold-light, #D8CFB0) !important;
  font-family: var(--font-sans) !important;
}

/* Breadcrumbs — Subtle luxury */
.breadcrumbs {
  background: #f8f7f4 !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 1.25rem 0 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em;
}

/* Sidebar — Gold accent */
.sidebar {
  border-top: 3px solid var(--color-secondary, #c9a84c) !important;
  background: #faf9f7 !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
}

.sidebar h4 {
  font-family: var(--font-serif) !important;
  color: var(--color-primary, #0f172a) !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.01em;
}

/* Benefits cards — Gold icon, hover lift */
.benefit-card {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
  border-color: rgba(201, 168, 76, 0.15) !important;
  background: var(--color-white, #fff) !important;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
  border-color: rgba(201, 168, 76, 0.3) !important;
}

.benefit-icon {
  color: var(--color-secondary, #c9a84c) !important;
  font-size: 1.75rem !important;
}

/* FAQ Accordions — Smooth & gold accent */
.faq-item {
  transition: all 0.3s ease !important;
  border-color: rgba(201, 168, 76, 0.15) !important;
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.3) !important;
}

.faq-item.open {
  border-color: var(--color-secondary, #c9a84c) !important;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.1);
}

.faq-question {
  transition: background 0.3s ease !important;
}

.faq-question:hover {
  background: #faf9f7 !important;
}

.faq-item.open .faq-answer {
  max-height: 400px !important;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.faq-icon {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Sticky Bottom Bar — Refined */
.sticky-bar {
  border-top: 2px solid var(--color-secondary, #c9a84c) !important;
  box-shadow: 0 -4px 30px rgba(15, 23, 42, 0.08) !important;
}

.btn-book {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.btn-call {
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btn-call:hover {
  border-color: var(--color-secondary, #c9a84c) !important;
  color: var(--color-secondary, #c9a84c) !important;
}

/* CTA blocks in procedure pages */
.proc-cta-block,
main > div[style*="background: #f3f4f6"] {
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
}

/* Section headings in procedure content */
main h2,
main h3 {
  position: relative;
}


/* ============================
   End Procedure Page Styles
   ============================ */

/* Skip Navigation */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-secondary, #c9a84c);
  color: var(--color-primary, #0f172a);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-nav:focus { top: 0; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}