/* ==========================================================================
   Vivaan Hair and Beauty Salon - Next.js Design System & Tokens
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary: #ee0979;
  --primary-hover: #d6056a;
  --secondary: #ff6a00;
  --pink-brand: #ff007f;
  --primary-gradient: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #aa771c 100%);
  --dark-bg: #0b0c10;
  --dark-card: #161616;
  --dark-accent: #222222;
  --text-dark: #1f242e;
  --text-muted: #666666;
  --text-light: #f5f5f5;
  --bg-light: #fbfbfb;
  --bg-subtle: #f8f9fa;
  --border-color: #e5e7eb;
  --border-dark: #2a2a2a;
  
  /* Typography */
  --font-heading: 'Josefin Sans', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Outfit', sans-serif;
  --font-serif: 'Quattrocento Sans', 'Josefin Sans', sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(238, 9, 121, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-pill: 50px;
  --border-radius-card: 16px;
  --border-radius-sm: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: 2.75rem; letter-spacing: -0.5px; }
h2 { font-size: 2.15rem; letter-spacing: -0.3px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Common Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: var(--border-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(238, 9, 121, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(238, 9, 121, 0.5);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
  border: none;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.78rem;
}

.btn-call {
  background: var(--primary);
  color: #ffffff;
  padding: 8px 22px;
  font-size: 0.82rem;
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-call:hover {
  background: var(--secondary);
  color: #ffffff;
}

/* Section Header Titles */
.section-title-wrap {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

.section-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.section-desc {
  max-width: 720px;
  margin: 15px auto 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Exact iGRACE Header Styles */
.exact-igrace-header {
  background: #000000;
  width: 100%;
}

.exact-top-bar {
  background: #000000;
  padding: 16px 0;
  border-bottom: 1px solid #1a1a1a;
}

.exact-top-bar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
}

.exact-brand-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.exact-header-logo-img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.exact-top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.exact-pink-pill {
  background: #ff007f;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  height: 46px;
  padding: 0 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 0, 127, 0.25);
  line-height: 1;
}

.exact-pink-pill:hover {
  background: #e60073;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
  color: #ffffff;
}

.exact-cart-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #ffffff;
}

.exact-cart-btn:hover {
  border-color: #ff007f;
  background: rgba(255, 0, 127, 0.15);
  transform: scale(1.05);
}

.exact-nav-bar {
  background: #000000;
  border-bottom: 1px solid #141414;
}

.exact-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exact-nav-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border-left: 1px dotted #333333;
}

.exact-nav-item {
  border-right: 1px dotted #333333;
}

.exact-nav-menu .exact-nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 14px 18px;
  color: #ffffff;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.exact-nav-menu .exact-nav-link:hover,
.exact-nav-menu .exact-nav-item.active .exact-nav-link {
  color: #ff007f;
  background: rgba(255, 255, 255, 0.04);
}

.exact-book-now-nav {
  background: #ff007f;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(255, 0, 127, 0.3);
}

.exact-book-now-nav:hover {
  background: #e60073;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.45);
}

.exact-dropdown-menu {
  background: #000000;
  border-top: 2px solid #ff007f;
  border-left: 1px solid #222;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
}

/* Exact Hero Styles */
.hero-exact-style {
  min-height: 680px;
  position: relative;
  background: radial-gradient(circle at 75% 40%, #200313 0%, #0d0108 55%, #050003 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay-exact {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(5, 0, 3, 0.7) 0%, rgba(5, 0, 3, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-exact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  min-height: 620px;
  padding: 40px 0;
  position: relative;
  z-index: 5;
}

.hero-content-exact {
  max-width: 620px;
}

/* Premium Entrance Animations */
@keyframes heroLetteringPop {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroDividerPop {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes heroModelCardPop {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.93);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-divider-bar {
  width: 70px;
  height: 4px;
  background: #ffffff;
  margin-bottom: 28px;
  border-radius: 2px;
  transform-origin: left center;
  animation: heroDividerPop 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  will-change: transform, opacity;
}

.hero-headline-exact {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: heroLetteringPop 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
  will-change: transform, opacity;
}

.hero-subheadline-exact {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.8;
  color: #ffd6e7;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  animation: heroLetteringPop 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
  will-change: transform, opacity;
}

.hero-actions-exact {
  animation: heroLetteringPop 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.60s both;
  will-change: transform, opacity;
}

.btn-exact-book {
  background: #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-exact-book:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 127, 0.4);
}

.hero-model-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-model-card {
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 0, 127, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #11020a;
  animation: heroModelCardPop 1s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
  will-change: transform, opacity;
}

.hero-model-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s ease;
}

.hero-model-card:hover img {
  transform: scale(1.03);
}

.hero-model-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(10, 1, 6, 0.88);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-model-badge-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-model-badge-sub {
  font-size: 0.75rem;
  color: #ff7eb3;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-slide-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.hero-slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.hero-slide-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--primary);
}

@media (max-width: 991px) {
  .hero-exact-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
    padding: 50px 0;
  }
  .hero-divider-bar {
    margin: 0 auto 20px;
  }
  .hero-slide-nav {
    justify-content: center;
  }
  .hero-model-card {
    max-width: 340px;
    margin: 0 auto;
  }
  .hero-model-card img {
    height: 400px;
  }
}

/* Exact About Banner Styles with Hair Girl Photo */
.exact-about-banner {
  position: relative;
  overflow: hidden;
}

.about-exact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 10, 10, 0.75) 0%, rgba(225, 99, 131, 0.25) 100%),
              linear-gradient(90deg, rgba(16, 10, 10, 0.9) 0%, rgba(16, 10, 10, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.about-exact-content {
  max-width: 650px;
  margin-left: auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-exact-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.about-exact-divider {
  width: 60px;
  height: 3px;
  background: #ff007f;
  margin-bottom: 25px;
}

.about-exact-welcome {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ff85b3;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.about-exact-p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: #e5e5e5;
  margin-bottom: 18px;
}

.about-exact-p strong {
  color: #ffffff;
}

.btn-exact-readmore {
  display: inline-block;
  padding: 11px 32px;
  border-radius: 50px;
  background: #ff007f;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: var(--transition);
}

/* Exact Bridal Carousel Styles */
.exact-bridal-carousel-section {
  background: #000000;
  padding: 50px 0;
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.exact-bridal-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.exact-bridal-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 10px;
  scrollbar-width: none;
  width: 100%;
}

.exact-bridal-slider::-webkit-scrollbar {
  display: none;
}

.exact-bridal-card {
  flex: 0 0 280px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background: #111111;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  border: 1px solid #222222;
  transition: var(--transition);
}

.exact-bridal-card:hover {
  transform: translateY(-6px);
  border-color: #ff007f;
  box-shadow: 0 12px 30px rgba(255, 0, 127, 0.25);
}

.exact-bridal-img-box {
  width: 100%;
  height: 100%;
  position: relative;
}

.exact-bridal-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exact-bridal-card:hover .exact-bridal-img-box img {
  transform: scale(1.05);
}

.exact-watermark-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0.95) 100%);
  padding: 15px;
  text-align: center;
  color: #ffffff;
}

