/* ========================================
   PRESSTECH HYDRAULICS – Main Stylesheet
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --primary:     #c8181e;
  --primary-dark:#9e1115;
  --primary-light:#fde8e9;
  --dark:        #1e1e1e;   /* kept only for text */
  --dark-alt:    #2d2d2d;
  --mid:         #f0f0f0;   /* was navy – now light gray */
  --light-bg:    #f8f9fa;
  --white:       #ffffff;
  --gray:        #6c757d;
  --light-gray:  #e9ecef;
  --text:        #1e1e1e;
  --text-muted:  #6c757d;
  --border:      #e0e0e0;
  --shadow:      0 4px 24px rgba(200,24,30,0.07);
  --shadow-lg:   0 8px 40px rgba(200,24,30,0.12);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.3s ease;
  --font-main:   'Segoe UI', Arial, sans-serif;
  --font-heading:'Segoe UI', 'Franklin Gothic Medium', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text);
  font-weight: 700;
}

/* ---------- Utility Classes ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-red    { color: var(--primary); }
.bg-dark     { background: var(--white); color: var(--text); border: 1px solid var(--border); }
.bg-light    { background: var(--light-bg); }
.bg-mid      { background: var(--primary-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  text-decoration: none;

  /* Scale animation on click (98%) */
  transition:
    transform   0.18s cubic-bezier(.22,.68,0,1.3),
    box-shadow  0.3s ease,
    color       0.3s ease,
    border-color 0.3s ease;
}

/* Click scale down */
.btn:active { transform: scale(0.98) translateY(0) !important; }

/* ── Button Fill – background sweeps left → right ──
   A ::before pseudo fills the button on hover.      */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  z-index: 0;
  border-radius: inherit;
}
.btn > * { position: relative; z-index: 1; }
.btn > i { position: relative; z-index: 1; }

/* ── Arrow Slide – icon moves right on hover ── */
.btn i.fa-arrow-right,
.btn i.fa-chevron-right,
.btn i.fa-paper-plane,
.btn i.fa-grid-2 {
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.4);
  display: inline-block;
}
.btn:hover i.fa-arrow-right   { transform: translateX(5px); }
.btn:hover i.fa-chevron-right { transform: translateX(5px); }
.btn:hover i.fa-paper-plane   { transform: translate(4px, -4px); }
.btn:hover i.fa-grid-2        { transform: scale(1.15) rotate(8deg); }

/* ── PRIMARY button ── */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary::before { background: var(--primary-dark); }
.btn-primary:hover {
  border-color: var(--primary-dark);
  transform: translateY(-2px) scale(1.03);
  /* Glow on hover */
  box-shadow:
    0 6px 24px rgba(200,24,30,0.40),
    0 2px  8px rgba(200,24,30,0.20);
}
.btn-primary:hover::before { transform: scaleX(1); }

/* ── OUTLINE button ── */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline::before { background: var(--primary); }
.btn-outline:hover {
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(200,24,30,0.25);
}
.btn-outline:hover::before { transform: scaleX(1); }

/* ── WHITE button (on dark/CTA backgrounds) ── */
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white::before { background: rgba(255,255,255,0.15); }
.btn-white:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(255,255,255,0.25);
}
.btn-white:hover::before { transform: scaleX(1); }

/* ── OUTLINE-WHITE button (on CTA dark bg) ── */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white::before { background: rgba(255,255,255,0.12); }
.btn-outline-white:hover {
  border-color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}
.btn-outline-white:hover::before { transform: scaleX(1); }

/* ── Sizes ── */
.btn-lg { padding: 15px 40px; font-size: 1.05rem; }

