/* ==========================================================================
   Sri Tejus Beauty Parlour - Master Unified Stylesheet
   Theme: Luxury Rose Gold, Deep Wine & Warm Nude Pearl
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --primary-gold: #D4AF37;
  --primary-gold-light: #F4E297;
  --primary-gold-dark: #AA820A;
  --rose-accent: #C86D7D;
  --wine-dark: #3D0C1E;
  --emerald-deep: #0B2B22;
  --nude-bg: #FAF6F0;
  --nude-card: #FFFFFF;
  --dark-text: #1E1B18;
  --muted-text: #665E57;
  --border-light: rgba(212, 175, 55, 0.25);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.2);
  --shadow-hover: 0 20px 40px rgba(61, 12, 30, 0.12);

  /* Typography - Royal Editorial Luxury */
  --font-serif: 'Cormorant Garamond', Garamond, Georgia, serif;
  --font-sans: 'Montserrat', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. Global Resets & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--nude-bg);
  color: var(--dark-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--wine-dark);
  letter-spacing: 0.2px;
}

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

.subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-gold-dark);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-title-wrap p {
  color: var(--muted-text);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* Decorative Gold Line */
.gold-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  margin: 1rem auto;
}

/* --------------------------------------------------------------------------
   3. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
  color: #FFFFFF;
}

.btn-wine {
  background: var(--wine-dark);
  color: #FFFFFF;
}

.btn-wine:hover {
  background: #57122c;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

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

.btn-outline-gold:hover {
  background: var(--primary-gold);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #1eb956;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   4. Header & Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--wine-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.top-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info i {
  color: var(--primary-gold);
}

.top-social {
  display: flex;
  gap: 1rem;
}

.top-social a {
  color: #FFFFFF;
  opacity: 0.8;
}

.top-social a:hover {
  color: var(--primary-gold);
  opacity: 1;
}

/* Main Navigation */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
}

.navbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 58px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.logo-brand:hover .logo-img {
  transform: scale(1.05);
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-dark), var(--primary-gold));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: var(--shadow-gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--wine-dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-gold-dark);
  font-weight: 600;
  margin-top: 2px;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-text);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--wine-dark);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background-color: var(--wine-dark);
  transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   5. Hero Sections (Home & Inner Pages)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   5. Hero Banner Auto Slider (Centered Content & Unique Animations)
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 88vh;
  background-color: var(--wine-dark);
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Background Image with Smooth Ken Burns Scale Animation */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-slide-bg {
  animation: kenBurnsZoom 7.5s ease-out forwards;
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.02);
  }
}

/* Dark Rich Luxury Overlay for High Legibility */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 5, 15, 0.72) 0%, rgba(15, 3, 8, 0.88) 100%),
              radial-gradient(circle at center, rgba(61, 12, 30, 0.35) 0%, rgba(10, 2, 5, 0.85) 100%);
  pointer-events: none;
}

/* Centered Container & Flex Alignment */
.hero-slide-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  min-height: 88vh;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-center-content {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Glassmorphic Luxury Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.4rem;
  background: rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  color: var(--primary-gold-light);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
}

.hero-slide.active .hero-badge {
  animation: slideFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

/* Hero Centered Heading */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.16;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.25rem;
  text-align: center;
  opacity: 0;
}

.hero-title span {
  color: var(--primary-gold-light);
  font-style: italic;
  background: linear-gradient(135deg, #FFFDF9, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slide.active .hero-title {
  animation: slideFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

/* Hero Description Paragraph */
.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.93);
  line-height: 1.75;
  max-width: 780px;
  margin: 0 auto 2.25rem auto;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  text-align: center;
  opacity: 0;
}

.hero-slide.active .hero-desc {
  animation: slideFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

/* Centered Hero CTA Buttons Wrapper */
.hero-buttons-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 0 auto 2.5rem auto;
  width: 100%;
  opacity: 0;
}

