/* ========================================
   MAKEUP BY SUPERNOVA - LUXURY DESIGN SYSTEM
   ======================================== */

/* ===== GOOGLE FONTS ===== */
/* Fonts loaded via <link> in HTML for better performance */

/* ===== CSS VARIABLES - BRAND COLORS ===== */
:root {
  /* Brand Color Palette */
  --dark-charcoal: #2a2320;
  --charcoal-brown: #4A3D36;
  --warm-sand: #E3D2C3;
  --soft-nude: #F4EDE4;
  --soft-beige: #F5F0EB;
  --blush-pink: #F7DDE2;
  --rose-gold: #C89B7B;
  --rose-gold-dark: #b88966;
  --rose-gold-light: #d4a574;
  --white: #ffffff;
  --card-shadow: #D4C5B5;

  /* Gradients */
  --gradient-soft: linear-gradient(135deg, var(--blush-pink) 0%, var(--soft-nude) 100%);
  --gradient-warm: linear-gradient(135deg, var(--warm-sand) 0%, var(--rose-gold) 100%);
  --gradient-dark: linear-gradient(180deg, var(--dark-charcoal) 0%, var(--charcoal-brown) 100%);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --font-script: 'Parisienne', cursive;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(74, 61, 54, 0.08);
  --shadow-medium: 0 8px 30px rgba(74, 61, 54, 0.12);
  --shadow-hover: 0 12px 40px rgba(74, 61, 54, 0.15);
  --shadow-card: 8px 8px 0 var(--card-shadow);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal-brown);
  background-color: var(--soft-nude);
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Selection styling */
::selection {
  background: var(--rose-gold);
  color: var(--white);
}

::-moz-selection {
  background: var(--rose-gold);
  color: var(--white);
}

/* Focus states for accessibility */
:focus-visible {
  outline: 2px solid var(--rose-gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--rose-gold);
  outline-offset: 2px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--charcoal-brown);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}

.script-text {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--rose-gold);
  font-weight: 400;
}

/* Brand name styling */
.brand-name {
  font-family: var(--font-heading);
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--charcoal-brown);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  padding: 12px 24px;
  background: #1a1a1a;
  color: #d4af37;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 12px 5%;
  background: var(--soft-beige);
  font-size: 0.85rem;
  margin-top: 80px;
  display: none;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: "\203A";
  margin: 0 10px;
  color: var(--rose-gold-light);
  font-size: 1.1rem;
}

.breadcrumbs a {
  color: var(--charcoal-brown);
  text-decoration: none;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--rose-gold);
  opacity: 1;
}

.breadcrumbs [aria-current="page"] {
  color: var(--charcoal-brown);
  font-weight: 500;
}

/* Link styles - content area links */
p a, .content a {
  color: var(--rose-gold);
  text-decoration: none;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}

p a:hover, .content a:hover {
  color: var(--rose-gold-dark);
  border-bottom-color: var(--rose-gold-dark);
}

/* Text utilities */
.text-rose-gold {
  color: var(--rose-gold);
}

.text-charcoal {
  color: var(--charcoal-brown);
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.font-script {
  font-family: var(--font-script);
}

.font-heading {
  font-family: var(--font-heading);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--rose-gold);
  color: white;
  border: 2px solid var(--rose-gold);
  box-shadow: var(--shadow-soft);
}

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

.btn-secondary {
  background: transparent;
  color: var(--charcoal-brown);
  border: 2px solid var(--rose-gold);
}

.btn-secondary:hover {
  background: var(--rose-gold);
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background: white;
  color: var(--charcoal-brown);
  box-shadow: var(--shadow-soft);
}

.btn-light:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(244, 237, 228, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(244, 237, 228, 0.98);
  box-shadow: var(--shadow-medium);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal-brown);
  text-decoration: none;
  letter-spacing: 3px;
  transition: var(--transition-fast);
}

.logo:hover {
  color: var(--rose-gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--charcoal-brown);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  position: relative;
}

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

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

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

/* Services Dropdown */
.nav-links li {
  position: relative;
}

/* Services link with dropdown indicator */
.services-dropdown + a::after {
  content: none !important;
}

