html{
  scroll-behavior: smooth;
}
/* =====================================================
   LAKSHAYAA BEAUTY PARLOUR - Premium CSS Design System
   Luxury Feminine Aesthetic
   ===================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100;0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400;1,9..40,500&family=Noto+Sans+Tamil:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  /* Primary Palette */
  --pink-50: #fff0f6;
  --pink-100: #ffe0ec;
  --pink-200: #fcc5d8;
  --pink-300: #faa2c1;
  --pink-400: #f783ac;
  --pink-500: #e8628a;
  --pink-600: #d6336c;
  --pink-700: #c2255c;

  /* Gold Palette */
  --gold-50: #fff9e6;
  --gold-100: #fff3cc;
  --gold-200: #ffe599;
  --gold-300: #ffd866;
  --gold-400: #ffcc33;
  --gold-500: #d4a843;
  --gold-600: #b8922e;
  --gold-700: #8b6914;

  /* Neutral Palette */
  --cream: #fdf6ee;
  --cream-dark: #f5ebe0;
  --white: #ffffff;
  --off-white: #fafaf8;
  --dark-100: #3d3535;
  --dark-200: #2e2525;
  --dark-300: #1f1a1a;
  --dark-400: #161212;
  --dark-500: #0e0b0b;

  /* Accent */
  --rose: #e8a0bf;
  --blush: #f7d1d1;
  --lavender: #e5d4ef;
  --sage: #d4e4d9;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--pink-400) 0%, var(--gold-400) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(22,18,18,0.7) 0%, rgba(214,51,108,0.3) 50%, rgba(212,168,67,0.2) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,240,246,0.08) 0%, rgba(255,204,51,0.05) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --gradient-dark: linear-gradient(180deg, var(--dark-400) 0%, var(--dark-500) 100%);
  --gradient-section: linear-gradient(180deg, var(--dark-400) 0%, var(--dark-300) 50%, var(--dark-400) 100%);
  --gradient-gold-text: linear-gradient(90deg, var(--gold-300), var(--gold-500), var(--gold-300));
  --gradient-pink-glow: radial-gradient(ellipse at center, rgba(232,98,138,0.15) 0%, transparent 70%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.2);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.3);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.4);
  --shadow-glow-pink: 0 0 30px rgba(232,98,138,0.3);
  --shadow-glow-gold: 0 0 30px rgba(212,168,67,0.3);
  --shadow-card: 0 4px 30px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
  --shadow-card-hover: 0 12px 50px rgba(232,98,138,0.2), 0 0 0 1px rgba(255,204,51,0.15);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-tamil: 'Noto Sans Tamil', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1280px;
  --container-padding: 0 24px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-in-out);
  --transition-spring: 0.5s var(--ease-spring);

  /* Z-index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-400);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-500);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pink-500), var(--gold-500));
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--pink-400), var(--gold-400));
}

/* Selection */
::selection {
  background: var(--pink-500);
  color: var(--white);
}

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

ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  animation: preloaderSlide 1.5s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---------- Section Common ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(232,98,138,0.1);
  border: 1px solid rgba(232,98,138,0.2);
  color: var(--pink-300);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-badge i {
  font-size: 0.7rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.section-title .highlight {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(253,246,238,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Section Divider Glow */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,98,138,0.3), rgba(212,168,67,0.3), transparent);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(22,18,18,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: var(--z-sticky);
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: var(--shadow-glow-pink);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold-400);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: -2px;
}

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

.nav-link {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: var(--z-sticky);
}

.nav-lang-toggle {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: rgba(255,255,255,0.05);
}

.nav-lang-toggle:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(232,98,138,0.3);
}

.nav-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232,98,138,0.4);
}

.nav-call-btn i {
  font-size: 0.85rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: var(--z-sticky);
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

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

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

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

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-500);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--dark-400), transparent);
}

/* Floating decoration circles */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-decor-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(232,98,138,0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero-decor-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -50px;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gold-300);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 28px;
  animation: fadeInDown 1s var(--ease-out) 0.3s both;
}

.hero-badge i {
  font-size: 0.75rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 1s var(--ease-out) 0.5s both;
}

