/* ══════════════════════════════════════════════════════════
   Polani Electrical Contractors — Stylesheet
   Palette: white/light-grey bg · navy blue · amber/gold CTA
   ══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --navy:      #0D1B40;
  --navy-mid:  #1A2E6A;
  --navy-lt:   #2A4094;
  --gold:      #F59E0B;
  --gold-dk:   #D97706;
  --gold-lt:   #FCD34D;
  --dark:      #1E293B;
  --mid:       #475569;
  --muted:     #64748B;
  --border:    #E2E8F0;
  --light:     #F1F5F9;
  --off-white: #F8FAFC;
  --white:     #FFFFFF;
  --success:   #16A34A;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(13,27,64,0.10);
  --shadow-lg: 0 10px 50px rgba(13,27,64,0.15);
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Utility ── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dk);
  background: rgba(245,158,11,.12);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.2;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 3rem;
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-sub { margin-bottom: 0; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,158,11,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,.5);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dk);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(13,27,64,.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; border-radius: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta { padding: .55rem 1.4rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  background: var(--off-white);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.12);
  color: var(--gold-dk);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title span { color: var(--gold-dk); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero-stat {}
.hs-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hs-label {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .3rem;
  font-weight: 500;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to right, var(--off-white), transparent);
}

/* ══════════════════════════════════════════════════════════
   INFO STRIP
   ══════════════════════════════════════════════════════════ */
.info-strip {
  background: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
}
.info-strip-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.info-strip-item i { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
.services {
  padding: 6rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon {
  width: 46px; height: 46px;
  background: rgba(245,158,11,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon i { font-size: 1.2rem; color: var(--gold-dk); }
.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.service-card-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.5rem;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--mid);
}
.service-list li i { color: var(--gold-dk); font-size: .75rem; flex-shrink: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold-dk);
  transition: gap var(--transition);
  margin-top: auto;
}
.service-link:hover { gap: .6rem; color: var(--gold-dk); }

/* ══════════════════════════════════════════════════════════
   ABOUT / MISSION SPLIT
   ══════════════════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--light);
}
.about-split-img {
  position: relative;
  overflow: hidden;
}
.about-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}
.about-split-img:hover img { transform: scale(1.04); }
.about-split-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.about-split-content p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.about-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  color: var(--mid);
  line-height: 1.5;
}
.about-bullets li i { color: var(--gold-dk); margin-top: .15rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════════════════ */
.why-us {
  padding: 6rem 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.why-icon i { font-size: 1.4rem; color: var(--navy); }
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.why-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════════════════ */
.products {
  padding: 6rem 0;
  background: var(--navy);
}
.products .section-title { color: var(--white); }
.products .section-sub { color: rgba(255,255,255,.6); }
.products .section-label { background: rgba(245,158,11,.2); color: var(--gold-lt); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.product-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
}
.product-card-img {
  height: 180px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}
.product-card-img img {
  max-height: 140px;
  object-fit: contain;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body {
  padding: 1.1rem;
}
.product-card-body h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}
.product-card-body p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   INDUSTRIES
   ══════════════════════════════════════════════════════════ */
.industries {
  padding: 5rem 0;
  background: var(--light);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.industry-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  transition: var(--transition);
}
.industry-item:hover {
  border-color: var(--gold);
  background: rgba(245,158,11,.05);
  transform: translateX(4px);
}
.industry-item i {
  width: 36px; height: 36px;
  background: rgba(245,158,11,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dk);
  font-size: .9rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact {
  padding: 6rem 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.contact-form-wrap h3 i { color: var(--gold-dk); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .92rem;
  font-family: inherit;
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { height: 110px; resize: vertical; }

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.contact-info > p {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-icon {
  width: 42px; height: 42px;
  background: rgba(13,27,64,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--navy); font-size: .95rem; }
.ci-body h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ci-body p, .ci-body a {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
}
.ci-body a:hover { color: var(--navy); text-decoration: underline; }

.team-contacts {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.team-contacts h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
  margin-bottom: 1rem;
}
.team-person {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 0;
}
.team-person:not(:last-child) { border-bottom: 1px solid var(--border); }
.team-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.team-person-info { flex: 1; }
.team-person-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.team-person-role {
  font-size: .78rem;
  color: var(--muted);
}
.team-person-tel {
  font-size: .82rem;
  color: var(--gold-dk);
  font-weight: 600;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img {
  height: 50px; width: auto;
  border-radius: 6px;
  background: var(--white);
  padding: 4px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.65;
  max-width: 300px;
}
.footer-tagline {
  font-size: .8rem;
  color: var(--gold);
  font-style: italic;
  margin-top: .5rem;
}
.footer-col h4 {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   TOAST NOTIFICATION
   ══════════════════════════════════════════════════════════ */
.toast-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.toast {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--success);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  color: var(--dark);
  min-width: 280px;
  animation: slideIn .3s ease;
}
.toast.error { border-left-color: #DC2626; }
.toast i { font-size: 1.1rem; }
.toast i.fa-check-circle { color: var(--success); }
.toast i.fa-times-circle { color: #DC2626; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
   ══════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 48vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/polani-img-8-13.jpg');
  background-size: cover;
  background-position: center;
  opacity: .18;
  transform: scale(1.06);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .7rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 600px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-card i {
  font-size: 2rem;
  color: var(--gold-dk);
  margin-bottom: 1rem;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.value-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.mv-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.mv-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mv-card p { font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.7; }

.team-section { padding: 5rem 0; background: var(--light); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-card-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1rem;
}
.team-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}
.team-card .role {
  font-size: .82rem;
  color: var(--gold-dk);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .75rem;
}
.team-card .tel {
  font-size: .9rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.team-card .tel i { color: var(--navy); font-size: .8rem; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 300px; }
  .hero-content { padding: 4rem 0; }
  .hero-stats { gap: 1.5rem; }
  .about-split { grid-template-columns: 1fr; }
  .about-split-img { min-height: 280px; }
  .about-split-content { padding: 3rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1.5rem; gap: 1.25rem; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
