/* ================================================================
   LUXE PRO — Premium Cosmetics Brand
   Global Design System & Stylesheet
   ================================================================ */

/* ===== 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,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600&display=swap');

/* ===== CSS CUSTOM PROPERTIES (DESIGN TOKENS) ===== */
:root {
  /* Primary Palette */
  --pink-soft: #F5D5CB;
  --pink-light: #FADADD;
  --pink-hero: #F2C4C4;
  --pink-blush: #FAE0D8;
  --rose-gold: #B76E79;
  --rose-gold-light: #D4A0A7;
  --rose-gold-dark: #8E4A52;

  /* Neutrals */
  --cream: #FFF8F0;
  --cream-dark: #F5EDE4;
  --ivory: #FFFFF0;
  --warm-beige: #F5E6D3;
  --nude-light: #E8D5C4;
  --white: #FFFFFF;
  --off-white: #FEFCF9;

  /* Accents */
  --gold-subtle: #C9A96E;
  --gold-shimmer: #D4AF37;
  --gold-light: #E8D5A3;
  --gold-dark: #A67C2E;

  /* Typography Colors */
  --brown-dark: #3D2B1F;
  --brown-medium: #5C4033;
  --brown-light: #7A6055;
  --text-muted: #9B8B80;

  /* Functional */
  --overlay-dark: rgba(61, 43, 31, 0.6);
  --overlay-light: rgba(245, 213, 203, 0.15);
  --glass-bg: rgba(255, 248, 240, 0.75);
  --glass-border: rgba(201, 169, 110, 0.2);
  --shadow-soft: 0 4px 30px rgba(61, 43, 31, 0.08);
  --shadow-medium: 0 8px 40px rgba(61, 43, 31, 0.12);
  --shadow-elevated: 0 20px 60px rgba(61, 43, 31, 0.15);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.2);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Lato', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --section-padding-sm: 80px 0;
  --container-width: 1280px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 50%;
}

/* ===== CSS RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--brown-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

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

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

ul, ol {
  list-style: none;
}

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

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

/* ===== TYPOGRAPHY SYSTEM ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brown-dark);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.3px; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--brown-medium);
  font-weight: 300;
}

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--rose-gold);
}

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

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

.subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--rose-gold);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-subtle);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-subtle);
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-sm {
  padding: var(--section-padding-sm);
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-subtle), transparent);
}

.section-divider .divider-icon {
  color: var(--gold-subtle);
  font-size: 0.9rem;
}

/* ===== LOADING SCREEN ===== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-logo {
  width: 180px;
  height: auto;
  margin-bottom: 24px;
  transform: translateX(-12px);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--nude-light);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-subtle), var(--rose-gold));
  border-radius: 2px;
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(61, 43, 31, 0.06);
  padding: 8px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 101;
}

.nav-logo img {
  height: 38px; 
  width: auto;
  transform: scale(1.5);
  transform-origin: left center;
  transition: var(--transition-smooth);
}

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

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-dark);
  position: relative;
  padding: 4px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brown-dark);
  text-shadow: 0 4px 12px rgba(61, 43, 31, 0.15);
}

/* Elegant sparkling dot below active/hovered links instead of underline */
.nav-links a::after {
  content: '✦';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) scale(0) rotate(-45deg);
  font-size: 0.6rem;
  color: var(--gold-subtle);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scale(1) rotate(0deg);
  opacity: 1;
}

/* Ensure nav text is always dark brown since background is always light frosted glass */
.navbar.transparent .nav-links a {
  color: var(--brown-dark);
}

.navbar.transparent.scrolled .nav-links a {
  color: var(--brown-dark);
}


/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 101;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--brown-dark);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

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

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

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

/* ===== HERO SECTIONS ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brown-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.7;
  animation: kenBurns 20s ease-out forwards;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(61, 43, 31, 0.3) 0%,
    rgba(61, 43, 31, 0.1) 40%,
    rgba(61, 43, 31, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.hero-content .subtitle {
  color: var(--gold-light);
  margin-bottom: 20px;
  font-size: 1rem;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 400;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-scroll {
    position: absolute;
    bottom: 10px; /* Moved lower */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
    animation: scrollBounce 2s infinite;
    transition: opacity 0.4s ease;
  }

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Page Hero (Smaller) */
.page-hero {
  min-height: 100vh;
  padding-top: 100px;
}

.page-hero .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(183, 110, 121, 0.35);
}

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

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold-subtle), var(--gold-dark));
  color: var(--white);
  border: none;
}

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

.btn-white {
  background: var(--white);
  color: var(--rose-gold);
  border: none;
}

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

.btn .btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===== GLASS CARDS ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: var(--transition-smooth);
}

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

/* ===== PREMIUM CARDS ===== */
.premium-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

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

.premium-card .card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.premium-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-card:hover .card-image img {
  transform: scale(1.05);
}

.premium-card .card-body {
  padding: 30px;
}