.section-title { font-size: 2.2rem; margin-bottom: 12px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
}
.divider { display: none; }
@keyframes draw-line {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #fff; transition: color var(--transition); }
.top-bar a:hover { color: var(--primary-light); }
.top-bar-left, .top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar i { margin-right: 5px; color: #fff; opacity: 0.85; }

/* ══════════════════════════════════════════════
   HEADER / NAVBAR
   ══════════════════════════════════════════════ */

/* ── Sticky header ── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 28px rgba(0,0,0,0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ── Navbar row ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
  transition: padding 0.35s ease;
}
.site-header.scrolled .navbar { padding: 8px 0; }

/* ── Brand ── */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; }
.brand-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  transition: height 0.35s ease, width 0.35s ease;
}
.site-header.scrolled .brand-logo { height: 38px; width: 38px; }
.brand-text .brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  transition: font-size 0.35s ease;
}
.site-header.scrolled .brand-text .brand-name { font-size: 1.05rem; }
.brand-text .brand-tagline {
  font-size: 0.7rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.site-header.scrolled .brand-text .brand-tagline { opacity: 0; }

/* ── Desktop nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li { position: relative; }

/* Links */
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: color 0.25s ease;
  position: relative;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--primary); }

/* Underline slide: scaleX 0→1 from left */
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.4);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }

/* CTA – no underline */
.nav-cta { margin-left: 8px; }
.nav-cta > a::after { display: none; }

/* ── Dropdown ── */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  padding: 6px 0;
  z-index: 500;
  list-style: none;
  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.28s cubic-bezier(.22,.68,0,1.3), visibility 0.25s;
  overflow: hidden;
}
/* Red top bar */
.dropdown-menu::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--primary);
  margin-bottom: 4px;
}
/* Show on hover */
.nav-links > li:hover > .dropdown-menu,
.nav-links > li:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
/* Dropdown item stagger */
.dropdown-menu > li {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s ease, transform 0.24s cubic-bezier(.22,.68,0,1.3);
}
.dropdown-menu > li:nth-child(2) { transition-delay: 40ms; }
.dropdown-menu > li:nth-child(3) { transition-delay: 80ms; }
.dropdown-menu > li:nth-child(4) { transition-delay: 120ms; }
.dropdown-menu > li:nth-child(5) { transition-delay: 160ms; }
.nav-links > li:hover > .dropdown-menu > li,
.nav-links > li:focus-within > .dropdown-menu > li {
  opacity: 1;
  transform: translateX(0);
}
/* Dropdown links */
.dropdown-menu > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text);
  border-left: 3px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
}
.dropdown-menu > li > a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(.22,.68,0,1.5);
}
.dropdown-menu > li > a:hover { color: var(--primary); background: var(--primary-light); border-left-color: var(--primary); padding-left: 26px; }
.dropdown-menu > li > a:hover::before { opacity: 1; transform: scale(1); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 7px;
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 1200;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--primary-light); }
.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.3), opacity 0.2s ease, width 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   MOBILE SIDE-PANEL  (≤ 768px)
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  /* Dark overlay */
  body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1050;
  }

  /* Side panel */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 64px 0 24px;
    background: var(--white);
    border-left: 3px solid var(--primary);
    box-shadow: -6px 0 40px rgba(0,0,0,0.15);
    z-index: 1100;
    overflow-y: auto;
    /* Hidden: off-screen right */
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.38s cubic-bezier(.22,.68,0,1.15), visibility 0.38s;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  /* "MENU" header bar inside panel */
  .nav-links::before {
    content: 'MENU';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 52px;
    background: var(--primary);
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.75);
    pointer-events: none;
  }

  /* Nav items stagger in */
  .nav-links > li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.32s cubic-bezier(.22,.68,0,1.25);
  }
  .nav-links > li:nth-child(1) { transition-delay: 60ms; }
  .nav-links > li:nth-child(2) { transition-delay: 110ms; }
  .nav-links > li:nth-child(3) { transition-delay: 160ms; }
  .nav-links > li:nth-child(4) { transition-delay: 210ms; }
  .nav-links > li:nth-child(5) { transition-delay: 260ms; }
  .nav-links > li:nth-child(6) { transition-delay: 310ms; }
  .nav-links.open > li { opacity: 1; transform: translateX(0); }

  /* Item links */
  .nav-links > li > a {
    padding: 13px 20px;
    font-size: 0.95rem;
    border-radius: 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-links > li > a::after { display: none; }

  /* Inline dropdown (accordion) */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: var(--primary-light);
    display: none;
    overflow: hidden;
    transition: none;
  }
  .dropdown-menu::before { display: none; }
  .nav-links > li.dd-open > .dropdown-menu { display: block; }
  .dropdown-menu > li { opacity: 1; transform: none; }
  .dropdown-menu > li > a { padding: 10px 32px; font-size: 0.88rem; border-left: none; }
  .dropdown-menu > li > a:hover { padding-left: 40px; background: rgba(200,24,30,0.12); }
  .dropdown-menu > li > a::before { display: none; }

  /* Arrow rotation */
  .dd-arrow { transition: transform 0.28s ease; display: inline-block; }
  .nav-links > li.dd-open .dd-arrow { transform: rotate(180deg); }

  /* CTA */
  .nav-cta { padding: 16px 20px 0; margin-left: 0; }
  .nav-cta > a { width: 100%; display: block; text-align: center; }
}

