/* ============================================================
   Pinakin Power Solar — Main Stylesheet
   ============================================================ */

/* 1. Variables */
:root {
  --navy:        #0d1b2e;
  --navy-mid:    #162840;
  --navy-light:  #1e3a5f;
  --orange:      #f97316;
  --orange-dark: #ea6c0a;
  --amber:       #d97706;
  --green:       #16a34a;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --light:       #f1f5f9;
  --text:        #1e293b;
  --muted:       #64748b;
  --border:      #e2e8f0;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.16);
  --transition:  .3s ease;
  --max-w:       1200px;
  --max-w-xl:    1360px;
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
input, textarea, select, button { font: inherit; }

/* 3. Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem,   5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem);  }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* 4. Layout */
.container    { max-width: var(--max-w);    margin: 0 auto; padding: 0 24px; }
.container-xl { max-width: var(--max-w-xl); margin: 0 auto; padding: 0 24px; }
.section-pad    { padding: 88px 0; }
.section-pad-sm { padding: 64px 0; }
.bg-light  { background: var(--off-white); }
.bg-navy   { background: var(--navy); }
.text-center { text-align: center; }

/* 5. Section Headers */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-title--white { color: var(--white); }
.section-rule {
  width: 52px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 0 32px;
}
.section-rule--center { margin-left: auto; margin-right: auto; }
.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 48px;
}
.section-intro--center { margin-left: auto; margin-right: auto; }

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover  { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,.35); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover  { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover     { background: var(--navy-light); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* 7. Badges */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 99px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
}
.badge-orange { background: #fff7ed; color: var(--orange-dark); border: 1px solid #fed7aa; }
.badge-green  { background: #f0fdf4; color: var(--green);       border: 1px solid #bbf7d0; }
.badge-blue   { background: #eff6ff; color: #1d4ed8;            border: 1px solid #bfdbfe; }

/* ============================================================
   7b. Logo
   ============================================================ */

/*
 * The Pinakin Solar logo has a white background (not transparent PNG).
 * Solution: display it inside a compact white rounded pill so the white bg
 * looks intentional. Clean, professional, works on any header colour.
 */
.site-logo-wrap {
  flex-shrink: 0;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  height: 80px;
  max-width: 240px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  transition: box-shadow var(--transition);
}
.site-logo-wrap:hover { box-shadow: 0 4px 14px rgba(0,0,0,.28); }

/* Custom logo link wrapper */
.site-logo-wrap .custom-logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 0;
}

/* The actual logo image */
.site-logo-wrap .custom-logo,
.site-logo__img {
  max-height: 68px !important;
  height: 68px !important;
  width: auto !important;
  max-width: 210px !important;
  display: block;
  object-fit: contain;
  filter: none;
}

/* Footer logo */
.footer-logo-wrap {
  border-radius: 8px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  max-width: 220px;
  overflow: visible;
  background: rgba(255,255,255,0.08);
}
.footer-logo-wrap .custom-logo-link { display: flex; align-items: center; line-height: 0; }
.footer-logo-wrap .custom-logo,
.footer-logo-wrap .site-logo__img {
  max-height: 90px !important;
  height: 90px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* ============================================================
   8. HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.primary-nav a {
  padding: 8px 14px;
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--white); background: rgba(255,255,255,.1); }
.header-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .85rem;
  transition: var(--transition);
}
.header-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.header-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   9. HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) {
  background-image: linear-gradient(135deg, #0a2a1a 0%, #1a5c2a 40%, #0d3b55 100%);
}
.hero-slide:nth-child(2) {
  background-image: linear-gradient(135deg, #0d1b2e 0%, #1e3a5f 50%, #2d4a6f 100%);
}
.hero-slide:nth-child(3) {
  background-image: linear-gradient(135deg, #1a1200 0%, #4a3000 40%, #7a4a00 100%);
}
/* When ACF image is set, the inline style overrides the gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,27,46,.85) 0%,
    rgba(13,27,46,.65) 60%,
    rgba(13,27,46,.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.4);
  color: #fed7aa;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-title span { color: var(--orange); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 12px;
  max-width: 560px;
}
.hero-location {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-location svg { width: 14px; height: 14px; opacity: .7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
  border: none;
}
.hero-dot.active { width: 28px; background: var(--orange); }

/* ============================================================
   10. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy-mid);
  border-top: 3px solid var(--orange);
  padding: 28px 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 140px;
  padding: 8px 12px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================================
   11. WELCOME SECTION
   ============================================================ */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: center;
}
.welcome-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}
.welcome-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.welcome-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}
.welcome-image-badge strong { display: block; font-size: 1.6rem; font-weight: 900; line-height: 1; }
.welcome-image-badge span   { font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; opacity: .85; }
.welcome-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255,255,255,.25);
  gap: 12px;
}
.welcome-image-placeholder svg { width: 64px; height: 64px; }
.welcome-image-placeholder p   { font-size: .8rem; margin: 0; }
.welcome-body {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
}
.welcome-body strong { color: var(--navy); }

