/* 
 * Ruchika Makeover & Academy — Luxury Styling & Design System
 * Inspired by premium cosmetic boutiques and clean layouts.
 */

:root {
  --cream: #fbf9f6;
  --cream-dark: #f3ede2;
  --cream-light: #ffffff;
  --gold-light: #e0d0b8;
  --gold: #c3a475;
  --gold-dark: #9e8154;
  --ink: #1f1b18;
  --ink-light: #2c2723;
  --muted: #796e65;
  --rose: #f7ebe1;
  --rose-dark: #ecd3c1;
  --white: #ffffff;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(31, 27, 24, 0.03);
  --shadow-md: 0 12px 30px rgba(31, 27, 24, 0.06);
  --shadow-lg: 0 20px 50px rgba(31, 27, 24, 0.12);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Global Container */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Global Buttons & CTA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px; /* More elegant, less blocky */
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  font-size: 0.75rem; /* Slightly smaller text */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-dark);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--white);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
}

.btn.outline::before {
  background: var(--gold);
}

.btn.outline:hover {
  color: var(--white);
}

.btn.secondary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn.secondary::before {
  background: var(--gold-dark);
}

.btn.secondary:hover {
  border-color: var(--gold-dark);
}

.btn.whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
}
.btn.whatsapp::before {
  background: #128c7e;
}
.btn.whatsapp:hover {
  border-color: #128c7e;
}

/* Elegant, less loud WhatsApp/Enroll button styling inside course cards */
.btn.btn-enroll {
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 8px 18px;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.btn.btn-enroll::before {
  background: var(--gold);
}

.btn.btn-enroll:hover {
  color: var(--white);
  border-color: var(--gold);
}

/* Top Announcement Bar */
.topbar {
  background: var(--ink);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(195, 164, 117, 0.2);
}

.topbar span {
  animation: shine 3s infinite linear;
}

/* Sticky Navigation */
header {
  position: sticky;
  top: 0;
  background: rgba(251, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  z-index: 99;
  border-bottom: 1px solid var(--cream-dark);
  transition: var(--transition);
}

header.scrolled {
  padding: 0;
  box-shadow: var(--shadow-sm);
  background: rgba(251, 249, 246, 0.98);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px; /* Taller on load to make logo look big and premium */
  transition: var(--transition);
}

header.scrolled nav {
  height: 80px; /* Shrinks elegantly when scrolled */
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--ink);
  font-weight: 500;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 95px; /* Pronounced, high-end logo size */
  width: auto;
  max-height: 100%;
  display: block;
  transition: var(--transition);
}

header.scrolled .logo-img {
  height: 65px; /* Elegant smaller logo on scroll */
}

.logo span {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--ink);
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

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

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

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

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

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

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--cream);
  z-index: 100;
  box-shadow: var(--shadow-lg);
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: var(--transition);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31, 27, 24, 0.4);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

/* Section Styling Header */
section {
  padding: 100px 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--cream-light);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

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

.section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--ink);
  margin-bottom: 18px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  position: relative;
  background: var(--ink); /* Changed to dark ink background for high contrast with white text and vertical video card */
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero-video-card {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-video-frame {
  width: 100%;
  max-width: 380px; /* Perfectly sized portrait card */
  aspect-ratio: 9/16; /* Clean vertical aspect ratio matching the video file */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--gold); /* Luxurious golden frame */
  background: #000;
  position: relative;
}

.hero-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Video is scaled correctly inside the vertical layout */
  object-position: center center;
  display: block;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
  color: var(--white);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(195, 164, 117, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(195, 164, 117, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--gold-light);
  animation: fadeInUp 0.8s ease;
}

.hero-tag::before {
  content: "✦";
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  font-family: var(--font-serif);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 550px;
  animation: fadeInUp 1.2s ease;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}

/* Academy Spotlight Section */
.academy-spotlight {
  background: linear-gradient(180deg, var(--cream) 0%, var(--rose) 100%);
}

.academy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.course-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.course-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--ink);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
  border: 1px solid var(--gold);
}

.course-img-wrapper {
  aspect-ratio: 4/5; /* Portrait aspect ratio for high visual impact and certificate visibility */
  overflow: hidden;
  position: relative;
  width: 100%;
}

.course-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%; /* Keep faces visible in vertical crops */
  transition: var(--transition);
}

.course-card:hover .course-img-wrapper img {
  transform: scale(1.06);
}

