/* ===== GMS - Greystone Manufacturing Sarl ===== */
/* Color Palette: Red #C41230, Grey #6B6B6B, Dark #2B2B2B, Light #F7F7F7 */

:root {
  --red: #C41230;
  --red-dark: #9B0E26;
  --red-light: #E8193A;
  --grey: #6B6B6B;
  --grey-light: #A8A8A8;
  --grey-bg: #F5F5F5;
  --dark: #2B2B2B;
  --white: #FFFFFF;
  --border: #E0E0E0;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 32px rgba(196,18,48,0.15);
  --radius: 8px;
  --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
}
.section-title span { color: var(--red); }
.section-subtitle {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 640px;
}
.title-bar {
  display: inline-block;
  width: 56px;
  height: 4px;
  background: var(--red);
  margin-bottom: 20px;
  border-radius: 2px;
}
.centered { text-align: center; }
.centered .section-subtitle { margin: 0 auto 48px; }

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark);
  color: var(--grey-light);
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--grey-light); transition: var(--transition); }
.topbar a:hover { color: var(--red-light); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-logo img { height: 64px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 11px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 11px; right: 11px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); font-weight: 600; }
.nav-cta { margin-left: 8px; white-space: nowrap; flex-shrink: 0; padding: 10px 20px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2B2B2B 40%, #3a1018 100%);
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/warehouse.jpeg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,18,48,0.18);
  border: 1px solid rgba(196,18,48,0.4);
  color: #ff6680;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--red-light); }
.hero-desc {
  color: #c0c0c0;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-val span { color: var(--red-light); }
.hero-stat-label {
  font-size: 0.85rem;
  color: #999;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-image-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  display: none;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--red);
  padding: 0;
}
.features-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(0,0,0,0.1); }
.feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { color: white; }
.feature-text-title {
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
}
.feature-text-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 460px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 70%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 4px solid white;
}
.about-badge-overlay {
  position: absolute;
  top: 50%; left: 58%;
  transform: translate(-50%, -50%);
  background: var(--red);
  color: white;
  text-align: center;
  padding: 20px 18px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(196,18,48,0.4);
  z-index: 2;
}
.about-badge-overlay .num { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge-overlay .label { font-size: 0.75rem; opacity: 0.85; margin-top: 4px; }
.about-checks { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }
.about-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-icon {
  width: 22px; height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg { color: white; }

/* ===== PRODUCTS ===== */
.products-bg { background: var(--grey-bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-card-img {
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 24px; }
.product-tag {
  display: inline-block;
  background: rgba(196,18,48,0.1);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.product-card-body p { color: var(--grey); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.spec-badge {
  background: var(--grey-bg);
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ===== DISTRIBUTION ===== */
.distribution-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.city-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.city-chip:hover {
  border-color: var(--red);
  background: rgba(196,18,48,0.04);
}
.city-chip svg { color: var(--red); margin: 0 auto 6px; }
.city-chip span { display: block; font-size: 0.82rem; font-weight: 600; }
.distribution-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.dist-stat {
  text-align: center;
  padding: 28px 20px;
  background: var(--grey-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.dist-stat-num { font-size: 2.4rem; font-weight: 800; color: var(--red); }
.dist-stat-label { font-size: 0.85rem; color: var(--grey); margin-top: 6px; font-weight: 500; }

/* ===== PARTNERS ===== */
.partners-bg { background: var(--dark); }
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 48px;
}
.partner-logo-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 36px;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.partner-logo-item:hover {
  background: rgba(196,18,48,0.15);
  border-color: var(--red);
  color: white;
}

/* ===== CERTIFICATIONS ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.cert-card {
  text-align: center;
  padding: 32px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.cert-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.cert-icon {
  width: 60px; height: 60px;
  background: rgba(196,18,48,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.cert-icon svg { color: var(--red); }
.cert-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.cert-card p { font-size: 0.85rem; color: var(--grey); }

/* ===== COMMUNITY ===== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.community-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.community-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.community-card-header {
  padding: 24px;
  background: var(--red);
  color: white;
}
.community-card-header svg { margin-bottom: 12px; }
.community-card-header h3 { font-size: 1.15rem; font-weight: 700; }
.community-card-body {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
}
.community-card-body p { color: var(--grey); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(196,18,48,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { color: var(--red); }
.contact-info-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-value { color: var(--grey); font-size: 0.9rem; }
.contact-form {
  background: var(--grey-bg);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--dark);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,18,48,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 56px; margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-btn:hover { background: var(--red); }
.social-btn svg { color: rgba(255,255,255,0.7); }
.footer-col-title {
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--red-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--red-light); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2B2B2B 60%, #3a1018 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/warehouse.jpeg') center/cover no-repeat;
  opacity: 0.1;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb .sep { font-size: 0.7rem; }
.breadcrumb .current { color: rgba(255,255,255,0.85); }
.page-hero h1 { font-size: 2.8rem; font-weight: 800; color: white; line-height: 1.2; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-top: 14px; max-width: 560px; }

/* ===== ABOUT PAGE SPECIFIC ===== */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 48px 0;
}
.vm-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.vm-card:hover { border-color: var(--red); box-shadow: var(--shadow-hover); }
.vm-icon {
  width: 52px; height: 52px;
  background: rgba(196,18,48,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.vm-icon svg { color: var(--red); }
.vm-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.vm-card p { color: var(--grey); line-height: 1.7; }

.team-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--grey-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.value-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.value-label { font-size: 0.85rem; color: var(--grey); margin-top: 6px; }

/* ===== PRODUCTS PAGE ===== */
.products-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--grey);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--red);
  color: var(--red);
  background: rgba(196,18,48,0.05);
}

/* ===== RESPONSIVE ===== */

/* Nav collapses to hamburger below 1024px */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 2000;
  }
  .nav-links.mobile-open a { font-size: 1.3rem; white-space: nowrap; }
  .mobile-close-btn {
    position: fixed;
    top: 20px; right: 20px;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--dark);
  }
}

@media (max-width: 1100px) {
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .team-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 340px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .distribution-intro { grid-template-columns: 1fr; gap: 32px; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .features-strip .container { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .distribution-stat-row { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 75vh; }
  .hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
  .hero-stats { gap: 32px; margin-top: 48px; }
  .topbar-item:last-child { display: none; }
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-strip .container { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-val { font-size: 1.7rem; }
  .hero { min-height: 70vh; }
  .page-hero { padding: 56px 0 40px; }
  .page-hero h1 { font-size: 1.9rem; }
  .form-row { grid-template-columns: 1fr; }
  .distribution-stat-row { grid-template-columns: 1fr; }
  .team-values { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 24px; }
  .section { padding: 48px 0; }
  .cta-banner { padding: 52px 0; }
  .cta-banner h2 { font-size: 1.6rem; }
  .about-images { height: 280px; }
  .topbar-left { flex-wrap: wrap; gap: 10px; }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--dark);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 8px;
}
.lang-toggle:hover { border-color: var(--red); color: var(--red); }
.lang-option { opacity: 0.45; transition: opacity 0.2s; }
.lang-option.active { opacity: 1; color: var(--red); }
.lang-sep { opacity: 0.3; }
