/* ============================================================
   Premier Concrete Fencing — Shared Stylesheet
   Brand: Slate Navy #2D3E50 | Forest Green #2D7A4F | White #FFFFFF
   Fonts: Montserrat (headings) | Open Sans (body)
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Core brand */
  --primary:        #2D3E50;
  --primary-dark:   #1e2c3a;
  --secondary:      #2D7A4F;
  --secondary-dark: #1F5C3A;
  --white:          #FFFFFF;
  --light:          #F4F4F2;
  --mid:            #e0e0de;
  --text:           #222222;
  --text-muted:     #555555;

  /* Aliases used in inline styles on contact/news pages */
  --light-grey:     #F4F4F2;
  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Open Sans', sans-serif;
  --font-head:      'Montserrat', sans-serif;
  --text-dark:      #222222;
  --text-body:      #555555;
  --border:         #d0d0ce;

  /* Shape & motion */
  --radius:         6px;
  --radius-lg:      12px;
  --shadow:         0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:      0 6px 28px rgba(0,0,0,0.14);
  --transition:     0.2s ease;
  --max-width:      1180px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--secondary); text-decoration: none; }
a:hover { color: var(--secondary-dark); }

ul { list-style: none; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 44px 0; }

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

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 16px;
}

.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  padding: 12px 22px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg { font-size: 16px; padding: 14px 28px; }

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: var(--white);
  transform: translateY(-1px);
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--primary);
}

/* Top utility bar */
.header-topbar {
  background: var(--primary-dark);
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-inner a {
  color: rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color var(--transition);
  font-size: 13px;
}
.topbar-inner a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.topbar-inner a:hover { color: var(--white); }

/* Main nav bar */
.header-main { padding: 14px 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* Legacy fallback — kept in case logo-mark text is ever needed */
.logo-mark {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  line-height: 1.15;
}
.logo-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.3px;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.main-nav ul li a {
  color: rgba(255,255,255,0.82);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 11px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  white-space: nowrap;
  display: block;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* Header right: WA button + hamburger */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-wa-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-wa-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-wa-btn:hover { background: #1ebe5d; color: var(--white); transform: translateY(-1px); }

/* Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #3d5166 60%, var(--secondary-dark) 100%);
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  opacity: 0.10;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 740px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.85);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  text-decoration: none;
  transition: color var(--transition);
}
.hero-phone svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-phone:hover { color: var(--white); }
.hero-phone strong { color: var(--white); font-size: 1rem; }

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--secondary);
  padding: 16px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.90;
}

/* ── Products Section ────────────────────────────────────────── */
.products-section { background: var(--light); }

.products-hd { margin-bottom: 44px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #3d5166 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-img-ph {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.30);
  font-size: 12px;
  font-style: italic;
}
.product-img-ph svg { width: 36px; height: 36px; }

.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.product-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition), gap var(--transition);
  align-self: flex-start;
}
.product-link svg { width: 16px; height: 16px; }
.product-link:hover { color: var(--secondary-dark); gap: 10px; }

/* ── Why Choose Us ───────────────────────────────────────────── */
.why-section { background: var(--white); }

.why-hd { margin-bottom: 44px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-icon svg { width: 26px; height: 26px; color: var(--white); }

.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews-section { background: var(--light); }

.reviews-hd { margin-bottom: 36px; }

.star-row {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  margin-top: 12px;
  font-size: 20px;
  color: #f5a623;
}
.star-row strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--primary);
  margin-left: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.review-qmark {
  font-size: 64px;
  line-height: 1;
  color: var(--secondary);
  opacity: 0.12;
  font-family: Georgia, serif;
  position: absolute;
  top: 12px;
  left: 20px;
  pointer-events: none;
  user-select: none;
}

.review-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  display: flex;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  position: relative;
  z-index: 1;
}

.review-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
}
.review-author span {
  font-weight: 400;
  color: var(--text-muted);
}

.reviews-foot {
  text-align: center;
  margin-top: 8px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--mid);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.google-badge svg { width: 20px; height: 20px; }
.google-badge:hover {
  border-color: var(--secondary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  color: var(--primary);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { background: var(--white); }

.faq-hd { margin-bottom: 44px; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--mid);
}
.faq-item:first-child { border-top: 1px solid var(--mid); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  transition: color var(--transition);
}
.faq-q:hover,
.faq-q.active { color: var(--secondary); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { color: var(--secondary); transition: transform 0.3s; }

.faq-q.active .faq-icon {
  background: var(--secondary);
  transform: rotate(45deg);
}
.faq-q.active .faq-icon svg { color: var(--white); }

.faq-a {
  display: none;
  overflow: hidden;
}
.faq-a.open { display: block; }

.faq-a-inner {
  padding: 0 0 20px 0;
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #3d5166 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--primary-dark);
  padding: 56px 0 0;
  color: rgba(255,255,255,0.70);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-img { width: 64px; height: 64px; }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.60);
  margin-bottom: 18px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--white); }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.60);
}
.footer-contact-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.70;
}
.footer-contact-row a {
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color var(--transition);
  word-break: break-all;
}
.footer-contact-row a:hover { color: var(--white); }
.footer-contact-row span { color: rgba(255,255,255,0.60); }

