/* ========================================
   LEO SUSHI - LUXURY DESIGN SYSTEM
   ======================================== */

/* Hero Luxe Section */
.hero-luxe {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #09090a 0%, #0b0b0c 50%, #09090a 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) brightness(0.42) contrast(1.08);
  transform: scale(1.05);
}

.hero-backdrop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,12,0.92) 0%, rgba(11,11,12,0.75) 40%, rgba(11,11,12,0.88) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-ambient-effects {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: ambientPulse 8s ease-in-out infinite;
}

.ambient-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229,207,142,0.4) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.ambient-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(194,163,85,0.35) 0%, transparent 70%);
  bottom: -150px;
  right: -80px;
  animation-delay: 3s;
}

@keyframes ambientPulse {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.3; }
  50% { transform: scale(1.15) translateY(-20px); opacity: 0.45; }
}

.ambient-particles {
  position: absolute;
  inset: 0;
}

.ambient-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-2);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 12s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(229,207,142,0.6);
}

.ambient-particles .particle:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; }
.ambient-particles .particle:nth-child(2) { left: 45%; top: 15%; animation-delay: 2s; }
.ambient-particles .particle:nth-child(3) { left: 75%; top: 35%; animation-delay: 4s; }
.ambient-particles .particle:nth-child(4) { left: 25%; top: 65%; animation-delay: 6s; }
.ambient-particles .particle:nth-child(5) { left: 85%; top: 75%; animation-delay: 8s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  25% { opacity: 0.6; transform: translateY(-30px) scale(1); }
  50% { opacity: 0.8; transform: translateY(-60px) scale(1.2); }
  75% { opacity: 0.4; transform: translateY(-90px) scale(0.8); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 480px);
  gap: 68px;
  align-items: center;
  padding: 120px 0 100px;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(229,207,142,0.12);
  border: 1px solid rgba(229,207,142,0.25);
  backdrop-filter: blur(12px);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.badge-icon {
  font-size: 16px;
}

.hero-title-luxe {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 7vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-title-line {
  display: block;
  background: linear-gradient(135deg, #fff 0%, var(--gold-2) 60%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxeShimmer 6s linear infinite;
}

@keyframes luxeShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-description-luxe {
  margin: 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(233,233,236,0.8);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-luxe {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-luxe-primary {
  background: linear-gradient(135deg, #F5DF9E 0%, #D2B365 100%);
  color: #1a1a1a;
  box-shadow: 0 20px 56px rgba(194, 163, 85, 0.6),
              0 8px 24px rgba(0,0,0,.3),
              0 0 0 4px rgba(194, 163, 85, 0.15),
              inset 0 2px 0 rgba(255,255,255,.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: btnPrimaryGlow 3s ease-in-out infinite;
}

@keyframes btnPrimaryGlow {
  0%, 100% {
    box-shadow: 0 20px 56px rgba(194, 163, 85, 0.6),
                0 8px 24px rgba(0,0,0,.3),
                0 0 0 4px rgba(194, 163, 85, 0.15),
                inset 0 2px 0 rgba(255,255,255,.5);
  }
  50% {
    box-shadow: 0 24px 64px rgba(194, 163, 85, 0.8),
                0 10px 28px rgba(0,0,0,.4),
                0 0 0 6px rgba(194, 163, 85, 0.25),
                inset 0 2px 0 rgba(255,255,255,.6);
  }
}

.btn-luxe-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFE8A8 0%, #E5CF8E 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-luxe-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 28px 72px rgba(194, 163, 85, 0.8),
              0 12px 32px rgba(0,0,0,.4),
              0 0 0 8px rgba(194, 163, 85, 0.3),
              inset 0 2px 0 rgba(255,255,255,.6);
  filter: brightness(1.1);
  animation: none;
}

.btn-luxe-primary:hover::before {
  opacity: 1;
}

.btn-luxe-ghost {
  background: rgba(26, 26, 26, 0.85);
  border: 2px solid rgba(229, 207, 142, 0.4);
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5),
              0 0 0 2px rgba(229, 207, 142, 0.1),
              inset 0 1px 0 rgba(255,255,255,.1);
  animation: btnGhostGlow 3s ease-in-out infinite;
}

@keyframes btnGhostGlow {
  0%, 100% {
    box-shadow: 0 16px 40px rgba(0,0,0,0.5),
                0 0 0 2px rgba(229, 207, 142, 0.1),
                inset 0 1px 0 rgba(255,255,255,.1);
    border-color: rgba(229, 207, 142, 0.4);
  }
  50% {
    box-shadow: 0 20px 48px rgba(0,0,0,0.6),
                0 0 0 4px rgba(229, 207, 142, 0.2),
                inset 0 1px 0 rgba(255,255,255,.15);
    border-color: rgba(229, 207, 142, 0.5);
  }
}

.btn-luxe-ghost:hover {
  background: rgba(229, 207, 142, 0.2);
  border-color: rgba(229, 207, 142, 0.7);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 56px rgba(0,0,0,0.6),
              0 0 0 6px rgba(229, 207, 142, 0.3),
              inset 0 1px 0 rgba(255,255,255,.2);
  filter: brightness(1.15);
  animation: none;
}

.btn-luxe-text,
.btn-luxe-icon {
  position: relative;
  z-index: 1;
}

.btn-luxe-text {
  text-shadow: 0 1px 2px rgba(0,0,0,.1);
  font-weight: 800;
}

.btn-luxe-primary .btn-luxe-text {
  text-shadow: 0 1px 3px rgba(255,255,255,.3);
}

.btn-luxe-icon {
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

.btn-luxe:hover .btn-luxe-icon {
  transform: translateX(6px) scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}

.btn-luxe-large {
  padding: 18px 36px;
  font-size: 16px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(229,207,142,0.15);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
}

.hero-stat-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(229,207,142,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.5);
}

.stat-icon {
  font-size: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(229,207,142,0.4));
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(233,233,236,0.65);
  letter-spacing: 0.02em;
}

.hero-featured {
  display: flex;
  align-items: center;
}

.hero-featured-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.09) 0%, rgba(19,19,22,0.92) 100%);
  border: 1px solid rgba(229,207,142,0.2);
  box-shadow: 0 32px 72px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-featured-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 88px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.12);
  border-color: rgba(229,207,142,0.35);
}