.hero-title .hero-highlight {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(253,246,238,0.7);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeInUp 1s var(--ease-out) 0.7s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
  animation: fadeInUp 1s var(--ease-out) 0.9s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,98,138,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(232,98,138,0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.btn i {
  font-size: 0.9rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 50px;
  animation: fadeInUp 1s var(--ease-out) 1.1s both;
}

.hero-stat {
  position: relative;
  padding-left: 16px;
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: calc(100% - 8px);
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

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

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(253,246,238,0.5);
  font-weight: 500;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease-out) 1.3s both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- MARQUEE SECTION ---------- */
.marquee-section {
  padding: 30px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}

.marquee-item:hover {
  color: var(--gold-400);
}

.marquee-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-primary);
  flex-shrink: 0;
  opacity: 0.5;
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
  background: var(--gradient-section);
}

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

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition-base);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(232,98,138,0.2);
}

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

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

/* Gradient placeholder for images that don't load */
.service-card-image .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
}

.service-card-image .img-placeholder.gradient-1 {
  background: linear-gradient(135deg, #2d1b2e 0%, #1a1025 100%);
}
.service-card-image .img-placeholder.gradient-2 {
  background: linear-gradient(135deg, #1b2d2e 0%, #0f1a25 100%);
}
.service-card-image .img-placeholder.gradient-3 {
  background: linear-gradient(135deg, #2d251b 0%, #1a150f 100%);
}

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(22,18,18,0.9), transparent);
  pointer-events: none;
}

.service-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.service-badge.bestseller {
  background: rgba(232,98,138,0.9);
  color: var(--white);
}

.service-badge.popular {
  background: rgba(212,168,67,0.9);
  color: var(--dark-400);
}

.service-badge.premium {
  background: linear-gradient(135deg, rgba(212,168,67,0.95), rgba(184,146,46,0.95));
  color: var(--dark-400);
}

.service-card-price {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  color: var(--gold-300);
  font-size: 1rem;
  font-weight: 700;
  z-index: 2;
  font-family: var(--font-display);
}

.service-card-body {
  padding: 22px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.85rem;
  color: rgba(253,246,238,0.5);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(232,98,138,0.12);
  border: 1px solid rgba(232,98,138,0.2);
  color: var(--pink-300);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.service-card-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  transform: translateX(4px);
}

.service-card-btn i {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.service-card-btn:hover i {
  transform: translateX(4px);
}

/* ---------- GALLERY SECTION ---------- */
.gallery-section {
  background: var(--dark-500);
}

.gallery-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow-pink);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,18,18,0.8), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-item-label {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.gallery-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0;
  transition: all var(--transition-base);
}

.gallery-item:hover .gallery-item-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: 40px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: scale(0.85);
  transition: transform var(--transition-slow);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(232,98,138,0.3);
  transform: rotate(90deg);
}

/* ---------- BOOKING SECTION ---------- */
.booking-section {
  background: var(--gradient-section);
  position: relative;
}

.booking-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--gradient-pink-glow);
  border-radius: 50%;
  pointer-events: none;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.booking-info {
  padding-right: 20px;
}

.booking-info-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.booking-info-title .highlight {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-info-text {
  color: rgba(253,246,238,0.6);
  line-height: 1.8;
  margin-bottom: 30px;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232,98,138,0.12);
  border: 1px solid rgba(232,98,138,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.booking-feature-text {
  font-size: 0.92rem;
  color: rgba(253,246,238,0.7);
  font-weight: 500;
}

/* Form */
.booking-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.booking-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(253,246,238,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.form-input::placeholder {
  color: rgba(253,246,238,0.3);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--pink-400);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(232,98,138,0.15);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(253,246,238,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}

.form-select option {
  background: var(--dark-300);
  color: var(--cream);
}

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

.form-error {
  font-size: 0.75rem;
  color: #ff6b6b;
  margin-top: 6px;
  display: none;
  animation: shakeError 0.4s ease;
}

.form-error.visible {
  display: block;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  50% { transform: translateX(8px); }
  75% { transform: translateX(-4px); }
}

.form-input.error,
.form-select.error {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.15);
}

.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(232,98,138,0.3);
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(232,98,138,0.4);
}

.form-submit i {
  font-size: 1.1rem;
}

/* ---------- REVIEWS SECTION ---------- */
.reviews-section {
  background: var(--dark-500);
  position: relative;
  overflow: hidden;
}

.reviews-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: var(--gradient-pink-glow);
  opacity: 0.5;
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(232,98,138,0.2);
}

