/* ============================================================
   Kiara Medical Aesthetics Center - Main Stylesheet
   Luxury Medical Aesthetics Website
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Color Palette */
  --white: #FFFFFF;
  --ivory: #F9F5F0;
  --champagne: #E8D4C2;
  --rose-gold: #B97850;
  --copper-gold: #A66A42;
  --dark-charcoal: #1B1B1B;
  --soft-grey: #666666;
  --light-border: #E8E1DA;

  /* Extended Palette */
  --rose-gold-light: rgba(185, 120, 80, 0.08);
  --rose-gold-medium: rgba(185, 120, 80, 0.15);
  --rose-gold-hover: #9E6540;
  --copper-dark: #8B5535;
  --text-dark: #1B1B1B;
  --text-medium: #555555;
  --text-light: #777777;
  --bg-ivory: #F9F5F0;
  --bg-white: #FFFFFF;
  --border-subtle: #E8E1DA;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 12px 48px rgba(0,0,0,0.10);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(60px, 8vw, 110px);
  --container-padding: clamp(16px, 4vw, 40px);
  --card-radius: 16px;
  --card-radius-sm: 10px;
  --btn-radius: 50px;
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav */
  --nav-height: 76px;
  --nav-height-mobile: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-medium);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Skip to content */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--rose-gold);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s;
}
.skip-to-content:focus {
  top: 10px;
}

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

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

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

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

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-narrow {
  max-width: 900px;
}

.container-wide {
  max-width: 1360px;
}

/* ---------- Section ---------- */
.section {
  padding: var(--section-padding) 0;
}

.section-sm {
  padding: calc(var(--section-padding) * 0.65) 0;
}

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

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

/* ---------- Section Headings ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--soft-grey);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: var(--btn-radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.btn:focus-visible {
  outline: 3px solid var(--rose-gold);
  outline-offset: 3px;
}

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

.btn-primary:hover {
  background: var(--rose-gold-hover);
  border-color: var(--rose-gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 120, 80, 0.25);
}

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

.btn-outline:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 120, 80, 0.2);
}

.btn-white {
  background: var(--white);
  color: var(--dark-charcoal);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ---------- Card Base ---------- */
.card {
  background: var(--white);
  border-radius: var(--card-radius);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

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

.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.94rem;
  color: var(--soft-grey);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

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

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

/* ---------- Header / Navbar ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-smooth);
  height: var(--nav-height);
}

.site-header.scrolled {
  border-bottom-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--container-padding);
  max-width: 1360px;
  margin: 0 auto;
  padding: 30px;
}


.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 150px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

/* Mobile */
@media (max-width:768px){

    .nav-logo img{
        height:120px !important; /* Desktop jitna hi */
        width:auto !important;
        max-width:none !important;
    }
/* 
    .navbar,
    .header,
    nav{
        min-height:160px !important;
        padding:15px 20px !important;
        overflow:visible !important;
    } */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-charcoal);
  border-radius: 8px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--rose-gold);
  background: var(--rose-gold-light);
}

.nav-menu > li > a .dropdown-arrow {
  font-size: 0.6rem;
  transition: transform var(--transition-fast);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-smooth);
  z-index: 100;
}