.hero-slide.active .hero-buttons-center {
  animation: scaleFadeIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

/* Hero Custom Button Styles */
.btn-whatsapp-hero {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-hero:hover {
  background: #1eb956;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.btn-outline-gold-light {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline-gold-light:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Centered Hero Stats Badges */
.hero-stats-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0;
}

.hero-slide.active .hero-stats-center {
  animation: slideFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.7rem 1.6rem;
  border-radius: 16px;
  min-width: 150px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-badge:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-gold-light);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Unique Staggered Animations */
@keyframes slideFadeDown {
  0% {
    opacity: 0;
    transform: translateY(-25px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideFadeUp {
  0% {
    opacity: 0;
    transform: translateY(35px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Navigation Arrow Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slider-arrow-prev {
  left: 2.5rem;
}

.slider-arrow-next {
  right: 2.5rem;
}

.slider-arrow:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

/* Slider Bottom Control Bar & Dots */
.slider-bottom-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
  width: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFF8E7, var(--primary-gold));
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

/* Glowing Progress Timer Line */
.slider-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-gold), #FFFDF9);
  z-index: 12;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  transition: width 0.1s linear;
}

/* Page Banner (Inner Pages) */
.page-banner {
  background: linear-gradient(135deg, rgba(61,12,30,0.9) 0%, rgba(11,43,34,0.8) 100%),
              url('../images/banner-contact.jpg') center/cover no-repeat;
  padding: 5rem 1.5rem;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}

.page-banner h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: var(--primary-gold-light);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   6. Sections & Cards
   -------------------------------------------------------------------------- */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* About Highlights Grid */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-img-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.about-img-frame:hover img {
  transform: scale(1.03);
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--wine-dark);
  color: #FFFFFF;
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary-gold);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.about-experience-badge h4 {
  color: var(--primary-gold);
  font-size: 1.8rem;
  line-height: 1;
}

.about-experience-badge p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-list {
  margin: 1.5rem 0 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--dark-text);
}

.feature-item i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* Service Category Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--nude-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

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

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(61, 12, 30, 0.85);
  color: var(--primary-gold-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

.service-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  margin-bottom: 0.75rem;
}

.service-items-list {
  margin: 1rem 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-chip {
  background: var(--nude-bg);
  color: var(--dark-text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

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

/* Service Category Tabs Filter (Services Page) */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  background: var(--nude-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--wine-dark);
  color: #FFFFFF;
  border-color: var(--wine-dark);
  box-shadow: var(--shadow-soft);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(61,12,30,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.gallery-overlay h4 {
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.gallery-overlay p {
  color: var(--primary-gold-light);
  font-size: 0.85rem;
}

.gallery-zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   7. Our Work Gallery Section (3x3 Grid, Clean Images, Lightbox Next/Prev)
   -------------------------------------------------------------------------- */
.our-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.work-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  background: var(--nude-card);
  border: 1px solid var(--border-light);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
  aspect-ratio: 4 / 3;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 18px 40px rgba(61, 12, 30, 0.16);
}

.work-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Subtle Zoom Icon Indicator on Hover (No Text Overlay) */
.work-hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(61, 12, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--primary-gold-light);
  border: 1px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 10, 12, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
}

/* Lightbox Modal Next & Prev Arrows */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2010;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-arrow:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #FFFFFF;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2015;
  transition: var(--transition-fast);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   8. Testimonials 3-Column Auto Slider (Unique Luxury Card Model)
   -------------------------------------------------------------------------- */
.testimonial-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 3.5rem 0;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  width: 100%;
}

.testimonial-card-item {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 0.9rem;
  box-sizing: border-box;
}

.testi-card-inner {
  background: var(--nude-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.7rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Gold Accent Shimmer Top Line */
.testi-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, var(--wine-dark), var(--primary-gold), var(--wine-dark));
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.testi-card-inner:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 18px 40px rgba(61, 12, 30, 0.14);
}

.testi-card-inner:hover::before {
  opacity: 1;
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-dark), var(--primary-gold));
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.testi-info h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wine-dark);
  margin-bottom: 0.15rem;
}

.testi-service {
  font-size: 0.78rem;
  color: var(--primary-gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.testi-quote-icon {
  margin-left: auto;
  font-size: 1.8rem;
  color: rgba(212, 175, 55, 0.25);
  transition: color 0.3s ease, transform 0.3s ease;
}

.testi-card-inner:hover .testi-quote-icon {
  color: var(--primary-gold);
  transform: scale(1.15) rotate(-10deg);
}

.testi-stars {
  color: #FFB800;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.testi-text {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testi-badge {
  font-size: 0.76rem;
  color: #1eb956;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Controls: Next & Prev Arrows */
.testi-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--nude-card);
  border: 1px solid var(--border-light);
  color: var(--wine-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
}

.testi-prev {
  left: -5px;
}

.testi-next {
  right: -5px;
}

.testi-arrow:hover {
  background: var(--wine-dark);
  color: var(--primary-gold-light);
  border-color: var(--wine-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-hover);
}

/* Testimonial Indicator Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.testi-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(61, 12, 30, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.testi-dots .dot.active {
  width: 30px;
  border-radius: 10px;
  background: var(--wine-dark);
  box-shadow: 0 0 10px rgba(61, 12, 30, 0.3);
}

/* Testimonials / Why Choose Us */
/* Why Choose Us - 6 Topics Grid & Animations */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.why-choose-card {
  background: var(--nude-card);
  padding: 2.5rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Shimmer Accent Bar on Top Hover */
.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3.5px;
  background: linear-gradient(90deg, var(--wine-dark), var(--primary-gold), var(--wine-dark));
  transition: width 0.4s ease;
}

.why-choose-card:hover::before {
  width: 100%;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 16px 35px rgba(61, 12, 30, 0.12);
}

/* Icon Wrap Circle with Gradient and Glowing Pulse */
.why-icon-wrap {
  width: 76px;
  height: 76px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-dark), #5e132e);
  color: var(--primary-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(61, 12, 30, 0.25);
  border: 2px solid rgba(212, 175, 55, 0.4);
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.why-choose-card:hover .why-icon-wrap {
  transform: scale(1.12) rotate(6deg);
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.45);
  border-color: var(--primary-gold-light);
}

.why-choose-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wine-dark);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.why-choose-card p {
  color: var(--muted-text);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}

.features-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: var(--nude-card);
  padding: 2.5rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(61,12,30,0.08));
  color: var(--wine-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.feature-box h3 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.feature-box p {
  color: var(--muted-text);
  font-size: 0.92rem;
}

/* Contact Cards & Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  display: flex;
  gap: 1.25rem;
  background: var(--nude-card);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}

.info-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wine-dark);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-details h4 {
  margin-bottom: 0.3rem;
}

.info-details p, .info-details a {
  color: var(--muted-text);
  font-size: 0.95rem;
}

.info-details a:hover {
  color: var(--primary-gold-dark);
}

.contact-form-card {
  background: var(--nude-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-hover);
}

.contact-form-card h3 {
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

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

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  background: #FFFDFB;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

.map-container {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* --------------------------------------------------------------------------
   7. Quick Booking Modal
   -------------------------------------------------------------------------- */
.booking-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 10, 12, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.booking-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.booking-modal-card {
  background: #FFFFFF;
  max-width: 550px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  border: 2px solid var(--primary-gold);
}

.booking-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted-text);
  transition: var(--transition-fast);
}

.booking-modal-close:hover {
  color: var(--wine-dark);
}

/* --------------------------------------------------------------------------
   8. Footer & Mobile Sticky Bar
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--wine-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 1.5rem 2rem 1.5rem;
  border-top: 3px solid var(--primary-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin: 1rem 0 1.5rem 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-title {
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a:hover {
  color: var(--primary-gold-light);
  padding-left: 5px;
}

.footer-contact-info p {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
}

.footer-contact-info i {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  text-align: center;
  font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   13. Floating Sticky Contact Action Widgets (Bottom Left)
   -------------------------------------------------------------------------- */
.floating-contact-widgets {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  pointer-events: none;
}

.floating-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, max-width 0.4s ease;
  position: relative;
  overflow: hidden;
  max-width: 52px;
  white-space: nowrap;
}