.course-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.course-card h3 {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.course-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.course-highlights {
  border-top: 1px dashed var(--cream-dark);
  padding-top: 20px;
  margin-bottom: 24px;
}

.course-highlights h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.course-highlights ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.course-highlights li {
  font-size: 0.85rem;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.course-highlights li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.course-price {
  display: flex;
  flex-direction: column;
}

.course-price span {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-price b {
  font-size: 1.4rem;
  color: var(--ink);
}

.academy-cta-banner {
  background: var(--ink);
  color: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(195, 164, 117, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.academy-cta-text h3 {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.academy-cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Salon Services Section */
.services-section {
  position: relative;
}

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

.service-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.service-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 20px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.service-card .desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.service-items {
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--cream-dark);
}

.service-item-name {
  font-weight: 500;
  color: var(--ink-light);
  font-size: 0.95rem;
}

.service-item-price {
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 1.05rem;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
}

.services-note {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Beauty Products Section (Parul Garg Beauty Reference Theme) */
.products-section {
  background: linear-gradient(180deg, var(--rose) 0%, var(--cream) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.product-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.product-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--cream);
}

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

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}

.product-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-rating {
  color: #ffb100;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}

.product-price span {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: var(--muted);
  margin-right: 8px;
  font-weight: 400;
}

.product-card .btn {
  width: 100%;
  padding: 10px 20px;
  font-size: 0.75rem;
  margin-top: auto;
}

/* Portfolio Section */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 10px 24px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-radius: 30px;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%; /* Keep faces visible in vertical crops */
  transition: var(--transition);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(31, 27, 24, 0.9) 0%, rgba(31, 27, 24, 0.3) 50%, rgba(31, 27, 24, 0) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}

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

.portfolio-overlay span {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
  transform: translateY(10px);
  transition: var(--transition);
}

.portfolio-overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  transform: translateY(15px);
  transition: var(--transition);
  transition-delay: 0.05s;
}

.portfolio-item:hover .portfolio-overlay span,
.portfolio-item:hover .portfolio-overlay h3 {
  transform: translateY(0);
}

/* Why Choose Us (Stats & Perks) */
.about-perks {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-img-frame {
  position: relative;
}

.about-img-frame img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-img-frame::after {
  content: '';
  position: absolute;
  top: 30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: 1;
}

.perks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.perk-item h3 {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.perk-item h3::before {
  content: '✦';
  color: var(--gold);
}

.perk-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

.stats-bar {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--cream-dark);
}

.stat-box h4 {
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-box span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* Testimonials Carousel */
.testimonials-section {
  background: var(--cream-light);
}

.testimonial-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  padding-bottom: 8px;
  transition: var(--transition-fast);
}

.tab-btn.active {
  color: var(--ink);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.tab-btn.active::after {
  width: 40px;
}

.testimonial-slider-container {
  overflow: hidden;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 280px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
  text-align: center;
}

.testimonial-slide .quote-icon {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.testimonial-slide p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.slider-arrow {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--ink);
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Contact & Registration Section */
.contact-section {
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.info-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

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

.info-details h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.info-details p {
  color: var(--ink-light);
  font-size: 1.05rem;
  font-weight: 500;
}

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

/* Form Styling */
.form-wrapper {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-md);
}

.form-tabs {
  display: flex;
  border-bottom: 2px solid var(--cream-dark);
  margin-bottom: 30px;
}

.form-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: var(--transition-fast);
}

.form-tab-btn.active {
  color: var(--ink);
}

.form-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.form-tab-btn.active::after {
  width: 100%;
}

form {
  display: none;
  flex-direction: column;
  gap: 20px;
}

form.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(195, 164, 117, 0.1);
}

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

/* Footer Section */
footer {
  background: var(--ink);
  color: var(--cream-dark);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(195, 164, 117, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dark);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.whatsapp-label {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  visibility: hidden;
  transition: var(--transition);
  white-space: nowrap;
}

.whatsapp-widget:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.whatsapp-btn {
  width: 48px; /* Tighter, more elegant size */
  height: 48px;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #128c7e; /* Elegant dark WhatsApp green */
  font-size: 1.4rem;
  transition: var(--transition);
  position: relative;
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gold);
  z-index: -1;
  animation: pulse-gold 2s infinite;
  opacity: 0.25;
}

.whatsapp-widget:hover .whatsapp-btn {
  transform: scale(1.05);
  background: var(--cream-dark);
  color: #075e54;
  border-color: var(--gold-dark);
}

/* Keyframe Animations */
@keyframes shine {
  0% { opacity: 0.75; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(195, 164, 117, 0.4); }
  100% { opacity: 0.75; }
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-gold {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .about-perks {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-img-frame {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  nav {
    height: 80px; /* Sized down on mobile */
  }
  
  .logo-img {
    height: 65px; /* Sized down on mobile */
  }
  
  header.scrolled nav {
    height: 70px;
  }
  
  header.scrolled .logo-img {
    height: 55px;
  }
  
  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-video-frame {
    max-width: 320px; /* Slightly tighter on mobile viewports */
  }
  
  .academy-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card.featured {
    transform: none;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-wrapper {
    padding: 30px 20px;
  }
  
  .stats-bar {
    justify-content: space-around;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-bar {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .stat-box {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}

/* FAQ Accordion Styles */
.faq-section {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

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

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid transparent;
}

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

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

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 24px;
  padding-top: 12px;
  border-color: var(--cream-dark);
}

/* Portfolio Lightbox Modal Styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19, 16, 14, 0.95);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrapper {
  max-width: 100%;
  max-height: 70vh;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  text-align: center;
  color: var(--white);
  margin-top: 20px;
  width: 100%;
}

.lightbox-caption span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.lightbox-caption h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

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

.lightbox-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.lightbox-arrow.prev {
  left: -90px;
}

.lightbox-arrow.next {
  right: -90px;
}

/* Lightbox responsive adjustments */
@media (max-width: 1024px) {
  .lightbox-arrow.prev {
    left: 20px;
    top: auto;
    bottom: -80px;
    transform: none;
  }
  .lightbox-arrow.next {
    right: 20px;
    top: auto;
    bottom: -80px;
    transform: none;
  }
  .lightbox-caption h3 {
    font-size: 1.3rem;
  }
  .lightbox-close {
    right: 10px;
    top: -50px;
  }
}