.nav-links li a[href="services.html"]::after {
  content: '\25BE' !important;
  position: static !important;
  margin-left: 0.35rem;
  font-size: 0.7em;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: inline-block;
  width: auto !important;
  height: auto !important;
  background: none !important;
  bottom: auto !important;
  left: auto !important;
}

.nav-links li:hover a[href="services.html"]::after {
  transform: translateY(2px);
  opacity: 1;
}

.services-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: rgba(244, 237, 228, 0.98);
  min-width: 260px;
  padding: 1.25rem 0;
  margin-top: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(74, 61, 54, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  border: 1px solid rgba(200, 155, 123, 0.2);
}

/* Create invisible bridge between Services link and dropdown */
.services-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

/* Prevent Services link from being clickable on desktop, allow dropdown to work */
@media (min-width: 969px) {
  /* Make Services link non-clickable on desktop */
  .nav-links li a[href="services.html"] {
    pointer-events: none;
    cursor: default;
  }

  /* Add class-based styling for the parent li */
  .nav-links li.has-dropdown {
    cursor: pointer;
  }

  /* Fallback for browsers supporting :has() */
  .nav-links li:has(.services-dropdown) {
    cursor: pointer;
  }

  /* Show dropdown on hover - with multiple selectors to ensure it stays visible */
  .nav-links li.has-dropdown:hover .services-dropdown,
  .nav-links li:has(.services-dropdown):hover .services-dropdown,
  .nav-links li.dropdown-active .services-dropdown,
  .services-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Fallback hover behavior for desktop only */
@media (min-width: 969px) {
  .nav-links li:hover .services-dropdown,
  .nav-links li.dropdown-active .services-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.services-dropdown a {
  display: block;
  padding: 0.7rem 1.75rem;
  color: var(--charcoal-brown);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  position: relative;
  pointer-events: auto;
  z-index: 1001;
}

.services-dropdown a::after {
  display: none;
}

.services-dropdown a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--rose-gold);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}

.services-dropdown a:hover {
  color: white;
  border-left-color: var(--rose-gold);
  padding-left: 2rem;
}

.services-dropdown a:hover::before {
  opacity: 0.9;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  margin: 0;
  font: inherit;
  color: inherit;
  z-index: 1001;
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--rose-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.mobile-menu-toggle .hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--charcoal-brown);
  transition: var(--transition-fast);
  pointer-events: none;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-soft);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 0.5s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(247, 221, 226, 0.7) 0%, rgba(244, 237, 228, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content .script-text {
  margin-bottom: var(--spacing-sm);
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  color: var(--charcoal-brown);
  margin-bottom: var(--spacing-md);
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
  font-size: clamp(1.4rem, 4.5vw, 3.5rem);
  line-height: 1.2;
  word-spacing: 0.3em;
}

.hero-word {
  white-space: nowrap;
  display: inline-block;
}

.hero-content p {
  font-size: clamp(0.95rem, 2.5vw, 1.3rem);
  margin-bottom: var(--spacing-lg);
  color: var(--charcoal-brown);
  opacity: 0;
  animation: fadeIn 1s ease-out 0.7s forwards;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.9s forwards;
}

/* ===== VIDEO HERO SECTION ===== */
.hero-video-section {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  overflow: hidden;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(42, 35, 32, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out;
}

.hero-tagline {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--rose-gold);
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
}

.hero-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--rose-gold);
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.7s forwards;
}

/* Video Carousel Container */
.video-carousel-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1400px;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.9s forwards;
}

/* Portrait Video Wrapper */
.portrait-video-wrapper {
  position: relative;
  width: 280px;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portrait-video-wrapper:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.portrait-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Carousel Dots (Mobile) */
.video-carousel-dots {
  display: none;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  gap: 12px;
  z-index: 10;
}

.video-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-carousel-dots .dot.active {
  background: var(--rose-gold);
  transform: scale(1.2);
}

/* Hero Video CTA */
.hero-video-cta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.1s forwards;
}

.hero-video-cta .btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--charcoal-brown);
}

.hero-video-cta .btn-light:hover {
  background: white;
}