.exact-watermark-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
}

.exact-watermark-sub {
  font-size: 0.72rem;
  color: #ffd6e7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exact-watermark-phone {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ff007f;
  margin-top: 3px;
}

.exact-bridal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.exact-bridal-nav-btn:hover {
  background: #ff007f;
  border-color: #ff007f;
  transform: translateY(-50%) scale(1.1);
}

.exact-bridal-nav-btn.prev-btn {
  left: -20px;
}

.exact-bridal-nav-btn.next-btn {
  right: -20px;
}

@media (max-width: 768px) {
  .exact-bridal-nav-btn {
    display: none;
  }
  .exact-bridal-card {
    flex: 0 0 240px;
    height: 360px;
  }
}

.nav-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 16px 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: #ffffff;
  background: #181818;
  border-bottom: 2px solid var(--primary);
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #000000;
  border-top: 2px solid var(--primary);
  box-shadow: var(--shadow-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  padding: 8px 0;
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  color: #dddddd;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border-bottom: 1px solid #1a1a1a;
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background: #181818;
  color: var(--primary);
  padding-left: 24px;
}

.nav-book-btn {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  background-color: #121212;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s ease;
  transform: scale(1.05);
  background-size: cover;
  background-position: center center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
  color: #ffffff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238, 9, 121, 0.2);
  border: 1px solid var(--primary);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: var(--border-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.6;
  color: #dddddd;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-nav-arrows {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.hero-arrow-btn:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  transform: scale(1.08);
}

/* About Section */
.about-section {
  padding: 90px 0 70px;
  background: #ffffff;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 25px 30px;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-lg);
  max-width: 240px;
  text-align: center;
}

.about-exp-number {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-exp-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.about-content-wrap h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: #111111;
}

.about-highlight-sub {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text {
  color: #4b5563;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1f242e;
}

.about-feature-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff0f6;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Portfolio Carousel */
.portfolio-carousel-section {
  padding: 40px 0 60px;
  background: #fbfbfb;
  overflow: hidden;
}

.portfolio-slider-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
}

.portfolio-slider-container::-webkit-scrollbar {
  display: none;
}

.portfolio-card {
  flex: 0 0 280px;
  height: 380px;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

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

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

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
}

.portfolio-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.portfolio-card-category {
  font-size: 0.8rem;
  color: #ff9ec4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why iG */
.why-ig-section {
  padding: 90px 0;
  background: #ffffff;
}

.why-ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.why-ig-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: var(--border-radius-card);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.why-ig-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #ffd6e7;
}

.why-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1;
}