.nav-menu > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.86rem;
  color: var(--dark-charcoal);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.nav-dropdown li a:hover {
  background: var(--rose-gold-light);
  color: var(--rose-gold);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-book-btn {
  background: var(--rose-gold);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--btn-radius);
  font-size: 0.86rem;
  font-weight: 600;
  border: 2px solid var(--rose-gold);
  transition: all var(--transition-smooth);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-book-btn:hover {
  background: var(--rose-gold-hover);
  border-color: var(--rose-gold-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(185, 120, 80, 0.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark-charcoal);
  border-radius: 2px;
  transition: all var(--transition-smooth);
  transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 10000;
  padding: 90px 28px 40px;
  overflow-y: auto;
  transition: right var(--transition-smooth);
  box-shadow: -4px 0 30px rgba(0,0,0,0.08);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-list li {
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-charcoal);
  transition: color var(--transition-fast);
}

.mobile-nav-list li a:hover {
  color: var(--rose-gold);
}

.mobile-submenu {
  list-style: none;
  padding-left: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.mobile-submenu.open {
  max-height: 500px;
}

.mobile-submenu li a {
  font-size: 0.88rem;
  padding: 10px 0;
  color: var(--soft-grey);
}

.mobile-book-btn {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 14px 24px;
  background: var(--rose-gold);
  color: var(--white) !important;
  border-radius: var(--btn-radius);
  font-weight: 600;
  border: none;
  width: 100%;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--ivory) 0%, #f5ede3 40%, #efe3d6 100%);
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(249,245,240,0.85) 0%,
    rgba(249,245,240,0.7) 50%,
    rgba(232,212,194,0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 40px 0;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 20px;
  color: var(--dark-charcoal);
  letter-spacing: -0.01em;
}

.hero-content p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-accent {
  position: absolute;
  border: 1px solid rgba(185, 120, 80, 0.2);
  border-radius: 50%;
  z-index: 1;
}

.hero-accent-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
}

.hero-accent-2 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: 15%;
}

/* ---------- Trust Highlights ---------- */
.trust-highlights {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-card {
  text-align: center;
  padding: 28px 20px;
  transition: all var(--transition-smooth);
  border-radius: var(--card-radius);
}

.trust-card:hover {
  background: var(--ivory);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rose-gold-light);
  color: var(--rose-gold);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.trust-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--soft-grey);
  margin-bottom: 0;
}

/* ---------- About Preview ---------- */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-img {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.about-preview-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--card-radius);
}

.about-preview-img::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(185, 120, 80, 0.25);
  border-radius: var(--card-radius);
  pointer-events: none;
}

/* ---------- Featured Treatments ---------- */
.treatment-card {
  background: var(--white);
  border-radius: var(--card-radius);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.treatment-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.treatment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.treatment-card:hover .treatment-card-img img {
  transform: scale(1.06);
}

.treatment-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.treatment-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.treatment-card-body p {
  font-size: 0.88rem;
  color: var(--soft-grey);
  flex: 1;
  margin-bottom: 16px;
}

.treatment-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Why Choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
  background: var(--white);
}

.why-item:hover {
  border-color: var(--rose-gold);
  box-shadow: var(--shadow-md);
}

.why-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--rose-gold-light);
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.why-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark-charcoal);
}

.why-item p {
  font-size: 0.84rem;
  color: var(--soft-grey);
  margin: 0;
}

/* ---------- Category Cards ---------- */
.category-card {
  position: relative;
  height: 300px;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,27,27,0.7) 0%, rgba(27,27,27,0.15) 50%, rgba(27,27,27,0) 100%);
  z-index: 1;
}

.category-card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}

.category-card-content h3 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1.4rem;
}

.category-card-content span {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-subtle);
  background: var(--white);
  position: relative;
  transition: all var(--transition-smooth);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--champagne);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose-gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--soft-grey);
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 32px;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #E8B84B;
  margin-bottom: 12px;
  font-size: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-charcoal);
  font-size: 0.92rem;
}

.testimonial-note {
  font-size: 0.78rem;
  color: var(--soft-grey);
}

/* ---------- FAQ Accordion ---------- */
.accordion {
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius-sm);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all var(--transition-fast);
}

.accordion-header:hover {
  color: var(--rose-gold);
  background: var(--rose-gold-light);
}

.accordion-header:focus-visible {
  outline: 2px solid var(--rose-gold);
  outline-offset: -2px;
}

.accordion-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform var(--transition-smooth);
  color: var(--rose-gold);
}

.accordion.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion.active .accordion-body {
  max-height: 600px;
}

.accordion-body-content {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--soft-grey);
  line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(185, 120, 80, 0.15);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(185, 120, 80, 0.12);
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

/* ---------- Contact Preview ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-info-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-subtle);
  background: var(--white);
  transition: all var(--transition-smooth);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--champagne);
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose-gold-light);
  color: var(--rose-gold);
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.92rem;
  color: var(--soft-grey);
}

/* ---------- Inner Page Banner ---------- */
.inner-banner {
  background: linear-gradient(135deg, var(--ivory) 0%, #f5ede3 50%, var(--champagne) 100%);
  padding: 100px 0 60px;
  text-align: center;
  margin-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.inner-banner::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(185, 120, 80, 0.15);
  border-radius: 50%;
  top: -50px;
  right: -80px;
}

.inner-banner h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: var(--soft-grey);
}

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

