/* ==========================================================================
   AGIL POWER CONTROL SYSTEM — Main Stylesheet
   Modern Industrial / Tech Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Barlow:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary:        #0a5c8a;
  --primary-dark:   #063d5e;
  --primary-light:  #1a7bb8;
  --accent:         #f07c1b;
  --accent-dark:    #c9610c;
  --accent-light:   #ffb264;

  /* Neutrals */
  --dark:           #0d1117;
  --dark-2:         #161b22;
  --dark-3:         #21262d;
  --mid:            #3d4450;
  --grey:           #6e7681;
  --light-grey:     #c9d1d9;
  --border:         #30363d;
  --surface:        #f4f6f9;
  --white:          #ffffff;

  /* Typography */
  --font-head:   'Barlow', 'Inter', sans-serif;
  --font-body:   'Inter', sans-serif;

  /* Layout */
  --max-width:   1240px;
  --gutter:      clamp(20px, 4vw, 60px);
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.14);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.20);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.28);

  /* Transitions */
  --ease:        cubic-bezier(.4,0,.2,1);
  --dur:         0.25s;
}

/* ===================== Reset & Base ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--primary-light); outline-offset: 3px; }

.wrap {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ===================== Typography ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(36px, 5.5vw, 72px); letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.8vw, 52px); letter-spacing: -0.015em; }
h3 { font-size: clamp(20px, 2.4vw, 28px); }
h4 { font-size: clamp(16px, 1.8vw, 20px); }
p { line-height: 1.75; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,124,27,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn svg, .btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover svg, .btn:hover .arrow { transform: translateX(4px); }
.btn-lg { font-size: 15px; padding: 16px 36px; }

/* ===================== Reveal ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.10); }

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

/* Logo */
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 60px; width: auto; max-width: 180px; object-fit: contain; }

