/* ==========================================================================
   AGRO CENTER LLC — Stylesheet
   Mobile-first, single source of truth per selector.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  --green-dark: #1c2b24;
  --green-mid: #243c31;
  --green-alt: #1f3328;
  --green-leaf: #7aa35a;
  --gold: #d4b13d;
  --gold-light: #f6e08a;
  --text: #f5f7f3;
  --text-dim: #e7ece6;
  --border: rgba(255, 255, 255, 0.08);

  --gold-gradient: linear-gradient(135deg, var(--green-leaf), var(--gold));
  --bg-gradient: linear-gradient(140deg, var(--green-dark), var(--green-mid), var(--green-alt));

  --radius-sm: 10px;
  --radius: 22px;
  --radius-lg: 28px;

  --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 20px 45px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.7);

  --transition: 0.35s ease;
}

/* --- Reset / base -------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg-gradient);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --- Layout primitives --------------------------------------------------- */
.section {
  padding: clamp(60px, 10vw, 100px) clamp(20px, 5vw, 60px);
}

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

/* --- Header -------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 4vw, 70px);
  min-height: 72px;
  background: rgba(20, 30, 25, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 177, 61, 0.2);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(20, 30, 25, 0.95);
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.65);
  border-bottom-color: rgba(212, 177, 61, 0.25);
}

/* --- Logo ---------------------------------------------------------------- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.04);
}

.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
}

.logo-text {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --- Navigation ---------------------------------------------------------- */
.header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #f1f5f2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 40px;
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition),
    box-shadow var(--transition), color var(--transition);
}

nav a:hover,
nav a:focus-visible {
  background: var(--gold-gradient);
  color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 177, 61, 0.45);
}

/* --- Language switch ----------------------------------------------------- */
.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-switch button {
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.lang-switch button:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.lang-switch button.active {
  background: var(--gold-gradient);
  color: var(--green-dark);
  border-color: transparent;
}

/* --- Mobile menu toggle -------------------------------------------------- */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 14px;
  font-size: 22px;
  line-height: 1;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  transition: background var(--transition), color var(--transition),
    transform var(--transition);
}

.menu-toggle:hover {
  background: var(--gold-gradient);
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 18vw, 180px) clamp(20px, 5vw, 60px)
    clamp(60px, 10vw, 100px);
  background: url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1600&q=80")
    center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: clamp(30px, 6vw, 90px) clamp(25px, 6vw, 100px);
  background: linear-gradient(
    145deg,
    rgba(15, 25, 20, 0.92),
    rgba(10, 18, 14, 0.75)
  );
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(212, 177, 61, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.8),
    0 0 70px rgba(212, 177, 61, 0.25);
  text-align: center;
}

.hero-tag,
.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-label {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

.hero-content h1 {
  margin-bottom: 22px;
  font-size: clamp(28px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.65);
}

.hero-content p {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: clamp(14px, 1.8vw, 19px);
  line-height: 1.7;
  font-weight: 500;
  color: var(--text-dim);
}

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

/* --- Buttons ------------------------------------------------------------- */
.btn-main,
.btn-outline,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: transform var(--transition), background var(--transition),
    box-shadow var(--transition);
}

.btn-main {
  background: var(--gold-gradient);
  color: var(--green-dark);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 177, 61, 0.35);
}

.btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(212, 177, 61, 0.8);
}

.btn-outline,
.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover,
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* --- Section + products titles ------------------------------------------ */
.section-title,
.products-title {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-title::after,
.products-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 16px auto 0;
  background: linear-gradient(
    90deg,
    var(--green-leaf),
    var(--gold),
    var(--green-leaf)
  );
  background-size: 200%;
  border-radius: 5px;
  animation: lineGlow 3s linear infinite;
}

@keyframes lineGlow {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

/* --- Shared card shimmer ------------------------------------------------- */
.why-card,
.partner,
.contact-card,
.leader-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.why-card::before,
.partner::before,
.contact-card::before,
.leader-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(212, 177, 61, 0.22),
    transparent
  );
  transform: rotate(25deg);
  transition: top 0.8s ease, left 0.8s ease;
  pointer-events: none;
}

.why-card:hover,
.partner:hover,
.contact-card:hover,
.leader-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.75),
    0 0 35px rgba(212, 177, 61, 0.35);
}