.floating-btn:hover {
  max-width: 240px;
  padding-right: 1.25rem;
  transform: translateY(-4px) scale(1.05);
}

.float-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #FFFFFF;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.float-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.float-whatsapp:hover {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.float-whatsapp .float-btn-icon {
  background: #25D366;
}

.float-call {
  background: var(--wine-dark);
  color: #FFFFFF;
  border: 1px solid var(--primary-gold);
}

.float-call:hover {
  box-shadow: 0 12px 30px rgba(61, 12, 30, 0.5);
}

.float-call .float-btn-icon {
  background: var(--wine-dark);
  color: var(--primary-gold-light);
}

.float-btn-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding-right: 0.3rem;
}

.float-btn-text span {
  color: var(--primary-gold-light);
  font-weight: 800;
}

.floating-btn:hover .float-btn-text {
  opacity: 1;
  transform: translateX(0);
}

/* Continuous Pulse Ring Animations */
.float-whatsapp::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseRingWhatsApp 2.2s infinite;
  pointer-events: none;
}

.float-call::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  animation: pulseRingCall 2.2s infinite 0.6s;
  pointer-events: none;
}

@keyframes pulseRingWhatsApp {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes pulseRingCall {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Back to Top Button on Right Side */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wine-dark);
  color: var(--primary-gold-light);
  border: 1px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-gold);
  color: #FFFFFF;
  border-color: var(--primary-gold);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

