/* ============================================================
   FORCE ENGINEERING - style.css
   Theme: Industrial Precision | Clean Modern Engineering
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #0d47a1;
  --primary-dark:  #002171;
  --primary-light: #1565c0;
  --accent:        #f57c00;
  --accent-light:  #ff9800;
  --dark:          #111827;
  --mid:           #374151;
  --muted:         #6b7280;
  --light-bg:      #f8fafc;
  --border:        #e5e7eb;
  --white:         #ffffff;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius:   8px;
  --radius-lg:16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --transition: .25s ease;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

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

/* ---------- Utility ---------- */
.text-accent   { color: var(--accent) !important; }
.text-primary-c{ color: var(--primary) !important; }
.bg-primary-c  { background: var(--primary) !important; }
.bg-dark-c     { background: var(--dark) !important; }

.section-pad   { padding: 80px 0; }
.section-pad-sm{ padding: 50px 0; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: .5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
}

.divider-accent {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 16px 0 28px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
  z-index: 1050;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

.navbar-brand {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.brand-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand-text .brand-tagline {
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--mid) !important;
  padding: 28px 16px !important;
  position: relative;
  transition: color var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s ease;
  border-radius: 1px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Top bar */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  letter-spacing: .04em;
  padding: 7px 0;
}

.top-bar a { color: rgba(255,255,255,.75); }
.top-bar a:hover { color: var(--white); }

/* CTA Button */
.btn-enquire {
  background: linear-gradient(135deg, var(--accent), #e65100);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 4px 14px rgba(245,124,0,.35);
  white-space: nowrap;
}

.btn-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,124,0,.45);
  filter: brightness(1.07);
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-menu-wrapper {
  position: static;
}

.mega-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-top: 3px solid var(--primary);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  padding: 32px 0 28px;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 1049;
}

.mega-dropdown.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mega-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.mega-col-head i {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

.mega-links { list-style: none; padding: 0; margin: 0; }

.mega-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: .875rem;
  color: var(--mid);
  transition: color var(--transition), padding-left var(--transition);
}

.mega-links li a::before {
  content: '›';
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.mega-links li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.mega-services-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  height: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.mega-services-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.mega-services-card .svc-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
}

.mega-services-card h6 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 5px;
}

.mega-services-card p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.mega-footer-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.mega-footer-banner p {
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  margin: 0;
}

.mega-footer-banner strong {
  color: var(--white);
  display: block;
  font-size: .95rem;
  font-family: var(--font-head);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,20,60,.82) 0%, rgba(0,40,100,.45) 55%, rgba(0,0,0,.2) 100%);
}

/* Geometric accent pattern */
.hero-section::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border: 60px solid rgba(255,255,255,.04);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,124,0,.15);
  border: 1px solid rgba(245,124,0,.4);
  color: var(--accent-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: .01em;
}

.hero-title span { color: var(--accent-light); }

.hero-desc {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .num span { color: var(--accent-light); }
.hero-stat .lbl { font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: .08em; text-transform: uppercase; margin-top: 3px; }

/* Slide Indicators */
.slide-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
  border: none;
  padding: 0;
}

.slide-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--accent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-c {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  transition: background var(--transition), transform .2s ease, box-shadow .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-c:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,71,161,.35);
}

.btn-outline-c {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.55);
  transition: background var(--transition), border-color var(--transition), transform .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-c:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #e65100);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(245,124,0,.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245,124,0,.45);
  color: var(--white);
}

/* ============================================================
   ABOUT SNIPPET
   ============================================================ */
.about-snippet { background: var(--light-bg); }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}

.about-badge-float .big { font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge-float .small { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: .92rem;
  color: var(--mid);
}

.check-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.product-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--light-bg);
}

.product-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.product-card .card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-card .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-card .card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.product-card .card-specs li {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--muted);
  padding: 4px 0;
}

.product-card .card-specs li strong { color: var(--dark); }

.product-card .card-footer-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
}

.product-card .price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.product-card .btn-quote {
  background: var(--primary);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 6px;
  border: none;
  transition: background var(--transition);
}

.product-card .btn-quote:hover { background: var(--primary-dark); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--primary-dark); }

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background .25s ease, transform .25s ease;
  height: 100%;
}

.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 18px;
}

.why-card h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   PROCESS / WORKFLOW
   ============================================================ */
.process-section { background: var(--white); }

.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}

.process-step:last-child::after { display: none; }

.step-num {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(13,71,161,.35);
}

.process-step h6 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.process-step p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light-bg); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: box-shadow .25s ease, transform .25s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.t-quote { color: var(--primary); font-size: 2.4rem; line-height: .8; margin-bottom: 12px; font-family: serif; }
.t-text { font-size: .9rem; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }

