/* ========================================
   MUSKAN MATTRESS - COMPLETE GLOBAL STYLES
   Premium Luxury Design System - TRANSPARENT HEADER
   ======================================== */

:root {
  --sage: #6B8A74;
  --sage-light: #8aa892;
  --beige: #D8C8A5;
  --beige-dark: #c4b28b;
  --ivory: #F8F4EC;
  --gold: #C8A86B;
  --gold-light: #D4B87A;
  --gold-dark: #A8894A;
  --gold-glow: rgba(200, 168, 107, 0.3);
  --charcoal: #2C2C2C;
  --charcoal-light: #4a4a4a;
  --cream: #FFF9F0;
  --warm-gray: #EAE5D9;
  --white: #FFFFFF;
  --black: #000000;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 15px 35px rgba(200, 168, 107, 0.2);
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  --transition-slow: all 0.6s cubic-bezier(0.2, 0.95, 0.4, 1.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.5;
}

/* ========================================
   EPIC BACKGROUND ANIMATION
   ======================================== */

.epic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(107, 138, 116, 0.08), rgba(45, 45, 45, 0.1));
  pointer-events: none;
}

.floating-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: floatOrb 20s infinite ease-in-out;
}

.orb.o1 { width: 400px; height: 400px; background: var(--gold); top: 10%; left: -5%; animation-delay: 0s; }
.orb.o2 { width: 500px; height: 500px; background: var(--sage); bottom: 10%; right: -10%; animation-delay: 5s; }
.orb.o3 { width: 300px; height: 300px; background: var(--beige); top: 40%; right: 20%; animation-delay: 10s; }
.orb.o4 { width: 250px; height: 250px; background: var(--gold-light); bottom: 30%; left: 15%; animation-delay: 15s; }

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .custom-cursor { display: none; }
  body { cursor: auto; }
}

/* ========================================
   SCROLL PROGRESS
   ======================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(200, 168, 107, 0.2);
  z-index: 10000;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.1s ease;
  box-shadow: 0 0 5px var(--gold);
}

/* ========================================
   PREMIUM LUXURY NAVIGATION BAR
   TRANSPARENT INITIALLY, SOLID ON SCROLL
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 5%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background: transparent;  /* TRANSPARENT INITIALLY */
  display: flex;
  align-items: center;
}