.footer-social { display: flex; gap: 10px; margin-top: 4px; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  color: var(--white);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--secondary); transform: translateY(-2px); color: var(--white); }

.footer-bot {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bot div { display: flex; gap: 20px; }
.footer-bot a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bot a:hover { color: rgba(255,255,255,0.75); }

/* ── Mobile Floating CTA Bar ─────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 10px 16px;
  gap: 8px;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.30);
}

.m-call, .m-wa, .m-email {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 6px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  transition: background var(--transition);
}
.m-call svg, .m-wa svg, .m-email svg { width: 20px; height: 20px; }

.m-call { background: var(--secondary); color: var(--white); }
.m-call:hover { background: var(--secondary-dark); color: var(--white); }

.m-wa { background: #25D366; color: var(--white); }
.m-wa:hover { background: #1ebe5d; color: var(--white); }

.m-email { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.20); }
.m-email:hover { background: rgba(255,255,255,0.20); color: var(--white); }

/* ── Blog / News Page ────────────────────────────────────────── */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.blog-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--light);
  padding: 4px 12px;
  border-radius: 20px;
}

.blog-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  margin: 32px 0 14px;
  line-height: 1.3;
}
.blog-content p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.80;
  margin-bottom: 16px;
}
.blog-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-content ul li {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 8px;
}

.blog-cta {
  background: var(--light);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.blog-cta a { color: var(--secondary); font-weight: 600; }

.coming-soon {
  text-align: center;
  font-size: 0.97rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 32px;
  background: var(--light);
  border-radius: var(--radius-lg);
  max-width: 480px;
  margin: 24px auto 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  /* Show burger menu on iPad and all tablets, hide WA button */
  .mobile-toggle { display: flex; }
  .header-wa-btn { display: none; }
  .header-main { position: relative; }
  .main-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 18px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    z-index: 800;
  }
  .main-nav.nav-open ul { display: flex; }
  .main-nav ul li a { padding: 12px 14px; font-size: 15px; }
}

@media (max-width: 900px) {
  /* About page two-col intro */
  .about-page-intro { grid-template-columns: 1fr !important; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav rules already handled by the 1024px block above.
     Only layout overrides specific to ≤768px go here. */

  /* Topbar: centre contact details on mobile */
  .topbar-inner {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* Trust bar: stack + left-align all items equally */
  .trust-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0 16px;
  }
  .trust-item {
    text-align: left;
    width: 100%;
  }

  /* Reduce hero on mobile */
  .hero { padding: 36px 0 24px !important; }
  .hero-content { padding-top: 0; padding-bottom: 0; }
  .hero h1 { margin-bottom: 10px; }
  .hero-sub { margin-bottom: 14px; }
  .section-pad { padding: 44px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  /* Tighten Why Choose gap on tablet */
  .why-section { padding-top: 20px !important; }
}

/* 600px: grid already single-column from 768px block above — no extra rules needed */

@media (max-width: 480px) {
  /* grids already single-column from 768px block */
  .cta-btns { flex-direction: column; align-items: stretch; }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.6rem); }
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
  .site-header .container { padding: 0 12px; }
  .footer-grid { gap: 28px; }
  /* Extra compact spacing on small phones */
  .hero { padding: 24px 0 16px !important; }
  .hero h1 { margin-bottom: 8px; }
  .hero-sub { margin-bottom: 10px; }
  .section-pad { padding: 32px 0; }
  .why-section { padding-top: 16px !important; }
}

/* ── Text Justification ──────────────────────────────────────────
   SCOPED to content areas only. Do NOT use a global "p { justify }"
   — it causes cascade breakage whenever new sections are added.
   To justify text in a new section, add its selector here.
   ─────────────────────────────────────────────────────────────── */
.blog-content p,
.product-body p,
.faq-a-inner,
.about-text p,
.why-card p,
.review-text,
.cta-inner p,
.footer-brand p {
  text-align: justify;
}
/* Centred and hero text always stays left/centred */
.text-center p  { text-align: center; }
.hero p         { text-align: left; }
.hero-sub       { text-align: left; }
.section-sub    { text-align: left; }

/* ── Global overflow fix (prevents horizontal scroll on mobile) ── */
html {
  overflow-x: hidden;
  width: 100%;
}
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
.container, section, header, footer, nav {
  max-width: 100%;
}
/* ── Product page text+image grid (responsive) ─────────────── */
.text-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .text-img-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .text-img-grid .text-img-img {
    order: -1;
  }
}


/* ── iOS tap highlight & touch fixes ─────────────────────────── */
.faq-q {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn, a {
  touch-action: manipulation;
}

/* .btn-secondary is defined in the Buttons section above — do not add it again here */
