/* 
  Luxury Global Manufacturer Website
  Design: Modern, Minimalist, Professional
*/

:root {
  /* Colors */
  --bg-color: #F9F7F2;
  --text-dark: #1A1A1A;
  --text-muted: #4A4A4A;
  --accent: #A68D6A;
  --accent-light: #C4B299;
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.8);

  /* Typography */
  --serif: 'Playfair Display', serif;
  --sans: 'Inter', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

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

/* --- Layout Utils --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 120px 0;
}

.fade-up {
  opacity: 1;
  /* Fallback for no JS */
  transform: translateY(0);
  transition: var(--transition-smooth);
}

/* Optional animation if JS works, but doesn't hide content */
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navigation --- */
nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 0;
  transition: var(--transition-smooth);
  color: var(--white);
  /* Default to white for transparent state */
}

nav .logo-main,
nav .nav-item>a,
nav .lang-switcher {
  color: var(--white) !important;
}

nav .mobile-toggle span {
  background: var(--white);
}

nav.scrolled {
  position: fixed;
  background: var(--glass);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

nav.scrolled .logo-main,
nav.scrolled .nav-item>a,
nav.scrolled .lang-switcher {
  color: var(--text-dark) !important;
}

nav.scrolled .mobile-toggle span {
  background: var(--text-dark);
}

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

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -1px;
  transition: var(--transition-fast);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: inherit;
  /* Allow nav states to control color */
  transition: var(--transition-fast);
}

.logo-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-top: 2px;
}

.logo:hover .logo-symbol {
  background: var(--accent);
  color: var(--white);
}

/* Footer Adaptation */
footer .logo-main {
  color: var(--white);
}

footer .logo-symbol {
  border-color: var(--accent);
  color: var(--accent);
}



.nav-extra {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  padding: 4px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Light mode/scrolled state adjustments */
nav.scrolled .lang-switcher {
  background: rgba(0, 0, 0, 0.03);
}

/* Dark/Hero state adjustments */
nav .lang-switcher {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.lang-opt {
  transition: var(--transition-fast);
  padding: 6px 12px;
  border-radius: 100px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.lang-opt.active {
  background: var(--accent);
  color: var(--white) !important;
  box-shadow: 0 2px 10px rgba(166, 141, 106, 0.3);
}

.lang-opt:hover:not(.active) {
  background: rgba(0, 0, 0, 0.05);
}

nav .lang-opt:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}

.nav-links {
  display: flex;
  gap: max(1.5vw, 20px);
  align-items: center;
}

.nav-item {
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-item>a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: var(--transition-fast);
}

.nav-item:hover>a::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-fast);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin-bottom: 10px;
}

.dropdown-menu a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.dropdown-menu a:hover {
  color: var(--accent);
}

/* --- Mobile Nav Refinement --- */
@media (max-width: 1024px) {
  .nav-container {
    padding: 10px 20px;
    width: 100%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-item {
    font-size: 1.2rem;
  }

  .nav-extra {
    gap: 10px;
  }

  /* Hide extra items in header on narrow mobile if needed, or move to mobile menu */
  .nav-extra .btn {
    display: none;
    /* Hide 'Inquire Now' on mobile header, add to mobile menu list */
  }

  .mobile-toggle {
    display: flex;
    margin-left: 20px;
  }

  .lang-switcher {
    order: -1;
    /* Keep lang switcher visible next to toggle */
  }

  /* Mobile Dropdown adjustment */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 10px 0 0 0;
    text-align: center;
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Compound Background: Protective Top Scrim + Overall Darkening */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 1;
  color: var(--white);
  /* Pure white for visibility */
  letter-spacing: 0.5px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
  /* Stronger shadow */
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
}

/* --- Brand Marquee --- */
.brand-section {
  padding: 60px 0;
  background: var(--bg-color);
  /* Reset to light background */
}

.marquee-wrapper {
  margin-top: 20px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: var(--text-dark);
  border: 1px solid var(--accent);
  border-radius: 50px;
  padding: 30px 0 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marquee-label {
  display: inline-block;
  margin: 0 auto 30px;
  padding: 8px 25px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--accent);
  border-radius: 50px;
  background: rgba(166, 141, 106, 0.05);
}

.brand-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--text-dark), transparent);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--text-dark), transparent);
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.marquee-content {
  display: inline-block;
  animation: scroll 40s linear infinite;
  padding-left: 100%;
  /* Start from off-screen */
}

.marquee-content span {
  display: inline-block;
  font-family: var(--serif);
  font-size: 2rem;
  margin-right: 80px;
  letter-spacing: 1px;

  /* Shiny Gold Text */
  background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- About & Content Blocks --- */
.section-title {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* --- Offerings Grid --- */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.offering-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
}

.offering-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.offering-card:hover .offering-img {
  transform: scale(1.05);
}

.offering-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
}

/* --- Map Section --- */
.map-section {
  background: var(--bg-color);
  /* Light background for the section */
}

.map-card {
  background: var(--text-dark);
  color: var(--white);
  padding: 80px 60px;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.map-container {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
}

.map-placeholder {
  width: 100%;
  opacity: 1;
  filter: brightness(0.95);
  border-radius: 20px;
}

.map-wrapper {
  position: relative;
  width: 100%;
}

.map-pin {
  position: absolute;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 5;
  transform: translate(-50%, -100%);
  /* The tip of the marker points to the coordinate */
}

/* Water drop shape */
.map-pin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--pin-color, var(--accent));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
}