/* ---------- Hero Section ---------- */
.hero {
  background: var(--white);
  color: var(--text);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--primary);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--primary-light);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title span { color: var(--primary); }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img img { width: 100%; height: 400px; object-fit: cover; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--primary-light);
}
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ---------- Features Strip ---------- */
.features-strip {
  background: var(--primary);
  padding: 22px 0;
}
.features-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}
.feature-item i { font-size: 1.3rem; }

/* ---------- Product Cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

/* ══════════════════════════════════════════════
   PRODUCT CARD – All Animations
   1. Card Lift      – translateY + shadow grow
   2. Image Zoom     – scale 1.0 → 1.08
   3. Border Reveal  – clip-path border travels around
   4. Icon Bounce    – gear icon keyframe on hover
   5. Card Tilt      – JS rotateX/Y (home-animations.js)
   ══════════════════════════════════════════════ */

/* ── Base card ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  position: relative;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition:
    transform    0.5s cubic-bezier(.22,.68,0,1.15),
    box-shadow   0.4s ease,
    border-color 0.3s ease;
}

/* ── 1. Card Lift: base hover (JS adds tilt on top) ── */
.product-card:hover {
  box-shadow:
    0 22px 52px rgba(200,24,30,0.13),
    0  6px 16px rgba(0,0,0,0.07);
  border-color: transparent;
}

/* ── 3. Border Reveal ─────────────────────────────────
   Two pseudo-elements, each a full-card border.
   ::before clips from top-left outward (top → right).
   ::after  clips from bottom-right outward (bottom → left).
   On hover both clip-paths open → full border visible.  */
.product-card::before,
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
  pointer-events: none;
  z-index: 3;
  transition: clip-path 0.5s cubic-bezier(.22,.68,0,1.1);
}
.product-card::before { clip-path: inset(0 100% 100% 0 round var(--radius-lg)); }
.product-card::after  { clip-path: inset(100% 0 0 100% round var(--radius-lg)); }

.product-card:hover::before { clip-path: inset(0 0% 0% 0   round var(--radius-lg)); }
.product-card:hover::after  { clip-path: inset(0%  0 0 0%  round var(--radius-lg)); }

/* ── 2. Image Zoom ── */
.product-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  transition: transform 0.65s cubic-bezier(.22,.68,0,1.1);
  will-change: transform;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }

/* ── 4. Icon Bounce keyframe ── */
@keyframes icon-bounce {
  0%   { transform: translateY(0)    rotate(0deg);   }
  28%  { transform: translateY(-7px) rotate(-14deg); }
  55%  { transform: translateY(-3px) rotate(8deg);   }
  75%  { transform: translateY(-5px) rotate(-4deg);  }
  100% { transform: translateY(0)    rotate(0deg);   }
}

.product-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.product-tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  border-radius: 50%;
  font-size: 0.68rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.product-card:hover .product-tag-icon {
  background: var(--primary);
  animation: icon-bounce 0.7s cubic-bezier(.22,.68,0,1.3) forwards;
}
.product-card:hover .product-tag-icon i { color: #fff; }

/* ── Card body & footer ── */
.product-card-body { padding: 16px 18px 12px; }
.product-card-body h3 { font-size: 0.97rem; margin-bottom: 6px; }
.product-card-body p  {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.55;
}
.product-card-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-range { font-size: 0.8rem; color: var(--gray); }
.product-range strong { color: var(--primary); }

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.why-card:hover { border-bottom-color: var(--primary); transform: translateY(-4px); }
.why-icon {
  width: 64px; height: 64px;
  background: rgba(200,24,30,0.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--primary);
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.why-card p  { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- Industries Strip ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}
.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.industry-card:hover { background: var(--primary); color: var(--white); transform: translateY(-4px); }
.industry-card:hover p { color: var(--white); }
.industry-card i { font-size: 2rem; color: var(--primary); margin-bottom: 10px; transition: var(--transition); }
.industry-card:hover i { color: var(--white); }
.industry-card p { font-size: 0.85rem; font-weight: 600; color: var(--text); margin: 0; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.cta-banner p  { font-size: 1.05rem; opacity: 0.9; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: rgba(200,24,30,0.1);
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-company { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--white);
  color: var(--text);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--primary);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--primary-light);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.4rem; color: var(--text); margin-bottom: 10px; }
.page-hero p  { color: var(--text-muted); font-size: 1rem; max-width: 600px; }
.breadcrumb   { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 14px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); font-weight: 600; }

