/* ==========================================================================
   AKA Academy — Custom Premium Design System (Optimized & Clean)
   ========================================================================== */

/* Color Tokens & Variables */
:root {
  --color-bg-pure: #000000;
  --color-bg-near: #0A0A0A;
  --color-bg-card: rgba(13, 13, 13, 0.7);
  --color-accent: #D4AF37;       /* Metallic Gold */
  --color-glow: #F4E4A6;         /* Highlight Glow Gold */
  --color-hover: #E8B547;        /* Warm Amber */
  --color-text-light: #F5F1E8;   /* Off-white */
  --color-text-muted: #8A8272;   /* Warm Muted Gray */
  
  --font-display: 'Anton', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-georgian: 'Noto Sans Georgian', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-in-out;
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-pure);
  color: var(--color-text-light);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

/* Clean, Non-Cluttered Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-light);
  letter-spacing: -0.01em;
}

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-lang="ka"] h1 {
  font-family: var(--font-georgian);
  font-weight: 900;
  text-transform: none;
  letter-spacing: normal;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(22px, 3.5vw, 32px); /* Balanced size to avoid overwhelming mobile/desktop */
  line-height: 1.15;
}

[data-lang="ka"] h2 {
  font-family: var(--font-georgian);
  font-weight: 900;
  text-transform: none;
  letter-spacing: normal;
}

h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 20px);
  letter-spacing: -0.01em;
}

p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

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

a:hover {
  color: var(--color-glow);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1100px; /* Slimmer container for a clean, editorial look */
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 64px);
}

.section {
  padding: clamp(70px, 9vw, 110px) 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.dark-bg {
  background-color: var(--color-bg-near);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.gap-medium {
  gap: 40px;
}

/* Button & Call to Action Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-bg-pure);
  border: 1px solid var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 181, 71, 0.2);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-glow);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-ghost:hover {
  background-color: rgba(212, 175, 55, 0.05);
  border-color: var(--color-glow);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.text-gold {
  color: var(--color-accent) !important;
}

.text-white {
  color: var(--color-text-light) !important;
}

/* Language Selection Gating */
[data-lang="en"] .lang-ka { display: none !important; }
[data-lang="ka"] .lang-en { display: none !important; }

/* Sticky Top Navigation Bar */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 6vw, 48px);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

#navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px clamp(20px, 6vw, 48px);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 170px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

#navbar.scrolled .logo-image {
  height: 120px;
}


.nav-links {
  display: none;
  gap: 32px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.nav-links a:hover {
  color: var(--color-text-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-socials {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .nav-socials {
    display: inline-flex;
  }
}

.nav-socials .social-icon {
  width: 34px;
  height: 34px;
}

.nav-socials .social-icon svg {
  width: 15px;
  height: 15px;
}

/* Language Toggle styling */
.lang-toggle {
  display: flex;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2px;
  border-radius: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.lang-btn.active {
  background-color: var(--color-accent);
  color: var(--color-bg-pure);
}

.nav-cta {
  display: none;
  padding: 8px 16px;
  font-size: 10px;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
}

/* Mobile Menu Button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-light);
  transition: var(--transition-fast);
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Menu Panel */
.nav-links.mobile-active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-bg-pure);
  z-index: 999;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.nav-links.mobile-active a {
  font-size: 16px;
}

/* Hero Header Area */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px clamp(20px, 6vw, 96px) 60px;
  overflow: hidden;
}

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

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

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.75) 100%),
    radial-gradient(120% 90% at 50% 50%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-wordmark-container {
  margin-bottom: 24px;
}

.hero-wordmark {
  width: min(240px, 60vw); /* Clean, smaller branding */
  height: auto;
  display: block;
}

.hero-subtitle {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.hero-title {
  font-family: "Inter", "Noto Sans Georgian", sans-serif;
  font-weight: 450;
  font-size: clamp(32px, 5.4vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  text-transform: none;
}

.hero-title .lang-ka {
  font-weight: 450;
}

.accent-glow {
  color: var(--color-glow);
}

.hero-description {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.65;
  max-width: 480px;
  margin-top: 18px;
  margin-bottom: 32px;
  color: #cfc8b6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero Scroll Chevron */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-accent);
  font-size: 20px;
  animation: chevronPulse 2s ease-in-out infinite;
}

@keyframes chevronPulse {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* About Coach Section */
.about-visual {
  display: flex;
  justify-content: center;
}

.coach-video-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  overflow: hidden;
  background: #0A0A0A;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.coach-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  font-size: 10px;
  font-family: monospace;
  color: var(--color-glow);
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}

.video-sound-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(0, 0, 0, 0.65);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.video-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: var(--color-glow);
  transform: scale(1.05);
}

.video-sound-toggle svg {
  width: 20px;
  height: 20px;
}

.video-sound-toggle .icon-unmuted { display: none; }
.video-sound-toggle.is-unmuted .icon-muted { display: none; }
.video-sound-toggle.is-unmuted .icon-unmuted { display: block; }

.coach-photo-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(135deg, #0A0A0A 0 12px, #141414 12px 24px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.about-logo {
  max-width: 140px;
  height: auto;
  opacity: 0.7;
}

.placeholder-caption {
  font-size: 9px;
  font-family: monospace;
  color: var(--color-text-muted);
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.04);
}

.section-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
}

