/* ==================== iOS 26 Liquid Glass - Light Mode ==================== */

:root {
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(200, 200, 200, 0.4);
  --glass-shadow: rgba(0, 0, 0, 0.06);
  --glass-shadow-strong: rgba(0, 0, 0, 0.1);
  --boys-primary: #4DB8E8;
  --boys-secondary: #7FD3FF;
  --girls-primary: #FF8FA3;
  --girls-secondary: #FFB8D1;
  --text-primary: rgba(0, 0, 0, 0.95);
  --text-secondary: rgba(0, 0, 0, 0.65);
  --text-tertiary: rgba(0, 0, 0, 0.45);
  --blur-amount: 35px;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: all 0.6s ease-out;
  --font-system: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
}

/* ==================== NEW: Visit Section ==================== */

.visit-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(77, 184, 232, 0.05), rgba(255, 143, 163, 0.05));
  position: relative;
  z-index: 1;
}

.visit-content {
  animation: scaleIn 0.8s ease;
}

.visit-content.liquid-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px 0 var(--glass-shadow),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 32px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-detail-item {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}

.visit-detail-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.7);
}

.visit-detail-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.visit-detail-value {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ==================== Base Styles ==================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-system);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f5f5f5 100%);
  color: var(--text-primary);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== Ambient & Decoration ==================== */

.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(77, 184, 232, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 143, 163, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 70%),
    linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
  animation: ambientShift 25s ease-in-out infinite;
  will-change: transform;
}

@keyframes ambientShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(3deg); }
}

.glass-orbs {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orb-float 20s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  background: radial-gradient(circle at 30% 30%, rgba(77, 184, 232, 0.12), transparent);
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  bottom: 15%;
  left: 5%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 143, 163, 0.12), transparent);
  animation-delay: 5s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(77, 184, 232, 0.08), transparent);
  animation-delay: 10s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.1); }
  50% { transform: translate(-10px, 30px) scale(0.9); }
  75% { transform: translate(30px, 10px) scale(1.05); }
}

/* ==================== Liquid Glass ==================== */

.liquid-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px 0 var(--glass-shadow),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  animation: glassShimmer 8s linear infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.interactive {
  transition: var(--transition);
  cursor: pointer;
}

.interactive:hover::before {
  opacity: 1;
}

.interactive:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 16px 48px 0 var(--glass-shadow-strong),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.interactive:active {
  transform: translateY(-2px) scale(0.99);
  transition: all 0.2s ease-out;
}

@keyframes glassShimmer {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(50%, 50%) scale(1.5); }
}

.glass-effect-container {
  position: relative;
}

/* ==================== Navigation ==================== */

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  max-width: 1100px;
  border-radius: 24px;
  padding: 12px 24px;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--boys-primary);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 40%;
}

