/* ======================================================
   SahiDarma Skin & Aesthetics Clinic
   Public Website Stylesheet
 ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --pink:        #D63384;
  --pink-dark:   #A01060;
  --pink-light:  #F8BBD9;
  --pink-bg:     #FFF0F7;
  --purple:      #9C27B0;
  --gold:        #c9a063;
  --gradient:    linear-gradient(135deg, #D63384 0%, #9C27B0 100%);
  --gradient-soft: linear-gradient(135deg, #FFF0F7 0%, #F3E5F5 100%);
  --dark:        #1A1A2E;
  --dark2:       #2D2D44;
  --text:        #374151;
  --text-light:  #6B7280;
  --white:       #FFFFFF;
  --border:      #F0D6E8;
  --shadow:      0 4px 24px rgba(214,51,132,0.12);
  --shadow-lg:   0 12px 48px rgba(214,51,132,0.18);
  --radius:      16px;
  --radius-sm:   8px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.4rem; }
.serif { font-family: 'Playfair Display', serif; font-style: italic; }
.text-pink { color: var(--pink); }
.text-muted { color: var(--text-light); }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; transition: var(--transition); letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--gradient); color: var(--white);
  box-shadow: 0 4px 20px rgba(214,51,132,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(214,51,132,0.5);
}
.btn-outline {
  border: 2px solid var(--pink); color: var(--pink); background: transparent;
}
.btn-outline:hover { background: var(--pink); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--pink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn-sm { padding: 8px 20px; font-size: 0.875rem; }

/* ---- Section Titles ---- */
.section-label {
  display: inline-block; background: var(--pink-bg); color: var(--pink);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 12px; }
.section-desc { color: var(--text-light); font-size: 1.05rem; max-width: 540px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px; display: flex; align-items: center;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  padding: 0 40px;
}
.navbar.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1400px; margin: 0 auto;
}
.navbar-brand {
  display: flex; align-items: center; flex: 1; gap: 12px;
  text-decoration: none;
}
.brand-logo-img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}
.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-main {
  font-size: 20px;
  font-weight: 700;
  color: #ff2d8d;
  letter-spacing: -0.5px;
}
.brand-sub {
  font-size: 12px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.navbar.scrolled .brand-logo-img { height: 36px; }
.navbar.scrolled .brand-main { font-size: 18px; }
.navbar.scrolled .brand-sub { font-size: 11px; }

@media (max-width: 768px) {
  .brand-main { font-size: 18px; }
  .brand-sub { font-size: 10px; }
  .navbar-brand { gap: 8px; }
}

.navbar-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex: 2;
}
.navbar .nav-link {
  padding: 8px 18px; border-radius: 20px; font-weight: 500; font-size: 0.95rem;
  color: #333 !important; transition: var(--transition);
  margin: 0 5px;
}
.navbar .nav-link:hover { 
  color: #ff2d8d !important; 
  background: rgba(255, 45, 141, 0.05) !important; 
}
.navbar .nav-link.active { 
  background: linear-gradient(135deg, #D63384 0%, #9C27B0 100%) !important; 
  color: white !important; 
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.25);
}

.navbar-cta { 
  display: flex; justify-content: flex-end; flex: 1;
}
.btn-navbar-cta {
  background: linear-gradient(135deg, #D63384 0%, #9C27B0 100%);
  color: white !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.2);
  transition: var(--transition);
}
.btn-navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.35);
  color: white !important;
}

.navbar-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
}
.navbar .navbar-toggle span {
  display: block; width: 22px; height: 2px;
  background: #333 !important; border-radius: 2px; transition: var(--transition);
}

/* ---- HOMEPAGE HERO (Premium Slider) ---- */
.homepage-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fdfdfd;
  padding: 100px 0 60px;
}
.hero-container { position: relative; z-index: 10; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.hero-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(214, 51, 132, 0.15);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.08);
}
.hero-main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-description {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}
.btn-hero { padding: 16px 36px; font-size: 1rem; }
.btn-glass {
  background: rgba(214, 51, 132, 0.05);
  border: 2px solid var(--pink);
  color: var(--pink);
}
.btn-glass:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-3px);
}

.hero-trust-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.stat-count {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pink);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Right Visual Area */
.hero-visual-area { position: relative; width: 100%; height: 580px; }
.hero-slider-wrap {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.hero-slider {
  width: 100%; height: 100%; position: relative;
}
.slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease-in-out;
}
.slide.active { opacity: 1; animation: kenBurns 10s linear alternate infinite; }
.slider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(214, 51, 132, 0.15), rgba(156, 39, 176, 0.15));
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