.featured-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.6s ease;
}

.hero-featured-card:hover .featured-card-image img {
  transform: scale(1.12);
}

.featured-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(11,11,12,0.85);
  backdrop-filter: blur(12px);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid rgba(229,207,142,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.featured-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.featured-card-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.01em;
}

.featured-card-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(233,233,236,0.7);
}

.featured-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.featured-tag {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(229,207,142,0.12);
  border: 1px solid rgba(229,207,142,0.25);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, rgba(229,207,142,0.6) 0%, transparent 100%);
  border-radius: 999px;
}

.scroll-indicator-text {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(229,207,142,0.7);
  font-weight: 600;
}

/* Section Luxe - Common Styles */
.section-luxe {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.section-luxe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(229,207,142,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.section-header-luxe {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.section-header-luxe.text-center {
  text-align: center;
  align-items: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(229,207,142,0.1);
  border: 1px solid rgba(229,207,142,0.2);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: fit-content;
}

.eyebrow-icon {
  font-size: 14px;
}

.section-title-luxe {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}

.section-desc-luxe {
  margin: 0;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(233,233,236,0.72);
}

/* Menu Luxe Section */
.menu-luxe-section {
  background: linear-gradient(180deg, #09090a 0%, #0b0b0c 100%);
}

.menu-preview-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.menu-tabs-luxe {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-tabs-luxe .chip {
  padding: 14px 26px;
  border-radius: 16px;
  border: 1px solid rgba(229,207,142,0.2);
  background: rgba(255,255,255,0.04);
  color: rgba(233,233,236,0.85);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.menu-tabs-luxe .chip:hover {
  background: rgba(229,207,142,0.12);
  border-color: rgba(229,207,142,0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.menu-tabs-luxe .chip.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1a1a;
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(229,207,142,0.4);
}

.menu-search-luxe {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.search-icon-luxe {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(229,207,142,0.6);
  pointer-events: none;
}

.menu-search-input-luxe {
  width: 100%;
  padding: 18px 20px 18px 56px;
  border-radius: 18px;
  border: 1px solid rgba(229,207,142,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.menu-search-input-luxe::placeholder {
  color: rgba(233,233,236,0.5);
}

.menu-search-input-luxe:focus {
  outline: none;
  border-color: rgba(229,207,142,0.5);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(229,207,142,0.12);
}

.menu-grid-luxe {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}

.section-cta-luxe {
  text-align: center;
}

/* Gallery Luxe Section */
.gallery-luxe-scroller {
  overflow: hidden;
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.gallery-track {
  display: flex;
  gap: 24px;
  animation: scroll 30s linear infinite;
}

.gallery-luxe-scroller:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-track img {
  height: 420px;
  width: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 20px 52px rgba(0,0,0,0.45);
  border: 1px solid rgba(229,207,142,0.15);
}

.gallery-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 24px rgba(229,207,142,0.2);
}

/* About Premium Section */
.about-luxe-premium {
  position: relative;
  background: linear-gradient(180deg, #0b0b0c 0%, #09090a 50%, #0b0b0c 100%);
  overflow: hidden;
}

.about-premium-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(229,207,142,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(194,163,85,0.03) 0%, transparent 50%);
  opacity: 0.6;
}

.about-bg-glow {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229,207,142,0.15) 0%, transparent 70%);
  filter: blur(80px);
  animation: aboutGlowFloat 12s ease-in-out infinite;
}

.about-bg-glow-2 {
  top: auto;
  right: auto;
  bottom: -180px;
  left: -120px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(194,163,85,0.12) 0%, transparent 70%);
  animation: aboutGlowFloat 15s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes aboutGlowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  50% { transform: translate(-30px, 30px) scale(1.1); opacity: 0.25; }
}

.about-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(229,207,142,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229,207,142,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  animation: gridMove 20s linear infinite;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.about-floating-elements {
  position: absolute;
  inset: 0;
}

.float-element {
  position: absolute;
  font-size: 24px;
  opacity: 0.3;
  filter: drop-shadow(0 4px 12px rgba(229,207,142,0.3));
  animation: floatElement 20s ease-in-out infinite;
}

.float-element-1 {
  left: 10%;
  top: 15%;
  animation-duration: 18s;
  animation-delay: 0s;
}

.float-element-2 {
  left: 85%;
  top: 25%;
  animation-duration: 22s;
  animation-delay: 3s;
  font-size: 20px;
}

.float-element-3 {
  left: 15%;
  top: 60%;
  animation-duration: 16s;
  animation-delay: 6s;
  font-size: 18px;
}

.float-element-4 {
  left: 75%;
  top: 70%;
  animation-duration: 20s;
  animation-delay: 9s;
}

.float-element-5 {
  left: 50%;
  top: 40%;
  animation-duration: 24s;
  animation-delay: 12s;
  font-size: 22px;
}

.float-element-6 {
  left: 30%;
  top: 80%;
  animation-duration: 19s;
  animation-delay: 15s;
  font-size: 16px;
}

@keyframes floatElement {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1); 
    opacity: 0.3; 
  }
  25% { 
    transform: translate(30px, -40px) rotate(15deg) scale(1.1); 
    opacity: 0.5; 
  }
  50% { 
    transform: translate(-20px, -70px) rotate(-10deg) scale(0.9); 
    opacity: 0.4; 
  }
  75% { 
    transform: translate(40px, -50px) rotate(20deg) scale(1.05); 
    opacity: 0.45; 
  }
}

.about-particles-bg {
  position: absolute;
  inset: 0;
}

.bg-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-2);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px rgba(229,207,142,0.6);
  animation: particleFloat 15s ease-in-out infinite;
}

.bg-particle:nth-child(1) { left: 12%; top: 20%; animation-delay: 0s; }
.bg-particle:nth-child(2) { left: 45%; top: 10%; animation-delay: 2s; }
.bg-particle:nth-child(3) { left: 78%; top: 30%; animation-delay: 4s; }
.bg-particle:nth-child(4) { left: 25%; top: 55%; animation-delay: 6s; }
.bg-particle:nth-child(5) { left: 65%; top: 65%; animation-delay: 8s; }
.bg-particle:nth-child(6) { left: 88%; top: 75%; animation-delay: 10s; }
.bg-particle:nth-child(7) { left: 35%; top: 85%; animation-delay: 12s; }
.bg-particle:nth-child(8) { left: 55%; top: 45%; animation-delay: 14s; }

@keyframes particleFloat {
  0%, 100% { 
    opacity: 0; 
    transform: translateY(0) translateX(0) scale(0); 
  }
  10% { 
    opacity: 0.6; 
    transform: translateY(-20px) translateX(10px) scale(1); 
  }
  50% { 
    opacity: 0.8; 
    transform: translateY(-60px) translateX(-15px) scale(1.2); 
  }
  90% { 
    opacity: 0.4; 
    transform: translateY(-100px) translateX(25px) scale(0.8); 
  }
}

.about-wave-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(229,207,142,0.02) 50%, rgba(229,207,142,0.04) 100%);
  mask-image: 
    radial-gradient(ellipse 120% 100% at 50% 100%, black 0%, transparent 70%);
  -webkit-mask-image: 
    radial-gradient(ellipse 120% 100% at 50% 100%, black 0%, transparent 70%);
  animation: wavePulse 8s ease-in-out infinite;
}

@keyframes wavePulse {
  0%, 100% { 
    opacity: 0.3; 
    transform: scaleY(1); 
  }
  50% { 
    opacity: 0.5; 
    transform: scaleY(1.1); 
  }
}

.about-premium-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 80px;
}

.about-premium-title {
  margin: 24px 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.title-line {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, var(--gold-2) 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 8s linear infinite;
}

.title-line-1 {
  animation-delay: 0s;
}

.title-line-2 {
  animation-delay: 0.5s;
}

@keyframes titleShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.title-divider {
  color: rgba(229,207,142,0.4);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
}

.about-premium-subtitle {
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(233,233,236,0.75);
  font-weight: 300;
}

.about-premium-content {
  position: relative;
  z-index: 1;
}

.about-story-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 64px;
}

.story-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.story-image-primary {
  position: relative;
}

.story-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 88px rgba(0,0,0,0.6), 0 0 0 1px rgba(229,207,142,0.2);
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(19,19,22,0.95) 100%);
  padding: 4px;
}

