/* ============================================================
   Nandita's Makeup Studio — Premium Frontend Styles
   White & Black Luxury Theme
   ============================================================ */

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

/* ─── CSS Variables ─── */
:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --dark-3: #3a3a3a;
  --gold: #c9a96e;
  --gold-light: #e2c89c;
  --gold-dark: #a07840;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --light-gray: #f0ece6;
  --mid-gray: #999;
  --text-dark: #1a1a1a;
  --text-light: #666;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;

  --shadow-sm: 0 2px 10px 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, 169, 110, 0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 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-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.text-center {
  text-align: center;
}

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

.text-white {
  color: var(--white);
}

/* ─── Loader ─── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(201, 169, 110, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

/* LEFT: Logo or Brand Text */
.nav-logo-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  min-width: 130px;
}

.nav-logo-left img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: var(--transition-fast);
}

.nav-logo-left img:hover {
  opacity: 0.85;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.15;
  white-space: nowrap;
}

.nav-brand-tagline {
  font-family: var(--font-elegant);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: italic;
}

/* RIGHT: Nav Links & Actions */
.nav-right-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 1;
}

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

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition-fast);
  white-space: nowrap;
}

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

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 10%;
  right: 10%;
}

.nav-link.active {
  color: var(--gold);
}

.nav-btn {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.78rem;
  margin-left: 0.5rem;
}

.nav-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-btn::after {
  display: none !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

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

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #1a0f05 30%,
      #0d0d0d 60%,
      #1a1208 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-particles::before {
  top: -150px;
  right: -100px;
  animation-delay: -4s;
}

.hero-particles::after {
  bottom: -100px;
  left: -150px;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(20px, -20px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '—';
  margin: 0 0.75rem;
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll i {
  font-size: 1.2rem;
  color: var(--gold);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* ─── Section Styles ─── */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--dark);
}

.section-black {
  background: var(--black);
}

.section-cream {
  background: var(--off-white);
}

.section-light {
  background: var(--light-gray);
}

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

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  text-align: center;
}

.section-header.text-center .section-desc {
  margin: 0 auto;
}

/* Gold separator line */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.gold-line.center {
  margin: 0 auto 1.5rem;
}

/* ─── Stats Counter ─── */
.stats-bar {
  background: var(--gold);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ─── Service Cards ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

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

.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.08);
}

.service-card-img .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-img .placeholder-img i {
  font-size: 3rem;
  color: var(--gold);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-title {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.service-meta span {
  font-size: 0.8rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.service-meta i {
  color: var(--gold);
}

.service-card-footer {
  border-top: 1px solid var(--light-gray);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.btn-book {
  background: var(--dark);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.btn-book:hover {
  background: var(--gold);
  color: var(--black);
}

/* ─── Course Cards ─── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

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

.course-card.featured {
  border: 2px solid var(--gold);
}

.course-card.featured .course-badge-featured {
  display: block;
}

.course-badge-featured {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.course-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.course-header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
}

.course-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.course-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.course-tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.course-body {
  padding: 1.5rem 2rem;
}

.course-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.course-meta-item {
  text-align: center;
  padding: 0.8rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.course-meta-item i {
  color: var(--gold);
  margin-bottom: 0.3rem;
  display: block;
}

.course-meta-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
}

.course-meta-item .value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 0.2rem;
}

.course-fee {
  text-align: center;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.course-fee .amount {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
}

.course-fee .note {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
}

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

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

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

.gallery-caption {
  color: var(--white);
  font-size: 0.85rem;
}

.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--gold);
  font-size: 2rem;
  transition: var(--transition);
}

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

/* ─── Before & After ─── */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--dark);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-side {
  position: relative;
  overflow: hidden;
}

.ba-side img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ba-label.after {
  background: var(--gold);
  color: var(--black);
}

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  z-index: 2;
}

.ba-caption {
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-align: center;
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
}

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

.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

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

.testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.testimonial-service {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* ─── Offer Cards ─── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.offer-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(201, 169, 110, 0.1);
  border-radius: 50%;
}

.offer-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.offer-discount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.offer-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.offer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.offer-validity {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 1rem;
}

.offer-validity i {
  margin-right: 0.3rem;
}

/* ─── FAQ Accordion ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  background: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
}

.faq-item.open .faq-q {
  background: var(--dark);
  color: var(--white);
}

.faq-q i {
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  background: var(--off-white);
}

.faq-item.open .faq-a {
  display: block;
}

/* ─── Contact & Forms ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info-text .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-info-text .value {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

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

select.form-control {
  cursor: pointer;
}

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

/* ─── Equipment Section ─── */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.equipment-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

.equipment-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--dark);
}

/* ─── Why Choose Us ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(201, 169, 110, 0.05);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.why-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0f05 50%, var(--dark-2) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-call {
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-call:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ─── Map Section ─── */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

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

/* ─── About Section ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.about-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

.about-img-decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--dark);
}

.about-feature i {
  color: var(--gold);
  width: 20px;
}

/* ─── Page Banner ─── */
.page-banner {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.page-banner .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}

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

.page-banner .breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* ─── Footer ─── */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer-brand .brand-tagline {
  font-family: var(--font-elegant);
  color: var(--gold);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.footer-heading {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ─── Floating Buttons ─── */
.float-btns {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 500;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn-wa {
  background: #25D366;
  color: var(--white);
}

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

.float-btn-call {
  background: var(--gold);
  color: var(--black);
}

.float-btn-call:hover {
  background: var(--gold-light);
}

.float-btn-tooltip {
  position: absolute;
  right: 65px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.float-btn:hover .float-btn-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

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

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* ─── Flash Messages ─── */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-info {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

/* ─── Lightbox ─── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.open {
  display: flex;
}

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

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--black);
}

/* ─── Gallery Filter Tabs ─── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-light);
  background: var(--white);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--dark);
}

/* ─── Booking Urgency Banner ─── */
.urgency-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  padding: 1rem 2rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.urgency-banner i {
  margin-right: 0.5rem;
}

/* ─── Social Links (inline) ─── */
.social-links-inline {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
}

/* ─── Status Badges ─── */
.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-gold {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold-dark);
}

.badge-success {
  background: #dcfce7;
  color: #15803d;
}

.badge-warning {
  background: #fef9c3;
  color: #854d0e;
}

.badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

/* ─── AOS overrides ─── */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

@media (max-width: 1024px) {
  .nav-link {
    font-size: 0.72rem;
    padding: 0.4rem 0.45rem;
  }

  .nav-brand-name {
    font-size: 0.9rem;
  }

  .nav-logo-right img {
    height: 44px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -110%;
    bottom: 0;
    width: min(300px, 88vw);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 5.5rem 1.5rem 2rem;
    gap: 0.15rem;
    transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    justify-content: flex-start;
    border-left: 1px solid rgba(201, 169, 110, 0.1);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(201, 169, 110, 0.08);
    color: var(--gold);
    padding-left: 1.5rem;
  }

  .nav-btn {
    text-align: center;
    margin-top: 1rem;
    display: block;
    border-radius: var(--radius-md);
    padding: 0.85rem !important;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo-right {
    display: none;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

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

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

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

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

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }

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

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

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

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

/* ─── Scroll animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── Newsletter strip ─── */
.newsletter-strip {
  background: var(--gold);
  padding: 2rem 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--black);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  border: none;
  font-size: 0.9rem;
  outline: none;
  min-width: 260px;
}

.newsletter-form button {
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--dark-2);
}

/* ─── Preappointment note ─── */
.pre-appt-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1.2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.pre-appt-note i {
  color: var(--gold);
}