/* Floating Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-radius: 24px;
}
.services-card {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 340px;
  padding: 24px;
  z-index: 20;
  animation: floatCard 6s ease-in-out infinite;
}
.card-header {
  display: flex; align-items: center; gap: 15px; margin-bottom: 20px;
}
.brand-disc {
  width: 50px; height: 50px; background: var(--pink); color: white;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; font-size: 1.4rem;
}
.header-text h4 { font-size: 1.1rem; margin: 0; }
.header-text p { font-size: 0.8rem; margin: 0; }

.card-service-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.card-service-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 15px; border-radius: 12px; background: rgba(0,0,0,0.03);
  font-size: 0.85rem; font-weight: 500; transition: 0.3s;
}
.card-service-list li.active-row {
  background: var(--gradient); color: white;
  box-shadow: 0 8px 15px rgba(214, 51, 132, 0.3);
}
.s-price { font-weight: 700; opacity: 0.9; }

/* Floating Badges */
.glass-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 100px; /* Fully rounded pill */
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  z-index: 21;
}
.badge-top-right {
  top: 20px; right: -40px;
  animation: floatCard 5s ease-in-out infinite reverse;
}
.badge-bottom-left {
  bottom: 80px; left: -40px;
  animation: floatCard 7s ease-in-out infinite;
}
.badge-icon {
  width: 36px; height: 36px; background: #EBF8FF; color: #3182CE;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.1rem;
}
.badge-text { font-size: 0.8rem; font-weight: 700; line-height: 1.2; color: var(--dark); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* RESPONSIVE HERO */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; text-align: center; }
  .hero-text-content { display: flex; flex-direction: column; align-items: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust-stats { justify-content: center; }
  .badge-top-right { right: 0; }
  .badge-bottom-left { left: 0; }
  .services-card { right: 50%; transform: translateX(50%); bottom: -60px; }
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 15;
}
.hero-corner-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 10;
}
.hero-corner-logo img, .hero-watermark img {
  width: 100%;
  height: auto;
}

/* Gold Accents */
.text-gold { color: var(--gold); }
.sparkle { color: var(--gold); }
.hero-label-badge .sparkle { color: var(--gold); font-size: 1.1rem; }
.stat-count { color: var(--gold); } /* Matching stats to logo gold */

/* ---- REVEAL & HOVER ANIMATIONS ---- */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---- WHY CHOOSE US ---- */
.why-section {
  padding: 100px 0; background: var(--dark);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%); width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,51,132,0.08) 0%, transparent 60%);
}
.why-section .section-title { color: var(--white); }
.why-section .section-desc { color: rgba(255,255,255,0.6); }
.why-section .section-label { background: rgba(214,51,132,0.2); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.feature-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px; transition: var(--transition);
}
.feature-card:hover {
  background: rgba(214,51,132,0.1); border-color: rgba(214,51,132,0.3);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(214,51,132,0.15); border: 1px solid rgba(214,51,132,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); font-size: 1.3rem; margin-bottom: 20px;
}
.feature-card h3 { color: white; margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 80px 0; background: var(--gradient);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT SECTION ---- */
.contact-section { padding: 100px 0; background: var(--pink-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: var(--white); border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow);
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--pink-bg); display: flex; align-items: center;
  justify-content: center; color: var(--pink); font-size: 1rem; flex-shrink: 0;
}
.contact-info-text h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.contact-info-text p { font-weight: 600; color: var(--dark); }

/* ---- FORM ---- */
.contact-form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-control {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit;
  color: var(--dark); background: var(--white); transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(214,51,132,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }

/* ---- FOOTER ---- */
footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand-name { color: var(--pink); font-size: 1.5rem; font-weight: 800; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; line-height: 1.7; }
.footer-heading { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--pink); padding-left: 4px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.7); transition: var(--transition);
}
.social-link:hover { background: var(--pink); color: white; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem;
}