.t-author { display: flex; align-items: center; gap: 12px; }

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.t-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.t-company { font-size: .75rem; color: var(--muted); }

.t-stars { color: #f59e0b; font-size: .85rem; margin-top: 2px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 380px;
  height: 380px;
  border: 50px solid rgba(255,255,255,.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  right: 120px;
  top: -80px;
  width: 240px;
  height: 240px;
  border: 30px solid rgba(255,255,255,.05);
  border-radius: 50%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a0e1a;
  color: rgba(255,255,255,.65);
}

.footer-main { padding: 64px 0 40px; }

.footer-brand .brand-logo { width: 48px; height: 48px; font-size: 1.5rem; margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }

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

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.social-btn:hover { background: var(--primary); color: var(--white); }

.footer-heading {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  padding: 5px 0;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links li a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-links li a::before { content: '›'; color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  width: 30px;
  height: 30px;
  background: rgba(13,71,161,.35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item .info { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-contact-item .info strong { display: block; color: rgba(255,255,255,.8); font-size: .83rem; margin-bottom: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1976d2 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  border: 48px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 800;
}

.page-hero p { color: rgba(255,255,255,.7); font-size: 1rem; }

.breadcrumb-custom { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.breadcrumb-custom a, .breadcrumb-custom span {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb-custom a:hover { color: var(--accent-light); }
.breadcrumb-custom .sep { color: rgba(255,255,255,.3); }
.breadcrumb-custom .current { color: rgba(255,255,255,.85); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 16px;
}

.value-card h5 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--dark);
}

.value-card p { font-size: .83rem; color: var(--muted); margin: 0; }

.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 16px;
}

.team-card h5 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; letter-spacing: .04em; color: var(--dark); margin-bottom: 4px; }
.team-card .role { font-size: .8rem; color: var(--accent); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.team-card p { font-size: .82rem; color: var(--muted); margin: 10px 0 0; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 32px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--mid);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.category-heading {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
  padding-bottom: 10px;
  margin-bottom: 24px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-gallery .main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumb-grid img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s ease;
}

.thumb-grid img.active,
.thumb-grid img:hover { border-color: var(--primary); }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) td { background: var(--light-bg); }
.specs-table td {
  padding: 10px 14px;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.specs-table td:first-child { font-weight: 700; color: var(--dark); width: 40%; }
.specs-table td:last-child { color: var(--mid); }

.detail-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--light-bg); border: 1px solid var(--border); border-radius: 100px; padding: 5px 14px; font-size: .78rem; color: var(--mid); font-weight: 600; margin: 0 4px 8px 0; }

/* Enquiry form card */
.enquiry-card {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.enquiry-card h5 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.enquiry-card .form-control,
.enquiry-card .form-select {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .88rem;
}

.enquiry-card .form-control::placeholder { color: rgba(255,255,255,.4); }
.enquiry-card .form-control:focus,
.enquiry-card .form-select:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,124,0,.2);
  color: var(--white);
}

.enquiry-card .form-select option { background: var(--primary-dark); color: var(--white); }

.enquiry-card label { color: rgba(255,255,255,.7); font-size: .82rem; margin-bottom: 5px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-card .svc-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-card .svc-icon-lg {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
}

.service-card .svc-header h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--white);
  margin: 0;
}

.service-card .svc-body { padding: 24px 28px; }
.service-card .svc-body p { font-size: .88rem; color: var(--mid); line-height: 1.7; }

.svc-feature-list { list-style: none; padding: 0; margin: 0 0 20px; }
.svc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: .85rem;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
}
.svc-feature-list li:last-child { border: none; }
.svc-feature-list li i { color: var(--accent); margin-top: 2px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
}

.contact-form-card h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-floating-custom .form-control,
.form-floating-custom .form-select,
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: .9rem;
  color: var(--dark);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-floating-custom .form-control:focus,
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,71,161,.12);
  outline: none;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .25s ease;
}

.info-card:hover { box-shadow: var(--shadow); }

.info-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.info-card h6 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}

.info-card p { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.6; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .mega-dropdown { position: fixed; left: 0; right: 0; top: auto; overflow-y: auto; max-height: 70vh; }
  .navbar-nav .nav-link { padding: 12px 0 !important; }
  .navbar-nav .nav-link::after { display: none; }
  .about-badge-float { left: 10px; }
  .process-step::after { display: none; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 56px 0; }
  .hero-section { min-height: 80vh; }
  .hero-title { font-size: 2.2rem; }
  .product-card .card-img-wrap { height: 180px; }
  .thumb-grid { grid-template-columns: repeat(4, 1fr); }
  .product-gallery .main-img { height: 260px; }
  .contact-form-card { padding: 24px 18px; }
  .top-bar .d-none-mobile { display: none !important; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp .55s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }

/* Scroll-triggered visibility */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
