/* ============================================
   MERRIPLAYFABL - LUXURY WEDDING PLANNING
   Apple iOS Inspired Glassmorphism Design
   ============================================ */

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

/* ---- CSS Custom Properties ---- */
:root {
  /* Base Colors */
  --deep-black: #0b0b0d;
  --graphite-gray: #1c1c1f;
  --soft-gray: #2c2c2e;
  --medium-gray: #3a3a3c;
  --light-gray: #8e8e93;
  --off-white: #f5f5f7;
  --white: #ffffff;

  /* Accent Colors */
  --glossy-orange: #ff7a18;
  --fresh-green: #22c55e;
  --champagne-glow: #facc15;
  --rose-gold: #b76e79;
  --soft-pink: #f4a5b8;

  /* Glass UI */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-hover: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-border-hover: rgba(255, 255, 255, 0.25);
  --glass-blur: blur(25px);
  --glass-blur-heavy: blur(40px);

  /* Gradients */
  --gradient-orange: linear-gradient(135deg, #ff7a18, #ff9a44);
  --gradient-green: linear-gradient(135deg, #22c55e, #4ade80);
  --gradient-champagne: linear-gradient(135deg, #facc15, #fde68a);
  --gradient-mixed: linear-gradient(135deg, #ff7a18, #22c55e);
  --gradient-hero: linear-gradient(180deg, rgba(11,11,13,0.3) 0%, rgba(11,11,13,0.8) 100%);
  --gradient-dark: linear-gradient(180deg, #0b0b0d 0%, #1c1c1f 100%);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --sidebar-collapsed: 82px;
  --sidebar-expanded: 272px;
  --content-padding: 60px;
  --section-gap: 120px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-apple: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-apple);
  --transition-medium: 0.4s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-glow-orange: 0 0 30px rgba(255,122,24,0.3);
  --shadow-glow-green: 0 0 30px rgba(34,197,94,0.3);
  --shadow-inner: inset 0 1px 0 rgba(255,255,255,0.1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --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);
  background-color: var(--deep-black);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(255, 122, 24, 0.3);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--deep-black);
}

::-webkit-scrollbar-thumb {
  background: var(--soft-gray);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--glossy-orange);
}

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-mixed);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ---- Custom Cursor Glow ---- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,24,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ---- Floating Particles ---- */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) rotate(720deg);
    opacity: 0;
  }
}

/* ---- Page Transition Overlay ---- */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--deep-black);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-apple);
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   SIDEBAR NAVIGATION — PREMIUM REDESIGN
   ============================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-collapsed);
  height: 100vh;
  background: rgba(18, 18, 22, 0.92);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,122,24,0.4), transparent);
  z-index: 3;
}

.sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, transparent 40%, transparent 60%, rgba(255,122,24,0.015) 100%);
  pointer-events: none;
  z-index: 0;
}

.sidebar:hover {
  width: var(--sidebar-expanded);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.5), 1px 0 0 rgba(255, 122, 24, 0.1);
}

/* Sidebar Logo */
.sidebar-logo {
  display: flex;
  align-items: center;
  padding: 20px 18px;
  min-height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
  gap: 14px;
}

.sidebar-logo .logo-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gradient-orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 122, 24, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.sidebar:hover .sidebar-logo .logo-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(255, 122, 24, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}

.sidebar-logo .logo-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  border-radius: 14px 14px 0 0;
}

.sidebar-logo .logo-text {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) 0.05s, transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) 0.05s;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar:hover .logo-text {
  opacity: 1;
  transform: translateX(0);
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.logo-text .brand-tagline {
  font-size: 10px;
  color: var(--light-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
  opacity: 0.7;
}

/* Sidebar Navigation */
.sidebar-nav {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav::-webkit-scrollbar {
  width: 0;
}

.nav-item {
  position: relative;
  padding: 0 12px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0;
  height: 48px;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  gap: 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 20px;
  background: var(--gradient-orange);
  border-radius: 0 3px 3px 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 3;
}

.nav-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 14px;
  transition: background 0.3s ease;
  z-index: 0;
}

.nav-link:hover::after {
  background: rgba(255, 255, 255, 0.06);
}

.nav-link:hover::before {
  transform: translateY(-50%) scaleY(1);
}

.nav-link.active {
  background: rgba(255, 122, 24, 0.08);
}

.nav-link.active::before {
  transform: translateY(-50%) scaleY(1);
  height: 24px;
  box-shadow: 0 0 12px rgba(255, 122, 24, 0.4);
}

.nav-link.active::after {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.06) 0%, rgba(255, 122, 24, 0.02) 100%);
}