.story-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(229,207,142,0.3) 0%, rgba(229,207,142,0.1) 50%, rgba(229,207,142,0.3) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.story-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image-wrapper:hover img {
  transform: scale(1.05);
}

.story-image-frame {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  pointer-events: none;
  z-index: 2;
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, transparent 60%, rgba(0,0,0,0.2) 100%);
  border-radius: 32px;
  transition: opacity 0.4s ease;
}

.story-image-wrapper:hover .story-image-overlay {
  opacity: 0.8;
}

.story-image-quote {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(11,11,12,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(229,207,142,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  z-index: 3;
}

.quote-icon {
  flex-shrink: 0;
  color: var(--gold-2);
  opacity: 0.6;
}

.quote-text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.story-image-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-image-small {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
  border: 1px solid rgba(229,207,142,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.story-image-small:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 68px rgba(0,0,0,0.6), 0 0 24px rgba(229,207,142,0.2);
}

.story-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-image-small:hover img {
  transform: scale(1.1);
}

.story-image-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(11,11,12,0.9);
  backdrop-filter: blur(16px);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid rgba(229,207,142,0.3);
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.story-content-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.story-intro {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(19,19,22,0.9) 100%);
  border: 1px solid rgba(229,207,142,0.15);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
}

.story-intro-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(233,233,236,0.85);
  font-weight: 300;
}

.story-values-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-value-card {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(19,19,22,0.9) 100%);
  border: 1px solid rgba(229,207,142,0.12);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.story-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229,207,142,0.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.story-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229,207,142,0.3);
  box-shadow: 0 28px 64px rgba(0,0,0,0.5), 0 0 32px rgba(229,207,142,0.15);
}