.why-card:hover::before,
.partner:hover::before,
.contact-card:hover::before,
.leader-card:hover::before {
  top: -40%;
  left: -40%;
}

/* --- Why cards ----------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.why-card {
  padding: clamp(28px, 4vw, 45px) clamp(22px, 3vw, 35px);
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(212, 177, 61, 0.12);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  font-size: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45),
    0 0 15px rgba(212, 177, 61, 0.2);
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* --- Partners ------------------------------------------------------------ */
.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 40px;
  align-items: center;
}

.partner {
  padding: clamp(26px, 3.5vw, 35px) clamp(20px, 3vw, 30px);
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65),
    0 0 20px rgba(212, 177, 61, 0.15);
}

/* --- Products grid ------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.product-card {
  padding: clamp(24px, 3vw, 35px) clamp(18px, 2.5vw, 25px);
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 177, 61, 0.12);
  opacity: 1;
  transform: scale(1);
  transition: transform var(--transition), box-shadow var(--transition),
    opacity var(--transition);
}

.product-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.75),
    0 0 35px rgba(212, 177, 61, 0.35);
}

.product-card.hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
}

.product-card img {
  width: 100%;
  height: clamp(180px, 22vw, 230px);
  object-fit: contain;
  cursor: pointer;
  transition: transform var(--transition);
}

.product-card img:hover {
  transform: scale(1.06);
}

.product-card h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

/* --- Product filter ------------------------------------------------------ */
.product-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.product-filter button {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  transition: transform var(--transition), background var(--transition),
    box-shadow var(--transition), color var(--transition);
}

.product-filter button:hover,
.product-filter button.active {
  background: var(--gold-gradient);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 177, 61, 0.7),
    0 10px 25px rgba(0, 0, 0, 0.5);
}

/* --- Stats --------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
  text-align: center;
}

.stat {
  padding: clamp(28px, 3.5vw, 45px);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(212, 177, 61, 0.35);
}

.stat h3 {
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat p {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.9;
}

/* --- Leadership / about -------------------------------------------------- */
.leadership-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.leaders {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.leader-card {
  width: 100%;
  max-width: 280px;
  padding: clamp(30px, 4vw, 45px) clamp(24px, 3vw, 35px);
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 26px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 177, 61, 0.15);
}

.leader-card img {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  border: 4px solid rgba(212, 177, 61, 0.5);
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.leader-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}

.leader-card span {
  font-size: 14px;
  opacity: 0.8;
}

.about-company {
  padding: clamp(26px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-company h3 {
  margin-bottom: 16px;
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-company p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  opacity: 0.95;
}

/* --- Contact ------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 35px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 177, 61, 0.15);
}

.contact-card h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

.contact-card p {
  font-size: 15px;
  line-height: 1.6;
}

.contact-card p + p {
  margin-top: 4px;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(212, 177, 61, 0.22);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

/* --- Modal (product image) ---------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.85);
}

.modal.open {
  display: flex;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
}

/* --- WhatsApp floating button ------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(37, 211, 102, 0.7);
}

/* --- Footer -------------------------------------------------------------- */
footer {
  padding: 40px clamp(20px, 5vw, 60px);
  margin-top: 60px;
  background: #111;
  color: var(--text);
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo .logo-text {
  font-size: 22px;
}

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

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.footer-links a,
.footer-links p {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* --- Reveal animation --------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* ==========================================================================
   Mobile layout (< 768 px)
   ========================================================================== */
@media (max-width: 767.98px) {
  .header {
    flex-wrap: wrap;
    padding: 12px 18px;
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .lang-switch {
    order: 2;
  }

  .header nav {
    order: 4;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 8px 0 4px;
  }

  .header nav.active {
    display: flex;
  }

  nav a {
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-main,
  .btn-outline,
  .btn-secondary {
    width: 100%;
  }

  .partners-logos {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .leaders {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .whatsapp-fab {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}

/* ==========================================================================
   Tablet (≥ 768 px)
   ========================================================================== */
@media (min-width: 768px) {
  .header nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
  }

  .map-wrapper iframe {
    height: 380px;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }

  .footer-links {
    flex: 1;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

/* ==========================================================================
   Desktop (≥ 1024 px)
   ========================================================================== */
@media (min-width: 1024px) {
  .leadership-layout {
    grid-template-columns: 420px 1fr;
    gap: 60px;
  }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