.nav-link .nav-icon {
  width: 56px;
  min-width: 56px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: grayscale(30%);
}

.nav-link:hover .nav-icon {
  transform: scale(1.12);
  filter: grayscale(0%);
}

.nav-link.active .nav-icon {
  transform: scale(1.1);
  filter: grayscale(0%) drop-shadow(0 0 6px rgba(255, 122, 24, 0.3));
}

/* Remove old active dot on icon */
.nav-link.active .nav-icon::after {
  display: none;
}

.nav-link .nav-label {
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--light-gray);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0.04s, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0.04s, color 0.2s ease;
  position: relative;
  z-index: 2;
  letter-spacing: 0.2px;
}

.sidebar:hover .nav-label {
  opacity: 1;
  transform: translateX(0);
}

.nav-link:hover .nav-label {
  color: var(--off-white);
}

.nav-link.active .nav-label {
  color: var(--white);
  font-weight: 600;
}

/* Nav item stagger animation on sidebar expand */
.sidebar:hover .nav-item:nth-child(1) .nav-label { transition-delay: 0.02s; }
.sidebar:hover .nav-item:nth-child(2) .nav-label { transition-delay: 0.04s; }
.sidebar:hover .nav-item:nth-child(3) .nav-label { transition-delay: 0.06s; }
.sidebar:hover .nav-item:nth-child(4) .nav-label { transition-delay: 0.08s; }
.sidebar:hover .nav-item:nth-child(5) .nav-label { transition-delay: 0.10s; }
.sidebar:hover .nav-item:nth-child(6) .nav-label { transition-delay: 0.12s; }
.sidebar:hover .nav-item:nth-child(7) .nav-label { transition-delay: 0.14s; }
.sidebar:hover .nav-item:nth-child(8) .nav-label { transition-delay: 0.16s; }

/* Sidebar active indicator glow */
.nav-link.active {
  position: relative;
}

.nav-link.active .nav-icon-glow {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Nav divider */
.sidebar-nav-divider {
  height: 1px;
  margin: 8px 20px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 16px 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-wrap: nowrap;
}

.social-icon {
  width: 38px;
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--light-gray);
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.social-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: transparent;
  transition: background 0.3s ease;
}

.social-icon:hover {
  color: var(--glossy-orange);
  transform: translateY(-2px);
}

.social-icon:hover::after {
  background: rgba(255, 122, 24, 0.1);
}

.sidebar-copyright {
  text-align: center;
  font-size: 9px;
  color: rgba(142, 142, 147, 0.6);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s, transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
  letter-spacing: 0.5px;
}

.sidebar:hover .sidebar-copyright {
  opacity: 1;
  transform: translateY(0);
}

/* Sidebar tooltip for collapsed state */
.nav-item {
  position: relative;
}

.nav-item .nav-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  background: rgba(28, 28, 31, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--off-white);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-item .nav-tooltip::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(28, 28, 31, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Only show tooltips when sidebar is collapsed */
.sidebar:not(:hover) .nav-item:hover .nav-tooltip {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ============================================
   MOBILE NAVIGATION — ENHANCED
   ============================================ */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(18, 18, 22, 0.92);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1001;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.mobile-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 24, 0.3), transparent);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(255, 122, 24, 0.3);
}

.mobile-logo .logo-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
}

.mobile-logo .brand-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.hamburger:active {
  background: rgba(255, 255, 255, 0.06);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(11, 11, 13, 0.96);
  backdrop-filter: blur(50px) saturate(150%);
  -webkit-backdrop-filter: blur(50px) saturate(150%);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--off-white);
  padding: 14px 32px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateY(10px);
  opacity: 0;
  position: relative;
  overflow: visible;
  height: auto;
}

.mobile-menu.active .nav-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active .nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active .nav-link:nth-child(2) { transition-delay: 0.08s; }
.mobile-menu.active .nav-link:nth-child(3) { transition-delay: 0.11s; }
.mobile-menu.active .nav-link:nth-child(4) { transition-delay: 0.14s; }
.mobile-menu.active .nav-link:nth-child(5) { transition-delay: 0.17s; }
.mobile-menu.active .nav-link:nth-child(6) { transition-delay: 0.20s; }
.mobile-menu.active .nav-link:nth-child(7) { transition-delay: 0.23s; }
.mobile-menu.active .nav-link:nth-child(8) { transition-delay: 0.26s; }