/* When scrolled - becomes glass/solid */
.navbar.scrolled {
  background: rgba(248, 244, 236, 0.96);
  backdrop-filter: blur(12px);
  height: 80px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(200, 168, 107, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========================================
   PREMIUM LOGO - ENHANCED
   ======================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.logo-monogram {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1F3B2F, #2D4A3C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.logo-monogram::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(200, 168, 107, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  20% { transform: translateX(100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.navbar.scrolled .logo-monogram {
  width: 60px;
  height: 60px;
}

.monogram-m {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.monogram-m.second {
  margin-left: -12px;
  opacity: 0.8;
  font-size: 34px;
}

.navbar.scrolled .monogram-m {
  font-size: 32px;
}

.navbar.scrolled .monogram-m.second {
  font-size: 28px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.logo-brand-alt {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-brand {
  font-size: 1.1rem;
}

.navbar.scrolled .logo-brand-alt {
  font-size: 0.75rem;
}

.logo:hover .logo-monogram {
  transform: scale(1.03);
  border-color: var(--gold-light);
  box-shadow: 0 6px 20px rgba(200, 168, 107, 0.3);
}

.logo:hover .logo-brand {
  color: var(--gold);
}

.logo:hover .logo-brand-alt {
  color: #1F3B2F;
  letter-spacing: 3px;
}

/* ========================================
   PREMIUM NAVIGATION LINKS
   ======================================== */

.nav-links {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
  padding: 8px 0;
}

/* Premium gold underline animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.nav-link:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--gold);
  font-weight: 600;
}

/* ========================================
   PREMIUM BOOK CONSULTATION BUTTON
   ======================================== */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-actions .btn-outline {
  padding: 10px 28px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  text-decoration: none;
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-actions .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: left 0.4s ease;
  z-index: -1;
}

.nav-actions .btn-outline:hover::before {
  left: 0;
}

.nav-actions .btn-outline:hover {
  color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 168, 107, 0.3);
  border-color: transparent;
}

/* ========================================
   PREMIUM MOBILE MENU TOGGLE
   ======================================== */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle:hover span {
  background: var(--gold);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--gold);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--gold);
}

/* ========================================
   PREMIUM MOBILE MENU
   ======================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 350px;
  height: 100%;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  z-index: 2000;
  transition: right 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-inner {
  padding: 35px 30px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(200, 168, 107, 0.2);
}

.mobile-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mobile-logo-link .logo-monogram {
  width: 50px;
  height: 50px;
}

.mobile-logo-link .monogram-m {
  font-size: 28px;
}

.mobile-logo-link .monogram-m.second {
  font-size: 24px;
}

.mobile-logo-link .logo-brand {
  font-size: 0.9rem;
}

.mobile-logo-link .logo-brand-alt {
  font-size: 0.6rem;
}

.close-menu-btn {
  background: rgba(200, 168, 107, 0.1);
  border: 1px solid rgba(200, 168, 107, 0.3);
  font-size: 20px;
  cursor: pointer;
  color: var(--charcoal);
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-menu-btn:hover {
  color: var(--gold);
  background: rgba(200, 168, 107, 0.2);
  transform: rotate(90deg);
  border-color: var(--gold);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  margin-bottom: 40px;
}

.mobile-menu-links a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--charcoal);
  transition: all 0.3s ease;
  padding: 12px 0;
  position: relative;
  display: inline-block;
  width: fit-content;
  letter-spacing: 0.5px;
}

.mobile-menu-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-links a:hover::after,
.mobile-menu-links a.active::after {
  width: 100%;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--gold);
  transform: translateX(8px);
}

.mobile-menu-footer {
  padding-top: 30px;
  border-top: 2px solid rgba(200, 168, 107, 0.2);
}

.mobile-menu-footer .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mobile-menu-footer .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1F3B2F, #2D4A3C);
  transition: left 0.4s ease;
  z-index: -1;
}

.mobile-menu-footer .btn-primary:hover::before {
  left: 0;
}

.mobile-menu-footer .btn-primary:hover {
  transform: translateY(-3px);
  gap: 16px;
  box-shadow: 0 10px 30px rgba(200, 168, 107, 0.3);
  color: white;
}

/* Overlay when mobile menu is open */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   CONTAINER & UTILITIES
   ======================================== */

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   BUTTONS - GLOBAL
   ======================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.btn-primary-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary-large:hover::before {
  left: 0;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-text {
  text-decoration: none;
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  display: inline-block;
}

.btn-text:hover {
  color: var(--gold);
  letter-spacing: 0.5px;
  border-bottom-color: var(--gold-light);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: var(--charcoal);
  color: var(--warm-gray);
  padding: 60px 0 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage), var(--gold));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  line-height: 1.6;
  opacity: 0.7;
  margin-top: 15px;
}

.footer-links h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: white;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: var(--warm-gray);
  opacity: 0.7;
  margin-bottom: 12px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateX(8px);
}

.footer-newsletter p {
  opacity: 0.7;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  border-bottom: 2px solid var(--gold);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  color: white;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-bottom i {
  color: var(--gold);
}

/* ========================================
   FULL BRAND LOGO
   ======================================== */

.full-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 15px;
}

.full-logo-monogram {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #1F3B2F, #2D4A3C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  margin: 0 auto;
  transition: all 0.3s ease;
}

.full-logo-monogram:hover {
  transform: scale(1.03);
  border-color: var(--gold-light);
  box-shadow: 0 5px 20px rgba(200, 168, 107, 0.2);
}