.section-divider {
  width: 44px;
  height: 2px;
  background-color: var(--color-accent);
  margin: 16px 0 24px;
}

.about-bio {
  font-size: 14px;
  color: #cfc8b6;
  margin-bottom: 12px;
  line-height: 1.7;
}

.about-philosophy {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.stat-card {
  background-color: var(--color-bg-pure);
  padding: 24px 20px;
  text-align: center;
}

.stats-grid-single {
  grid-template-columns: 1fr;
  max-width: 320px;
}

.stats-grid-single .stat-card {
  padding: 32px 24px;
}

.stat-num {
  display: block;
  font-family: "Inter", "Noto Sans Georgian", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--color-glow);
}

.stat-unit {
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.9;
  margin-left: 6px;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-glow);
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.3;
}

/* Card Grids (Programs & Principles) */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.card {
  background-color: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  padding: 32px 24px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 30px -10px rgba(212, 175, 55, 0.15);
}

.card.highlighted {
  background: linear-gradient(180deg, #100E09 0%, #060606 100%);
  border: 1px solid rgba(244, 228, 166, 0.2);
}

.card-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-accent);
  margin-bottom: 20px;
}

.icon-group {
  transform: rotate(45deg);
}

.icon-individual {
  border-radius: 50%;
  border-color: var(--color-glow);
}

.card-title {
  color: var(--color-glow);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 13.5px;
  margin-bottom: 20px;
  line-height: 1.65;
}

.card-frequency {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.02em;
  margin: 4px 0 0;
}

.card-features {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-light);
}

.bullet {
  color: var(--color-accent);
  font-weight: bold;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background-color: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  padding: 36px 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 30px -10px rgba(212, 175, 55, 0.15);
}