.mobile-menu .nav-link::before {
  display: none;
}

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

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
  color: var(--glossy-orange);
  background: rgba(255, 122, 24, 0.08);
}

.mobile-menu .nav-link.active {
  font-weight: 600;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.main-content {
  margin-left: var(--sidebar-collapsed);
  min-height: 100vh;
  position: relative;
  z-index: 2;
  transition: margin-left 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--deep-black) 0%, transparent 100%);
}

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

.hero-glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.hero-glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 122, 24, 0.15);
  border: 1px solid rgba(255, 122, 24, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--glossy-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--glossy-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero h1 span {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  pointer-events: none;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 122, 24, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 122, 24, 0.5);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--gradient-green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s infinite;
}

.scroll-indicator span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}

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

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

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
  padding: clamp(60px, 8vw, var(--section-gap)) clamp(24px, 4vw, var(--content-padding));
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(40px, 5vw, 70px);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 122, 24, 0.1);
  border: 1px solid rgba(255, 122, 24, 0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--glossy-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--light-gray);
  line-height: 1.8;
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
  position: relative;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  z-index: 1;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

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

/* ============================================
   FEATURED WEDDINGS
   ============================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

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

.featured-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  z-index: 2;
}

.featured-card-glass {
  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: 20px;
  position: relative;
  overflow: hidden;
}

.featured-card-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.featured-card-glass h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.featured-card-glass p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 36px;
  text-align: center;
}

.service-card .service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(255, 122, 24, 0.1);
  border: 1px solid rgba(255, 122, 24, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-card .service-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
}

.service-card:hover .service-icon {
  background: rgba(255, 122, 24, 0.2);
  box-shadow: var(--shadow-glow-orange);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.7;
}

/* Fix: Use box-shadow for gradient border effect */
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(255,122,24,0.3), 0 8px 32px rgba(0,0,0,0.3);
}

/* ============================================
   TESTIMONIALS / LOVE STORIES
   ============================================ */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease-smooth);
}

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

.testimonial-card .couple-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  box-shadow: 0 0 20px rgba(255,122,24,0.2);
}

.testimonial-card .couple-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card .quote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-card .couple-name {
  font-weight: 600;
  color: var(--glossy-orange);
  font-size: 0.95rem;
}

.testimonial-card .wedding-date {
  font-size: 0.8rem;
  color: var(--light-gray);
  margin-top: 4px;
}

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

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--soft-gray);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--glossy-orange);
  box-shadow: 0 0 10px rgba(255,122,24,0.5);
}

/* ============================================
   WEDDING PROCESS TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--glossy-orange), var(--fresh-green), var(--champagne-glow));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s var(--ease-smooth);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item .timeline-dot {
  width: 60px;
  min-width: 60px;
  height: 60px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 2px solid var(--glossy-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--glossy-orange);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(255,122,24,0.2);
}

.timeline-item .timeline-content {
  flex: 1;
  padding-top: 10px;
}

.timeline-item .timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-item .timeline-content p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.7;
}

/* ============================================
   PREMIUM CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
  text-align: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 0 clamp(16px, 3vw, 40px);
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,122,24,0.6) 0%, rgba(34,197,94,0.4) 100%);
  z-index: 1;
}

.cta-banner-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(5px);
  z-index: 2;
}

.cta-banner-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11,11,13,0.5) 0%, rgba(11,11,13,0.9) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* About Content */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 20px;
}

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

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  padding: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 30px;
}

.team-card .team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
}

.team-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.team-card .role {
  font-size: 0.8rem;
  color: var(--glossy-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--light-gray);
  margin-top: 12px;
  line-height: 1.6;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  margin-top: 20px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--off-white);
  font-size: 0.9rem;
}

.service-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--fresh-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

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

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--light-gray);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(255, 122, 24, 0.15);
  border-color: rgba(255, 122, 24, 0.3);
  color: var(--glossy-orange);
}

.masonry-grid {
  columns: 3;
  column-gap: 20px;
}

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

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

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

.masonry-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

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

.masonry-item-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
}

.masonry-item-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,122,24,0.2);
  border-color: rgba(255,122,24,0.5);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: rgba(255,122,24,0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.pricing-card.popular {
  border-color: rgba(255, 122, 24, 0.4);
  box-shadow: 0 0 40px rgba(255, 122, 24, 0.1);
}

.pricing-card.popular::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 2;
}

.popular-badge {
  display: inline-block;
  padding: 4px 16px;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.pricing-card .pricing-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-card .pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin: 20px 0;
  position: relative;
  z-index: 2;
}

.pricing-card .pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--light-gray);
}