/* ===== IMAGE HERO SECTION ===== */
.hero-image-section {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  background: var(--gradient-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 120px 20px 60px;
  overflow: hidden;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  z-index: 0;
  background: var(--gradient-dark);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(42, 35, 32, 0.3) 0%,
    rgba(42, 35, 32, 0.2) 40%,
    rgba(42, 35, 32, 0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-image-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out;
}

.hero-image-content .hero-tagline {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--rose-gold);
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-image-content .hero-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  font-weight: 500;
  color: white;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero-image-content .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.7s forwards;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-image-cta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.1s forwards;
}

.hero-image-cta .btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--charcoal-brown);
}

.hero-image-cta .btn-light:hover {
  background: white;
}

/* Image Hero Responsive */
@media (max-width: 768px) {
  .hero-image-section {
    padding: 100px 15px 40px;
    min-height: 100vh;
  }

  .hero-image-content {
    margin-bottom: 30px;
  }

  .hero-image-content .hero-brand-name {
    letter-spacing: 0.15em;
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  .hero-image-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
  }

  .hero-image-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-image-section {
    padding: 90px 10px 30px;
  }

  .hero-image-content .hero-brand-name {
    letter-spacing: 0.1em;
  }
}

/* ===== VIDEO HERO RESPONSIVE ===== */

/* Large Desktop */
@media (min-width: 1200px) {
  .portrait-video-wrapper {
    width: 320px;
  }
}

/* Tablet - Show 2 videos */
@media (max-width: 1024px) {
  .portrait-video-wrapper {
    width: 260px;
  }

  .portrait-video-wrapper:nth-child(3) {
    display: none;
  }

  .video-carousel-dots .dot:nth-child(3) {
    display: none;
  }
}

/* Mobile - Show 1 video with carousel */
@media (max-width: 768px) {
  .hero-video-section {
    padding: 100px 15px 40px;
    min-height: auto;
  }

  .hero-video-content {
    margin-bottom: 30px;
  }

  .hero-brand-name {
    letter-spacing: 0.15em;
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  .video-carousel-container {
    flex-direction: column;
    gap: 0;
    margin-bottom: 50px;
  }

  .portrait-video-wrapper {
    width: 100%;
    max-width: 300px;
    display: none;
  }

  .portrait-video-wrapper.active,
  .portrait-video-wrapper:first-child {
    display: block;
  }

  .portrait-video-wrapper:nth-child(2),
  .portrait-video-wrapper:nth-child(3) {
    display: none;
  }

  .video-carousel-dots {
    display: flex;
  }

  .video-carousel-dots .dot:nth-child(3) {
    display: block;
  }

  .hero-video-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
  }

  .hero-video-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-video-section {
    padding: 90px 10px 30px;
  }

  .hero-brand-name {
    letter-spacing: 0.1em;
  }

  .portrait-video-wrapper {
    max-width: 260px;
  }
}

/* ===== SERVICE PAGE HERO ===== */
.service-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-dark);
  margin-top: 80px;
}

.service-hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(200, 155, 123, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
  z-index: 5;
}

.video-play-btn:hover {
  background: var(--rose-gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(42, 35, 32, 0.5) 0%, rgba(74, 61, 54, 0.7) 100%);
  z-index: 2;
}

.service-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.service-hero-content .script-text {
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.service-hero-content h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.service-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 1.5rem;
}

/* Pricing Badge */
.pricing-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(200, 155, 123, 0.2);
  border: 2px solid var(--rose-gold);
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
  margin-top: 1rem;
}

.pricing-badge span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-badge strong {
  font-size: 2rem;
  color: white;
  font-family: var(--font-heading);
}

/* Price Tag on Cards */
.price-tag {
  display: inline-block;
  background: var(--rose-gold);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* Location Tags */
.location-tag {
  display: block;
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--charcoal-brown);
  font-weight: 400;
  transition: var(--transition-smooth);
}

.location-tag:hover {
  background: var(--rose-gold);
  color: white;
  transform: translateY(-3px);
}

/* Bridal Gallery */
.bridal-gallery .gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.bridal-gallery .gallery-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

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

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

