/* ============================================
   The Dental Lounge - Premium CSS
   Color Palette: Peach & Gold Luxury
   ============================================ */

:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --gold-dark:   #9E7A4A;
  --peach:       #F5E6DA;
  --peach-mid:   #EDD5C0;
  --peach-dark:  #D4A88A;
  --cream:       #FBF7F2;
  --white:       #FFFFFF;
  --dark:        #1A1A1A;
  --dark-2:      #2C2C2C;
  --text:        #4A3728;
  --text-light:  #8B7355;
  --border:      rgba(201,169,110,0.25);
  --shadow:      0 8px 40px rgba(201,169,110,0.18);
  --shadow-sm:   0 4px 20px rgba(0,0,0,0.08);
  --radius:      14px;
  --radius-lg:   24px;
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
  color: var(--dark);
}
a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
p { font-weight: 300; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Selection ── */
::selection { background: var(--gold-light); color: var(--dark); }

/* ── Top Bar ── */
.top-bar {
  background: var(--dark);
  padding: 9px 0;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.top-bar span, .top-bar-link {
  color: var(--gold-light);
  font-weight: 400;
}
.top-bar-link:hover { color: var(--white); }

/* ── Navbar ── */
.main-navbar {
  background: rgba(251,247,242,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: var(--transition);
  z-index: 1040;
}
.main-navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.brand-logo { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  letter-spacing: 0.02em;
}
.brand-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  margin-top: 3px;
}

.navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: 8px 16px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: var(--gold-dark) !important; }


/* Hover dropdown — menu stays hidden until the parent nav item is hovered */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}
.nav-item.dropdown:hover .mega-menu,
.mega-menu.show {
    display: flex;
    margin-top: 0;
}

/* Smooth effect */
.dropdown-menu {
    transition: all 0.3s ease;
}


/* Mega Menu */
.mega-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 480px;
  box-shadow: var(--shadow);
  background: var(--white);
  flex-direction: row;
  gap: 24px;
}

.mega-col { flex: 1; }
.mega-heading {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mega-menu .dropdown-item {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  padding: 6px 0;
  background: transparent;
  border-radius: 0;
  border-bottom: none;
  letter-spacing: 0.02em;
}
.mega-menu .dropdown-item:hover { color: var(--gold-dark); padding-left: 8px; }

/* ── Buttons ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white) !important;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.5);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}
.btn-gold.btn-sm { padding: 8px 20px; font-size: 12px; }
.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark) !important;
  border: 1.5px solid var(--gold);
  padding: 11px 30px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white) !important;
  transform: translateY(-2px);
}
.btn-outline-gold.btn-sm { padding: 7px 18px; font-size: 12px; }
.btn-light-outline {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-light-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
  position: relative;
  padding: 0 20px;
}
.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-tag::before { right: 100%; margin-right: -20px; }
.section-tag::after  { left: 100%; margin-left: -20px; }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 18px;
  font-style: italic;
}
.section-title span { color: var(--gold-dark); font-style: normal; }
.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* ── Hero Section ── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, #2C1A0E 60%, #3D2410 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 800px 600px at 80% 50%, rgba(201,169,110,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(245,230,218,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-particles {
  position: absolute; inset: 0;
  background-image: radial-gradient(1px 1px at 20% 30%, rgba(201,169,110,0.4) 0px, transparent 0px),
    radial-gradient(1px 1px at 70% 20%, rgba(201,169,110,0.3) 0px, transparent 0px),
    radial-gradient(1px 1px at 50% 70%, rgba(201,169,110,0.2) 0px, transparent 0px),
    radial-gradient(1px 1px at 80% 60%, rgba(201,169,110,0.3) 0px, transparent 0px),
    radial-gradient(1px 1px at 10% 60%, rgba(201,169,110,0.25) 0px, transparent 0px);
  background-size: 300px 300px, 400px 400px, 350px 350px, 250px 250px, 320px 320px;
  opacity: 0.8;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 60px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-light);
  font-weight: 500;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-divider {
  width: 1px; height: 40px;
  background: rgba(201,169,110,0.3);
  align-self: center;
}

/* Hero Visual (right side) */
.hero-visual { position: relative; z-index: 2; }
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-img-frame img {
  width: 100%; height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.9);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, transparent 60%);
  border-radius: var(--radius-lg);
}
.hero-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  background: rgba(26,26,26,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
  min-width: 220px;
}
.hero-badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  flex-shrink: 0;
}
.hero-badge-text .badge-title {
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
}
.hero-badge-text .badge-sub {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  z-index: 3;
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: horizontal-tb;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Suite Cards (Home) ── */
.suite-section { background: var(--dark); padding: 100px 0; }
.suite-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.suite-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: var(--transition);
}
.suite-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.suite-card:hover::before { transform: scaleX(1); }
.suite-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-weight: 500;
}
.suite-badge-normal { background: rgba(201,169,110,0.15); color: var(--gold-light); border: 1px solid rgba(201,169,110,0.3); }
.suite-badge-royal  { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--white); }
.suite-icon { font-size: 40px; color: var(--gold); margin-bottom: 20px; }
.suite-name { font-family: var(--font-display); font-size: 28px; color: var(--white); margin-bottom: 10px; }
.suite-fee {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1;
}
.suite-fee-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.suite-desc { color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 28px; font-size: 15px; }
.suite-features { list-style: none; padding: 0; margin-bottom: 36px; }
.suite-features li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  font-size: 14px;
}
.suite-features li i { color: var(--gold); font-size: 12px; }