.review-card-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-family: var(--font-display);
  color: rgba(232,98,138,0.1);
  line-height: 1;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(232,98,138,0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.review-card-avatar.avatar-pink {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
}

.review-card-avatar.avatar-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
}

.review-card-avatar.avatar-rose {
  background: linear-gradient(135deg, var(--rose), var(--pink-400));
}

.review-card-avatar.avatar-lavender {
  background: linear-gradient(135deg, var(--lavender), #9b7cc4);
}

.review-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.review-card-service {
  font-size: 0.78rem;
  color: rgba(253,246,238,0.4);
  margin-top: 2px;
}

.review-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-card-stars i {
  color: var(--gold-400);
  font-size: 0.85rem;
}

.review-card-text {
  font-size: 0.92rem;
  color: rgba(253,246,238,0.65);
  line-height: 1.8;
  font-style: italic;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  background: var(--gradient-section);
}

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

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(232,98,138,0.2);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(232,98,138,0.12);
  border: 1px solid rgba(232,98,138,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  color: var(--pink-400);
  transition: all var(--transition-base);
}

.contact-card:hover .contact-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-glow-pink);
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-card-text {
  font-size: 0.9rem;
  color: rgba(253,246,238,0.55);
  line-height: 1.7;
}

.contact-card-text a {
  color: var(--pink-300);
  transition: color var(--transition-fast);
}

.contact-card-text a:hover {
  color: var(--gold-400);
}

/* Map */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  height: 350px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark-500);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand-text {
  font-size: 0.88rem;
  color: rgba(253,246,238,0.5);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(253,246,238,0.5);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--pink-300);
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-pink);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(253,246,238,0.35);
}

.footer-copyright a {
  color: var(--pink-400);
}

.footer-made-with {
  font-size: 0.82rem;
  color: rgba(253,246,238,0.35);
}

.footer-made-with i {
  color: var(--pink-500);
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-float-tooltip {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--dark-400);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: var(--z-overlay);
}

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

.back-to-top:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-3px);
}

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

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-info {
    padding-right: 0;
    text-align: center;
  }

  .booking-features {
    align-items: center;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    columns: 2;
  }
}

body, html {
  overflow-x: hidden;
  width: 100%;
}

@media (max-width: 768px) {

  .navbar {
    width: 100%;
    padding: 12px 0;
  }

  .navbar .container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    gap: 8px;
  }

  .nav-logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1.05rem;
  }

  .nav-logo-text {
    font-size: 1.05rem;
  }

  .nav-logo-text span {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-lang-toggle {
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  .nav-hamburger {
    padding: 4px;
  }

  :root {
    --section-padding: 70px 0;
  }

  /* Mobile Navigation - Premium Full Screen Menu */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: calc(var(--z-sticky) - 1);
    overflow-y: auto;
    width: 100vw;
    height: 100vh;
    background: rgba(22, 18, 18, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 12px 24px;
    width: auto;
    text-align: center;
    border-radius: var(--radius-full);
  }

  .nav-hamburger {
    display: flex;
    z-index: var(--z-sticky);
  }

  .nav-call-btn {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-scroll {
    display: none;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Gallery */
  .gallery-grid {
    columns: 2;
    column-gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
  }

  /* Booking */
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form-card {
    padding: 28px 22px;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 50px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-text {
    max-width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* WhatsApp Float */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float-tooltip {
    display: none;
  }

  .whatsapp-float-btn {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }

  .back-to-top {
    bottom: 84px;
    right: 26px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .nav-logo-text {
    font-size: 1.05rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .service-card-image {
    height: 180px;
  }

  .gallery-grid {
    columns: 1;
  }

  .contact-map {
    height: 250px;
  }
}

/* ---------- TAMIL LANGUAGE STYLES ---------- */
body.lang-ta .tamil-text {
  font-family: var(--font-tamil);
}

body.lang-ta .section-subtitle {
  font-family: var(--font-tamil);
}

/* ---------- UTILITY CLASSES ---------- */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold-400);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}