/* ============================================================
   12. SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: #fff7ed;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-icon svg { width: 28px; height: 28px; color: var(--orange); }
.service-card__img {
  margin: -32px -28px 16px;
  height: 170px;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--navy);
  line-height: 1.35;
}
.service-meta { margin-top: auto; padding-top: 12px; }
.service-spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  font-size: .82rem;
}
.service-spec:last-child { border-bottom: none; }
.service-spec__key   { color: var(--muted); }
.service-spec__value { font-weight: 600; color: var(--navy); }
.service-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: var(--orange-dark);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.on-request {
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
  margin-top: auto;
  padding-top: 12px;
}

/* ============================================================
   13. PRODUCTS SECTION
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card--featured {
  grid-column: span 1;
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 8px 32px rgba(249,115,22,.12);
  position: relative;
}
.product-card--featured::before {
  content: 'Full Specs';
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 99px;
  z-index: 2;
}
.product-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.06); }
.product-thumb svg { width: 48px; height: 48px; color: rgba(255,255,255,.2); }
.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1rem; margin-bottom: 8px; }
.product-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: 4px;
}
.product-moq {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.product-specs { margin-bottom: auto; }
.product-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: .8rem;
}
.product-spec-row:last-child { border-bottom: none; }
.product-spec-row .key   { color: var(--muted); }
.product-spec-row .value { font-weight: 600; color: var(--navy); }
.product-enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding: 10px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.product-enquire:hover { background: var(--navy-light); }
.product-on-request {
  text-align: center;
  padding: 24px 0 8px;
  color: var(--muted);
  font-size: .875rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.product-on-request svg { width: 32px; height: 32px; color: var(--border); }

/* ============================================================
   14. WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.why-icon svg { width: 34px; height: 34px; color: var(--orange); }
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--navy);
}
.why-card p { font-size: .93rem; color: #4b5563; line-height: 1.75; margin: 0; }

/* ============================================================
   15. CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(249,115,22,.08);
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(249,115,22,.05);
}
.cta-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip__text h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 6px;
}
.cta-strip__text p { color: rgba(255,255,255,.65); font-size: .95rem; margin: 0; }
.cta-strip__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.cta-contact-item svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.cta-contact-item div span { display: block; font-size: .7rem; color: rgba(255,255,255,.55); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1px; }
.cta-contact-item div strong { font-size: .95rem; }

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer {
  background: #07111f;
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--orange);
}
.footer-about-text {
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,.6);
}
.footer-social:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }
.footer-links li + li { margin-top: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item svg {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item div .label {
  display: block; font-size: .7rem; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2px;
}
.footer-contact-item div .value {
  font-size: .875rem; color: rgba(255,255,255,.75);
}
.footer-contact-item div .value a { transition: color var(--transition); }
.footer-contact-item div .value a:hover { color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p, .footer-bottom a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a:hover { color: rgba(255,255,255,.65); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   17. PAGE HERO MINI (inner pages)
   ============================================================ */