.why-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}

.why-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.why-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.why-cta-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

/* Appointment Booking Section */
.booking-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #111111 0%, #1e1e1e 100%);
  color: #ffffff;
  position: relative;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.booking-info-wrap h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.booking-info-wrap p {
  color: #cccccc;
  font-size: 1.02rem;
  margin-bottom: 30px;
}

.booking-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.booking-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(238, 9, 121, 0.2);
  border: 1px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.booking-highlight-text h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.booking-highlight-text p {
  color: #999999;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.booking-form-box {
  background: #ffffff;
  color: var(--text-dark);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
}

.booking-form-box h3 {
  font-size: 1.6rem;
  color: #111111;
  margin-bottom: 6px;
  text-align: center;
}

.booking-form-box p.form-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 25px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--border-radius-sm);
  background: #fbfbfb;
  color: #222222;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(238, 9, 121, 0.1);
}

.gender-radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 4px;
}

.gender-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

.gender-radio-label input[type="radio"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

/* Services Cards */
.services-section {
  padding: 90px 0;
  background: #fdfdfd;
}

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

.service-card {
  background: #ffffff;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: #ffd6e7;
}

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

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

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

.service-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.service-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.service-card-title a:hover {
  color: var(--primary);
}

.service-card-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f5f5f5;
  padding-top: 15px;
}

.service-learn-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-learn-more:hover {
  gap: 8px;
  color: var(--secondary);
}

/* Experience Checklist */
.experience-section {
  padding: 90px 0;
  background: #ffffff;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.experience-content h2 {
  font-size: 2.3rem;
  margin-bottom: 18px;
  color: #111111;
}