.pricing-card.popular {
  border: 1px solid rgba(244, 228, 166, 0.4);
  background: linear-gradient(180deg, #100E09 0%, #050505 100%);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: var(--color-glow);
  color: var(--color-bg-pure);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-top-right-radius: 11px;
  border-bottom-left-radius: 8px;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-type {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--color-text-light);
}

.pricing-price .amount.text-gold {
  color: var(--color-accent);
}

.pricing-price .currency {
  font-size: 13.5px;
  color: var(--color-text-muted);
}

.pricing-schedule {
  font-size: 13px;
  color: #cfc8b6;
}

/* Schedule & Location Section */
.table-container {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  background-color: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 440px;
}

.schedule-table th, .schedule-table td {
  padding: 16px 20px;
  text-align: left;
}

.schedule-table th {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  background-color: rgba(20, 20, 20, 0.3);
}

.schedule-table td {
  color: #cfc8b6;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-table td span {
  color: var(--color-text-muted);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: repeating-linear-gradient(135deg, #0A0A0A 0 12px, #141414 12px 24px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.15), 0 0 16px var(--color-accent);
}

.map-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: monospace;
  font-size: 9px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.address-box {
  background-color: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.address-box p {
  margin-bottom: 8px;
  font-size: 13.5px;
}

.address-box p:last-child {
  margin-bottom: 0;
}

.address-link {
  color: var(--color-text-light);
}

.address-link:hover {
  color: var(--color-accent);
}

/* Gallery Block */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.gallery-item {
  border: 1px solid rgba(212, 175, 55, 0.12);
  background: repeating-linear-gradient(135deg, #0A0A0A 0 12px, #141414 12px 24px);
  border-radius: 12px;
  padding: 0;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.gallery-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
  transform: scale(1.02);
}

.gallery-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: monospace;
  font-size: 9px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  z-index: 2;
}

/* Philosophy principles cards */
.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.principle-card {
  background-color: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  padding: 32px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.principle-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.principle-num {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.principle-title {
  margin-bottom: 10px;
  font-size: clamp(15px, 2.2vw, 18px);
}

.principle-desc {
  font-size: 13.5px;
  line-height: 1.65;
}

.principle-quote {
  font-family: "Inter", "Noto Sans Georgian", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-glow);
  letter-spacing: -0.005em;
  margin-top: 10px;
}

/* Contact and Callout forms */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-bg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.relative {
  position: relative;
  z-index: 2;
}

.contact-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-glow);
  margin-bottom: 12px;
  max-width: 440px;
  line-height: 1.5;
}

.contact-address {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.contact-cta {
  padding: 15px 32px;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(0, 0, 0, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.social-icon:hover {
  color: var(--color-glow);
  border-color: var(--color-glow);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.social-links a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.social-links a:hover {
  color: var(--color-glow);
}

.contact-map {
  position: relative;
  width: 100%;
  min-height: 380px;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: #0A0A0A;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(0.35) contrast(1.05);
}

.map-open-link {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.map-open-link:hover {
  color: var(--color-glow);
  border-color: var(--color-glow);
  background: rgba(0, 0, 0, 0.9);
}

.contact-form {
  background-color: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: clamp(20px, 4vw, 32px);
  display: grid;
  gap: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.form-input {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--color-text-light);
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: 6px;
  width: 100%;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-glow);
}

.select-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20fill%3D%22%238A8272%22%20d%3D%22M2%204l4%204%204-4H2z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 32px;
}

.text-input {
  resize: vertical;
}

.form-feedback {
  min-height: 16px;
  font-size: 13px;
  color: var(--color-accent);
}

/* Footer Section */
#footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background-color: var(--color-bg-near);
  padding: 40px 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

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

.footer-logo-container {
  display: block;
}

.footer-logo {
  height: 220px;
  width: auto;
}

.footer-info {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-address {
  margin-top: 4px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-meta {
    align-items: flex-end;
  }
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-socials .social-icon {
  width: 36px;
  height: 36px;
}

.footer-socials .social-icon svg {
  width: 16px;
  height: 16px;
}

.footer-lang {
  border-color: rgba(212, 175, 55, 0.15);
}

.footer-copy {
  font-size: 10.5px;
  color: #444037;
}

/* Floating WhatsApp Button (Mobile Optimized) */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent);
  color: var(--color-bg-pure);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 11px 16px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: var(--transition-fast);
  animation: floatingPulse 3s infinite;
}

.floating-cta:hover {
  background-color: var(--color-hover);
  box-shadow: 0 8px 32px rgba(232, 181, 71, 0.2);
  color: var(--color-bg-pure);
}

.cta-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-bg-pure);
  border-radius: 50%;
}

@keyframes floatingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4), 0 8px 24px rgba(0,0,0,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0), 0 8px 24px rgba(0,0,0,0.5); }
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-glow);
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 2100;
}

.lightbox-content {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
}

.lightbox-card {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(135deg, #0A0A0A 0 14px, #141414 14px 28px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.lightbox-label {
  font-family: monospace;
  font-size: 11px;
  color: var(--color-accent);
  text-transform: uppercase;
}

/* Animation Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------------
   Mobile navbar layout — TWO ROWS
   Row 1: socials + lang toggle + hamburger at top
   Row 2: big centered logo below
   Placed at end of file to win cascade over earlier .nav-socials rules.
   ------------------------------------------------------------------ */
@media (max-width: 767px) {
  #navbar {
    padding: 8px 14px 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 6px;
  }
  #navbar.scrolled {
    padding: 6px 14px 8px;
  }

  /* Row 1 */
  #navbar .nav-actions {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    align-items: center;
  }
  #navbar .nav-socials {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin-right: auto;
  }
  #navbar .nav-socials .social-icon {
    width: 32px;
    height: 32px;
  }
  #navbar .nav-socials .social-icon svg {
    width: 14px;
    height: 14px;
  }
  .lang-toggle .lang-btn {
    padding: 4px 8px;
    font-size: 10px;
  }

  /* Row 2 — big logo below */
  #navbar .nav-logo {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .logo-image {
    height: 170px;
  }
  #navbar.scrolled .logo-image {
    height: 110px;
  }
}