/* Testimonial Stars */
.testimonial-card .stars {
  font-size: 1.2rem;
  letter-spacing: 3px;
}

/* Service Hero Responsive */
@media (max-width: 768px) {
  .service-hero {
    height: 60vh;
    min-height: 400px;
    margin-top: 70px;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .pricing-badge strong {
    font-size: 1.5rem;
  }

  .bridal-gallery .gallery-item img {
    height: 250px;
  }
}

/* ===== SOUTH ASIAN WEDDINGS PAGE ===== */
.south-asian-hero {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.south-asian-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.south-asian-hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.south-asian-hero .hero-content h1 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.south-asian-hero .hero-content p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Expertise List */
.expertise-list {
  max-width: 700px;
  margin: 2rem auto;
}

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200, 155, 123, 0.2);
}

.expertise-item:last-child {
  border-bottom: none;
}

.expertise-icon {
  color: var(--rose-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.expertise-item span:last-child {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Ceremony Cards Grid */
.ceremony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.ceremony-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 8px 8px 0 var(--card-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ceremony-card:hover {
  box-shadow: 10px 10px 0 var(--card-shadow);
  transform: translate(-2px, -2px);
}

.ceremony-icon {
  display: none; /* Hide icon, use sparkle instead */
}

.ceremony-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--charcoal-brown);
  font-family: var(--font-heading);
  position: relative;
  display: inline-block;
}

.ceremony-card h3::before {
  content: '\2726';
  position: absolute;
  left: -1.5rem;
  top: 0.2rem;
  font-size: 0.75rem;
  color: var(--rose-gold);
}

.ceremony-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  opacity: 0.85;
}

/* Ceremony card buttons - outlined style */
.ceremony-card .btn {
  margin-top: auto;
  background: transparent;
  color: var(--charcoal-brown);
  border: 2px solid var(--rose-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 0.875rem 1.75rem;
}

.ceremony-card .btn:hover {
  background: var(--rose-gold);
  color: white;
}

/* South Asian Gallery */
.south-asian-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.south-asian-gallery .gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  aspect-ratio: 1;
}

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

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

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

/* South Asian Page Responsive */
@media (max-width: 768px) {
  .south-asian-hero {
    height: 60vh;
    min-height: 400px;
    margin-top: 70px;
  }

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

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

@media (max-width: 480px) {
  .south-asian-gallery {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTIONS ===== */
section {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-header .script-text {
  margin-bottom: var(--spacing-xs);
  display: block;
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--charcoal-brown);
  opacity: 0.8;
}

/* ===== CARDS ===== */
.card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 8px 8px 0 var(--card-shadow);
  transition: var(--transition-smooth);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  box-shadow: 10px 10px 0 var(--card-shadow);
  transform: translate(-2px, -2px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-sm);
}

.card h3,
.card h4 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: var(--charcoal-brown);
  position: relative;
  display: inline-block;
}

.card h4 {
  font-size: 1.5rem;
}

/* Decorative sparkle before card headings */
.card h3::before,
.card h4::before {
  content: '✦';
  position: absolute;
  left: -1.5rem;
  top: 0.2rem;
  font-size: 0.75rem;
  color: var(--rose-gold);
}

.card p {
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  color: var(--charcoal-brown);
  opacity: 0.85;
  line-height: 1.7;
}

/* Card buttons - outlined style */
.card .btn {
  margin-top: auto;
  background: transparent;
  color: var(--charcoal-brown);
  border: 2px solid var(--rose-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 0.875rem 1.75rem;
}

.card .btn:hover {
  background: var(--rose-gold);
  color: white;
}

/* ===== GLOBAL: HIDE INLINE ICON DIVS IN ALL CARDS ===== */
/* All card types now use CSS ::before sparkle instead of inline icon divs */
.glam-card > .glam-icon,
.event-card > .event-icon,
.ceremony-card > .ceremony-icon,
.grad-style-card > .grad-style-icon,
.photo-service-card > .photo-service-icon {
  display: none !important;
}

/* Hide inline sparkle divs (they use inline styles with specific patterns) */
.card > div[style*="text-align"][style*="font-size"],
.card > div[style*="rose-gold"][style*="margin-bottom"] {
  display: none !important;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal-brown);
  color: var(--soft-nude);
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.footer-section h4 {
  color: var(--rose-gold);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: var(--soft-nude);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 2;
  opacity: 0.9;
  transition: var(--transition-fast);
}

.footer-section a:hover {
  color: var(--rose-gold);
  opacity: 1;
}

.footer-section ul {
  list-style: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: var(--spacing-sm);
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-links .social-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.social-links .social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-links a:hover {
  background: var(--warm-sand);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(227, 210, 195, 0.2);
  text-align: center;
  color: var(--soft-nude);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.bg-white {
  background: white;
}

.bg-blush {
  background: var(--blush-pink);
}

.bg-nude {
  background: var(--soft-beige);
}

/* ===== CONTACT INFO GRID ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 400px;
    background: var(--soft-nude);
    flex-direction: column;
    padding: 6rem 2rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    align-items: flex-start;
  }

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

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Mobile Services Dropdown */
  .services-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(247, 221, 226, 0.5);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-sm);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border: none;
  }

  .nav-links li.services-open .services-dropdown {
    max-height: 650px;
    padding: 0.75rem 0;
    pointer-events: auto;
  }

  .services-dropdown a {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    border-left: none;
  }

  .services-dropdown a::before {
    display: none;
  }

  .services-dropdown a:hover {
    padding-left: 1.5rem;
    background: rgba(200, 155, 123, 0.2);
    color: var(--rose-gold);
  }

  /* Rotate arrow indicator when dropdown is open on mobile */
  .nav-links li.services-open a[href="services.html"]::after {
    transform: rotate(180deg);
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

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

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 1rem;
  }

  .logo {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.85rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .container {
    padding: 0 1rem;
  }
}

/* ===== SPECIAL EVENTS PAGE STYLES ===== */

/* Special Events Hero */
.special-events-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.special-events-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.special-events-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(42, 35, 32, 0.4) 0%,
    rgba(42, 35, 32, 0.6) 50%,
    rgba(42, 35, 32, 0.8) 100%
  );
}

.special-events-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
}