.experience-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 25px 0 35px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1f242e;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.experience-banner-box {
  background: linear-gradient(135deg, #161616 0%, #262626 100%);
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.experience-banner-box h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.experience-banner-box p {
  color: #cccccc;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* PROCOS */
.procos-section {
  padding: 80px 0;
  background: #fbfbfb;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.procos-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
}

.procos-logo-box {
  text-align: center;
  padding: 25px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px dashed #d1d5db;
}

.procos-logo-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #111111;
}

.procos-logo-title span {
  color: var(--primary);
}

.procos-logo-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666666;
  margin-top: 4px;
}

.procos-info h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #111111;
}

.procos-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* FAQ Accordion */
.faq-section {
  padding: 90px 0;
  background: #ffffff;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: var(--transition);
}

.faq-item.active {
  border-color: #ffb8d7;
  box-shadow: 0 4px 15px rgba(238, 9, 121, 0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: #555555;
  font-size: 0.94rem;
  line-height: 1.7;
  background: #fdfdfd;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-book-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
  margin-top: 6px;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background: #0d0e12;
  color: #bbbbbb;
  padding: 70px 0 0;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1f222e;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
}

.footer-branch-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-branch-sub {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #a0a5b5;
  margin-bottom: 15px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-contact-link:hover {
  color: var(--primary);
}

.footer-middle-branding {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-logo-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-timings {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #a0a5b5;
}

.footer-timings span {
  color: #ffffff;
  font-weight: 600;
}

.footer-bottom {
  padding: 25px 0;
  background: #08090b;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright-text {
  font-size: 0.85rem;
  color: #888888;
}

.social-links-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: var(--shadow-dark);
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp { background: #25d366; }
.floating-call { background: var(--primary); }
.floating-btn:hover { transform: scale(1.1); color: #ffffff; }

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: modalPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 24px 30px;
  position: relative;
}

.modal-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
  overflow-y: auto;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, #0b0c10 0%, #1a1a24 100%);
  padding: 80px 0 60px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.banner-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.banner-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #999999;
}

.banner-breadcrumb a { color: #ffffff; }
.banner-breadcrumb a:hover { color: var(--primary); }

/* Tab Filters */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--border-radius-pill);
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #333333;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(238, 9, 121, 0.3);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.gallery-item {
  border-radius: var(--border-radius-card);
  overflow: hidden;
  position: relative;
  height: 340px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: #111111;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-item-category {
  font-size: 0.8rem;
  color: #ff9ec4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Menu Rate Card Grid */
.menu-category-section {
  margin-bottom: 60px;
}

.menu-category-header {
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 12px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-category-header h3 {
  font-size: 1.6rem;
  color: #111111;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.menu-item-row {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.menu-item-row:hover {
  border-color: #ffd6e7;
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.menu-item-details h4 {
  font-size: 1.05rem;
  color: #111111;
  margin-bottom: 4px;
}

.menu-item-details p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.menu-item-price-wrap {
  text-align: right;
  flex-shrink: 0;
  margin-left: 20px;
}

.menu-price-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid #e8e8e8;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.package-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 4px 18px;
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111111;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.package-features {
  text-align: left;
  margin: 25px 0 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #444444;
}

.package-feature-icon {
  color: var(--primary);
  font-size: 1rem;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.branch-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  border: 1px solid #eeeeee;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #ffd6e7;
}

.branch-badge {
  display: inline-block;
  background: #fff0f6;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--border-radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 40px;
  border: 1px solid #e0e0e0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eeeeee;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-img-wrap {
  height: 200px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: #888888;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #111111;
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #111111;
  color: #ffffff;
  padding: 16px 28px;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  z-index: 3000;
  border-left: 4px solid var(--primary);
  animation: toastFade 0.4s ease;
}

@keyframes toastFade {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid,
  .booking-wrapper,
  .experience-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-ig-grid,
  .services-grid,
  .packages-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .procos-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
  }

  /* Top Bar in Mobile */
  .exact-top-bar {
    padding: 10px 0;
    background: #000000;
  }

  .exact-top-bar .top-bar-inner {
    padding: 0 16px;
    flex-direction: row;
  }

  .exact-top-actions {
    display: flex !important;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
  }

  .exact-mobile-call-pill,
  .exact-mobile-book-pill {
    flex: 1;
    height: 38px;
    padding: 0 16px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 0, 127, 0.3);
    border: none;
    cursor: pointer;
  }

  /* Main Nav Bar in Mobile */
  .exact-nav-bar {
    background: #000000;
    padding: 10px 0;
    border-bottom: 1px solid #181818;
  }

  .exact-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }

  .mobile-nav-brand {
    display: flex !important;
  }

  .exact-pink-hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ff007f !important;
    color: #ffffff !important;
    border-radius: 6px;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 0, 127, 0.4);
    cursor: pointer;
  }

  /* Hero Section in Mobile - Full Bleed Nail Art Photo with Dark Gradient */
  .hero-exact-style {
    min-height: 600px;
    background-image: var(--hero-mobile-bg, url('/images/nails/nail-design-7.jpg')) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    transition: background-image 0.4s ease;
  }

  .hero-overlay-exact {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(5, 0, 3, 0.6) 45%, rgba(5, 0, 3, 0.92) 100%) !important;
  }

  .hero-exact-grid {
    display: block;
    min-height: auto;
    padding: 100px 0 15px;
  }

  .hero-model-frame {
    display: none !important;
  }

  .hero-content-exact {
    max-width: 100%;
    text-align: left;
    padding: 0;
  }

  .hero-divider-bar {
    width: 60px;
    height: 4px;
    background: #ffffff;
    margin: 0 0 20px;
  }

  .hero-headline-exact {
    font-size: 1.65rem;
    line-height: 1.35;
    margin-bottom: 22px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  }

  .hero-subheadline-exact {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    font-weight: 500;
  }

  .btn-exact-book {
    padding: 12px 30px;
    font-size: 0.85rem;
  }

  /* Floating Actions in Mobile */
  .floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 990;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #000000;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px 20px;
    transition: var(--transition);
    overflow-y: auto;
    z-index: 1001;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #1f1f1f;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #111111;
    border-top: none;
    box-shadow: none;
    padding-left: 15px;
  }
  
  .why-ig-grid,
  .services-grid,
  .menu-items-grid,
  .packages-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .booking-form-box {
    padding: 25px 20px;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Nail Art & Extension Studio Showcase
   ========================================================================== */
.nail-spotlight-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #0d0d0d 0%, #171717 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.nail-spotlight-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.nail-spotlight-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(235, 12, 85, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.nail-spotlight-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.nail-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #d4af37;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.nail-spotlight-title {
  font-size: 2.6rem;
  font-family: var(--font-playfair);
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.nail-spotlight-title span {
  background: linear-gradient(90deg, #d4af37, #f7d774, #e8195e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nail-spotlight-sub {
  color: #bbbbbb;
  font-size: 1.05rem;
  line-height: 1.7;
}

.nail-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.nail-spotlight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.nail-spotlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.15);
  background: rgba(255, 255, 255, 0.07);
}

.nail-card-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

.nail-spotlight-card:hover .nail-card-img-wrap img {
  transform: scale(1.08);
}

.nail-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #f7d774;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 6px;
}

.nail-card-body {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nail-card-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 700;
}

.nail-card-desc {
  color: #aaaaaa;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.nail-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.nail-card-features li {
  color: #dddddd;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.nail-card-features li svg {
  color: #d4af37;
  flex-shrink: 0;
}

.nail-card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 14px;
}

.nail-features-ribbon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
}

.nail-ribbon-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.nail-ribbon-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nail-ribbon-text h4 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.nail-ribbon-text p {
  color: #999999;
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
}

.nail-cta-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(235, 12, 85, 0.15) 0%, rgba(212, 175, 55, 0.15) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 35px 25px;
}

.nail-cta-box h3 {
  font-size: 1.7rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.nail-cta-box p {
  color: #cccccc;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

