/* CONTACT SECTION (2-column with toggles) */
.contact-section {
  padding: 3rem 0 2rem 0;
  background: #fff;
}
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 0 24px;
}
.contact-info-col {
  flex: 1;
  min-width: 260px;
}
.contact-form-col {
  flex: 1;
  min-width: 320px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 16px #0001;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.contact-toggle-btns {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.contact-toggle-btn {
  background: #eee;
  border: none;
  color: #333;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition:
    background 0.15s,
    color 0.15s;
}
.contact-toggle-btn.active,
.contact-toggle-btn:hover {
  background: #ffc700;
  color: #111;
}
.contact-country-info {
  margin-bottom: 1.2rem;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.2rem 1rem 1.2rem 1rem;
  box-shadow: 0 2px 12px #0001;
  color: #111;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form h3 {
  color: #111;
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background: #fff;
  color: #222;
}
.contact-form textarea {
  resize: vertical;
}
.contact-submit-btn {
  background: #ffc700;
  color: #111;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}
.contact-submit-btn:hover {
  background: #111;
  color: #ffc700;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-form-col,
  .contact-info-col {
    min-width: 0;
    width: 100%;
  }
}
/* MAP SECTION (Premium Style) */
.map-section {
  padding: 3rem 0;
  /* background removed */
}
.map-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.map-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 36px;
  color: #ffc700;
}
.map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  padding: 1rem;
  box-shadow: none;
  margin-bottom: 2rem;
}
.latam-map {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  opacity: 0.95;
}
.map-dot {
  position: absolute;
  background: #bdbdbd;
  border: 2px solid #fff;
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px #000a;
  cursor: pointer;
  z-index: 2;
}
.office-info {
  margin-top: 1rem;
  color: #ffc700;
  font-size: 1.1rem;
}
/* Timeline Section (Reference Style) */
.timeline-section {
  width: 100%;
  background: #111;
  padding: 200px 0 40px 0;
  color: #fff;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}
.timeline-container {
  max-width: 80vw;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.timeline-headline {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #ffc700;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.timeline-since {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #ffc700;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.timeline-bar-wrap {
  position: relative;
  width: 100%;
  height: 48px;
  margin-bottom: 60px;
}
.timeline-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: 16px;
  margin: 0 auto;
  background: linear-gradient(90deg, #ffc700 0%, #ffb300 100%);
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  overflow: visible;
}
.timeline-arrow {
  display: none;
}
.timeline-year-marker {
  position: static;
  transform: none;
  margin-top: 18px;
  color: #ffc700;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #000a;
  z-index: 3;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-year-marker span {
  background: #111;
  padding: 2px 10px;
  border-radius: 8px;
  border: 2px solid #ffc700;
  box-shadow: 0 2px 8px #000a;
}
.timeline-events {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  margin: 48px auto 0 auto;
  max-width: 1400px;
  padding-bottom: 24px;
  height: 260px;
  overflow-x: hidden !important;
  overflow-y: visible;
  position: relative;
}
.timeline-slider-track {
  display: flex;
  flex-direction: row;
  gap: 32px;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
  height: 100%;
}
.timeline-event-block {
  flex: 0 0 260px;
  min-width: 240px;
  max-width: 260px;
  min-height: 160px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.timeline-event-dot {
  width: 18px;
  height: 18px;
  background: #ffc700;
  border-radius: 50%;
  border: 3px solid #fff;
  z-index: 4;
  box-shadow: 0 2px 8px #000a;
  margin-bottom: 12px;
}
.timeline-event-content {
  background: #222;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 400;
  width: 100%;
  min-height: 110px;
  min-width: 220px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  word-break: break-word;
  box-shadow: 0 2px 16px #0005;
  padding: 20px 18px 18px 18px;
  margin: 0;
}
.timeline-event-year {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffc700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.timeline-event-desc {
  font-size: 1.05rem;
  color: #fff;
  opacity: 0.97;
}
.timeline-progress-bar-wrap {
  width: 75vw;
  max-width: 1400px;
  margin: 18px auto 0 auto;
  height: 6px;
  background: #222;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.35;
}
.timeline-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ffc700 0%, #ffb300 100%);
  border-radius: 6px;
  transition: width 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  opacity: 0.7;
}
@media (max-width: 900px) {
  .timeline-events {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .timeline-event-block {
    max-width: 100%;
    min-width: 0;
    margin: 0 0 18px 0;
  }
  .timeline-event-content {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .timeline-bar,
  .timeline-events {
    width: 100%;
  }
  .timeline-event-block,
  .timeline-event-content {
    width: 100px;
    font-size: 0.85rem;
  }
  .timeline-headline,
  .timeline-since {
    font-size: 1rem;
  }
  .timeline-event-content {
    margin-top: 28px;
  }
}
/* Map Section */
.map-section {
  width: 100%;
  background: #fff;
  padding: 60px 0 40px 0;
}
.map-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.map-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 36px;
  color: #222;
}
.map-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  background: #f3f3f3;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.map-img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  opacity: 0.85;
}

.product-image {
  width: 80%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 12px #000a);
}
.product-callouts li {
  position: absolute;
  display: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 10px;
  border-radius: 6px;
  pointer-events: none;
  text-shadow: 0 1px 6px #000a;
  border: 1px solid #ffc70033;
}
/* FEATURES & PRODUCT SECTION */
.features-product-section {
  width: 100%;
  background: #111;
  color: #fff;
  padding: 0 0 0 0;
  height: 100vh;
}
.features-product-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1750px;
  margin: 0 auto;
  padding: 3.5rem 1rem 3.5rem 1rem;
  gap: 2.5rem;
}
.features-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.features-heading {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.features-subheading {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  background: linear-gradient(90deg, #ffc700 0%, #ffb300 50%, #fff700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.features-grid {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.feature-block {
  flex: 0 0 240px;
  max-width: 240px;
  border-radius: 10px;
  padding: 1.2rem 1rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
}
.feature-icon {
  width: 90px;
  height: 90px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffc700;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 12px #000a;
}
.feature-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.feature-title {
  color: #ffc700;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: normal;
  width: 100%;
  font-family: "Montserrat", "Arial", sans-serif;
}
.feature-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}
.feature-block li {
  color: #fff;
  font-size: 1.01rem;
  margin-bottom: 0.45rem;
  text-align: left;
  line-height: 1.7;
  padding-left: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-family: "Montserrat", "Arial", sans-serif;
}
.features-action-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.features-qr {
  width: 64px;
  height: 64px;
  background: #222;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.features-action-btn {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition:
    background 0.15s,
    color 0.15s;
}
.features-action-btn:hover {
  background: #ffc700;
  color: #111;
  border-color: #ffc700;
}
.features-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 340px;
}

.product-callouts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-callouts li {
  position: absolute;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 8px;
  border-radius: 6px;
  pointer-events: none;
}
.product-label {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px #000;
}
@media (max-width: 1100px) {
  .features-product-inner {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .features-left,
  .features-right {
    width: 100%;
    min-width: 0;
    align-items: center;
  }
  .features-heading,
  .features-subheading {
    text-align: center;
  }
  .features-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
}
/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --yellow: #ffcc00;
  --accent: #f2b400;
  --muted: #bdbdbd;
  --container: 1200px;
  --max-width: 1200px;
}
body {
  font-family: Montserrat, system-ui, Arial, sans-serif;
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
.container {
  padding: 2rem;
  display: flex;
  justify-content: center;
}
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
  max-width: 1750px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo {
  max-width: 180px;
  height: auto;
  display: block;
}
.nav a {
  color: #374151;
  margin-left: 1.25rem;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.6rem 0.35rem;
}
.nav a:hover {
  color: #111;
}

/* HERO */
.hero {
  position: relative;
  min-height: 91vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../assets/pumpinwater.jpg");
  background-size: cover;
  background-position: right center;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 1rem;
  align-items: center;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  padding-top: 6vh;
}
.hero-left .thumbs {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}
.hero-center {
  text-align: left;
  color: #fff;
  padding: 4em;
}
.hero-center {
  text-align: left;
  color: #fff;
  max-width: 920px;
}
.hero-logo {
  max-width: 260px;
  margin-bottom: 1rem;
}

.hero-logo {
  max-width: 360px;
  margin-bottom: 0.6rem;
}
.hero-center h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}
.hero-center .accent {
  color: var(--yellow);
  font-weight: 800;
}

.cta {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.hero-sub {
  color: #ffffff75;
  margin: 0.5rem 0 1.2rem;
  font-size: 1rem;
}
.hero-right .hero-pump {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-left: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6));
}
/* INTRO */
.country-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 1rem;
}
.country-links li a {
  color: var(--yellow);
  text-decoration: none;
}

/* PUMP */
.pump {
  padding: 3rem 0;
}
.pump-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.pump-info {
  flex: 1;
}
.pump-visual {
  flex: 1;
  position: relative;
}
.pump-img {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto;
}
.callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.callout-line {
  stroke: var(--yellow);
  stroke-width: 3;
  opacity: 0.95;
}
.callout-point {
  fill: var(--yellow);
  stroke: #000;
  stroke-width: 1;
  cursor: pointer;
  pointer-events: auto;
}
.callout-text {
  fill: #fff;
  font-size: 16px;
  font-weight: 700;
}
.callout-tooltip {
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  pointer-events: none;
  z-index: 9999;
}

/* GALLERY */
.gallery {
  padding: 3rem 0;
  background: #070707;
}
.gallery-section {
  width: 100%;
  background: #181818;
  padding: 60px 0 60px 0;
}
.gallery-container {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 24px;
}
.gallery-title {
  color: #ffc700;
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  background: #121212;
  box-shadow: 0 2px 16px #0007;
  transition:
    filter 0.25s,
    opacity 0.25s,
    transform 0.2s,
    box-shadow 0.2s;
}
.gallery-img.js-gallery-lazy[data-src] {
  filter: blur(6px);
  opacity: 0.8;
}
.gallery-img.is-loaded {
  filter: none;
  opacity: 1;
}
.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 32px #000a;
}
.gallery-video-title {
  color: #ffc700;
  font-size: 1.7rem;
  font-weight: 800;
  text-align: center;
  margin: 2.6rem 0 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.gallery-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 2px 16px #0007;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-video-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* MAP */
.map-section {
  padding: 3rem 0;
}

.latam-map {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  opacity: 0.95;
}

.office-info {
  margin-top: 1rem;
  color: var(--muted);
}

/* CONTACT */
.contact {
  padding: 3rem 0;
  background: #0b0b0b;
}
.contact-form {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
}
.form-row {
  display: flex;
  gap: 0.75rem;
}
label {
  display: block;
  color: #fff;
}
input,
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #222;
  background: #080808;
  color: #fff;
}
.btn {
  background: var(--yellow);
  border: 0;
  padding: 0.75rem 1rem;
  color: #000;
  font-weight: 700;
  border-radius: 4px;
}
.cta {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.form-result {
  margin-top: 0.5rem;
  color: var(--accent);
}

/* Intro Section */
.intro-section {
  max-width: 1750px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 2rem auto;
  padding: 1.5rem;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2f2f2f;
}

.section-description {
  color: #2f2f2f;
  font-size: 1rem;
  line-height: 1.6;
}

.regional-label {
  color: #2f2f2f;
  margin-top: 1rem;
  font-weight: 600;
}

.country-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 0.6rem;
  padding: 0;
  align-items: center;
}