.nav-link:hover {
  background: rgba(77, 184, 232, 0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  background: rgba(77, 184, 232, 0.15);
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
}

.lang-btn {
  background: none;
  border: none;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lang-btn:hover {
  background: rgba(77, 184, 232, 0.15);
  transform: translateY(-1px);
}

.lang-btn.active {
  background: rgba(77, 184, 232, 0.25);
  color: var(--boys-primary);
}

.lang-divider {
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==================== Hero Section ==================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  position: relative;
}

.hero-content {
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.hero-glass-card {
  padding: 60px 40px;
  border-radius: 32px;
  animation: smoothSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes smoothSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--boys-primary);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--boys-primary), var(--girls-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 12px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==================== Buttons ==================== */

.btn-liquid {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(77, 184, 232, 0.3);
  background: rgba(77, 184, 232, 0.15);
  backdrop-filter: blur(20px);
  transition: var(--transition-spring);
}

.btn-liquid.secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-shimmer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}

.btn-liquid:hover .btn-shimmer {
  transform: translateX(100%) rotate(45deg);
}

.btn-liquid:hover {
  background: rgba(77, 184, 232, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(77, 184, 232, 0.2);
}

.btn-liquid:active {
  transform: translateY(-1px);
}

/* ==================== Sections ==================== */

section {
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ==================== Stats Section ==================== */

.stats-section {
  padding: 80px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  animation: scaleIn 0.8s ease;
  transition: var(--transition);
}

.stat-value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--boys-primary), var(--girls-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

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

/* ==================== Story Section ==================== */

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.timeline-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(77, 184, 232, 0.2), rgba(255, 143, 163, 0.2));
  color: var(--text-primary);
}

.timeline-content {
  padding: 32px;
  border-radius: 24px;
  animation: slideInRight 0.8s ease;
  transition: var(--transition);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

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

.featured-highlight {
  padding: 48px;
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(77, 184, 232, 0.1), rgba(255, 143, 163, 0.1));
  transition: var(--transition);
}

.highlight-title {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.highlight-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== Values Section ==================== */

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

.value-card {
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  animation: scaleIn 0.8s ease;
  transition: var(--transition);
}

.value-card:nth-child(1) { animation-delay: 0s; }
.value-card:nth-child(2) { animation-delay: 0.15s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.45s; }

.value-icon {
  margin-bottom: 24px;
  color: var(--boys-primary);
  opacity: 0.9;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ==================== Hours Section ==================== */

.hours-section {
  background: linear-gradient(135deg, rgba(77, 184, 232, 0.05), rgba(255, 143, 163, 0.05));
  padding: 100px 20px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.hours-card {
  padding: 32px;
  border-radius: 24px;
  text-align: center;
  animation: scaleIn 0.8s ease;
  transition: var(--transition);
}

.hours-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.hours-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hours-card.closed {
  background: rgba(200, 200, 200, 0.15);
  opacity: 0.7;
}

.hours-card.closed p {
  color: var(--text-tertiary);
  font-weight: 600;
}

/* ==================== Testimonials Section ==================== */

.testimonials-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(77, 184, 232, 0.05), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  padding: 40px;
  border-radius: 24px;
  animation: scaleIn 0.8s ease;
  transition: var(--transition);
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.15s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.stars {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 600;
}

/* ==================== Shop Features Section ==================== */

.shop-features-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(255, 143, 163, 0.05), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-box {
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  animation: scaleIn 0.8s ease;
  transition: var(--transition);
}

.feature-box:nth-child(1) { animation-delay: 0s; }
.feature-box:nth-child(2) { animation-delay: 0.1s; }
.feature-box:nth-child(3) { animation-delay: 0.2s; }
.feature-box:nth-child(4) { animation-delay: 0.3s; }
.feature-box:nth-child(5) { animation-delay: 0.4s; }
.feature-box:nth-child(6) { animation-delay: 0.5s; }

.feature-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ==================== Premium Brands Section ==================== */

.brands-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(77, 184, 232, 0.08) 0%, rgba(255, 143, 163, 0.08) 100%);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.brand-category {
  padding: 40px;
  border-radius: 24px;
  animation: scaleIn 0.8s ease;
  transition: var(--transition);
}

.brand-category:nth-child(1) { animation-delay: 0s; }
.brand-category:nth-child(2) { animation-delay: 0.15s; }
.brand-category:nth-child(3) { animation-delay: 0.3s; }

.brand-category-title {
  font-size: 1.4rem;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.brand-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--boys-primary);
}

.brand-desc {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
}

.brands-highlight {
  padding: 32px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(77, 184, 232, 0.1), rgba(255, 143, 163, 0.1));
}

.brands-highlight-text {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.7;
}

/* ==================== Showcase Section ==================== */

.showcase-section {
  padding: 100px 20px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.showcase-card {
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 450px;
  transition: var(--transition);
}

.boys-theme {
  background: linear-gradient(135deg, rgba(77, 184, 232, 0.2) 0%, rgba(77, 184, 232, 0.08) 100%);
}

.girls-theme {
  background: linear-gradient(135deg, rgba(255, 143, 163, 0.2) 0%, rgba(255, 143, 163, 0.08) 100%);
}

.showcase-image-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--text-secondary);
  opacity: 0.6;
}

.showcase-info {
  padding: 32px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.showcase-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.showcase-info p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
}

.coming-soon-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(77, 184, 232, 0.15);
  color: var(--boys-primary);
}