.special-events-hero .hero-content h1 {
  color: white;
  margin-bottom: 1rem;
}

.special-events-hero .hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Glam Levels Grid */
.glam-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.glam-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 8px 8px 0 var(--card-shadow);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.glam-card:hover {
  box-shadow: 10px 10px 0 var(--card-shadow);
  transform: translate(-2px, -2px);
}

.glam-icon {
  display: none; /* Hide icon, use sparkle instead */
}

.glam-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal-brown);
  font-family: var(--font-heading);
  position: relative;
  display: inline-block;
}

.glam-card h3::before {
  content: '\2726';
  position: absolute;
  left: -1.5rem;
  top: 0.2rem;
  font-size: 0.75rem;
  color: var(--rose-gold);
}

.glam-tagline {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}

.glam-card > p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.glam-card ul {
  text-align: left;
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.8;
}

.glam-card ul li {
  margin-bottom: 0.25rem;
}

.glam-occasions {
  font-size: 0.9rem;
  color: var(--charcoal-brown);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

/* Glam card buttons - outlined style */
.glam-card .btn {
  margin-top: auto;
  background: transparent;
  color: var(--charcoal-brown);
  border: 2px solid var(--rose-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 0.875rem 1.75rem;
}

.glam-card .btn:hover {
  background: var(--rose-gold);
  color: white;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 8px 8px 0 var(--card-shadow);
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-card:hover {
  box-shadow: 10px 10px 0 var(--card-shadow);
  transform: translate(-2px, -2px);
}

.event-icon {
  display: none; /* Hide icon, use sparkle instead */
}

.event-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal-brown);
  font-family: var(--font-heading);
  position: relative;
  display: inline-block;
}

.event-card h4::before {
  content: '\2726';
  position: absolute;
  left: -1.5rem;
  top: 0.2rem;
  font-size: 0.75rem;
  color: var(--rose-gold);
}

.event-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal-brown);
  opacity: 0.85;
  margin-bottom: 1rem;
}