/* ---- About Page ---- */
.about-hero { padding: 160px 0 100px; background: var(--gradient-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-placeholder {
  height: 420px; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 5rem;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.team-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  height: 200px; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 4rem;
}
.team-info { padding: 20px; }
.team-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-info span { font-size: 0.85rem; color: var(--pink); font-weight: 500; }

/* ---- Book Appointment ---- */
.book-hero { padding: 160px 0 60px; background: var(--gradient-soft); }
.booking-container { max-width: 700px; margin: 0 auto; padding: 0 24px 80px; }
.booking-card {
  background: var(--white); border-radius: 24px;
  box-shadow: var(--shadow-lg); padding: 48px;
}
.booking-steps {
  display: flex; gap: 0; margin-bottom: 40px;
  border-bottom: 1px solid var(--border); padding-bottom: 24px;
}
.step { flex: 1; text-align: center; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--border); color: var(--text-light); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px; font-size: 0.9rem;
}
.step.active .step-num { background: var(--gradient); color: white; }
.step-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.step.active .step-label { color: var(--pink); }
.time-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 8px; }
.time-slot {
  padding: 10px 4px; text-align: center; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); color: var(--dark);
}
.time-slot:hover { border-color: var(--pink); color: var(--pink); }
.time-slot.selected { border-color: var(--pink); background: var(--pink); color: white; }

/* ---- Page Hero (Professional Refinement) ---- */
.premium-hero {
  position: relative;
  min-height: 700px;
  padding: 180px 0 100px;
  background: #020617; /* Very dark medical navy */
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, rgba(2, 6, 23, 0.98) 30%, rgba(2, 6, 23, 0.6) 100%);
  z-index: 1;
}

/* Background Blobs - Subtler */
.hero-blob {
  position: absolute;
  filter: blur(120px);
  z-index: 2;
  opacity: 0.2; /* Much lower opacity */
  border-radius: 50%;
  animation: blob-float 15s infinite alternate ease-in-out;
}

.blob-1 { width: 400px; height: 400px; background: var(--pink); top: -150px; left: -150px; }
.blob-2 { width: 500px; height: 500px; background: var(--purple); bottom: -100px; right: 5%; }

@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.05); }
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Typography */
.hero-label {
  display: inline-block;
  color: var(--pink-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
}

.hero-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: var(--pink);
}

.breadcrumb-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.6;
}

.breadcrumb-modern a { color: white; }
.breadcrumb-modern i { font-size: 0.6rem; color: var(--pink-light); }

.hero-title {
  font-family: 'Playfair Display', serif; /* Use serif for premium feel */
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--pink-light);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 44px;
  max-width: 540px;
  font-weight: 400;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 56px;
}

.btn-hero-primary {
  padding: 18px 40px;
  border-radius: 50px;
  background: var(--gradient);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.3);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(214, 51, 132, 0.4);
}

.btn-hero-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: white;
  color: var(--dark);
  border-color: white;
  transform: translateY(-4px);
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-item i { color: #22c55e; font-size: 1rem; }

/* Visual Side */
.visual-container {
  position: relative;
  padding: 20px;
}

.hero-main-img-wrap {
  position: relative;
  z-index: 2;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.visual-decoration {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border: 2px solid var(--pink);
  border-radius: 40px;
  transform: translate(20px, 20px);
  z-index: 1;
  opacity: 0.3;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--dark);
  animation: float-mini 4s infinite ease-in-out;
}

.floating-card i {
  color: var(--pink);
  font-size: 1rem;
}

.card-1 { top: 20%; left: -40px; }
.card-2 { bottom: 20%; right: -20px; animation-delay: -2s; }

@keyframes float-mini {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .premium-hero { padding: 160px 0 100px; }
  .hero-content-wrapper { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .hero-label { padding-left: 0; }
  .hero-label::before { display: none; }
  .breadcrumb-modern { justify-content: center; }
  .hero-text-side { display: flex; flex-direction: column; align-items: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; gap: 20px; }
  .visual-container { max-width: 500px; margin: 0 auto; }
  .hero-main-img { height: 400px; }
  .card-1 { left: 0; }
  .card-2 { right: 0; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
}

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,46,0.95); z-index: 999; padding: 100px 40px 40px;
  flex-direction: column; align-items: center; gap: 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { color: white; font-size: 1.2rem; padding: 12px 24px; }
.mobile-nav .btn-primary { margin-top: 16px; }

/* ---- Success Message ---- */
.success-msg {
  background: #F0FDF4; border: 1px solid #86EFAC; border-radius: var(--radius);
  padding: 20px 24px; display: flex; align-items: center; gap: 14px;
  color: #166534; font-weight: 600;
}
.error-msg {
  background: #FFF0F7; border: 1px solid #F9A8D4; border-radius: var(--radius);
  padding: 20px 24px; color: var(--pink); font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-nav, .navbar-cta { display: none; }
  .navbar-toggle { display: flex; }
  .categories-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .booking-card { padding: 28px 20px; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
}