.pricing-card .pricing-desc {
  font-size: 0.85rem;
  color: var(--light-gray);
  margin-bottom: 30px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--off-white);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li .check {
  color: var(--fresh-green);
  font-size: 14px;
}

.pricing-features li .cross {
  color: var(--light-gray);
  font-size: 14px;
  opacity: 0.5;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.booking-form {
  padding: clamp(30px, 4vw, 50px);
}

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

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--glossy-orange);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 20px rgba(255,122,24,0.1);
}

.form-group label {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 0.9rem;
  color: var(--light-gray);
  pointer-events: none;
  transition: all 0.3s var(--ease-smooth);
  z-index: 1;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 16px;
  font-size: 0.75rem;
  color: var(--glossy-orange);
  background: var(--deep-black);
  padding: 0 6px;
}

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

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238e8e93' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--graphite-gray);
  color: var(--white);
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

/* Validation styles */
.form-group input:invalid:not(:placeholder-shown) {
  border-color: #ff4444;
}

.form-group input:valid:not(:placeholder-shown) {
  border-color: var(--fresh-green);
}

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

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

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  overflow: hidden;
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 28px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.blog-card-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--glossy-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-date {
  font-size: 11px;
  color: var(--light-gray);
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.blog-card:hover h3 {
  color: var(--glossy-orange);
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--glossy-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.blog-card:hover .read-more {
  gap: 12px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-card {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-card .info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(255, 122, 24, 0.1);
  border: 1px solid rgba(255, 122, 24, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.6;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 250px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(92%) contrast(83%);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--light-gray);
  transition: all var(--transition-fast);
}

.contact-social a:hover {
  color: var(--glossy-orange);
  border-color: rgba(255,122,24,0.3);
  background: rgba(255,122,24,0.1);
}

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

.faq-item {
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
}

.faq-question.active {
  border-color: rgba(255,122,24,0.3);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.faq-icon {
  font-size: 20px;
  color: var(--glossy-orange);
  transition: transform 0.3s var(--ease-smooth);
  min-width: 20px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.faq-answer-inner {
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.8;
}

/* ============================================
   LEGAL PAGES (Privacy, Terms, Cookies)
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content ul li {
  color: var(--light-gray);
  line-height: 1.8;
  font-size: 0.95rem;
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}

.legal-content ul li::before {
  content: '•';
  color: var(--glossy-orange);
  position: absolute;
  left: 0;
}

.legal-content a {
  color: var(--glossy-orange);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--champagne-glow);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, var(--content-padding)) 30px;
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .footer-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-brand .footer-logo .logo-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
}

.footer-brand .footer-logo .brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  font-size: 16px;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  color: var(--glossy-orange);
  border-color: rgba(255,122,24,0.3);
  background: rgba(255,122,24,0.1);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-column ul li a {
  font-size: 0.85rem;
  color: var(--light-gray);
  transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--glossy-orange);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--light-gray);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--light-gray);
}

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-smooth);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s var(--ease-smooth);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s var(--ease-smooth);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease-smooth);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

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

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

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --sidebar-collapsed: 72px;
    --content-padding: 40px;
    --section-gap: 80px;
  }

  .about-story,
  .service-detail,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

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

  .masonry-grid {
    columns: 2;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Hide tooltips on tablet */
  .nav-item .nav-tooltip {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .main-content {
    margin-left: 0;
    padding-top: 64px;
  }

  .hero {
    height: calc(100vh - 64px);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .masonry-grid {
    columns: 1;
  }

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

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

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

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

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item .timeline-dot {
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .scroll-indicator {
    display: none;
  }

  .cta-banner {
    margin: 0 16px;
  }

  /* Hide tooltips on mobile */
  .nav-item .nav-tooltip {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-glass-card {
    padding: 24px;
  }

  .section {
    padding: 50px 16px;
  }

  .pricing-grid {
    max-width: 100%;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .main-content {
    max-width: calc(100% - var(--sidebar-collapsed));
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.hidden { display: none !important; }

/* Gradient text */
.gradient-text {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider */
.section-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 3px;
  margin: 24px auto;
}

/* Animated gradient background */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animated-gradient {
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 28, 31, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  padding: 20px clamp(20px, 4vw, 40px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-smooth);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--light-gray);
  flex: 1;
  min-width: 200px;
}

.cookie-banner p a {
  color: var(--glossy-orange);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-btn.accept {
  background: var(--gradient-orange);
  color: var(--white);
}

.cookie-btn.decline {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--light-gray);
}