.story-value-card:hover::before {
  opacity: 1;
}

.value-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.value-icon-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(229,207,142,0.2) 0%, rgba(229,207,142,0.1) 100%);
  border: 1px solid rgba(229,207,142,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.value-icon {
  font-size: 32px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(229,207,142,0.4));
}

.value-icon-glow {
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(229,207,142,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(12px);
}

.story-value-card:hover .value-icon-glow {
  opacity: 1;
}

.value-number {
  font-size: 48px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, rgba(229,207,142,0.3) 0%, rgba(229,207,142,0.1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.value-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.value-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(233,233,236,0.7);
}

.story-heritage-section {
  margin-top: 24px;
}

.heritage-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(229,207,142,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(229,207,142,0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.heritage-card::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle, rgba(229,207,142,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.heritage-card:hover::before {
  opacity: 1;
}

.heritage-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(229,207,142,0.25) 0%, rgba(229,207,142,0.15) 100%);
  border: 1px solid rgba(229,207,142,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}

.heritage-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.heritage-title {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: -0.01em;
}

.heritage-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(233,233,236,0.8);
}

/* Responsive About Premium */
@media (max-width: 1200px) {
  .about-story-main {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .story-image-secondary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .about-premium-title {
    font-size: clamp(40px, 8vw, 56px);
    gap: 16px;
  }
  
  .title-divider {
    font-size: clamp(28px, 6vw, 40px);
  }
  
  .about-premium-header {
    margin-bottom: 60px;
  }
  
  .story-visual-grid {
    gap: 20px;
  }
  
  .story-image-secondary {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .about-premium-title {
    flex-direction: column;
    gap: 12px;
  }
  
  .title-divider {
    transform: rotate(90deg);
  }
  
  .story-image-secondary {
    grid-template-columns: 1fr;
  }
  
  .story-image-quote {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .story-intro {
    padding: 24px;
  }
  
  .story-value-card {
    padding: 24px;
  }
  
  .heritage-card {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }
}

/* Reviews Premium Section */
.reviews-luxe-premium {
  position: relative;
  background: linear-gradient(180deg, #0b0b0c 0%, #09090a 50%, #0b0b0c 100%);
  overflow: hidden;
}

.reviews-premium-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.reviews-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(229,207,142,0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(194,163,85,0.04) 0%, transparent 50%);
  opacity: 0.6;
}

.reviews-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(90px);
  animation: reviewsGlowFloat 14s ease-in-out infinite;
}

.reviews-glow-1 {
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(229,207,142,0.18) 0%, transparent 70%);
  animation-delay: 0s;
}

.reviews-glow-2 {
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(194,163,85,0.15) 0%, transparent 70%);
  animation-delay: 4s;
}

@keyframes reviewsGlowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  50% { transform: translate(40px, -30px) scale(1.15); opacity: 0.25; }
}

.reviews-stars-bg {
  position: absolute;
  inset: 0;
}

.star-bg {
  position: absolute;
  font-size: 32px;
  opacity: 0.08;
  filter: blur(1px);
  animation: starBgFloat 20s ease-in-out infinite;
}

.star-bg:nth-child(1) { left: 8%; top: 15%; animation-delay: 0s; }
.star-bg:nth-child(2) { left: 35%; top: 8%; animation-delay: 4s; }
.star-bg:nth-child(3) { left: 68%; top: 20%; animation-delay: 8s; }
.star-bg:nth-child(4) { left: 85%; top: 60%; animation-delay: 12s; }
.star-bg:nth-child(5) { left: 15%; top: 75%; animation-delay: 16s; }

@keyframes starBgFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.08; }
  50% { transform: translate(20px, -30px) rotate(180deg); opacity: 0.15; }
}

.reviews-premium-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 72px;
}

.reviews-premium-title {
  margin: 24px 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, var(--gold-2) 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: reviewsTitleShimmer 8s linear infinite;
}

@keyframes reviewsTitleShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.reviews-premium-subtitle {
  margin: 0 auto 32px;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(233,233,236,0.75);
  font-weight: 300;
}

.reviews-stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 24px 40px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(19,19,22,0.9) 100%);
  border: 1px solid rgba(229,207,142,0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}

.stat-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: var(--gold-2);
  line-height: 1;
}

.stat-stars {
  font-size: 14px;
  letter-spacing: 2px;
  filter: drop-shadow(0 2px 8px rgba(229,207,142,0.4));
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(229,207,142,0.3) 50%, transparent 100%);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(229,207,142,0.7);
  font-weight: 600;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.reviews-premium-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.review-card {
  position: relative;
  padding: 40px 36px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(19,19,22,0.92) 100%);
  border: 1px solid rgba(229,207,142,0.18);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  box-shadow: 0 0 24px rgba(229,207,142,0.5);
}