.full-logo-monogram .monogram-m {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -2px;
}

.full-logo-monogram .monogram-m.second {
  font-size: 42px;
  margin-left: -15px;
  opacity: 0.9;
}

.full-logo-text {
  margin-top: 10px;
}

.full-logo-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  display: block;
}

.full-logo-brand-alt {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}

/* ========================================
   FLOATING ELEMENTS
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366, #20b859);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  z-index: 100;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--charcoal);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  border: 1px solid var(--gold);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-5px);
  color: var(--charcoal);
}

/* ========================================
   CORNER ACCENT
   ======================================== */

.corner-accent {
  position: relative;
}

.corner-accent::before,
.corner-accent::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  border-color: var(--gold);
  border-style: solid;
  transition: var(--transition);
}

.corner-accent::before {
  top: 10px;
  left: 10px;
  border-top-width: 2px;
  border-left-width: 2px;
  border-right: none;
  border-bottom: none;
}

.corner-accent::after {
  bottom: 10px;
  right: 10px;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-top: none;
  border-left: none;
}

.corner-accent:hover::before,
.corner-accent:hover::after {
  width: 40px;
  height: 40px;
}

/* ========================================
   GALLERY MODAL STYLES
   ======================================== */

.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  background: rgba(44, 44, 44, 0.9);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 50px rgba(200, 168, 107, 0.3);
  border: 1px solid var(--gold);
}

.gallery-title {
  color: var(--gold);
  text-align: center;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}

.gallery-3d-container {
  perspective: 1000px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-main-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-main-image:hover {
  transform: scale(1.02);
}

.gallery-carousel {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  overflow-x: auto;
  padding: 10px 5px;
  scrollbar-width: thin;
}

.gallery-carousel::-webkit-scrollbar {
  height: 4px;
}

.gallery-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.gallery-carousel::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.carousel-item {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.carousel-item:hover {
  transform: translateY(-5px);
}

.carousel-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gold);
  font-size: 20px;
}

.gallery-nav:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }

.close-gallery {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10001;
}

.close-gallery:hover {
  transform: rotate(90deg);
  color: white;
}

.gallery-counter {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--gold);
  font-size: 14px;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop */
@media (min-width: 1400px) {
  .navbar { height: 110px; }
  .logo-monogram { width: 80px; height: 80px; }
  .monogram-m { font-size: 44px; }
  .logo-brand { font-size: 1.5rem; }
  .logo-brand-alt { font-size: 1rem; }
}

/* Desktop */
@media (min-width: 992px) and (max-width: 1399px) {
  .navbar { height: 95px; }
  .logo-monogram { width: 65px; height: 65px; }
  .monogram-m { font-size: 35px; }
  .logo-brand { font-size: 1.2rem; }
}

