/* ============================================================
   VEDIC PREMIUM SPA — Main Stylesheet
   Color: Gold #C9A227 | Dark Green #1A3A2A | Beige #F5F0E8
   Fonts: Playfair Display (headings) | Poppins (body)
   ============================================================ */

/* ─── 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,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --gold: #C9A227;
  --gold-light: #E8C547;
  --gold-dark: #A07D1A;
  --dark-green: #1A3A2A;
  --green-mid: #2D5A3D;
  --green-light: #3D7A53;
  --beige: #F5F0E8;
  --beige-dark: #EDE5D5;
  --white: #FFFFFF;
  --charcoal: #1C1C1C;
  --text-muted: #6B7280;
  --border: rgba(201, 162, 39, 0.2);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Typography ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark-green);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

/* ─── Utilities ─────────────────────────────────────────────── */
.text-gold {
  color: var(--gold) !important;
}

.text-green {
  color: var(--dark-green) !important;
}

.bg-green {
  background-color: var(--dark-green) !important;
}

.bg-beige {
  background-color: var(--beige) !important;
}

.bg-gold {
  background-color: var(--gold) !important;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  margin: 1rem auto 2rem;
}

.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-green);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-gold:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 30px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--gold);
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-green);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.btn-white:hover {
  background: var(--white);
  color: var(--dark-green);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark-green);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── Navbar ────────────────────────────────────────────────── */
#main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 6px 0;
  transition: var(--transition);
  background: rgba(26, 58, 42, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

#main-navbar.scrolled {
  padding: 4px 0;
  background: rgba(26, 58, 42, 0.98);
}

.navbar-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  box-shadow: none;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
  transition: var(--transition-fast);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* Hide text brand since real logo already contains full name */
@media (min-width: 576px) {
  .brand-text {
    display: none;
  }
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-link-custom {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88) !important;
  padding: 6px 14px !important;
  letter-spacing: 0.3px;
  position: relative;
  transition: var(--transition);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transition: var(--transition);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--gold) !important;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  left: 14px;
  right: 14px;
}

.nav-btn-book {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-green) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-xl);
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-gold);
}

.nav-btn-book:hover {
  background: var(--white) !important;
  transform: translateY(-1px);
}

.nav-btn-book::after {
  display: none;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ─── Hero Section ──────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

#hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 58, 42, 0.88) 0%,
      rgba(26, 58, 42, 0.65) 50%,
      rgba(0, 0, 0, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}

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

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.4s both;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1s both;
}

.scroll-dot {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

/* ─── Stats Counter ─────────────────────────────────────────── */
#stats {
  background: linear-gradient(135deg, var(--dark-green), var(--green-mid));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(201, 162, 39, 0.2);
}

.stat-card:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}

.stat-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 0.75rem;
}

/* ─── About Section ─────────────────────────────────────────── */
#about {
  background: var(--white);
}

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

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.about-img-wrapper:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-green);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}

.about-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-badge .badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.about-content {
  padding: 20px 0 20px 40px;
}

.about-content .section-title {
  text-align: left;
}

.about-content .divider-gold {
  margin-left: 0;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-green);
}

.feature-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── Services Section ──────────────────────────────────────── */
#services {
  background: var(--beige);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

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

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

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

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 42, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(201, 162, 39, 0.9);
  color: var(--dark-green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 99px;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
  color: var(--dark-green);
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  font-size: 0.8rem;
}

.service-duration {
  color: var(--text-muted);
}

.service-duration i {
  color: var(--gold);
  margin-right: 4px;
}

.service-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.btn-book-service {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, var(--dark-green), var(--green-mid));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-book-service:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-green);
}

/* Placeholder gradient for services without custom images */
.service-placeholder {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--green-mid) 50%, var(--dark-green) 100%);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-placeholder i {
  font-size: 4rem;
  color: rgba(201, 162, 39, 0.5);
}

/* ─── Why Choose Us ─────────────────────────────────────────── */
#why-us {
  background: linear-gradient(150deg, var(--dark-green) 0%, #0D2419 100%);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  height: 100%;
}

.why-card:hover {
  background: rgba(201, 162, 39, 0.08);
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-green);
  box-shadow: var(--shadow-gold);
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-card-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ─── Testimonials ──────────────────────────────────────────── */
#testimonials {
  background: var(--beige);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  height: 100%;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-green);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-green);
  font-weight: 600;
  display: block;
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--gold) !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
}

/* ─── Gallery ───────────────────────────────────────────────── */
#gallery {
  background: var(--white);
}

