/* ===================================
   ETERNAL MOMENTS PHOTOGRAPHY
   Premium Wedding Photography Website
   Designed by Talha-AN Creative Media
   =================================== */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  /* Primary Palette - Romantic & Luxurious */
  --color-burgundy: #7A2048;
  --color-burgundy-deep: #5A1636;
  --color-dusty-rose: #C08497;
  --color-dusty-rose-light: #D4A5B2;
  --color-blush: #F2D7D9;
  --color-blush-light: #FAF0F1;
  --color-gold: #C9A96E;
  --color-gold-light: #E1CC9C;
  --color-gold-dark: #A88B4A;

  /* Neutrals */
  --color-cream: #FDF8F5;
  --color-ivory: #FFFAF5;
  --color-white: #FFFFFF;
  --color-charcoal: #2B2B2B;
  --color-dark: #1A1A1A;
  --color-grey-800: #3D3D3D;
  --color-grey-600: #6B6B6B;
  --color-grey-400: #9E9E9E;
  --color-grey-200: #E0E0E0;
  --color-grey-100: #F5F5F5;

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elegant: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(122, 32, 72, 0.06);
  --shadow-md: 0 4px 16px rgba(122, 32, 72, 0.08);
  --shadow-lg: 0 8px 32px rgba(122, 32, 72, 0.12);
  --shadow-xl: 0 16px 48px rgba(122, 32, 72, 0.16);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.25);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;
}

/* ---------- Reset & Base ---------- */
*, *::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);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-sm);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--color-gold);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: var(--space-md);
  position: relative;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--color-grey-600);
  max-width: 600px;
  font-weight: 400;
  font-style: italic;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-3xl) 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-deep));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(122, 32, 72, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122, 32, 72, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-burgundy);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-burgundy);
  border: 2px solid var(--color-burgundy);
}

.btn-outline:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.78rem;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.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; }

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo-icon {
  font-size: 1.6rem;
  color: var(--color-gold);
  transition: var(--transition-base);
}

.navbar.scrolled .nav-logo-icon {
  color: var(--color-gold);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  transition: var(--transition-base);
}

.nav-logo-text span {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  display: block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: -4px;
}

.navbar.scrolled .nav-logo-text {
  color: var(--color-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-white);
}

.navbar.scrolled .nav-links a {
  color: var(--color-grey-600);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--color-burgundy);
}

.nav-cta {
  margin-left: 8px;
}

.nav-cta .btn-primary {
  padding: 10px 24px;
  font-size: 0.78rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.navbar.scrolled .hamburger span {
  background: var(--color-dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--color-burgundy-deep) 0%, var(--color-burgundy) 50%, var(--color-dusty-rose) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: var(--transition-elegant);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.35s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.45s; }
.mobile-menu.active a:nth-child(8) { transition-delay: 0.5s; }
.mobile-menu.active a:nth-child(9) { transition-delay: 0.55s; }

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.72) 0%,
    rgba(90, 22, 54, 0.55) 50%,
    rgba(26, 26, 26, 0.65) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: var(--radius-full);
  color: var(--color-gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero h1 .accent {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold-light);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

.hero-scroll i {
  font-size: 1.2rem;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Decorative Elements */
.hero-decor {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.1);
  pointer-events: none;
}

.hero-decor-1 {
  top: -100px;
  right: -100px;
}

.hero-decor-2 {
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
}

/* ---------- ABOUT SECTION ---------- */
#about {
  background: var(--color-white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-deep));
  color: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-experience-badge .number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold-light);
}

.about-experience-badge .label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-text {
  color: var(--color-grey-600);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-grey-200);
}

.about-stat {
  text-align: center;
}

.about-stat .stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-burgundy);
  line-height: 1;
}

.about-stat .stat-label {
  font-size: 0.78rem;
  color: var(--color-grey-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-md);
}

.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--color-blush-light);
  color: var(--color-burgundy);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
}