/* Tablet */
@media (max-width: 991px) {
  .navbar { 
    height: 80px;
    background: transparent; /* Keep transparent on tablet too */
  }
  .navbar.scrolled {
    background: rgba(248, 244, 236, 0.96);
  }
  .logo-monogram { width: 55px; height: 55px; }
  .monogram-m { font-size: 30px; }
  .monogram-m.second { font-size: 26px; }
  .logo-brand { font-size: 1rem; }
  .logo-brand-alt { font-size: 0.7rem; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-actions .btn-outline { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 767px) {
  .navbar { height: 70px; padding: 0 4%; background: transparent; }
  .navbar.scrolled { background: rgba(248, 244, 236, 0.96); }
  .logo-monogram { width: 48px; height: 48px; }
  .monogram-m { font-size: 26px; }
  .monogram-m.second { font-size: 22px; margin-left: -8px; }
  .logo-brand { font-size: 0.85rem; }
  .logo-brand-alt { font-size: 0.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .gallery-nav { width: 35px; height: 35px; font-size: 14px; }
  .carousel-item { width: 60px; height: 60px; }
  .mobile-menu-links a { font-size: 1rem; }
  
  .hero-buttons .btn-primary {
    padding: 10px 22px;
    font-size: 0.7rem;
  }
  
  .hero-buttons .btn-text {
    font-size: 0.7rem;
  }
  
  .projects-cta .btn-outline,
  .catalog-cta .btn-outline {
    padding: 10px 25px;
    font-size: 0.7rem;
  }
  
  .cta-content .btn-primary-large {
    padding: 12px 30px;
    font-size: 0.75rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .mobile-menu {
    width: 85%;
    max-width: 300px;
  }
  
  .mobile-menu-inner {
    padding: 25px 20px;
  }
  
  .mobile-menu-header {
    margin-bottom: 35px;
  }
  
  .mobile-menu-links {
    gap: 18px;
  }
  
  .mobile-menu-links a {
    font-size: 0.95rem;
  }
  
  .mobile-menu-footer .btn-primary {
    padding: 12px 20px;
    font-size: 0.8rem;
  }
}

/* ========================================
   REVEAL ON SCROLL
   ======================================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}




/* ========================================
   PREMIUM GLASSMORPHISM EFFECTS
   Luxury Glass Design System
   ======================================== */

/* ========================================
   GLASS VARIABLES
   ======================================== */

:root {
  --glass-bg: rgba(248, 244, 236, 0.75);
  --glass-bg-dark: rgba(44, 44, 44, 0.7);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(200, 168, 107, 0.25);
  --glass-border-light: rgba(200, 168, 107, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --glass-shadow-gold: 0 8px 32px rgba(200, 168, 107, 0.15);
  --glass-blur: blur(12px);
  --glass-blur-lg: blur(20px);
}

/* ========================================
   NAVIGATION GLASS EFFECT
   ======================================== */

/* Initial transparent navbar */
.navbar {
  background: transparent;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Glass effect when scrolled */
.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Glass effect for mobile menu header */
.mobile-menu {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--glass-border);
}

.mobile-menu-header {
  border-bottom: 1px solid var(--glass-border);
}

/* ========================================
   POPUP GALLERY GLASS EFFECT
   ======================================== */

.gallery-modal {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: var(--glass-blur-lg);
  -webkit-backdrop-filter: var(--glass-blur-lg);
}

.gallery-modal-content {
  background: var(--glass-bg-dark);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 50px rgba(200, 168, 107, 0.2), var(--glass-shadow);
  border-radius: 24px;
}

.gallery-title {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-carousel {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 15px;
}

.carousel-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(200, 168, 107, 0.3);
  transition: all 0.3s ease;
}

.carousel-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(200, 168, 107, 0.3);
}

.carousel-item.active {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(200, 168, 107, 0.5);
}

.gallery-nav {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(200, 168, 107, 0.5);
}

.close-gallery {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-gallery:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(200, 168, 107, 0.5);
}

/* ========================================
   CONTACT CARDS GLASS EFFECT
   ======================================== */

.contact-section {
  position: relative;
}

.contact-form-wrapper {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow-gold);
  padding: 40px;
  transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
  box-shadow: 0 15px 45px rgba(200, 168, 107, 0.2);
  border-color: var(--gold);
}

.contact-item {
  background: var(--glass-bg-light);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.contact-item:hover {
  border-color: var(--gold);
  transform: translateX(5px);
  box-shadow: var(--glass-shadow-gold);
}

.contact-item i {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.8rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.1);
  background: white;
}

/* ========================================
   SERVICE CARDS GLASS EFFECT
   ======================================== */

.service-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
  background: rgba(255, 255, 255, 0.95);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3rem;
  transition: all 0.3s ease;
}

.service-card:hover .card-icon {
  transform: scale(1.1);
}

.card-number {
  color: rgba(200, 168, 107, 0.15);
  font-size: 4rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  transition: all 0.3s ease;
}

.service-card:hover .card-number {
  color: rgba(200, 168, 107, 0.25);
  transform: scale(1.05);
}

/* ========================================
   STATISTICS CARDS GLASS EFFECT
   ======================================== */

.statistics {
  position: relative;
  overflow: hidden;
}

.stat-item {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
  background: rgba(255, 255, 255, 0.95);
}

.stat-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.stat-number {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  display: inline-block;
}

.stat-label {
  color: var(--charcoal);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* ========================================
   PROJECT CARDS GLASS EFFECT
   ======================================== */

.project-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.project-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5), transparent);
  backdrop-filter: blur(4px);
}