.premium-card .card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.premium-card .card-body p {
  font-size: 0.95rem;
  color: var(--brown-light);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  text-align: center;
  padding: 50px 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  color: var(--rose-gold);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  transform: scale(1.1);
}

.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== IMAGE WITH FRAME ===== */
.image-frame {
  position: relative;
  display: inline-block;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-subtle);
  border-radius: var(--radius-md);
  z-index: -1;
  transition: var(--transition-smooth);
}

.image-frame:hover::before {
  top: -16px;
  right: -16px;
}

.image-frame img {
  border-radius: var(--radius-md);
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 60px;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--brown-dark);
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--pink-soft);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--pink-soft), var(--rose-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--rose-gold-dark);
  font-weight: 600;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--brown-dark);
  font-weight: 500;
}

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

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--nude-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  width: 30px;
  border-radius: 5px;
  background: var(--rose-gold);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-subtle), var(--rose-gold), var(--gold-subtle));
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-content {
  width: 45%;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--rose-gold);
  border: 3px solid var(--cream);
  z-index: 1;
  box-shadow: 0 0 0 4px var(--pink-soft);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-subtle);
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border-bottom: 1px solid var(--nude-light);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
  text-align: left;
  background: none;
}

.faq-question h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--brown-dark);
  transition: var(--transition-fast);
}

.faq-question:hover h4 {
  color: var(--rose-gold);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--rose-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
  font-size: 0.95rem;
  color: var(--brown-light);
  line-height: 1.8;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  columns: 4;
  column-gap: 20px;
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 43, 31, 0.7), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Gallery Filter */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown-medium);
  border: 1px solid var(--nude-light);
  background: transparent;
  transition: var(--transition-fast);
  cursor: pointer;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

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

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  transition: var(--transition-fast);
  opacity: 0.7;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== CONTACT FORM ===== */
.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown-medium);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--nude-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--brown-dark);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

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

.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-error {
  font-size: 0.82rem;
  color: #e74c3c;
  margin-top: 6px;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-success {
  text-align: center;
  padding: 40px;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ===== STATS / COUNTERS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--rose-gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-blush), var(--warm-beige));
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
}

.cta-section h2 {
  margin-bottom: 20px;
  position: relative;
}

.cta-section p {
  margin-bottom: 40px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
  color: var(--white);
  padding: 15px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  height: 75px;
  margin-top: -5px;
  margin-bottom: 0;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
}

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

.footer-column h4,
.footer-newsletter h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer-column ul li {
  margin-bottom: 4px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--rose-gold-light);
  padding-left: 6px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  padding: 14px 24px;
  background: var(--rose-gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  white-space: nowrap;
}

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

.footer-bottom {
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

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

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

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-medium);
  cursor: pointer;
}

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

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(183, 110, 121, 0.4);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== BACKGROUND VARIANTS ===== */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-beige { background: var(--warm-beige); }
.bg-pink { background: var(--pink-soft); }
.bg-dark { background: var(--brown-dark); color: var(--white); }

.bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--white);
}

.bg-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.bg-dark .subtitle {
  color: var(--gold-light);
}

/* ===== DECORATIVE ELEMENTS ===== */
.floating-petal {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0.15;
  animation: floatPetal 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(0) rotate(180deg); }
  75% { transform: translateY(20px) rotate(270deg); }
}

.gold-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-subtle);
  border-radius: var(--radius-full);
  animation: sparkle 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

/* ===== SECTION SPECIFIC BACKGROUNDS ===== */
.section-gradient {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
}

.section-soft-pink {
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--cream) 100%);
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-subtle), var(--rose-gold), var(--gold-subtle));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 2px solid var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-subtle);
  transition: var(--transition-smooth);
}

.process-step:hover .step-number {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--white);
  transform: scale(1.1);
}

/* ===== BEFORE/AFTER SLIDER ===== */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: ew-resize;
}

.ba-slider .ba-before,
.ba-slider .ba-after {
  display: block;
  width: 100%;
}

.ba-slider .ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 2;
}

.ba-slider .ba-handle::after {
  content: '◄ ►';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--brown-dark);
  letter-spacing: 2px;
  box-shadow: var(--shadow-medium);
}

/* ===== RESPONSIVE DESIGN ===== */

/* 1280px and below */
@media (max-width: 1280px) {
  :root {
    --container-padding: 0 30px;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .gallery-grid {
    columns: 3;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
    --section-padding-sm: 60px 0;
    --container-padding: 0 24px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  /* Navigation Mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px;
    gap: 28px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

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

  .nav-links a {
    font-size: 1rem;
    color: var(--brown-dark) !important;
  }

  .nav-cta {
    margin-top: 20px;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Timeline */
  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-dot {
    left: 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .gallery-grid {
    columns: 2;
  }

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

  .testimonial-card {
    padding: 0 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 20px;
  }

  .hero {
    min-height: 70vh;
  }

  .gallery-grid {
    columns: 1;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form input,
  .newsletter-form button {
    border-radius: var(--radius-sm);
    width: 100%;
  }
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== UTILITY CLASSES ===== */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 60px; }
.pt-0 { padding-top: 0; }