.page-hero-mini {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
/* Decorative blobs */
.page-hero-mini::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(249,115,22,.07);
  pointer-events: none;
}
.page-hero-mini::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-mini--light-next::after { background: var(--off-white); }
.page-hero-mini h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 14px;
}
.page-hero-eyebrow {
  opacity: .85;
  margin-bottom: 12px;
}
.page-hero-sub {
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.pps-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: 10px;
}
.pps-breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.pps-breadcrumb a:hover { color: var(--white); }
.pps-breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ============================================================
   18. ABOUT PAGE
   ============================================================ */
.get-to-know-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.factsheet-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.factsheet-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.factsheet-table__head {
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.factsheet-table table {
  width: 100%;
  border-collapse: collapse;
}
.factsheet-table td {
  padding: 9px 14px;
  font-size: .83rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}
.factsheet-table tr:last-child td { border-bottom: none; }
.factsheet-table td:first-child { color: var(--muted); width: 45%; }
.factsheet-table td:last-child   { font-weight: 600; color: var(--navy); }
.factsheet-table tr:nth-child(even) td { background: var(--off-white); }
.clientele-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.clientele-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}

/* ============================================================
   19. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-detail-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition);
}
.contact-detail:hover { box-shadow: var(--shadow); }
.contact-detail__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: #fff7ed;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail__icon svg { width: 22px; height: 22px; color: var(--orange); }
.contact-detail__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: .93rem;
  color: var(--text);
  line-height: 1.55;
}
.contact-detail__value a { transition: color var(--transition); }
.contact-detail__value a:hover { color: var(--orange); }
.address-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px;
  font-style: italic;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.contact-form-wrap > p {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-group .required { color: var(--orange); }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: .9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-alert {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: .875rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-alert--success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.form-alert--error   { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.form-alert svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}

/* ── Hamburger → ✕ animation (all screen sizes) ── */
.nav-toggle span {
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   20. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .factsheet-tables { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .welcome-grid     { grid-template-columns: 1fr; gap: 40px; }
  .welcome-image-wrap { aspect-ratio: 16/9; } /* shorter image when stacked */
  .get-to-know-grid { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .contact-layout   { grid-template-columns: 1fr; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .stats-bar__inner { justify-content: center; }
  .stat-item + .stat-item::before { display: none; }
}

@media (max-width: 768px) {
  .section-pad    { padding: 60px 0; }
  .section-pad-sm { padding: 44px 0; }

  /* Header / nav */
  .primary-nav,
  .header-cta { display: none; }
  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
  }
  .primary-nav.open a { font-size: 1.25rem; padding: 12px 24px; }
  .nav-toggle { display: flex; z-index: 1000; position: relative; }

  /* Page hero */
  .page-hero-mini { padding: 100px 0 60px; }
  .page-hero-sub  { font-size: .95rem; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }

  /* Service card: tighter padding so image bleed stays correct */
  .service-card { padding: 24px 20px; }
  .service-card__img { margin: -24px -20px 14px; }

  .hero-actions .btn:last-child { display: none; }
  .contact-form-wrap { padding: 24px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container-xl { padding: 0 16px; }

  .stats-bar__inner { flex-direction: column; align-items: stretch; }
  .stat-item        { flex-direction: row; justify-content: space-between; min-width: auto; }

  .hero { min-height: 520px; height: 90vh; }

  /* Smaller page hero */
  .page-hero-mini { padding: 88px 0 48px; }
  .page-hero-mini h1 { font-size: 1.85rem; }

  /* Even tighter service cards on tiny phones */
  .service-card { padding: 20px 16px; }
  .service-card__img { margin: -20px -16px 12px; }

  /* Stack CTA strip actions */
  .cta-strip__actions { flex-direction: column; width: 100%; }
  .cta-strip__actions .btn { text-align: center; justify-content: center; }
}