/* Event card buttons - outlined style */
.event-card .btn {
  margin-top: auto;
  background: transparent;
  color: var(--charcoal-brown);
  border: 2px solid var(--rose-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 0.875rem 1.75rem;
}

.event-card .btn:hover {
  background: var(--rose-gold);
  color: white;
}

/* Special Events Gallery */
.special-events-gallery .gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}

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

.special-events-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive - Glam Levels */
@media (max-width: 1024px) {
  .glam-levels-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Responsive - Events Grid */
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .special-events-hero {
    height: 70vh;
    min-height: 500px;
  }

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

@media (max-width: 480px) {
  .special-events-gallery {
    grid-template-columns: 1fr;
  }

  .glam-card {
    padding: 1.5rem;
  }

  .event-card {
    padding: 1.5rem;
  }
}

/* ===== GRADUATION PAGE STYLES ===== */

/* Graduation Hero */
.graduation-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.graduation-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.graduation-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(42, 35, 32, 0.3) 0%,
    rgba(42, 35, 32, 0.5) 50%,
    rgba(42, 35, 32, 0.7) 100%
  );
}

.graduation-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
}

.graduation-hero .hero-content h1 {
  color: white;
  margin-bottom: 1rem;
}

.graduation-hero .hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Graduation Styles Grid */
.grad-styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grad-style-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 8px 8px 0 var(--card-shadow);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grad-style-card:hover {
  box-shadow: 10px 10px 0 var(--card-shadow);
  transform: translate(-2px, -2px);
}

.grad-style-icon {
  display: none; /* Hide icon, use sparkle instead */
}

.grad-style-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--charcoal-brown);
  font-family: var(--font-heading);
  position: relative;
  display: inline-block;
}

.grad-style-card h3::before {
  content: '✦';
  position: absolute;
  left: -1.5rem;
  top: 0.2rem;
  font-size: 0.75rem;
  color: var(--rose-gold);
}

.grad-style-card > p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--charcoal-brown);
}

.grad-style-card ul {
  text-align: left;
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.8;
}

.grad-style-card ul li {
  margin-bottom: 0.25rem;
  color: var(--charcoal-brown);
}

/* Grad style card buttons - outlined style */
.grad-style-card .btn {
  margin-top: auto;
  background: transparent;
  color: var(--charcoal-brown);
  border: 2px solid var(--rose-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.grad-style-card .btn:hover {
  background: var(--rose-gold);
  color: white;
}

/* Graduation Gallery */
.graduation-gallery .gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}

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

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

/* Responsive - Graduation */
@media (max-width: 1024px) {
  .grad-styles-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .graduation-hero {
    height: 70vh;
    min-height: 500px;
  }

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

  .grad-style-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .graduation-gallery {
    grid-template-columns: 1fr;
  }
}

/* ===== PHOTOGRAPHY & EDITORIAL PAGE STYLES ===== */

/* Photography Hero */
.photography-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photography-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photography-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(42, 35, 32, 0.4) 0%,
    rgba(42, 35, 32, 0.6) 50%,
    rgba(42, 35, 32, 0.8) 100%
  );
}

.photography-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
}

.photography-hero .hero-content h1 {
  color: white;
  margin-bottom: 1rem;
}

.photography-hero .hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Photo Services Grid */
.photo-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.photo-service-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 8px 8px 0 var(--card-shadow);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-service-card:hover {
  box-shadow: 10px 10px 0 var(--card-shadow);
  transform: translate(-2px, -2px);
}

.photo-service-icon {
  display: none; /* Hide icon, use sparkle instead */
}

.photo-service-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal-brown);
  font-family: var(--font-heading);
  position: relative;
  display: inline-block;
}

.photo-service-card h3::before {
  content: '\2726';
  position: absolute;
  left: -1.5rem;
  top: 0.2rem;
  font-size: 0.75rem;
  color: var(--rose-gold);
}

.photo-service-tagline {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}

.photo-service-card > p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--charcoal-brown);
}

.photo-service-card ul {
  text-align: left;
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.8;
}