.credential-tag i {
  color: var(--color-gold);
}

/* ---------- SERVICES SECTION ---------- */
#services {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 132, 151, 0.08), transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-dusty-rose));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-blush), var(--color-blush-light));
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.service-icon i {
  font-size: 1.6rem;
  color: var(--color-burgundy);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-deep));
}

.service-card:hover .service-icon i {
  color: var(--color-white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-grey-600);
  line-height: 1.7;
}

/* How We Work Steps */
.how-we-work {
  margin-top: var(--space-3xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid var(--color-grey-200);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-dusty-rose), transparent);
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 3px solid var(--color-gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-burgundy);
  transition: var(--transition-smooth);
}

.step-item:hover .step-number {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: var(--color-white);
  transform: scale(1.1);
}

.step-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--color-grey-600);
  line-height: 1.6;
}

/* ---------- WHY CHOOSE US ---------- */
#why-us {
  background: linear-gradient(135deg, var(--color-burgundy-deep), var(--color-burgundy));
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

#why-us .section-label {
  color: var(--color-gold-light);
}

#why-us .section-label::before {
  background: var(--color-gold-light);
}

#why-us .section-title {
  color: var(--color-white);
}

#why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.why-us-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.why-us-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.3);
}

.why-us-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.why-us-icon i {
  font-size: 1.5rem;
  color: var(--color-gold-light);
}

.why-us-card:hover .why-us-icon {
  background: rgba(201, 169, 110, 0.3);
  transform: scale(1.1);
}

.why-us-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.why-us-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ---------- GALLERY SECTION ---------- */
#gallery {
  background: var(--color-white);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(90, 22, 54, 0.6), transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

/* ---------- PRICING SECTION ---------- */
#pricing {
  background: var(--color-white);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.pricing-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
  background: linear-gradient(135deg, var(--color-burgundy-deep), var(--color-burgundy));
  color: var(--color-white);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  padding: 6px 24px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.pricing-card.popular h3 {
  color: var(--color-white);
}

.pricing-desc {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-grey-400);
  margin-bottom: var(--space-lg);
}

.pricing-card.popular .pricing-desc {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-amount {
  margin-bottom: var(--space-lg);
}

.pricing-amount .currency {
  font-family: var(--font-display);
  font-size: 1.2rem;
  vertical-align: super;
}

.pricing-amount .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-card.popular .price {
  color: var(--color-gold-light);
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card.popular .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li i {
  color: var(--color-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card.popular .btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
}

/* ---------- TESTIMONIALS SECTION ---------- */
#testimonials {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '\201C';
  position: absolute;
  top: 60px;
  left: 60px;
  font-family: var(--font-display);
  font-size: 20rem;
  color: var(--color-blush);
  line-height: 1;
  pointer-events: none;
  opacity: 0.5;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  padding: 0 var(--space-xs);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
}

.testimonial-stars i {
  color: var(--color-gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-grey-600);
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial-avatar.av-1 { background: linear-gradient(135deg, var(--color-burgundy), var(--color-dusty-rose)); }
.testimonial-avatar.av-2 { background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)); }
.testimonial-avatar.av-3 { background: linear-gradient(135deg, var(--color-dusty-rose), var(--color-blush)); color: var(--color-burgundy); }
.testimonial-avatar.av-4 { background: linear-gradient(135deg, #6B5B73, #A889B5); }
.testimonial-avatar.av-5 { background: linear-gradient(135deg, var(--color-burgundy-deep), var(--color-burgundy)); }
.testimonial-avatar.av-6 { background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-light)); }

.testimonial-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--color-grey-400);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: var(--space-xl);
}

.testimonials-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-grey-200);
  color: var(--color-grey-600);
  transition: var(--transition-base);
  font-size: 1rem;
}