/* --------------------------------------------------------------------------
   9. Custom Unique Animations
   -------------------------------------------------------------------------- */
/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}

/* Keyframe Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.15; }
  100% { transform: scale(1.15); opacity: 0.3; }
}

@keyframes floatAnimation {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* Ripple Click Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   10. Media Queries / Responsiveness
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-slider-section {
    min-height: 82vh;
  }

  .hero-slide-container {
    min-height: 82vh;
    padding: 4rem 1.5rem 5rem 1.5rem;
  }

  .slider-arrow-prev {
    left: 1rem;
  }

  .slider-arrow-next {
    right: 1rem;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-choose-card {
    padding: 2rem 1.4rem;
  }

  .why-icon-wrap {
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-slider-section {
    min-height: 84vh;
  }

  .hero-slide-container {
    min-height: 84vh;
    padding: 3.5rem 1.25rem 5.5rem 1.25rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.45rem 1.1rem;
    margin-bottom: 1.1rem;
  }

  .hero-title {
    font-size: 2.05rem;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 0.98rem;
    margin-bottom: 1.75rem;
  }

  .hero-buttons-center {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
  }

  .hero-buttons-center .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.2rem;
  }

  .hero-stats-center {
    gap: 0.75rem;
    padding-top: 1.25rem;
  }

  .stat-badge {
    min-width: 95px;
    padding: 0.5rem 0.85rem;
    border-radius: 12px;
  }

  .stat-num {
    font-size: 1.35rem;
  }

  .stat-lbl {
    font-size: 0.7rem;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .slider-arrow-prev {
    left: 0.5rem;
  }

  .slider-arrow-next {
    right: 0.5rem;
  }

  .slider-bottom-controls {
    bottom: 1.25rem;
  }
  .top-bar {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #FFFFFF;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    left: 0;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    display: grid;
  }

  body {
    padding-bottom: 60px; /* Offset for floating bar */
  }

  .back-to-top {
    bottom: 85px;
  }
}