.photo-service-card ul li {
  margin-bottom: 0.25rem;
  color: var(--charcoal-brown);
}

/* Photo service card buttons - outlined style */
.photo-service-card .btn {
  margin-top: auto;
  background: transparent;
  color: var(--charcoal-brown);
  border: 2px solid var(--rose-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.photo-service-card .btn:hover {
  background: var(--rose-gold);
  color: white;
}

/* Photography Gallery - Masonry-style */
.photography-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

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

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

/* Responsive - Photography */
@media (max-width: 1024px) {
  .photo-services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .photography-hero {
    height: 70vh;
    min-height: 500px;
  }

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

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

/* ===== MOBILE STICKY CONTACT BAR ===== */
.mobile-contact-bar {
  display: none; /* Hidden by default, shown on mobile */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(60px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(42, 35, 32, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-contact-bar .contact-bar-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 60px;
  width: 100%;
  padding: 0 0.5rem;
}

.mobile-contact-bar .contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  padding: 0.5rem 1rem;
  min-height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  flex: 1;
  text-align: center;
}

.mobile-contact-bar .contact-btn:hover,
.mobile-contact-bar .contact-btn:active {
  background: rgba(200, 155, 123, 0.2);
}

.mobile-contact-bar .contact-btn .social-icon {
  font-size: 1.25rem;
  color: var(--rose-gold);
  margin-bottom: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-contact-bar .contact-btn .social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.mobile-contact-bar .contact-btn > span:last-child {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* WhatsApp specific styling */
.mobile-contact-bar .contact-btn.whatsapp .social-icon {
  color: #25D366;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-contact-bar {
    display: block;
  }

  /* Add padding to body so content isn't hidden behind sticky bar */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }

  /* Ensure footer clears above the sticky bar */
  footer {
    margin-bottom: 0;
    padding-bottom: 1rem;
  }
}

/* ===== KEYFRAME ANIMATIONS ===== */
/* fadeIn and fadeInUp defined above in ANIMATIONS section */

/* Subtle floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse animation for CTAs */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 155, 123, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(200, 155, 123, 0);
  }
}

/* Shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Scale in animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide in from left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide in from right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== ANIMATION UTILITY CLASSES ===== */

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Staggered animation delays for grid items */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ===== ENHANCED HOVER EFFECTS ===== */

/* Image zoom on hover with overlay */
.hover-zoom {
  overflow: hidden;
  position: relative;
}

.hover-zoom img {
  transition: transform 0.5s ease;
}

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

/* Image with overlay on hover */
.hover-overlay {
  position: relative;
  overflow: hidden;
}

.hover-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 61, 54, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hover-overlay:hover::after {
  opacity: 1;
}

/* Lift effect on hover */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Glow effect on hover */
.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(200, 155, 123, 0.3);
}

/* Border reveal on hover */
.hover-border {
  position: relative;
}

.hover-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--rose-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.hover-border:hover::before {
  opacity: 1;
}

/* ===== SECTION ENTRANCE ANIMATIONS ===== */

.section-header {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Script text subtle animation */
.script-text {
  display: inline-block;
}

.section-header.visible .script-text {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== ENHANCED CARD HOVER EFFECTS ===== */

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 155, 123, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.card:hover::before {
  left: 100%;
}

/* ===== BUTTON ENHANCEMENTS ===== */

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

/* Book Now button pulse effect */
.nav-links .btn-primary {
  animation: pulse 3s ease-in-out infinite;
}

/* ===== SCROLL PROGRESS INDICATOR ===== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--rose-gold);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ===== LOADING ANIMATIONS ===== */

/* Page load animation */
body:not(.loaded) {
  overflow: hidden;
}

body.loaded .hero-content {
  animation: fadeInUp 1s ease-out forwards;
}

body.loaded .hero-content .script-text {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

body.loaded .hero-content h1 {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

body.loaded .hero-content p {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

body.loaded .hero-buttons {
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
}

/* ===== REDUCED MOTION ===== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-float,
  .animate-pulse,
  .nav-links .btn-primary {
    animation: none !important;
  }
}