.testimonials-nav button:hover {
  border-color: var(--color-burgundy);
  color: var(--color-burgundy);
  background: var(--color-blush-light);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-grey-200);
  cursor: pointer;
  transition: var(--transition-base);
}

.testimonials-dots .dot.active {
  background: var(--color-burgundy);
  transform: scale(1.2);
}

/* ---------- FAQ SECTION ---------- */
#faq {
  background: var(--color-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--color-dusty-rose-light);
}

.faq-item.active {
  border-color: var(--color-burgundy);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  background: transparent;
  transition: var(--transition-base);
  cursor: pointer;
}

.faq-question:hover {
  color: var(--color-burgundy);
}

.faq-question:focus {
  outline: 2px solid var(--color-dusty-rose);
  outline-offset: -2px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-blush-light);
  color: var(--color-burgundy);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  background: var(--color-burgundy);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--color-grey-600);
  line-height: 1.8;
  font-size: 0.92rem;
}

/* ---------- CONTACT SECTION ---------- */
#contact {
  background: var(--color-cream);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info h2 {
  margin-bottom: var(--space-sm);
}

.contact-info > p {
  color: var(--color-grey-600);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blush-light);
  border-radius: var(--radius-md);
  color: var(--color-burgundy);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-item-text p {
  font-size: 0.88rem;
  color: var(--color-grey-600);
}

.contact-item-text a {
  color: var(--color-burgundy);
  font-weight: 500;
}

.contact-item-text a:hover {
  color: var(--color-gold-dark);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-bottom: var(--space-xl);
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-blush-light);
  color: var(--color-burgundy);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #1DAA55;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
  font-size: 1.3rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-grey-200);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  color: var(--color-charcoal);
  font-size: 0.95rem;
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-dusty-rose);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(192, 132, 151, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #E74C3C;
}

.form-group .error-message {
  color: #E74C3C;
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-submit {
  margin-top: var(--space-md);
}

.form-submit .btn {
  width: 100%;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form-success i {
  font-size: 3rem;
  color: #25D366;
  margin-bottom: var(--space-md);
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--color-grey-600);
}

/* Map Placeholder */
.map-placeholder {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  background: var(--color-grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-grey-200);
}

.map-placeholder i {
  font-size: 2rem;
  color: var(--color-grey-400);
  margin-right: 12px;
}

.map-placeholder span {
  color: var(--color-grey-400);
  font-size: 0.95rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.footer-top {
  padding: var(--space-3xl) 0 var(--space-2xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-md);
}

.footer-brand .nav-logo-text {
  color: var(--color-white);
}

.footer-brand > p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
}

.footer-socials a:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-gold-light);
  padding-left: 6px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-hours li:last-child {
  border-bottom: none;
}

.footer-hours .day {
  color: rgba(255, 255, 255, 0.5);
}

.footer-hours .time {
  color: var(--color-gold-light);
  font-weight: 500;
}

.footer-contact-info {
  margin-top: var(--space-lg);
}

.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.footer-contact-info a i {
  color: var(--color-gold-light);
  width: 18px;
  text-align: center;
}

.footer-contact-info a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .credit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.footer-bottom .credit a {
  color: var(--color-gold-light);
  font-weight: 600;
}

.footer-bottom .credit a:hover {
  color: var(--color-gold);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.8rem;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 34px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-burgundy);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 1rem;
  z-index: 998;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-burgundy-deep);
  transform: translateY(-3px);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transform: scale(0.9);
  transition: var(--transition-elegant);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-base);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .steps-grid::before {
    display: none;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .ba-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .pricing-grid {
    gap: var(--space-md);
  }

  .testimonial-slide {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image img {
    height: 400px;
  }

  .about-image-frame {
    display: none;
  }

  .about-experience-badge {
    right: 16px;
    bottom: -16px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .lightbox img {
    max-width: 95%;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* Print styles */
@media print {
  .navbar, .whatsapp-float, .back-to-top, .hero-scroll {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}