.review-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(229,207,142,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 72px rgba(0,0,0,0.6), 0 0 32px rgba(229,207,142,0.2), inset 0 1px 0 rgba(255,255,255,0.12);
  border-color: rgba(229,207,142,0.4);
  background: linear-gradient(145deg, rgba(229,207,142,0.1) 0%, rgba(255,255,255,0.06) 50%, rgba(229,207,142,0.08) 100%);
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover::after {
  opacity: 1;
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 120px;
  font-family: "Playfair Display", serif;
  color: rgba(229,207,142,0.1);
  line-height: 1;
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.review-card:hover .quote-icon {
  color: rgba(229,207,142,0.2);
  transform: scale(1.1) rotate(5deg);
}

.review-stars {
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: 4px;
  filter: drop-shadow(0 2px 8px rgba(229,207,142,0.4));
  position: relative;
  z-index: 1;
}

.review-text {
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 28px;
  color: rgba(233,233,236,0.85);
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: 300;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  color: #1a1a1a;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(229,207,142,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.5s ease;
  position: relative;
  overflow: hidden;
}

.author-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.review-card:hover .author-avatar {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 12px 32px rgba(229,207,142,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
}

.review-author strong {
  display: block;
  color: #fff;
  font-size: 17px;
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.review-author span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(233,233,236,0.65);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-author span::before {
  content: '⭐';
  font-size: 11px;
}

.review-loading-premium {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 40px;
  color: rgba(233,233,236,0.6);
  font-size: 17px;
}

.loading-spinner-premium {
  position: relative;
  width: 60px;
  height: 60px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--gold-2);
  border-radius: 50%;
  animation: spinRing 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
  animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-top-color: var(--gold);
  animation-delay: 0.3s;
  animation-duration: 1.2s;
}

.spinner-ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-top-color: rgba(229,207,142,0.6);
  animation-delay: 0.6s;
  animation-duration: 1s;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

/* Responsive Reviews Premium */
@media (max-width: 1200px) {
  .reviews-premium-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }
}

@media (max-width: 960px) {
  .reviews-stats-badge {
    flex-direction: column;
    gap: 20px;
    padding: 28px 32px;
  }
  
  .stat-divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(229,207,142,0.3) 50%, transparent 100%);
  }
  
  .reviews-premium-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .reviews-premium-header {
    margin-bottom: 56px;
  }
  
  .review-card {
    padding: 32px 28px;
  }
  
  .quote-icon {
    font-size: 80px;
    top: 20px;
    right: 24px;
  }
}

/* Contact Ultimate Section - Split Layout */
.contact-ultimate {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.contact-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(229,207,142,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at bottom, rgba(229,207,142,0.06) 0%, transparent 50%);
}

.contact-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(229,207,142,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229,207,142,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  animation: gridMove 30s linear infinite;
}

.contact-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(229,207,142,0.1) 1px, transparent 0),
    radial-gradient(circle at 20px 20px, rgba(229,207,142,0.08) 1px, transparent 0);
  background-size: 40px 40px, 80px 80px;
  opacity: 0.3;
  animation: patternFloat 25s ease-in-out infinite;
}

.contact-bg-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(229,207,142,0.05) 25%,
    rgba(229,207,142,0.08) 50%,
    rgba(229,207,142,0.05) 75%,
    transparent 100%
  );
  background-size: 200% 200%;
  animation: shimmerMove 8s ease-in-out infinite;
  opacity: 0.6;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229,207,142,0.4) 0%, transparent 70%);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229,207,142,0.3) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
  animation-delay: 7s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(229,207,142,0.25) 0%, transparent 70%);
  top: 50%;
  right: 30%;
  animation-delay: 14s;
}

.orb-4 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(229,207,142,0.2) 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
  animation-delay: 10s;
}

.contact-floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.12;
  animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(229,207,142,0.4), rgba(229,207,142,0.1));
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(225deg, rgba(229,207,142,0.3), rgba(229,207,142,0.05));
  bottom: 25%;
  left: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, rgba(229,207,142,0.25), rgba(229,207,142,0.08));
  top: 60%;
  left: 50%;
  animation-delay: 10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  background: linear-gradient(315deg, rgba(229,207,142,0.2), rgba(229,207,142,0.06));
  top: 30%;
  right: 40%;
  animation-delay: 7s;
}

.contact-hero-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 24px 0 20px;
  background: linear-gradient(
    135deg,
    #fff 0%,
    rgba(229,207,142,0.98) 30%,
    rgba(229,207,142,0.95) 60%,
    rgba(229,207,142,0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: 0 0 40px rgba(229,207,142,0.3);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.contact-hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(229,207,142,0.6),
    transparent
  );
  border-radius: 2px;
  animation: titleLine 3s ease-in-out infinite;
}

.contact-hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 0.01em;
}

.contact-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-map-compact {
  position: relative;
  margin-bottom: 64px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 24px 64px rgba(0,0,0,0.5),
    0 0 0 1px rgba(229,207,142,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
  border: 1px solid rgba(229,207,142,0.2);
  background: rgba(0,0,0,0.3);
}

.contact-map-compact::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(229,207,142,0.3),
    rgba(229,207,142,0.1),
    rgba(229,207,142,0.3)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.map-compact-wrapper {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.map-compact-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(15%) brightness(0.85) contrast(1.1);
  transition: filter 0.6s ease;
}

.contact-map-compact:hover .map-compact-iframe {
  filter: grayscale(0%) brightness(1) contrast(1);
}

.map-compact-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, transparent 50%, rgba(0,0,0,0.02) 100%);
}