.gold-badge {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 0.7rem;
  color: var(--gold);
}

/* ========================================
   CATALOG ITEMS GLASS EFFECT
   ======================================== */

.catalog-item {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.catalog-item:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.catalog-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  z-index: 5;
}

.catalog-item:hover::before {
  transform: scaleX(1);
}

.badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ========================================
   TESTIMONIAL CARDS GLASS EFFECT
   ======================================== */

.testimonial-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card i {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3rem;
  opacity: 0.8;
}

.author strong {
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
}

/* ========================================
   CTA SECTION GLASS EFFECT
   ======================================== */

.cta-section {
  position: relative;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.9), rgba(26, 26, 26, 0.95));
  backdrop-filter: blur(4px);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  background: linear-gradient(135deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-primary-large {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 5px 20px rgba(200, 168, 107, 0.3);
  transition: all 0.4s ease;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(200, 168, 107, 0.4);
}

/* ========================================
   FOOTER GLASS EFFECT
   ======================================== */

footer {
  background: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(200, 168, 107, 0.2);
}

.footer-links a {
  position: relative;
  display: inline-block;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 100%;
}

.newsletter-form {
  border-bottom: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 0 15px;
}

.newsletter-form input {
  background: transparent;
}

/* ========================================
   BUTTON GLASS EFFECTS
   ======================================== */

.btn-primary,
.btn-outline,
.btn-primary-large {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before,
.btn-outline::before,
.btn-primary-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-primary:hover::before,
.btn-outline:hover::before,
.btn-primary-large:hover::before {
  left: 100%;
}

/* ========================================
   GLASS EFFECT UTILITIES
   ======================================== */

.glass-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.glass-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.glass-gold-border {
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.glass-gold-border:hover {
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

/* ========================================
   RESPONSIVE GLASS EFFECTS
   ======================================== */

@media (max-width: 768px) {
  .service-card,
  .stat-item,
  .project-card,
  .catalog-item,
  .testimonial-card,
  .contact-form-wrapper,
  .contact-item {
    backdrop-filter: blur(8px);
  }
  
  .gallery-modal-content {
    backdrop-filter: blur(8px);
  }
}

/* ========================================
   REDUCED MOTION SUPPORT
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  .navbar.scrolled,
  .service-card,
  .stat-item,
  .project-card,
  .catalog-item,
  .testimonial-card {
    transition: none;
  }
  
  .service-card:hover,
  .stat-item:hover,
  .project-card:hover,
  .catalog-item:hover,
  .testimonial-card:hover {
    transform: none;
  }
}


/* ========================================
   PREMIUM LUXURY NAVIGATION BAR
   Glassmorphism + Active States + Smooth Animations
   ======================================== */

/* ========================================
   NAVIGATION BAR BASE
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 5%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background: transparent;
  display: flex;
  align-items: center;
}

/* Glassmorphism Effect - When scrolled or always visible */
.navbar.glass,
.navbar.scrolled {
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  height: 75px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(200, 168, 107, 0.25);
}

/* Sticky behavior - always sticky */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========================================
   PREMIUM LOGO
   ======================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.logo-monogram {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #1F3B2F, #2D4A3C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.navbar.scrolled .logo-monogram,
.navbar.glass .logo-monogram {
  width: 55px;
  height: 55px;
}

/* Logo shine animation */
.logo-monogram::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(200, 168, 107, 0.15), transparent);
  transform: rotate(45deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  20% { transform: translateX(100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.monogram-m {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.monogram-m.second {
  margin-left: -10px;
  opacity: 0.8;
  font-size: 30px;
}

.navbar.scrolled .monogram-m,
.navbar.glass .monogram-m {
  font-size: 28px;
}

.navbar.scrolled .monogram-m.second,
.navbar.glass .monogram-m.second {
  font-size: 25px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.logo-brand-alt {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-brand,
.navbar.glass .logo-brand {
  font-size: 1rem;
}

.navbar.scrolled .logo-brand-alt,
.navbar.glass .logo-brand-alt {
  font-size: 0.65rem;
}

.logo:hover .logo-monogram {
  transform: scale(1.03);
  border-color: var(--gold-light);
  box-shadow: 0 6px 20px rgba(200, 168, 107, 0.3);
}

.logo:hover .logo-brand {
  color: var(--gold);
}

.logo:hover .logo-brand-alt {
  color: #1F3B2F;
  letter-spacing: 2.5px;
}

/* ========================================
   PREMIUM NAVIGATION LINKS
   Active States & Animated Underline
   ======================================== */

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
  padding: 8px 0;
  cursor: pointer;
}

/* Premium Animated Underline - Centered */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border-radius: 2px;
  transform: translateX(-50%);
}

/* Hover animation */
.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

/* ========================================
   ACTIVE PAGE HIGHLIGHTING
   ======================================== */

/* Active state - full width gold underline */
.nav-link.active {
  color: var(--gold);
  font-weight: 600;
}

.nav-link.active::after {
  width: 80%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  height: 2.5px;
}

/* Active state with subtle glow */
.nav-link.active {
  text-shadow: 0 0 8px rgba(200, 168, 107, 0.3);
}

/* ========================================
   PREMIUM BOOK CONSULTATION BUTTON
   ======================================== */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-actions .btn-outline {
  padding: 10px 28px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  text-decoration: none;
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-actions .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: left 0.4s ease;
  z-index: -1;
}

.nav-actions .btn-outline:hover::before {
  left: 0;
}

.nav-actions .btn-outline:hover {
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 168, 107, 0.3);
  border-color: transparent;
}

/* ========================================
   PREMIUM MOBILE MENU TOGGLE
   ======================================== */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  background: rgba(200, 168, 107, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(200, 168, 107, 0.2);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle:hover span {
  background: var(--gold);
}

/* Active/hamburger to X animation */
.menu-toggle.active {
  background: rgba(200, 168, 107, 0.15);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--gold);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--gold);
}

/* ========================================
   PREMIUM MOBILE MENU
   ======================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 350px;
  height: 100%;
  background: rgba(248, 244, 236, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  transition: right 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  border-left: 1px solid rgba(200, 168, 107, 0.2);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-inner {
  padding: 30px 25px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(200, 168, 107, 0.2);
}

.mobile-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-logo-link .logo-monogram {
  width: 45px;
  height: 45px;
}

.mobile-logo-link .monogram-m {
  font-size: 24px;
}

.mobile-logo-link .monogram-m.second {
  font-size: 20px;
}

.mobile-logo-link .logo-brand {
  font-size: 0.85rem;
}

.mobile-logo-link .logo-brand-alt {
  font-size: 0.55rem;
}

.close-menu-btn {
  background: rgba(200, 168, 107, 0.1);
  border: 1px solid rgba(200, 168, 107, 0.2);
  font-size: 18px;
  cursor: pointer;
  color: var(--charcoal);
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-menu-btn:hover {
  color: var(--gold);
  background: rgba(200, 168, 107, 0.2);
  transform: rotate(90deg);
  border-color: var(--gold);
}

/* Mobile Menu Links with Active States */
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  margin-bottom: 30px;
}

.mobile-menu-links a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: all 0.3s ease;
  padding: 12px 0;
  position: relative;
  display: inline-block;
  width: fit-content;
  letter-spacing: 0.5px;
}

/* Mobile Menu Active State */
.mobile-menu-links a.active {
  color: var(--gold);
  font-weight: 600;
  padding-left: 20px;
}

.mobile-menu-links a.active::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  opacity: 0.8;
}

/* Mobile Menu Hover Underline */
.mobile-menu-links a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-links a:hover::after,
.mobile-menu-links a.active::after {
  width: 100%;
}

.mobile-menu-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.mobile-menu-footer {
  padding-top: 25px;
  border-top: 1px solid rgba(200, 168, 107, 0.2);
}

.mobile-menu-footer .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mobile-menu-footer .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1F3B2F, #2D4A3C);
  transition: left 0.4s ease;
  z-index: -1;
}

.mobile-menu-footer .btn-primary:hover::before {
  left: 0;
}

.mobile-menu-footer .btn-primary:hover {
  transform: translateY(-2px);
  gap: 14px;
  box-shadow: 0 10px 25px rgba(200, 168, 107, 0.3);
  color: white;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   SCROLL PROGRESS INDICATOR
   ======================================== */

.scroll-progress-animated {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--gold);
}

/* ========================================
   RESPONSIVE NAVIGATION
   ======================================== */

/* Desktop */
@media (min-width: 1200px) {
  .navbar {
    height: 100px;
    padding: 0 5%;
  }
  
  .navbar.scrolled,
  .navbar.glass {
    height: 80px;
  }
  
  .logo-monogram {
    width: 70px;
    height: 70px;
  }
  
  .navbar.scrolled .logo-monogram {
    width: 60px;
    height: 60px;
  }
  
  .monogram-m {
    font-size: 38px;
  }
  
  .navbar.scrolled .monogram-m {
    font-size: 32px;
  }
  
  .logo-brand {
    font-size: 1.3rem;
  }
  
  .navbar.scrolled .logo-brand {
    font-size: 1.1rem;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .navbar {
    height: 80px;
    padding: 0 4%;
    background: rgba(248, 244, 236, 0.95);
    backdrop-filter: blur(15px);
  }
  
  .navbar.scrolled {
    height: 70px;
  }
  
  .logo-monogram {
    width: 50px;
    height: 50px;
  }
  
  .monogram-m {
    font-size: 28px;
  }
  
  .monogram-m.second {
    font-size: 24px;
    margin-left: -8px;
  }
  
  .logo-brand {
    font-size: 0.9rem;
  }
  
  .logo-brand-alt {
    font-size: 0.65rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-actions .btn-outline {
    display: none;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .navbar {
    height: 70px;
    padding: 0 4%;
  }
  
  .navbar.scrolled {
    height: 65px;
  }
  
  .logo-monogram {
    width: 45px;
    height: 45px;
  }
  
  .monogram-m {
    font-size: 24px;
  }
  
  .monogram-m.second {
    font-size: 20px;
    margin-left: -7px;
  }
  
  .logo-brand {
    font-size: 0.8rem;
  }
  
  .logo-brand-alt {
    font-size: 0.55rem;
  }
  
  .mobile-menu {
    width: 80%;
    max-width: 300px;
  }
  
  .mobile-menu-links a {
    font-size: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .navbar {
    height: 65px;
  }
  
  .logo-monogram {
    width: 40px;
    height: 40px;
  }
  
  .monogram-m {
    font-size: 22px;
  }
  
  .monogram-m.second {
    font-size: 18px;
    margin-left: -6px;
  }
  
  .logo-brand {
    font-size: 0.7rem;
  }
  
  .logo-brand-alt {
    font-size: 0.5rem;
  }
}

/* ========================================
   REDUCED MOTION SUPPORT
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  .navbar,
  .navbar.scrolled,
  .nav-link::after,
  .logo-monogram::before,
  .menu-toggle span {
    transition: none;
    animation: none;
  }
  
  .nav-link:hover {
    transform: none;
  }
}