/* ==================== Contact Section ==================== */

.contact-section {
  background: linear-gradient(135deg, rgba(77, 184, 232, 0.05), rgba(255, 143, 163, 0.05));
  padding: 100px 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.contact-info {
  padding: 40px;
  border-radius: 32px;
  transition: var(--transition);
}

.contact-alternative {
  padding: 40px;
  border-radius: 32px;
  transition: var(--transition);
}

.contact-heading {
  font-size: 1.8rem;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.contact-alt-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.contact-alt-text {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-alt-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alt-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.alt-icon {
  font-size: 1.5rem;
}

.alt-item p {
  color: var(--text-secondary);
  font-size: 14px;
}

.info-block {
  margin-bottom: 32px;
}

.info-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: block;
}

.info-value {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
}

.contact-link {
  color: var(--boys-primary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--girls-primary);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.map-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-title {
  font-size: 2rem;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.map-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
}

.map-wrapper {
  border-radius: 32px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ==================== Footer ==================== */

.footer {
  padding: 32px 20px;
  border-radius: 32px 32px 0 0;
  margin-top: 100px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ==================== Responsive ==================== */

@media (max-width: 768px) {
  .navbar {
    width: 95%;
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-liquid {
    width: 100%;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-marker {
    height: 80px;
  }

  .showcase-card {
    min-height: auto;
  }

  .hours-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .nav-link {
    font-size: 13px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  section {
    padding: 60px 20px;
  }

  .hero-glass-card {
    padding: 40px 24px;
  }

  .value-card {
    padding: 24px;
  }

  .language-selector {
    padding: 6px 8px;
  }

  .lang-btn {
    padding: 6px 8px;
    font-size: 12px;
  }

  .brand-category {
    padding: 24px;
  }

  .feature-box {
    padding: 24px;
  }

  .visit-content.liquid-glass {
    padding: 40px 24px;
  }
}


/* ==================== Atmosphere Section ==================== */

.atmosphere-section {
  padding: 100px 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(77, 184, 232, 0.05), rgba(255, 143, 163, 0.05));
}

.atmosphere-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 48px;
  border-radius: 32px;
  animation: smoothSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.atmosphere-card.liquid-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow), inset 0 1px 1px 0 rgba(255, 255, 255, 0.6), inset 0 -1px 1px 0 rgba(0, 0, 0, 0.05);
}

.atmosphere-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 48px 0 var(--glass-shadow-strong), inset 0 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.atmosphere-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.atmosphere-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.atmosphere-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 32px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  transition: var(--transition);
}

.detail-item:hover {
  padding-left: 8px;
}

.detail-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--boys-primary);
}

.detail-value {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .atmosphere-card { padding: 40px 32px; }
  .atmosphere-title { font-size: 1.8rem; }
  .atmosphere-text { font-size: 1rem; }
  .atmosphere-details { gap: 16px; padding-top: 24px; }
}

@media (max-width: 480px) {
  .atmosphere-card { padding: 32px 20px; }
  .atmosphere-title { font-size: 1.5rem; margin-bottom: 16px; }
  .atmosphere-text { font-size: 0.95rem; }
  .atmosphere-details { gap: 12px; padding-top: 20px; }
  .detail-label { font-size: 12px; }
  .detail-value { font-size: 15px; }
}
/* Logo Styling */
.atmosphere-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease;
}

.atmosphere-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
  transition: var(--transition-smooth);
}

.atmosphere-card:hover .atmosphere-logo {
  filter: drop-shadow(0 8px 20px rgba(77, 184, 232, 0.15));
  transform: scale(1.05);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .atmosphere-logo { height: 60px; }
  .atmosphere-logo-wrapper { margin-bottom: 24px; }
}

@media (max-width: 480px) {
  .atmosphere-logo { height: 50px; }
  .atmosphere-logo-wrapper { margin-bottom: 20px; }
}
