/* ============================================
   Global Elementum Enterprises LLP — Static Site
   Brand: #1E3A8A navy · #F97316 orange · #64748B slate
   Font: Inter (clean industrial-grade sans)
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');


:root {
  --navy: #1E3A8A;
  --navy-dark: #172e6f;
  --navy-light: #3b5bb8;
  --orange: #F97316;
  --orange-dark: #ea5e0c;
  --orange-light: #fb923c;
  --slate: #64748B;
  --slate-dark: #475569;
  --slate-light: #94a3b8;
  --tint-orange: #FFF7ED;
  --tint-blue: #EFF6FF;
  --offwhite: #F8FAFC;
  --border: #E2E8F0;
  --border-soft: #F1F5F9;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --shadow-orange: 0 8px 24px rgba(249, 115, 22, 0.25);
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4, h5 {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.d-none-lg{
  display: none;
}
.d-none-sm{
  display: block;
}
/* ============ TOP BAR ============ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  padding: 9px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
a.nav-cta.d-none-lg {
    display: none;
}
.topbar a:hover { color: white; }
.topbar-contacts { display: flex; gap: 8px; flex-wrap: wrap; text-align: center;}
.topbar-actions { display: flex; gap: 8px; text-align:center; }
@media (max-width: 700px) { .d-none-sm .topbar { display: none; } 
   
}
.d-none-lg{
  display: block;
}
/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.logo img { height: 52px; width: auto; }
.logo-fallback {
  display: inline-block;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links > li > a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--orange); }
.nav-links > li > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--orange-dark); color: white !important; box-shadow: var(--shadow-orange); }
.nav-cta::after { display: none !important; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle svg { width: 26px; height: 26px; color: var(--navy); }
@media (max-width: 1024px) {
   .d-none-sm {
    display: none;
}
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: white;
    padding: 18px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open > li > a { display: block; padding: 14px 8px; font-size: 16px; border-bottom: 1px solid var(--border-soft); }
  .nav-links.open .nav-cta { text-align: center; margin-top: 10px; border: none; }
  .nav-links.open > li > a.active::after { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.btn-secondary { background: var(--navy); color: white; }
.btn-secondary:hover { background: var(--navy-dark); color: white; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-ghost-light { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); color: white; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2766 60%, #1e3a8a 100%);
  color: white;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 30%, rgba(249,115,22,0.25) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(59,91,184,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .d-none-sm {
    display: none;
} .hero-grid { grid-template-columns: 1fr; padding: 60px 0; gap: 40px; text-align: center; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.15);
  color: #fdba74;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(249,115,22,0.3);
}
.hero-eyebrow::before {
  content: "";
  width: 7px; height: 7px; background: var(--orange); border-radius: 50%;
}
.hero h1 {
  color: white;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  margin-bottom: 22px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.hero h1 .accent { color: var(--orange-light); }
.hero p.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.6;
}
@media (max-width: 900px) { .hero p.lead { margin-left: auto; margin-right: auto; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
@media (max-width: 900px) { .hero-actions { justify-content: center; } }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .num {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero-stat .label { font-size: 13.5px; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap {
  position: relative;
 
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
}
.hero-image-wrap img {
  border-radius: var(--radius-lg);
  max-width: 100%;
}
.hero-badge {
  position: absolute;
  background: white;
  color: var(--navy);
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge.iso { top: -16px; left: -20px; }
.hero-badge.delivery { bottom: -16px; right: -20px; }
.hero-badge .icon-wrap {
  width: 36px; height: 36px;
  background: var(--tint-orange);
  color: var(--orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============ PAGE HERO ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 50%, rgba(249,115,22,0.18) 0%, transparent 40%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-light);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.page-hero .eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--orange);
}
.page-hero h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 700px;
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,0.35); }

/* ============ SECTIONS ============ */
section { padding: 88px 0; }
.section-tint { background: var(--offwhite); }
.section-orange-tint { background: var(--tint-orange); }
.section-dark { background: var(--navy); color: rgba(255,255,255,0.85); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: white; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.section-head .eyebrow::before, .section-head .eyebrow::after {
  content: ""; width: 22px; height: 2px; background: var(--orange);
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.section-head p { font-size: 1.08rem; color: var(--slate); }

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head-row h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 8px; }
.section-head-row .sub { color: var(--slate); max-width: 520px; }
.link-arrow {
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-arrow:hover { gap: 10px; color: var(--orange-dark); }

/* ============ CATEGORY CARDS ============ */
.category-grid {
  display: grid;
 grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card {
  background: white;
  border: 1px solid var(--border);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.category-card:hover::before { transform: scaleX(1); }
.category-card-icon {
  width: 88px;
  height: 88px;
   background:#ffffff;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: background 0.3s;
}
.category-card:hover .category-card-icon { }
.category-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.category-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.category-card p { color: var(--slate); font-size: 0.95rem; }

/* ============ PRODUCT CARDS ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.product-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--offwhite);
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: white;
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--navy);
  line-height: 1.35;
}
.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 13.5px;
  color: var(--slate);
  flex: 1;
}
.product-specs li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.product-specs li::before {
  content: "";
  flex-shrink: 0;
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 7px;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  gap: 12px;
}
.product-price { font-weight: 700; color: var(--navy); font-size: 1rem; }
.product-price .unit { font-size: 12px; color: var(--slate); font-weight: 500; }

/* ============ FEATURE CARDS (Why Us) ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-orange);
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.feature-card p { color: var(--slate); }

/* ============ INDUSTRY GRID ============ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-tile {
  background: white;
  border: 1px solid var(--border);
  padding: 26px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.industry-tile:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-3px);
}
.industry-tile:hover h4 { color: white; }
.industry-tile:hover .industry-tile-icon { background: rgba(249,115,22,0.2); color: var(--orange-light); }
.industry-tile-icon {
  width: 52px; height: 52px;
  background: var(--tint-blue);
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.industry-tile h4 { font-size: 1rem; margin: 0; transition: color 0.25s; }

/* ============ BRAND LOGOS ============ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.brand-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.brand-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.brand-logo {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.brand-logo img {
  max-height: 60px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.brand-card:hover .brand-logo img { filter: grayscale(0%); }
.brand-card h4 { font-size: 1rem; margin-bottom: 4px; }
.brand-card p { color: var(--slate); font-size: 13px; }

/* ============ STATS ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.stat-num {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label { font-weight: 500; color: rgba(255,255,255,0.78); font-size: 14px; }
.stats-light .stat-num { color: var(--orange); }
.stats-light .stat-label { color: var(--slate); }

/* ============ CHIPS ============ */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.chip {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.chip:hover { border-color: var(--orange); color: var(--orange); }
.chip.active { background: var(--orange); color: white; border-color: var(--orange); }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  text-align: center;
  padding: 70px 32px;
  border-radius: var(--radius-xl);
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(249,115,22,0.2) 0%, transparent 45%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto 32px; font-size: 1.1rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.cta-foot-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
}
.cta-foot-meta span { display: inline-flex; align-items: center; gap: 8px; }
.cta-foot-meta span::before {
  content: "";
  width: 6px; height: 6px; background: var(--orange); border-radius: 50%;
}

/* ============ SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-reverse > div:first-child { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse > div:first-child { order: 0; }
   .category-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}
}
.split-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.split-content .eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); }
.split-content h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  margin-bottom: 18px;
  line-height: 1.2;
}
.split-content p { font-size: 1.02rem; margin-bottom: 16px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange); transform: translateY(-3px); }
.contact-card-icon {
  width: 56px; height: 56px;
  background: var(--tint-orange);
  color: var(--orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.contact-card .item-value { color: var(--navy); font-weight: 600; }
.contact-card .item-value a { color: var(--navy); }
.contact-card .item-value a:hover { color: var(--orange); }
.contact-card .item-sub { color: var(--slate); font-size: 13.5px; margin-top: 6px; }

/* ============ FORM ============ */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .contact-form-wrap { grid-template-columns: 1fr; gap: 40px; } }
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 18px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--navy);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-error { color: #dc2626; font-size: 13px; margin-top: 6px; display: none; }
.form-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: none;
  font-weight: 500;
}

.contact-info-block { margin-bottom: 28px; }
.contact-info-block h3 { font-size: 1.05rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.contact-info-block h3 .icon-wrap {
  width: 32px; height: 32px;
  background: var(--tint-orange);
  color: var(--orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info-block p { color: var(--slate); margin-left: 42px; }
.contact-info-block a { color: var(--navy); font-weight: 500; }

/* ============ MAP PLACEHOLDER ============ */
.map-block {
  background: linear-gradient(135deg, var(--tint-blue) 0%, white 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.map-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(30,58,138,0.08) 0%, transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(249,115,22,0.08) 0%, transparent 40%);
}
.map-block-content { position: relative; z-index: 1; }
.map-pin {
  width: 56px; height: 56px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-orange);
}

/* ============ TIMELINE ============ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px; top: 6px;
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px white, 0 0 0 5px var(--border);
}
.timeline-year {
  font-weight: 800;
  color: var(--orange);
  font-size: 13.5px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.timeline-item h4 { font-size: 1.15rem; margin-bottom: 6px; }

/* ============ FOOTER ============ */
.site-footer {
    background: #1e293b;
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 28px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-col h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col > ul a { color: rgba(255,255,255,0.65); font-size: 14.5px; transition: color 0.2s, padding 0.2s; }
.footer-col > ul a:hover { color: var(--orange-light); padding-left: 4px; }

.footer-about p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-size: 14.5px;
}

.footer-contact-list { gap: 14px !important; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  line-height: 1.5;
}
.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--orange-light);
}
.footer-contact-list li a {
  color: rgba(255,255,255,0.78) !important;
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer-contact-list li a:hover { color: white !important; padding-left: 0 !important; }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: white;
  border-radius: 50%;
  transition: all 0.25s;
  border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}

/* ============ ROLES ============ */
.roles-list { display: flex; flex-direction: column; gap: 14px; max-width: 880px; margin: 0 auto; }
.role {
  background: white;
  border: 1px solid var(--border);
  padding: 22px 26px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition: all 0.2s;
}
.role:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.role-info h4 { color: var(--navy); margin-bottom: 4px; font-size: 1.05rem; }
.role-info .meta { color: var(--slate); font-size: 13.5px; }

/* ============ FEATURE LIST ============ */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--slate-dark);
}
.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  background: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

/* ============ HELPERS ============ */
.text-center { text-align: center; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============ 404 ============ */
.not-found {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.not-found-num {
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ FLOATING ACTIONS ============ */
.float-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.float-action {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.2s;
}
.float-action:hover { transform: scale(1.08); color: white; }
.float-action.whatsapp { background: #25D366; }
.float-action.call { background: var(--orange); }