.map-compact-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.pin-ripple-compact {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(229,207,142,0.3);
  animation: ripplePulse 3s ease-out infinite;
}

.pin-ripple-compact::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px solid rgba(229,207,142,0.2);
  animation: ripplePulse 3s ease-out infinite 0.5s;
}

.pin-core-compact {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(229,207,142,0.95), rgba(229,207,142,0.8));
  border: 3px solid rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0b0c;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 6px rgba(229,207,142,0.1);
  animation: pinFloat 3s ease-in-out infinite;
}

.pin-core-compact svg {
  width: 24px;
  height: 24px;
}

.pin-label-compact {
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(229,207,142,0.3);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-2);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.map-compact-address-bar {
  position: relative;
  background: 
    linear-gradient(135deg, rgba(11,11,12,0.98) 0%, rgba(11,11,12,0.95) 100%),
    radial-gradient(circle at center, rgba(229,207,142,0.05), transparent);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(229,207,142,0.25);
  padding: 20px 32px;
  box-shadow: 
    0 -4px 20px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.map-compact-address-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(229,207,142,0.4),
    transparent
  );
}

.address-bar-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.address-bar-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.address-bar-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.address-bar-text strong {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.address-bar-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.address-bar-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)),
    radial-gradient(circle at center, rgba(229,207,142,0.1), transparent);
  border: 1px solid rgba(229,207,142,0.35);
  color: var(--gold-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s ease;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.address-bar-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255,255,255,0.15) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.address-bar-link:hover::before {
  opacity: 1;
  animation: btnShine 1.2s ease-in-out;
}

.address-bar-link:hover {
  background: 
    linear-gradient(135deg, rgba(229,207,142,0.2), rgba(229,207,142,0.1)),
    radial-gradient(circle at center, rgba(229,207,142,0.15), transparent);
  border-color: rgba(229,207,142,0.6);
  transform: translateX(4px) scale(1.05);
  color: var(--gold);
  box-shadow: 
    0 6px 20px rgba(229,207,142,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 20px rgba(229,207,142,0.2);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.map-hero-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(15%) brightness(0.85) contrast(1.1);
  transition: filter 0.6s ease;
}

.map-hero-wrapper:hover .map-hero-iframe {
  filter: grayscale(0%) brightness(1) contrast(1);
}

.map-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, transparent 40%, rgba(0,0,0,0.02) 100%);
}

.map-hero-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.pin-ripple {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(229,207,142,0.3);
  animation: ripplePulse 3s ease-out infinite;
}

.pin-ripple::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(229,207,142,0.2);
  animation: ripplePulse 3s ease-out infinite 0.5s;
}

.pin-core {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(229,207,142,0.95), rgba(229,207,142,0.8));
  border: 3px solid rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0b0c;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 8px rgba(229,207,142,0.1);
  animation: pinFloat 3s ease-in-out infinite;
}

.pin-core svg {
  width: 28px;
  height: 28px;
}

.pin-label-badge {
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(229,207,142,0.3);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-2);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.map-hero-address {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 80%, transparent 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(229,207,142,0.2);
}

.address-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.address-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.address-text strong {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.address-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.address-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(229,207,142,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.address-link:hover {
  background: rgba(229,207,142,0.2);
  border-color: rgba(229,207,142,0.5);
  transform: translateX(4px);
}

.contact-actions-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.contact-info-card {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%),
    radial-gradient(circle at top right, rgba(229,207,142,0.08) 0%, transparent 50%);
  border: 1px solid rgba(229,207,142,0.15);
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 0 0 1px rgba(229,207,142,0.05);
}

.info-card-decoration {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(229,207,142,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.info-card-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(229,207,142,0.02) 10px,
      rgba(229,207,142,0.02) 20px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(229,207,142,0.02) 10px,
      rgba(229,207,142,0.02) 20px
    );
  opacity: 0.3;
  pointer-events: none;
}

.info-card-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255,255,255,0.1) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: all 0.8s ease;
  pointer-events: none;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(229,207,142,0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-info-card:hover {
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%),
    radial-gradient(circle at top right, rgba(229,207,142,0.15) 0%, transparent 50%);
  border-color: rgba(229,207,142,0.35);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 0 0 1px rgba(229,207,142,0.1),
    0 0 40px rgba(229,207,142,0.15);
}

.contact-info-card:hover .info-card-decoration {
  opacity: 1;
}

.contact-info-card:hover .info-card-shine {
  top: -50%;
  left: -50%;
  opacity: 1;
  transition: all 1.2s ease;
}

.contact-info-card:hover::before {
  opacity: 1;
}

.info-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(229,207,142,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-info-card:hover .info-card-glow {
  opacity: 1;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.info-card-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: 
    linear-gradient(135deg, rgba(229,207,142,0.25), rgba(229,207,142,0.08)),
    radial-gradient(circle at center, rgba(229,207,142,0.15), transparent);
  border: 1px solid rgba(229,207,142,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 20px rgba(229,207,142,0.1);
  overflow: hidden;
}

.info-card-icon::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255,255,255,0.3) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: all 0.6s ease;
}