/* Top Bar */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  padding: 7px 0;
}
.top-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a { color: rgba(255,255,255,.85); transition: color var(--dur); }
.top-bar a:hover { color: var(--accent-light); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item svg { flex-shrink: 0; }

/* Primary Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a[aria-current="page"] {
  color: var(--primary);
  background: rgba(10,92,138,.07);
}
.main-nav > ul > li > a .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--dur);
  opacity: .6;
}
.main-nav > ul > li:hover > a .chevron { transform: rotate(180deg); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 210px;
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(10,92,138,.18), 0 2px 8px rgba(0,0,0,.08);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  display: flex !important;
  flex-direction: column !important;
  gap: 2px;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
  filter: drop-shadow(0 -2px 2px rgba(0,0,0,.06));
}
.main-nav > ul > li:hover .nav-dropdown,
.main-nav > ul > li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  display: flex !important;
  flex-direction: column !important;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: background var(--dur), color var(--dur), border-color var(--dur), padding-left var(--dur);
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: linear-gradient(90deg, rgba(10,92,138,.07), rgba(10,92,138,.03));
  color: var(--primary);
  border-left-color: var(--accent);
  padding-left: 18px;
}
/* Active/current page item in dropdown */
.nav-dropdown a.active,
.nav-dropdown a[aria-current="page"] {
  background: rgba(10,92,138,.08);
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 600;
}
.nav-dropdown a::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--dur), background var(--dur);
}
.nav-dropdown a:hover::before,
.nav-dropdown a.active::before,
.nav-dropdown a[aria-current="page"]::before {
  transform: scale(1.4);
  background: var(--primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  transition: background var(--dur);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .top-bar-left { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn-outline-dark { display: none; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 0;
    top: 80px;
    background: var(--white);
    border-top: 2px solid var(--primary);
    padding: 20px var(--gutter) 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    z-index: 90;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
  .main-nav > ul > li > a {
    padding: 14px 8px;
    font-size: 16px;
    border-bottom: 1px solid var(--surface);
    border-radius: 0;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--surface);
    margin: 4px 0 8px;
    padding: 4px;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown a {
    padding: 10px 14px;
    border-left: 3px solid transparent;
  }
  .nav-dropdown a.active,
  .nav-dropdown a[aria-current="page"] {
    background: rgba(10,92,138,.1);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
  }
}

/* ===================== Hero Slider ===================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: var(--dark);
  display: flex;
  align-items: center;
}
@media (min-width: 1100px) { .hero { min-height: 700px; } }

.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: var(--primary-dark);
  transition: opacity .9s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,61,94,.88) 0%,
    rgba(10,92,138,.65) 50%,
    rgba(10,92,138,.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 100px;
}
.hero-content .wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; }

.hero-text { max-width: 660px; }
.hero-text .section-tag { color: var(--accent-light); }
.hero-text .section-tag::before { background: var(--accent-light); }
.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-text p {
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.8vw, 18px);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-text .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}
.hero-stat {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  min-width: 140px;
  color: var(--white);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}
.hero-stat span { font-size: 12px; color: rgba(255,255,255,.75); margin-top: 4px; display: block; }

/* Slider Controls */
.hero-controls {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 30px; height: 3px;
  background: rgba(255,255,255,.35);
  border-radius: 3px;
  transition: background var(--dur), width var(--dur);
}
.hero-dot.active { background: var(--white); width: 50px; }
.hero-arrow {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.1);
  font-size: 18px;
  transition: all var(--dur);
}
.hero-arrow:hover { background: var(--white); color: var(--primary); }

@media (max-width: 760px) {
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero-stat { min-width: 100px; padding: 14px 20px; }
  .hero-stat strong { font-size: 28px; }
  .hero-content .wrap { flex-direction: column; }
}

/* ===================== Welcome / About Section ===================== */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-header.centered { text-align: center; }
.section-header p { color: var(--grey); font-size: 16px; max-width: 560px; margin-top: 14px; }
.section-header.centered p { margin-inline: auto; }

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.welcome-media { position: relative; }
.welcome-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.welcome-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.welcome-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.welcome-badge strong { font-size: 44px; font-weight: 800; font-family: var(--font-head); line-height: 1; }
.welcome-badge span { font-size: 12px; font-weight: 600; margin-top: 6px; opacity: .9; }

.welcome-copy { padding-right: 20px; }
.welcome-copy h2 { margin-bottom: 20px; }
.welcome-copy p { color: var(--grey); margin-bottom: 16px; font-size: 15.5px; }
.welcome-features {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.welcome-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.welcome-feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(10,92,138,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 18px;
}
.welcome-feature h4 { font-size: 15px; margin-bottom: 3px; }
.welcome-feature p { font-size: 13.5px; color: var(--grey); margin: 0; }

@media (max-width: 860px) {
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-copy { padding-right: 0; order: -1; }
  .welcome-badge { bottom: -12px; right: 12px; width: 110px; height: 110px; }
  .welcome-badge strong { font-size: 34px; }
}

/* ===================== Why Choose Us ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--white);
}
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--grey); line-height: 1.7; }

@media (max-width: 860px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ===================== Counter / Stats ===================== */
.stats-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: clamp(56px, 7vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/Background/Counter-Bg.jpg') center/cover;
  opacity: .12;
  mix-blend-mode: overlay;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 28px 20px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-suffix { color: var(--accent-light); }
.stat-label { display: block; font-size: 14px; color: rgba(255,255,255,.8); margin-top: 8px; font-weight: 500; }
.stat-icon { font-size: 32px; margin-bottom: 12px; color: var(--accent-light); }

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); }
  .stat-item:nth-child(4) { border-right: none; }
}

/* ===================== Featured Products ===================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-card-body { padding: 20px; }
.product-card-body h3 { font-size: 16px; margin-bottom: 8px; }
.product-card-body p { font-size: 13px; color: var(--grey); line-height: 1.6; margin-bottom: 16px; }
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--dur);
}
.product-card-link:hover { gap: 10px; }

.section-footer { margin-top: 48px; text-align: center; }

@media (max-width: 1000px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

/* ===================== Services Section ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(10,92,138,.1);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--primary-dark); }
.service-card p { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 20px; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--mid);
}
.service-card li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(10,92,138,.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ===================== Gallery Preview ===================== */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-preview-item.featured { grid-column: span 1; grid-row: span 2; }
.gallery-preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  min-height: 220px;
}
.gallery-preview-item:hover img { transform: scale(1.06); }
.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,61,94,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-preview-item:hover .gallery-preview-overlay { opacity: 1; }
.gallery-preview-overlay span { color: var(--white); font-size: 14px; font-weight: 600; }

@media (max-width: 760px) {
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-item.featured { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 480px) { .gallery-preview-grid { grid-template-columns: 1fr; } }

/* ===================== Testimonials ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--dur);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: #f5b50a;
  font-size: 16px;
}
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-card blockquote::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 64px;
  color: rgba(10,92,138,.12);
  line-height: 1;
  position: absolute;
  top: -16px; left: -8px;
  font-style: normal;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-info strong { display: block; font-size: 14px; color: var(--dark); }
.testimonial-info span { font-size: 12.5px; color: var(--grey); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ===================== CTA Band ===================== */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: clamp(64px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: var(--accent);
  opacity: .08;
  border-radius: 50%;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); max-width: 560px; }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 12px; max-width: 480px; }
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-white {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}
.cta-band .btn-white:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