.country-links li {
  margin: 0;
}

.country-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 0.45rem 0.75rem;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-weight: 600;
  transition:
    transform 0.16s ease,
    background 0.16s ease;
}

.country-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
}

/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #070707, #040404);
  padding: 2rem 0;
  margin-top: 2.5rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-links {
  list-style: none;
  margin-top: 0.5rem;
}
.footer-links li {
  margin: 0.25rem 0;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
  }
  .hero-right {
    order: 3;
  }
  .hero-center h1 {
    font-size: 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
  }
}

.map-contact-section {
  width: 100%;
  background: #fff;
  padding: 60px 0 40px 0;
}
.map-contact-container {
  max-width: 1750px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 0 24px;
}
.map-contact-map-col {
  flex: 1.2;
  min-width: 350px;
}
.map-contact-form-col {
  flex: 1;
  min-width: 340px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 16px #0001;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.map-contact-form-col .contact-country-info {
  margin-bottom: 1.2rem;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.2rem 1rem 1.2rem 1rem;
  box-shadow: 0 2px 12px #0001;
  color: #111;
}
.map-contact-form-col .contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.4rem;
}
.map-contact-form-col .contact-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s;
}
.map-contact-form-col .contact-social-links .social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.map-contact-form-col .contact-social-links .social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.map-contact-form-col .contact-social-links .social-label {
  line-height: 1;
}
.map-contact-form-col .contact-social-links a:hover {
  background: #ffc700;
  color: #111;
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .map-contact-container {
    flex-direction: column;
    gap: 2rem;
  }
  .map-contact-map-col,
  .map-contact-form-col {
    min-width: 0;
    width: 100%;
  }
}