/* ---------- About Page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.experience-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.experience-badge .years { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.experience-badge .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }
.about-content h2 { font-size: 2rem; margin-bottom: 16px; color: var(--text); }
.about-content p  { color: var(--text-muted); margin-bottom: 16px; }
.about-points { margin: 24px 0; }
.about-points li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 0.92rem; color: var(--text);
}
.about-points li i { color: var(--primary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ---------- Product Detail Page ---------- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--light-bg);
}
.product-detail-img img { width: 100%; height: 460px; object-fit: cover; }
.product-detail-thumbnails {
  display: flex; gap: 10px; margin-top: 12px;
}
.product-detail-thumbnails img {
  width: 80px; height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.product-detail-thumbnails img:hover,
.product-detail-thumbnails img.active { border-color: var(--primary); }

.product-detail-info h1 { font-size: 1.9rem; margin-bottom: 6px; }
.product-model { font-size: 0.85rem; color: var(--primary); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.product-detail-info > p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }

.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.spec-table th, .spec-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.spec-table th { background: var(--primary-light); font-weight: 700; color: var(--primary); width: 40%; }
.spec-table td { color: var(--text-muted); }
.spec-table tr:last-child td, .spec-table tr:last-child th { border-bottom: none; }

.product-tabs { margin-top: 50px; }
.tab-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 28px; gap: 0; }
.tab-btn {
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.features-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem;
}
.features-list li:last-child { border-bottom: none; }
.features-list li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

/* ---------- Applications Page ---------- */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.application-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.application-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.application-card-img { height: 200px; overflow: hidden; }
.application-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.application-card:hover .application-card-img img { transform: scale(1.08); }
.application-card-body { background: var(--white); padding: 22px; }
.application-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.application-card-body p  { font-size: 0.86rem; color: var(--text-muted); }

/* ---------- Quality Page ---------- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.quality-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.quality-card:hover { transform: translateY(-4px); border-bottom: 4px solid var(--primary); }
.quality-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; }
.quality-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.quality-card p  { font-size: 0.87rem; color: var(--text-muted); }

/* ---------- Contact / Enquiry ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 20px; }
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px; font-size: 0.92rem;
}
.contact-detail-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(200,24,30,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem;
}
.contact-detail-text strong { display: block; font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 2px; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(200,24,30,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  background: #d4edda; color: #155724;
  border-radius: var(--radius); padding: 14px 18px;
  font-size: 0.92rem; margin-top: 16px;
  display: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--white);
  color: var(--text-muted);
  padding: 70px 0 0;
  border-top: 4px solid var(--primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .brand-name { color: var(--primary); font-size: 1.3rem; font-weight: 800; display: block; margin-bottom: 4px; }
.footer-brand .brand-tagline { color: var(--text-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-brand p { font-size: 0.87rem; margin-top: 16px; line-height: 1.7; color: var(--text-muted); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.footer-col h4 { color: var(--text); font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: var(--text-muted); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--primary); font-size: 1rem; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.87rem; margin-bottom: 12px; color: var(--text-muted);
}
.footer-contact li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--primary); }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(200,24,30,0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---------- Misc ---------- */
.tag-chip {
  display: inline-block;
  background: rgba(200,24,30,0.10);
  color: var(--primary);
  border-radius: 30px;
  padding: 2px 9px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-right: 4px; margin-bottom: 4px;
}
.process-steps { display: flex; flex-wrap: wrap; gap: 0; counter-reset: step; }
.process-step {
  flex: 1;
  min-width: 180px;
  padding: 30px 24px;
  background: var(--white);
  text-align: center;
  position: relative;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: none; }
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 42px; height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 42px;
  margin: 0 auto 14px;
}
.process-step h4 { font-size: 0.95rem; margin-bottom: 6px; }
.process-step p  { font-size: 0.82rem; color: var(--text-muted); }