@media (max-width: 760px) { .cta-band-inner { flex-direction: column; text-align: center; } }

/* ===================== Google Map ===================== */
.map-section { background: var(--surface); }
.map-section .wrap { padding-bottom: 0; }
.map-container {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
}
.map-info-strip {
  background: var(--primary-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.map-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.15);
  color: var(--white);
}
.map-info-item:last-child { border-right: none; }
.map-info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.map-info-text strong { display: block; font-size: 13px; color: var(--accent-light); font-weight: 600; margin-bottom: 3px; }
.map-info-text span { font-size: 13.5px; color: rgba(255,255,255,.8); }

@media (max-width: 760px) {
  .map-info-strip { grid-template-columns: 1fr; }
  .map-info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .map-info-item:last-child { border-bottom: none; }
  .map-container iframe { height: 320px; }
}

/* ===================== Footer ===================== */
.site-footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.75);
}
.footer-top {
  padding: clamp(48px, 7vw, 80px) 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { margin-bottom: 16px; }
.footer-brand img { height: 54px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-about p { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 15px;
  transition: all var(--dur);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  transition: color var(--dur);
  display: flex; align-items: center; gap: 6px;
}
.footer-col li a:hover { color: var(--accent-light); }
.footer-col li a::before { content: '›'; font-size: 16px; color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-text strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-light); margin-bottom: 2px; font-weight: 600; }
.footer-contact-text span, .footer-contact-text a { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-contact-text a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span { font-size: 12.5px; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--dur); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ===================== Page Header (Inner Pages) ===================== */
.page-hero {
  background: linear-gradient(105deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: clamp(32px, 4vw, 52px) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .15;
}
.page-about .page-hero::before { background-image: url('images/Background/About-Page-Banner.jpg'); }
.page-products .page-hero::before { background-image: url('images/Background/Products-Page-Banner.jpg'); }
.page-contact .page-hero::before { background-image: url('images/Background/Contact-Page-Banner.jpg'); }
.page-gallery .page-hero::before { background-image: url('images/Background/Page-Bg.png'); }

.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .section-tag { color: var(--accent-light); }
.page-hero .section-tag::before { background: var(--accent-light); }
.page-hero h1 { color: var(--white); margin: 8px 0 10px; font-size: clamp(24px, 3.5vw, 42px); }
.page-hero p { color: rgba(255,255,255,.8); font-size: clamp(13px, 1.4vw, 15px); max-width: 480px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 14px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--white); }

/* ===================== About Page ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); position: sticky; top: 96px; }
.about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-copy > * + * { margin-top: 20px; }
.about-copy p { color: var(--grey); font-size: 15.5px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--dur) var(--ease);
}
.value-card:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card:hover h3, .value-card:hover p { color: var(--white); }
.value-card:hover .value-icon { background: rgba(255,255,255,.15); }
.value-icon {
  width: 48px; height: 48px;
  background: rgba(10,92,138,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: background var(--dur);
}
.value-card h3 { font-size: 16px; margin-bottom: 10px; }
.value-card p { font-size: 13.5px; color: var(--grey); }

.process-list { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  align-items: start;
}
.process-step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800;
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--grey); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { position: static; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* ===================== Products Page ===================== */
.product-category { padding: clamp(48px, 6vw, 80px) 0; border-bottom: 1px solid rgba(0,0,0,.07); }
.product-category:last-child { border-bottom: none; }
.category-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.category-header h2 { font-size: clamp(24px, 3vw, 36px); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.product-detail-grid.reverse .product-detail-imgs { order: 2; }
.product-detail-grid.reverse .product-detail-copy { order: 1; }

.product-detail-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.product-detail-imgs .main-img { grid-column: span 2; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.product-detail-imgs .thumb { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; }
.product-detail-imgs img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-detail-imgs img:hover { transform: scale(1.04); }

.product-detail-copy h2 { font-size: clamp(22px, 2.8vw, 32px); margin-bottom: 14px; }
.product-detail-copy p { color: var(--grey); font-size: 14.5px; margin-bottom: 16px; }
.product-specs { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.product-spec {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--mid);
}
.product-spec::before {
  content: '▸';
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
}

@media (max-width: 780px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-grid.reverse .product-detail-imgs { order: 0; }
  .product-detail-grid.reverse .product-detail-copy { order: 0; }
}

/* ===================== Gallery Page ===================== */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border: 2px solid rgba(0,0,0,.1);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  background: var(--white);
  transition: all var(--dur);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--surface);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,61,94,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .g-title { color: var(--white); font-weight: 600; font-size: 15px; }
.gallery-overlay .g-meta { color: rgba(255,255,255,.7); font-size: 12px; margin-top: 3px; }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner { max-width: 960px; width: 100%; }
.lightbox-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-3);
  max-height: 80vh;
}
.lightbox-img img { width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  margin-top: 14px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex; align-items: center; gap: 8px;
  transition: color var(--dur);
}
.lightbox-close:hover { color: var(--white); }

/* ===================== Contact Page ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
}
.contact-form-section h2 { margin-bottom: 8px; }
.contact-form-section > p { color: var(--grey); margin-bottom: 36px; }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mid);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 2px solid rgba(0,0,0,.1);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,92,138,.12);
}
.field.error input, .field.error textarea, .field.error select { border-color: #e53e3e; }
.field-error { display: none; font-size: 12px; color: #e53e3e; margin-top: 6px; font-weight: 500; }
.field.error .field-error { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.form-status.visible { display: block; }
.form-status.success { background: #f0fff4; border: 1px solid #68d391; color: #276749; }
.form-status.error-msg { background: #fff5f5; border: 1px solid #fc8181; color: #c53030; }

.contact-info-section {}
.contact-info-section h2 { margin-bottom: 24px; }
.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: box-shadow var(--dur);
}
.contact-detail-card:hover { box-shadow: var(--shadow); }
.contact-detail-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 13px; color: var(--grey); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-detail-text span, .contact-detail-text a { font-size: 15px; color: var(--dark); font-weight: 500; }
.contact-detail-text a:hover { color: var(--primary); }

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}
.contact-map iframe { display: block; width: 100%; height: 280px; border: none; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===================== FAQ Accordion ===================== */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.07); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color var(--dur);
}
.faq-q:hover { color: var(--primary); }
.faq-q .faq-icon {
  width: 28px; height: 28px;
  background: rgba(10,92,138,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--dur), background var(--dur);
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding-bottom: 22px; font-size: 14.5px; color: var(--grey); line-height: 1.75; }