/* The hole in the middle */
.map-pin::after {
  content: '';
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  background: var(--white);
  border-radius: 50%;
  z-index: 2;
}

/* Color Variants */
.pin-pink {
  --pin-color: linear-gradient(135deg, #FF6B6B, #EE5253);
}

.pin-orange {
  --pin-color: linear-gradient(135deg, #FF9F43, #FF6B6B);
}

.pin-blue {
  --pin-color: linear-gradient(135deg, #48DBFB, #2E86DE);
}

.pin-purple {
  --pin-color: linear-gradient(135deg, #A29BFE, #6C5CE7);
}

.pin-cyan {
  --pin-color: linear-gradient(135deg, #00D2D3, #01A3A4);
}

.map-pin:hover::before {
  transform: rotate(-45deg) scale(1.1);
  filter: brightness(1.1);
}

.pin-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  background: var(--pin-color, var(--accent));
  border-radius: 50%;
  transform: translate(-50%, 50%) scale(0);
  animation: pinPulse 2.5s infinite;
  opacity: 0.3;
  z-index: -1;
}

@keyframes pinPulse {
  0% {
    transform: translate(-50%, 50%) scale(0.2);
    opacity: 0.4;
  }

  100% {
    transform: translate(-50%, 50%) scale(2.5);
    opacity: 0;
  }
}

.pin-label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass);
  backdrop-filter: blur(10px);
  color: var(--text-dark);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-fast);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-pin:hover .pin-label {
  opacity: 1;
  bottom: 30px;
}

.map-pin::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 15px;
  background: var(--accent);
  opacity: 0.5;
}

/* --- Quality Grid --- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.quality-card {
  background: var(--white);
  padding: 50px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

.quality-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.quality-card h3 {
  margin: 20px 0;
}

/* --- Footer --- */
footer {
  background: #111;
  color: var(--white);
  padding: 80px 0 40px;
}

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

/* Footer Logo refined for image asset */
.footer-logo {
  margin-bottom: 25px;
}





.footer-links h4 {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.footer-links ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer-links ul li:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 25px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    background: var(--white);
    flex-direction: column;
    padding: 100px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: var(--transition-smooth);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .section-padding {
    padding: 80px 0;
  }

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

/* --- Handbag Collection Section --- */
.handbag-gallery {
  background: var(--white);
  padding: 120px 0;
}

.category-block {
  margin-bottom: 120px;
}

.category-block:last-child {
  margin-bottom: 0;
}

.hero-showcase {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;
}

.category-block:nth-child(even) .hero-showcase {
  flex-direction: row-reverse;
}

.hero-img-wrapper {
  flex: 1.2;
  background: var(--bg-color);
  padding: 60px;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.hero-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  transition: var(--transition-fast);
}

.hero-img-wrapper:hover img {
  transform: scale(1.05);
}

.category-text {
  flex: 1;
}

.category-text h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.category-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Sub-Gallery */
.sub-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-left: auto;
  width: 45%;
}

.category-block:nth-child(even) .sub-gallery {
  margin-left: 0;
  margin-right: auto;
}

.sub-item {
  background: var(--bg-color);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.sub-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.sub-item img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}


/* About Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.highlight-item h4 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.highlight-item p {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.4;
}

/* Sustainability Features */
.sus-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.sus-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.sus-icon {
  font-size: 2rem;
  background: var(--white);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.sus-info h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.sus-info p {
  font-size: 0.95rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .about-highlights {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 1024px) {

  .hero-showcase,
  .category-block:nth-child(even) .hero-showcase {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .sub-gallery,
  .category-block:nth-child(even) .sub-gallery {
    width: 100%;
    margin: 40px 0 0;
  }

  .hero-img-wrapper img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-content h3 {
    font-size: 2rem;
  }

  .hero-img-wrapper {
    padding: 30px;
  }
}

/* --- Mobile Responsive Fixes (FINAL) --- */
@media (max-width: 768px) {

  /* Bug 4: Mobile Menu Visibility */
  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  /* Fix for invisible items on white background */
  .nav-links.active a {
    color: var(--text-dark) !important;
    font-size: 1.2rem;
    font-weight: 500;
  }

  /* Bug 5: Global Footprint Map - FINAL CORRECTED */
  .map-container {
    height: auto !important;
    /* height defined by content/aspect ratio */
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
    /* Force aspect ratio to fit the map image "snugly" */
    aspect-ratio: 16/9;
    display: block;
  }

  .map-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* RESET transforms to fix coordinate drift */
    transform: none !important;
    display: block;
  }

  .map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure full map is visible */
    transform: none !important;
  }

  /* Bug 6: Our Story Hero */
  .story-hero-img {
    height: 350px !important;
  }

  /* Bug 3: Prevent zoom/scroll */
  html,
  body {
    width: 100%;
    overflow-x: hidden !important;
    position: relative;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  /* Optimize Pins for Mobile */
  .map-pin {
    /* Make pins smaller naturally without messing up coordinates */
    transform: scale(0.6) !important;
    transform-origin: bottom center;
  }

  /* Adjust hover state specifically for mobile if needed */
  .map-pin:hover .pin-label {
    bottom: 25px;
  }
}

/* --- Contact Section Redesign --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  /* Top align to match text height */
}

.contact-form {
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  /* Pushes form to the right if grid allows */
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    margin-left: 0;
    max-width: 100%;
  }
}