.gallery-masonry {
  column-count: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-zoom-icon {
  font-size: 2rem;
  color: var(--gold);
}

@media (max-width: 991px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 575px) {
  .gallery-masonry {
    column-count: 1;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--gold);
}

/* ─── Appointment Form ──────────────────────────────────────── */
#appointment {
  background: linear-gradient(135deg, var(--dark-green) 0%, #0D2419 100%);
  position: relative;
}

#appointment::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
}

.appt-form-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.form-label-custom {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.form-control-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white);
  transition: var(--transition-fast);
  outline: none;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-control-custom:focus {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-control-custom option {
  background: var(--dark-green);
  color: var(--white);
}

/* ─── Contact Section ───────────────────────────────────────── */
#contact {
  background: var(--beige);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

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

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--dark-green);
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.contact-card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-card-text a {
  color: var(--text-muted);
}

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

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}

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

/* ─── FAQ ───────────────────────────────────────────────────── */
#faq {
  background: var(--white);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-green);
  font-weight: 600;
  transition: var(--transition-fast);
  background: var(--white);
}

.faq-question:hover {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.04);
}

.faq-item.active .faq-question {
  color: var(--gold);
}

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

.faq-item.active .faq-icon {
  background: var(--gold);
  color: var(--dark-green);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

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

/* ─── Newsletter ────────────────────────────────────────────── */
#newsletter {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: 80px 0;
}

#newsletter .section-title {
  color: var(--dark-green);
}

#newsletter p {
  color: rgba(26, 58, 42, 0.8);
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 2rem auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.newsletter-input {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  background: var(--white);
  color: var(--charcoal);
}

.newsletter-btn {
  background: var(--dark-green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 16px 28px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #0D2419;
}

/* ─── Footer ────────────────────────────────────────────────── */
#main-footer {
  background: linear-gradient(180deg, #0D2419 0%, var(--dark-green) 100%);
  padding-top: 80px;
}

.footer-logo {
  height: 160px;
  width: auto;
  margin-bottom: 1rem;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.5));
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

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

.footer-links a i {
  font-size: 0.7rem;
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

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

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

.footer-hours {
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 8px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 5px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-hours-row:last-child {
  border-bottom: none;
}

.footer-hours-day {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.footer-hours-time {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark-green);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  margin-top: 60px;
}

.footer-bottom-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-text span {
  color: var(--gold);
}

/* ─── Floating Buttons ──────────────────────────────────────── */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  max-width: 52px;
}

.float-btn:hover {
  max-width: 200px;
}

.float-btn i {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.float-label {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
  white-space: nowrap;
}

.float-btn:hover .float-label {
  opacity: 1;
  transition-delay: 0.1s;
}

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

.float-whatsapp:hover {
  background: #1da851;
  color: var(--white);
}

.float-call {
  background: var(--dark-green);
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.float-call:hover {
  background: var(--green-mid);
  color: var(--white);
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  left: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
}

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

#back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
}

/* ─── Page Hero Banner (inner pages) ───────────────────────── */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--dark-green), #0D2419);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  width: 120%;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  text-align: center;
}

.page-hero-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero-breadcrumb a {
  color: var(--gold);
}

.page-hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Notification Toast ────────────────────────────────────── */
.toast-notification {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9000;
  background: var(--dark-green);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-left: 4px solid var(--gold);
  color: var(--white);
  padding: 14px 20px 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
  transform: translateX(130%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 300px;
}

.toast-notification.show {
  transform: translateX(0);
}

/* ─── Animations ────────────────────────────────────────────── */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ─── Page Transition (disabled to prevent blocking content) ─── */
.page-transition {
  display: none !important;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }

  .about-content {
    padding: 20px 0 0;
  }

  .about-badge {
    left: 0;
  }

  .appt-form-card {
    padding: 36px 24px;
  }

  .navbar-collapse {
    background: rgba(26, 58, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 55px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-white {
    width: 100%;
    justify-content: center;
  }

  .stat-card::after {
    display: none;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .newsletter-input,
  .newsletter-btn {
    border-radius: var(--radius-sm);
    padding: 14px 20px;
  }

  .float-btn {
    max-width: 52px !important;
  }

  .float-label {
    display: none;
  }

  .floating-btns {
    bottom: 20px;
    right: 16px;
  }

  #back-to-top {
    bottom: 20px;
    left: 16px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.7rem;
  }

  .appt-form-card {
    padding: 24px 18px;
  }
}

/* ─── Fail-Safe Content Visibility (AOS Fallback) ───────────── */
/* Ensures all text, sections, and images remain 100% visible even if AOS JS/CDN is offline or delayed */
html:not(.aos-enabled) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

[data-aos] {
  opacity: 1;
  pointer-events: auto;
}

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--beige);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ─── Selection ─────────────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--dark-green);
}