.contact-info-card:hover .info-card-icon::before {
  opacity: 1;
  animation: iconShine 1.5s ease-in-out;
}

.info-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-card:hover .info-card-icon {
  background: 
    linear-gradient(135deg, rgba(229,207,142,0.35), rgba(229,207,142,0.15)),
    radial-gradient(circle at center, rgba(229,207,142,0.2), transparent);
  border-color: rgba(229,207,142,0.5);
  transform: scale(1.15) rotate(8deg);
  box-shadow: 
    0 8px 24px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 0 30px rgba(229,207,142,0.25);
  color: var(--gold);
}

.info-card-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(229,207,142,0.85);
  margin: 0;
}

.contact-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(229,207,142,0.2), rgba(229,207,142,0.05));
  border: 1px solid rgba(229,207,142,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.5s ease;
}

.contact-premium-card:hover .contact-icon-bg {
  background: linear-gradient(135deg, rgba(229,207,142,0.3), rgba(229,207,142,0.1));
  border-color: rgba(229,207,142,0.5);
  transform: scale(1.05) rotate(5deg);
}

.contact-icon-svg {
  position: relative;
  z-index: 1;
  color: var(--gold-2);
  transition: all 0.5s ease;
}

.contact-premium-card:hover .contact-icon-svg {
  color: var(--gold);
  transform: scale(1.1);
}

.info-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}

.info-card-main {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: 0.01em;
}

.info-link {
  color: var(--gold-2);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.info-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.info-card-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.contact-card-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.contact-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-2);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.contact-card-action:hover {
  color: var(--gold);
  gap: 12px;
}

.contact-card-action svg {
  transition: transform 0.3s ease;
}

.contact-card-action:hover svg {
  transform: translate(2px, -2px);
}

.contact-card-hours {
  grid-column: 1 / -1;
}

.hours-display {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(229,207,142,0.1);
}

.hours-days {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.hours-times {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-2);
}

.hours-status-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.2);
  width: fit-content;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 12px rgba(76,175,80,0.6);
  animation: statusPulse 2s ease-in-out infinite;
}

.hours-status-badge span:last-child {
  font-size: 14px;
  font-weight: 500;
  color: #4caf50;
}


.contact-btn-primary,
.contact-btn-secondary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-btn-primary {
  background: 
    linear-gradient(135deg, rgba(229,207,142,0.25), rgba(229,207,142,0.12)),
    radial-gradient(circle at top left, rgba(229,207,142,0.15), transparent);
  border: 1px solid rgba(229,207,142,0.4);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255,255,255,0.2) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-btn-primary:hover::before {
  opacity: 1;
  animation: btnShine 1.5s ease-in-out;
}

.contact-btn-primary:hover {
  background: 
    linear-gradient(135deg, rgba(229,207,142,0.35), rgba(229,207,142,0.18)),
    radial-gradient(circle at top left, rgba(229,207,142,0.2), transparent);
  border-color: rgba(229,207,142,0.6);
  transform: translateX(8px) scale(1.02);
  box-shadow: 
    0 12px 32px rgba(229,207,142,0.3),
    0 0 40px rgba(229,207,142,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.contact-btn-secondary {
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255,255,255,0.15) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-btn-secondary:hover::before {
  opacity: 1;
  animation: btnShine 1.5s ease-in-out;
}

.contact-btn-secondary:hover {
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06)),
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent);
  border-color: rgba(255,255,255,0.35);
  transform: translateX(8px) scale(1.02);
  box-shadow: 
    0 12px 32px rgba(0,0,0,0.4),
    0 0 30px rgba(255,255,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.btn-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.contact-btn-primary .btn-icon-wrapper {
  background: rgba(229,207,142,0.25);
}

.contact-btn-primary:hover .btn-icon-wrapper,
.contact-btn-secondary:hover .btn-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  color: var(--gold);
}

.btn-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.btn-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.contact-map-section {
  position: relative;
}

.map-wrapper-premium {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border: 1px solid rgba(229,207,142,0.2);
}

.map-frame-premium {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.map-iframe-premium {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) brightness(0.9) contrast(1.1);
  transition: filter 0.4s ease;
}

.map-wrapper-premium:hover .map-iframe-premium {
  filter: grayscale(0%) brightness(1) contrast(1);
}

.map-overlay-premium {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, transparent 50%, rgba(0,0,0,0.02) 100%);
}

.map-pin-premium {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: pinPulse 3s ease-in-out infinite;
}

.pin-icon {
  font-size: 48px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  animation: pinBounce 2s ease-in-out infinite;
}

.pin-label {
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229,207,142,0.3);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-2);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.map-info-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(229,207,142,0.2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  z-index: 10;
}

.map-info-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.map-info-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-info-text strong {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.map-info-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -40px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

@keyframes ripplePulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes pinFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

@keyframes patternFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, -20px) rotate(180deg);
  }
}

@keyframes shimmerMove {
  0% {
    background-position: -200% -200%;
  }
  100% {
    background-position: 200% 200%;
  }
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.12;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.18;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.15;
  }
}

@keyframes iconShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes titleLine {
  0%, 100% {
    width: 120px;
    opacity: 0.6;
  }
  50% {
    width: 200px;
    opacity: 1;
  }
}