/* ── Services Grid ── */
.services-section { padding: 100px 0; background: var(--cream); }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--peach-dark));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold-light); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap {
  width: 64px; height: 64px;
  background: var(--peach);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--gold-light); }
.service-icon-wrap i { font-size: 26px; color: var(--gold-dark); }
.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-desc { font-size: 14px; color: var(--text-light); font-weight: 300; margin-bottom: 20px; }
.service-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-link i { transition: transform 0.3s; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ── Why Choose Us ── */
.why-section { padding: 100px 0; background: var(--peach); }
.why-card {
  text-align: center;
  padding: 36px 24px;
}
.why-icon {
  width: 80px; height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(201,169,110,0.2);
}
.why-icon i { font-size: 32px; color: var(--gold-dark); }
.why-title { font-family: var(--font-display); font-size: 22px; margin-bottom: 12px; }
.why-text { font-size: 14px; color: var(--text-light); font-weight: 300; }

/* ── Testimonials ── */
.testimonials-section { padding: 100px 0; background: var(--dark); }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-display); font-size: 16px; color: var(--white); }
.testimonial-location { font-size: 12px; color: var(--gold); letter-spacing: 0.05em; }

/* ── Blog Cards ── */
.blog-section { padding: 100px 0; background: var(--cream); }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-img {
  height: 220px;
  background: linear-gradient(135deg, var(--peach-dark), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-img-placeholder { font-size: 48px; color: var(--gold-dark); opacity: 0.4; }
.blog-body { padding: 28px 28px 24px; }
.blog-category {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-excerpt { font-size: 14px; color: var(--text-light); font-weight: 300; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; }
.blog-date { font-size: 12px; color: var(--text-light); }
.blog-read-more { font-size: 12px; color: var(--gold-dark); font-weight: 500; letter-spacing: 0.05em; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2C1A0E 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.12), transparent);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 300;
}
.page-hero h1 em { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 600px; margin: 0 auto; }
.breadcrumb-wrap { margin-top: 24px; }
.breadcrumb-wrap .breadcrumb { justify-content: center; background: transparent; padding: 0; }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: rgba(255,255,255,0.5); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ── About Page ── */
.about-section { padding: 100px 0; }
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 200px; height: 200px;
  background: var(--peach);
  border-radius: var(--radius);
  z-index: -1;
}
.about-img-badge {
  position: absolute;
  top: 32px; right: -20px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .badge-num { font-family: var(--font-display); font-size: 32px; display: block; line-height: 1; }
.about-img-badge .badge-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }

.about-lead { font-size: 20px; font-family: var(--font-display); font-style: italic; color: var(--text); margin-bottom: 20px; }
.about-values { margin-top: 40px; }
.about-value-item { display: flex; gap: 16px; margin-bottom: 28px; }
.about-value-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--peach);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.about-value-icon i { color: var(--gold-dark); font-size: 18px; }
.about-value-content h5 { font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; }
.about-value-content p { font-size: 14px; color: var(--text-light); margin: 0; font-weight: 300; }

/* ── Team ── */
.team-section { padding: 100px 0; background: var(--peach); }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-img {
  height: 280px;
  background: linear-gradient(135deg, var(--peach), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--gold-dark); opacity: 0.3;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 24px 20px 28px; }
.team-name { font-family: var(--font-display); font-size: 22px; margin-bottom: 4px; }
.team-title { font-size: 12px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.team-bio { font-size: 14px; color: var(--text-light); font-weight: 300; }

/* ── Gallery ── */
.gallery-section { padding: 100px 0; }
.gallery-filter { text-align: center; margin-bottom: 48px; }
.filter-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-light);
  padding: 8px 22px;
  border-radius: 50px;
  margin: 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.gallery-grid { column-count: 3; column-gap: 20px; }
@media (max-width: 768px) { .gallery-grid { column-count: 2; } }
@media (max-width: 480px) { .gallery-grid { column-count: 1; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-family: var(--font-display); font-size: 16px; }
/* Placeholder gallery items */
.gallery-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--peach), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--gold-dark); opacity: 0.5;
}

/* ── Appointment Form ── */
.appointment-section { padding: 100px 0; }
.appt-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) { .appt-form-wrap { padding: 36px 24px; } }
.form-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
  background: var(--white);
}
.suite-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.suite-option { cursor: pointer; }
.suite-option input[type="radio"] { display: none; }
.suite-option-label {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 20px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}
.suite-option input:checked + .suite-option-label {
  border-color: var(--gold);
  background: var(--peach);
  box-shadow: 0 0 0 2px var(--gold-light);
}
.suite-option-label .suite-opt-name { font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; }
.suite-option-label .suite-opt-fee { font-size: 22px; color: var(--gold-dark); font-family: var(--font-display); }
.suite-option-label .suite-opt-desc { font-size: 12px; color: var(--text-light); margin-top: 4px; }