.certifications { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 30px; }
.cert-badge {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  box-shadow: var(--shadow);
  min-width: 120px;
}
.cert-badge i { display: block; font-size: 1.8rem; color: var(--primary); margin-bottom: 6px; }

/* ---------- Scroll animation helpers ---------- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   HOME PAGE – NEW SECTIONS
   (About, Services, Featured Projects,
    Decor Products / Industries)
   ======================================== */

/* ── HOME ABOUT ────────────────────────── */
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.home-about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.home-about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Red accent frame behind image */
.home-about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

/* Years badge – bottom-left */
.home-about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 28px rgba(200,24,30,0.35);
  z-index: 2;
  min-width: 90px;
}
.home-about-badge .hab-years {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.home-about-badge .hab-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.3;
}

/* ISO cert badge – top-right */
.home-about-cert {
  position: absolute;
  top: 20px;
  right: -18px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow);
  z-index: 2;
  white-space: nowrap;
}
.home-about-cert i { font-size: 1.1rem; }

/* About content */
.home-about-content .section-title { font-size: 2rem; }
.home-about-content .divider { margin-left: 0; }

.home-about-points {
  list-style: none;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-about-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.home-about-points li i {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Inline mini-stats row */
.home-about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.has-item {
  flex: 1;
  text-align: center;
}
.has-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.has-lbl {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
}
.has-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SERVICES ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* Red top-bar accent that slides in on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 0;
}
.service-card:hover::before { transform: scaleX(1); }

.sc-icon-wrap {
  width: 62px;
  height: 62px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 28px 28px 0;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.35s cubic-bezier(.22,.68,0,1.4);
}
.service-card:hover .sc-icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: scale(1.12) rotate(-8deg);
}

.sc-body {
  padding: 18px 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sc-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.sc-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}
.sc-link:hover { gap: 10px; color: var(--primary-dark); }
.sc-link i { font-size: 0.75rem; }

/* ── FEATURED PROJECTS ─────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
}
.project-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.proj-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--light-bg);
}
.proj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.project-card:hover .proj-img-wrap img { transform: scale(1.07); }

/* Industry tag pill on image */
.proj-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(200,24,30,0.4);
}

.proj-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.proj-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.35;
}
.proj-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

/* Tonnage + location row */
.proj-meta {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--light-gray);
}
.proj-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.proj-meta span i { color: var(--primary); font-size: 0.8rem; }

/* ── DECOR PRODUCTS – application tiles ── */
.decor-tiles {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

/* Responsive overrides for new sections */
@media (max-width: 1024px) {
  .home-about-grid { grid-template-columns: 1fr; gap: 50px; }
  .home-about-img-wrap { max-width: 560px; margin: 0 auto; }
  .home-about-cert  { right: 10px; }
  .home-about-badge { bottom: -18px; left: 10px; }
  .projects-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .home-about-img-wrap img { height: 320px; }
  .home-about-badge { bottom: -16px; left: 8px; padding: 12px 16px; }
  .home-about-badge .hab-years { font-size: 1.6rem; }
  .home-about-cert  { top: 12px; right: 8px; font-size: 0.76rem; padding: 8px 12px; }
  .services-grid    { grid-template-columns: 1fr; }
  .projects-grid    { grid-template-columns: 1fr; }
  .home-about-stats { flex-direction: column; gap: 16px; text-align: center; }
  .has-divider      { width: 40px; height: 1px; }
}

@media (max-width: 480px) {
  .home-about-img-wrap img { height: 250px; }
  .home-about-badge { left: 0; bottom: -14px; }
  .home-about-cert  { display: none; }
  .sc-icon-wrap     { margin: 22px 22px 0; }
  .sc-body          { padding: 14px 22px 22px; }
  .proj-img-wrap    { height: 160px; }
}