/* ===================== Utility ===================== */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* ===================== Scroll to top ===================== */
.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--dur) var(--ease);
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ===================== Loader ===================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity .5s var(--ease), visibility .5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo img { height: 60px; filter: brightness(0) invert(1); }
.loader-bar {
  width: 180px; height: 3px;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  animation: loadprogress 1.2s var(--ease) forwards;
}
@keyframes loadprogress { from { width: 0; } to { width: 100%; } }

/* ===================== Whatsapp Float ===================== */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 50;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-size: 26px;
  transition: transform var(--dur), box-shadow var(--dur);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ===================== Responsive Utilities ===================== */
@media (max-width: 760px) {
  .hide-mobile { display: none !important; }
  .section { padding: 56px 0; }
}
@media (min-width: 761px) {
  .hide-desktop { display: none !important; }
}

/* ===================== Why Us — Redesigned Layout ===================== */
.why-us-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.why-us-intro-left h2 { font-size: clamp(26px, 3.2vw, 40px); line-height: 1.2; }
.why-us-intro-right > p { color: var(--grey); font-size: 15px; line-height: 1.8; }

.why-us-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-us-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}
.why-us-check {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* 6 cards — single full-width row */
.why-us-cards-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.why-card-h {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
  position: relative;
  overflow: hidden;
}
.why-card-h::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.why-card-h:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-card-h:hover::before { transform: scaleX(1); }
.why-card-h-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--white);
}
.why-card-h h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; color: var(--dark); }
.why-card-h p { font-size: 12.5px; color: var(--grey); line-height: 1.65; }

@media (max-width: 1100px) {
  .why-us-cards-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .why-us-intro { grid-template-columns: 1fr; }
  .why-us-cards-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why-us-cards-row { grid-template-columns: 1fr; }
}

/* ===================== Product card as link ===================== */
a.product-card { display: block; color: inherit; }
a.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
a.product-card .product-card-link { color: var(--primary); }

/* ===================== Quality Policy ===================== */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.quality-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 4px solid var(--primary);
  transition: box-shadow var(--dur);
}
.quality-card:hover { box-shadow: var(--shadow-lg); }
.quality-card h3 {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 14px;
}
.quality-card p {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.8;
}
@media (max-width: 700px) { .quality-grid { grid-template-columns: 1fr; } }

/* ===================== Our Team Section ===================== */
.team-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.team-intro-copy h2 { margin-bottom: 16px; }
.team-intro-copy p { font-size: 15px; color: var(--grey); line-height: 1.8; }

.team-list-box {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 28px 28px;
  border-left: 4px solid var(--accent);
}
.team-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
}
.team-bullet-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 700px) { .team-intro-grid { grid-template-columns: 1fr; } }