@keyframes btnShine {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .about-luxe-grid,
  .contact-luxe-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .map-compact-wrapper {
    height: 400px;
  }
  
  .contact-info-grid {
    gap: 16px;
  }
  
  .contact-actions-wrapper {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }
  
  .contact-info-card {
    padding: 20px;
  }
  
  .info-card-header {
    gap: 10px;
    margin-bottom: 14px;
  }
  
  .info-card-icon {
    width: 44px;
    height: 44px;
  }
  
  .info-card-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .info-card-title {
    font-size: 13px;
  }
  
  .info-card-main {
    font-size: 17px;
  }
}

@media (max-width: 960px) {
  .contact-content-wrapper {
    padding: 0 20px;
  }
  
  .map-compact-wrapper {
    height: 380px;
  }
  
  .map-compact-address-bar {
    padding: 18px 24px;
  }
  
  .address-bar-content {
    gap: 16px;
  }
  
  .address-bar-link {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-card-image {
    height: 240px;
  }
  
  .gallery-track img {
    height: 360px;
  }
}

@media (max-width: 720px) {
  .section-luxe {
    padding: 80px 0;
  }
  
  .hero-content {
    padding: 100px 0 80px;
  }
  
  .hero-title-luxe {
    font-size: clamp(42px, 10vw, 52px);
  }
  
  .section-header-luxe {
    margin-bottom: 40px;
  }
  
  .menu-tabs-luxe {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(229,207,142,0.3) transparent;
  }
  
  .menu-grid-luxe {
    grid-template-columns: 1fr;
  }
  
  .featured-card-image {
    height: 220px;
  }
  
  .gallery-track img {
    height: 300px;
  }
  
  .map-container-luxe {
    height: 400px;
  }
  
  .contact-hero-section {
    padding: 60px 0 40px;
  }
  
  .contact-hero-title {
    font-size: clamp(36px, 8vw, 48px);
  }
  
  .contact-content-wrapper {
    padding: 0 16px;
  }
  
  .contact-map-compact {
    margin-bottom: 48px;
    border-radius: 20px;
  }
  
  .map-compact-wrapper {
    height: 320px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }
  
  .contact-info-card {
    padding: 20px;
  }
  
  .info-card-header {
    gap: 12px;
    margin-bottom: 14px;
  }
  
  .info-card-icon {
    width: 44px;
    height: 44px;
  }
  
  .info-card-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .info-card-title {
    font-size: 13px;
  }
  
  .info-card-main {
    font-size: 17px;
  }
  
  .map-compact-address-bar {
    padding: 16px 20px;
  }
  
  .address-bar-content {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .address-bar-icon {
    font-size: 24px;
  }
  
  .address-bar-text strong {
    font-size: 16px;
  }
  
  .address-bar-text span {
    font-size: 13px;
  }
  
  .address-bar-link {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .pin-core-compact {
    width: 44px;
    height: 44px;
  }
  
  .pin-core-compact svg {
    width: 22px;
    height: 22px;
  }
  
  .pin-label-compact {
    padding: 6px 14px;
    font-size: 12px;
  }
  
  .pin-ripple-compact {
    width: 90px;
    height: 90px;
  }
  
  .contact-actions-wrapper {
    margin-top: 32px;
  }
  
  .contact-btn-primary,
  .contact-btn-secondary {
    padding: 20px 24px;
    gap: 16px;
  }
  
  .btn-icon-wrapper {
    width: 44px;
    height: 44px;
  }
  
  .btn-value {
    font-size: 16px;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-luxe {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-scroll-indicator {
    display: none;
  }
  
  .contact-content-wrapper {
    padding: 0 12px;
  }
  
  .contact-map-compact {
    margin-bottom: 40px;
    border-radius: 16px;
  }
  
  .map-compact-wrapper {
    height: 280px;
  }
  
  .contact-info-grid {
    gap: 14px;
    margin-bottom: 24px;
  }
  
  .contact-info-card {
    padding: 18px;
  }
  
  .info-card-header {
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .info-card-icon {
    width: 40px;
    height: 40px;
  }
  
  .info-card-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .info-card-title {
    font-size: 12px;
  }
  
  .info-card-main {
    font-size: 16px;
  }
  
  .map-compact-address-bar {
    padding: 14px 16px;
  }
  
  .address-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .address-bar-link {
    width: 100%;
    justify-content: center;
  }
  
  .pin-core-compact {
    width: 40px;
    height: 40px;
  }
  
  .pin-core-compact svg {
    width: 20px;
    height: 20px;
  }
  
  .contact-actions-wrapper {
    margin-top: 28px;
  }
  
  .contact-btn-primary,
  .contact-btn-secondary {
    padding: 18px 20px;
    gap: 14px;
  }
  
  .btn-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .btn-label {
    font-size: 12px;
  }
  
  .btn-value {
    font-size: 15px;
  }
  
  .contact-premium-card {
    padding: 24px;
  }
  
  .contact-card-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
  
  .contact-card-text {
    font-size: 16px;
  }
  
  .contact-action-btn {
    padding: 20px 24px;
    gap: 16px;
  }
  
  .action-btn-icon {
    width: 44px;
    height: 44px;
  }
  
  .action-btn-value {
    font-size: 16px;
  }
  
  .map-frame-premium {
    height: 350px;
  }
  
  .pin-icon {
    font-size: 40px;
  }
  
  .pin-label {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .location-marker {
    font-size: 24px;
  }
}