.appt-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  height: 100%;
}
.appt-info-title { font-family: var(--font-display); font-size: 28px; color: var(--white); margin-bottom: 8px; }
.appt-info-sub { color: var(--gold); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 32px; }
.appt-info-list { list-style: none; padding: 0; }
.appt-info-list li {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.appt-info-list li:last-child { border-bottom: none; }
.appt-info-list li i { color: var(--gold); width: 18px; flex-shrink: 0; margin-top: 2px; }

/* ── Contact ── */
.contact-section { padding: 100px 0; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.contact-card:hover { box-shadow: var(--shadow); border-color: var(--gold-light); }
.contact-icon {
  width: 64px; height: 64px;
  background: var(--peach);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.contact-icon i { font-size: 24px; color: var(--gold-dark); }
.contact-card h5 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 15px; color: var(--text-light); font-weight: 300; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-frame iframe { display: block; }

/* ── Blog Detail ── */
.blog-detail { padding: 80px 0; }
.blog-detail-header { margin-bottom: 48px; }
.blog-category-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  font-weight: 500;
}
.blog-detail-title {
  font-size: clamp(28px, 4vw, 50px);
  color: var(--dark);
  margin-bottom: 16px;
}
.blog-detail-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}
.blog-detail-content h2,h3 { font-family: var(--font-display); color: var(--dark); margin: 36px 0 16px; }
.blog-detail-content p { margin-bottom: 20px; font-weight: 300; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2C1A0E 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.12), transparent 70%);
}
.cta-section h2 {
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Floating Buttons ── */
.floating-actions {
  position: fixed;
  bottom: 32px; right: 32px;
  display: flex; flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.fab-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
}
.fab-btn:hover { transform: scale(1.12); color: var(--white); }
.fab-whatsapp    { background: #25D366; }
.fab-phone       { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.fab-appointment { background: var(--dark); border: 1px solid var(--border); }

/* ── Alert / Flash ── */
.alert-premium {
  border: none; border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
}
.alert-success { background: #f0faf0; color: #2d6a2d; border-left: 4px solid #4CAF50; }
.alert-danger   { background: #fef0f0; color: #8B1A1A; border-left: 4px solid #E53E3E; }

/* ── Swiper Overrides ── */
.swiper-pagination-bullet { background: rgba(201,169,110,0.4); }
.swiper-pagination-bullet-active { background: var(--gold); }
.swiper-button-next, .swiper-button-prev {
  color: var(--gold) !important;
  background: var(--white);
  width: 44px !important; height: 44px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px !important; }

/* ── Virtual Tour ── */
.virtual-tour-section { padding: 80px 0; background: var(--dark); }
.tour-placeholder {
  background: linear-gradient(135deg, #2C1A0E, #3D2410);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
}
.tour-icon { font-size: 64px; color: var(--gold); margin-bottom: 24px; opacity: 0.7; }
.tour-placeholder h3 { font-family: var(--font-display); color: var(--white); font-size: 28px; margin-bottom: 12px; }
.tour-placeholder p { color: rgba(255,255,255,0.5); max-width: 450px; margin: 0 auto; font-size: 15px; }

/* ── Footer ── */
.site-footer { background: #0F0F0F; }
.footer-top { padding: 80px 0 60px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.brand-icon-footer {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px; flex-shrink: 0;
}
.footer-brand-name { font-family: var(--font-display); font-size: 22px; color: var(--white); }
.footer-tagline { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: white; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-list li i { color: var(--gold); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-list li span,
.footer-contact-list li a { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-contact-list li a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); margin: 0; }
.footer-badges { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── Admin Panel ── */
.admin-body { background: #F4F6F9; }
.admin-sidebar {
  width: 260px; min-height: 100vh;
  background: var(--dark);
  position: fixed; left: 0; top: 0;
  overflow-y: auto;
  z-index: 1000;
  transition: transform 0.3s ease;
}
.admin-logo {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.admin-logo .brand-name { color: var(--white); font-family: var(--font-display); font-size: 18px; }
.admin-logo .brand-tagline { color: var(--gold); font-size: 10px; }
.admin-nav { padding: 16px 0; }
.admin-nav-section { padding: 16px 24px 8px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.admin-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 24px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: var(--transition);
  border-left: 3px solid transparent;
  text-decoration: none;
}
.admin-nav a:hover, .admin-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border-left-color: var(--gold);
}
.admin-nav a i { width: 18px; text-align: center; }
.admin-main {
  margin-left: 260px;
  padding: 32px;
  min-height: 100vh;
}
.admin-topbar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.admin-topbar h4 { margin: 0; font-family: var(--font-display); font-size: 22px; }
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.admin-stat-num { font-family: var(--font-display); font-size: 36px; color: var(--gold-dark); line-height: 1; }
.admin-stat-label { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.admin-table { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.admin-table table { margin: 0; }
.admin-table thead th { background: var(--peach); color: var(--text); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; border: none; padding: 14px 20px; }
.admin-table tbody td { padding: 14px 20px; vertical-align: middle; font-size: 14px; border-color: var(--border); }
.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.admin-card h5 { font-family: var(--font-display); font-size: 20px; margin-bottom: 20px; }

/* ── Testimonials Page ── */
.testimonials-section-page { padding: 80px 0; background: var(--cream); }

/* ── Utilities ── */
.text-gold { color: var(--gold-dark) !important; }
.bg-dark-luxury { background: var(--dark) !important; }
.bg-peach { background: var(--peach) !important; }
.bg-cream { background: var(--cream) !important; }
.font-display { font-family: var(--font-display); }
.fw-300 { font-weight: 300; }
.letter-wide { letter-spacing: 0.1em; }
.badge-status-pending   { background: #FFF3CD; color: #856404; padding: 4px 12px; border-radius: 50px; font-size: 12px; }
.badge-status-confirmed { background: #d4edda; color: #155724; padding: 4px 12px; border-radius: 50px; font-size: 12px; }
.badge-status-completed { background: #cce5ff; color: #004085; padding: 4px 12px; border-radius: 50px; font-size: 12px; }
.badge-status-cancelled { background: #f8d7da; color: #721c24; padding: 4px 12px; border-radius: 50px; font-size: 12px; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .mega-menu { min-width: 100%; flex-direction: column; }
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .hero-img-frame { margin-top: 48px; }
  .hero-img-frame img { height: 400px; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-main { margin-left: 0; }
  .admin-sidebar.open { transform: translateX(0); }
}
@media (max-width: 767.98px) {
  .suite-selector { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .appt-form-wrap { padding: 28px 20px; }
  .floating-actions { bottom: 20px; right: 20px; }
  .fab-btn { width: 46px; height: 46px; font-size: 18px; }
  .gallery-grid { column-count: 2; }
}
@media (max-width: 575.98px) {
  .gallery-grid { column-count: 1; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════
   ADMIN PANEL — EXTENDED STYLES
═══════════════════════════════════════════ */

/* Admin Content Wrapper */
.admin-content { padding: 2rem; max-width: 1400px; }

/* Page Header */
.admin-page-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.admin-page-title  { font-size: 1.6rem; font-weight: 700; margin: 0; color: var(--dark); }
.admin-page-subtitle { font-size: .875rem; color: #888; margin: .25rem 0 0; }
.admin-page-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Alerts */
.alert-admin { padding: .85rem 1.25rem; border-radius: 8px; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* Buttons */
.btn-admin-primary   { background: var(--gold); color: #fff; border: none; padding: .55rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: .875rem; cursor: pointer; display: inline-flex; align-items: center; gap: .4rem; transition: all .2s; text-decoration: none; }
.btn-admin-primary:hover { background: var(--gold-dark); color: #fff; }
.btn-admin-secondary { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); padding: .5rem 1.2rem; border-radius: 8px; font-weight: 600; font-size: .875rem; cursor: pointer; display: inline-flex; align-items: center; gap: .4rem; transition: all .2s; text-decoration: none; }
.btn-admin-secondary:hover { background: var(--gold); color: #fff; }
.btn-admin-ghost  { background: #f3f4f6; color: #374151; border: 1.5px solid #e5e7eb; padding: .5rem 1.2rem; border-radius: 8px; font-weight: 500; font-size: .875rem; cursor: pointer; display: inline-flex; align-items: center; gap: .4rem; text-decoration: none; transition: all .2s; }
.btn-admin-ghost:hover { background: #e5e7eb; }

/* Table */
.admin-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.admin-table th { padding: .75rem 1rem; text-align: left; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #6b7280; border-bottom: 2px solid #f3f4f6; white-space: nowrap; }
.admin-table td { padding: .85rem 1rem; border-bottom: 1px solid #f9fafb; vertical-align: middle; color: #374151; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafaf9; }
.row-unread td { background: #fffbeb !important; }

/* Stats Row (appointments) */
.stats-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.stat-pill a { display: flex; align-items: center; gap: .4rem; padding: .45rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 600; text-decoration: none; background: #f3f4f6; color: #374151; border: 1.5px solid transparent; transition: all .2s; }
.stat-pill.active a, .stat-pill a:hover { border-color: var(--gold); color: var(--gold); background: #fffbeb; }
.stat-pill span { background: #e5e7eb; padding: 1px 7px; border-radius: 20px; font-size: .75rem; }
.stat-pill.pending span  { background: #fef3c7; color: #92400e; }
.stat-pill.confirmed span { background: #d1fae5; color: #065f46; }
.stat-pill.completed span { background: #dbeafe; color: #1e40af; }
.stat-pill.cancelled span { background: #fee2e2; color: #991b1b; }

/* Filter Bar */
.filter-bar { margin-bottom: 1rem; }
.filter-form { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.filter-input, .filter-select { padding: .5rem .9rem; border: 1.5px solid #e5e7eb; border-radius: 8px; font-size: .875rem; color: #374151; background: #fff; outline: none; transition: border .2s; }
.filter-input:focus, .filter-select:focus { border-color: var(--gold); }
.filter-input { min-width: 220px; }

/* Filter Tabs */
.filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.filter-tab { padding: .45rem 1rem; border-radius: 50px; font-size: .82rem; font-weight: 600; text-decoration: none; background: #f3f4f6; color: #6b7280; border: 1.5px solid transparent; transition: all .2s; }
.filter-tab.active, .filter-tab:hover { background: #fffbeb; color: var(--gold); border-color: var(--gold); }
.badge-count { background: var(--gold); color: #fff; border-radius: 20px; padding: 0 7px; font-size: .72rem; margin-left: 4px; }

/* Status Badges */
.status-badge { padding: 3px 12px; border-radius: 50px; font-size: .75rem; font-weight: 600; }
.status-pending   { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #d1fae5; color: #065f46; }
.status-completed { background: #dbeafe; color: #1e40af; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-no-show   { background: #f3f4f6; color: #6b7280; }

/* Suite Badges */
.suite-badge { padding: 3px 12px; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.suite-normal { background: var(--peach); color: #7a5c3a; }
.suite-royal  { background: #fef3c7; color: #92400e; }

/* Type badge */
.type-badge { font-size: .75rem; color: #6b7280; font-style: italic; }

/* Action Buttons */
.action-btns { display: flex; gap: .4rem; }
.btn-icon { width: 30px; height: 30px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; text-decoration: none; transition: all .2s; }
.btn-edit     { background: #dbeafe; color: #1e40af; }
.btn-edit:hover { background: #1e40af; color: #fff; }
.btn-delete   { background: #fee2e2; color: #991b1b; }
.btn-delete:hover { background: #991b1b; color: #fff; }
.btn-whatsapp { background: #dcfce7; color: #16a34a; }
.btn-whatsapp:hover { background: #16a34a; color: #fff; }
.btn-confirm  { background: #d1fae5; color: #065f46; }
.btn-view     { background: #f3f4f6; color: #374151; }

/* Toggle Button */
.toggle-btn { font-size: 1.3rem; cursor: pointer; color: #d1d5db; text-decoration: none; transition: color .2s; }
.toggle-btn.active { color: var(--gold); }
.toggle-btn i { pointer-events: none; }

/* Misc badges */
.badge-yes { background: #d1fae5; color: #065f46; padding: 2px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.badge-no  { background: #f3f4f6; color: #9ca3af; padding: 2px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600; }

/* Pagination */
.pagination-wrap { display: flex; gap: .4rem; justify-content: center; padding: 1.25rem 0 .5rem; flex-wrap: wrap; }
.page-btn { padding: .4rem .8rem; border-radius: 6px; text-decoration: none; font-size: .85rem; font-weight: 600; background: #f3f4f6; color: #374151; border: 1.5px solid transparent; transition: all .2s; }
.page-btn.active, .page-btn:hover { background: var(--gold); color: #fff; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; z-index: 9999; padding: 1rem; }
.modal-box { background: #fff; border-radius: 14px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.modal-lg { max-width: 700px; }
.modal-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid #f3f4f6; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: #fff; z-index: 2; }
.modal-header h3 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.modal-close { color: #9ca3af; font-size: 1.2rem; text-decoration: none; display: flex; align-items: center; background: none; border: none; cursor: pointer; }
.modal-close:hover { color: #374151; }
.modal-body { padding: 1.5rem; }
.modal-footer-btns { display: flex; gap: .75rem; justify-content: flex-end; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #f3f4f6; }
.modal-patient-info { background: var(--peach); border-radius: 8px; padding: .75rem 1rem; margin-bottom: 1.25rem; font-size: .9rem; color: #7a5c3a; }

/* Form Controls in Admin */
.form-control-admin { width: 100%; padding: .6rem .9rem; border: 1.5px solid #e5e7eb; border-radius: 8px; font-size: .9rem; color: #374151; background: #fafafa; outline: none; transition: border .2s; font-family: var(--font-body); }
.form-control-admin:focus { border-color: var(--gold); background: #fff; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: #374151; margin-bottom: .4rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check-group .check-label { display: flex; align-items: center; gap: .5rem; font-size: .875rem; cursor: pointer; }
.form-hint { font-size: .78rem; color: #9ca3af; margin-top: .3rem; display: block; }

/* Contact enquiries detail */
.enq-detail-grid { background: #f9fafb; border-radius: 8px; padding: 1rem; margin-bottom: 1rem; }
.enq-detail-row { display: grid; grid-template-columns: 100px 1fr; gap: .5rem; padding: .35rem 0; border-bottom: 1px solid #f3f4f6; font-size: .875rem; }
.enq-detail-row:last-child { border-bottom: none; }
.enq-detail-row span { color: #9ca3af; font-weight: 600; }
.enq-message label { font-size: .82rem; font-weight: 600; color: #374151; display: block; margin-bottom: .4rem; }
.enq-message p { background: #f9fafb; border-radius: 8px; padding: 1rem; font-size: .875rem; line-height: 1.6; color: #374151; }

/* Star Display */
.star-display { display: flex; gap: 2px; }
.text-gold { color: var(--gold) !important; }
.text-muted { color: #d1d5db !important; }

/* Blog admin grid */
.blog-grid-admin { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 1rem; }
.blog-card-admin { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.07); display: flex; flex-direction: column; transition: transform .2s; }
.blog-card-admin:hover { transform: translateY(-3px); }
.blog-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-img-placeholder { width: 100%; height: 100%; background: var(--peach); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 2rem; }
.blog-cat-badge { position: absolute; top: .5rem; left: .5rem; background: rgba(0,0,0,.65); color: #fff; font-size: .7rem; padding: 2px 8px; border-radius: 20px; }
.blog-card-body { padding: 1rem; flex: 1; }
.blog-card-body h4 { font-size: .95rem; font-weight: 700; margin: 0 0 .4rem; color: var(--dark); line-height: 1.3; }
.blog-excerpt { font-size: .82rem; color: #6b7280; margin: 0; }
.blog-meta-admin { display: flex; gap: 1rem; margin-top: .75rem; font-size: .78rem; color: #9ca3af; }
.blog-card-footer { padding: .75rem 1rem; border-top: 1px solid #f3f4f6; display: flex; align-items: center; justify-content: space-between; }

/* Empty State */
.empty-state { text-align: center; padding: 4rem 1rem; color: #9ca3af; }
.empty-state i { font-size: 3rem; margin-bottom: 1rem; color: #d1d5db; display: block; }
.empty-state p { font-size: 1rem; }

/* msg-preview */
.msg-preview { max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #6b7280; font-size: .85rem; }
.patient-name { font-weight: 600; color: var(--dark); }
.contact-info { font-size: .85rem; }
.contact-info a { color: var(--dark); text-decoration: none; }
.contact-info a:hover { color: var(--gold); }

/* Dashboard stats */
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card { background: #fff; border-radius: 14px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,.07); display: flex; align-items: center; gap: 1rem; }
.stat-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.stat-icon.gold    { background: #fef3c7; color: #d97706; }
.stat-icon.green   { background: #d1fae5; color: #059669; }
.stat-icon.blue    { background: #dbeafe; color: #2563eb; }
.stat-icon.red     { background: #fee2e2; color: #dc2626; }
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-label { font-size: .8rem; color: #9ca3af; margin-top: .2rem; }

@media(max-width:768px) {
  .admin-content { padding: 1rem; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .filter-form { flex-direction: column; align-items: stretch; }
  .blog-grid-admin { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .admin-stats-grid { grid-template-columns: 1fr; }
  .blog-grid-admin { grid-template-columns: 1fr; }
}