.breadcrumbs span {
  margin: 0 6px;
}

/* ---------- Image Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--card-radius-sm);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ---------- Contact Form ---------- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--card-radius);
  border: 1px solid var(--border-subtle);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 6px;
}

.form-group label .required {
  color: #C84040;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--dark-charcoal);
  background: var(--white);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--card-radius-sm);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(185, 120, 80, 0.08);
}

.form-control::placeholder {
  color: #B0A89F;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--rose-gold);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--soft-grey);
  font-weight: 400;
}

.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--card-radius-sm);
  font-size: 0.9rem;
  margin-top: 16px;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background: #EDF7EE;
  color: #2D7A3A;
  border: 1px solid #C8E6C9;
}

.form-message.error {
  display: block;
  background: #FDF0ED;
  color: #B84030;
  border: 1px solid #F5C6C0;
}

/* ---------- Treatment Detail Block ---------- */
.treatment-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.treatment-detail-img {
  border-radius: var(--card-radius);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.treatment-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--card-radius);
}

.treatment-detail-info h2 {
  margin-bottom: 16px;
}

.treatment-detail-info .info-list {
  list-style: none;
  margin: 20px 0;
}

.treatment-detail-info .info-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.93rem;
  color: var(--text-medium);
}

.treatment-detail-info .info-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rose-gold);
  font-weight: 700;
}

/* ---------- Disclaimer ---------- */
.disclaimer-box {
  background: var(--ivory);
  border-left: 3px solid var(--rose-gold);
  padding: 20px 24px;
  border-radius: 0 var(--card-radius-sm) var(--card-radius-sm) 0;
  margin: 32px 0;
}

.disclaimer-box p {
  font-size: 0.88rem;
  color: var(--soft-grey);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Filter Buttons ---------- */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--btn-radius);
  border: 1.5px solid var(--border-subtle);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--rose-gold);
  background: var(--rose-gold-light);
  color: var(--rose-gold);
}

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  border: none;
  cursor: pointer;
  animation: pulse-whatsapp 2.5s infinite;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  animation: none;
}

.floating-whatsapp-tooltip {
  background: var(--dark-charcoal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose-gold);
  border: 1.5px solid var(--border-subtle);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
  height: 42px;
  margin-bottom: 16px;
}

.footer-about p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--rose-gold);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
}

.footer-contact-item a:hover {
  color: var(--rose-gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  background: rgba(185, 120, 80, 0.1);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

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

.footer-disclaimer {
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
}

.footer-disclaimer p {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Page-specific ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-subtle);
  background: var(--white);
  transition: all var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--rose-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--rose-gold-light);
  color: var(--rose-gold);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--soft-grey);
  margin: 0;
}

/* Concerns Grid */
.concerns-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.concern-tag {
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--ivory);
  color: var(--text-medium);
  font-size: 0.86rem;
  font-weight: 500;
  border: 1px solid var(--border-subtle);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ========== RESPONSIVE ========== */

/* Large Desktop */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

/* Desktop / Laptop */
@media (max-width: 1199px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 991px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-preview-img img { height: 360px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-detail-block { grid-template-columns: 1fr; gap: 32px; }
  .treatment-detail-img { position: static; }
  .treatment-detail-img img { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Mobile Nav */
  .nav-menu { display: none; }
  .nav-actions .nav-book-btn { display: none; }
  .hamburger { display: flex; }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --nav-height: 64px;
    --section-padding: 48px;
  }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero { min-height: 80vh; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .inner-banner { padding: 80px 0 40px; }
  .inner-banner h1 { font-size: 2rem; }

  .contact-form-wrap { padding: 24px; }
  .filter-buttons { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.8rem; }

  .floating-whatsapp { bottom: 20px; right: 20px; }
  .floating-whatsapp-btn { width: 50px; height: 50px; font-size: 1.4rem; }
  .back-to-top { bottom: 20px; right: 80px; width: 38px; height: 38px; }

  .navbar { height: var(--nav-height); }
  .nav-logo img { height: 34px; }

  .category-card { height: 220px; }
  .treatment-card-img { height: 180px; }
}

/* Small Mobile */
@media (max-width: 374px) {
  .hero-content h1 { font-size: 1.8rem; }
  .btn { padding: 12px 24px; font-size: 0.84rem; }
  .nav-logo img { height: 30px; }
}
