/* =============================================================
   IGLOO BUILDING MATERIALS — Main Stylesheet
   Tiruchirappalli, Tamil Nadu, India | Est. 2009
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================= */
:root {
  --primary:        #0095DA;
  --primary-dark:   #0075B3;
  --primary-light:  #33B8EC;
  --primary-pale:   #E6F4FB;

  --secondary:      #0D1B2A;
  --secondary-mid:  #162436;
  --secondary-light:#1E3347;
  --secondary-pale: #EDF2F7;

  --accent:         #5DD3F3;
  --accent-dark:    #2BBCE8;
  --accent-light:   #A0E8FF;
  --accent-pale:    #E6F8FF;

  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --bg-light:   #F2F6FA;
  --border:     #DDE6EF;
  --border-light:#EEF3F8;
  --mid-gray:   #B0BEC8;
  --gray:       #7A8B99;
  --dark-gray:  #455565;
  --text:       #0D1B2A;
  --text-light: #4A5E72;
  --text-muted: #8899AA;

  --font-head:  'Montserrat', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --nav-h: 80px;
  --container: 1240px;
  --container-wide: 1400px;

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 999px;

  --sh-xs: 0 1px 4px rgba(0,0,0,.06);
  --sh-sm: 0 3px 12px rgba(0,0,0,.09);
  --sh-md: 0 6px 28px rgba(0,0,0,.11);
  --sh-lg: 0 14px 50px rgba(0,0,0,.14);
  --sh-xl: 0 24px 80px rgba(0,0,0,.18);
  --sh-blue:    0 8px 32px rgba(0,149,218,.35);
  --sh-orange:  0 8px 32px rgba(0,149,218,.35);
  --sh-colored: 0 8px 32px rgba(0,149,218,.35);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --t-fast:   150ms var(--ease-out);
  --t-normal: 300ms var(--ease-out);
  --t-slow:   600ms var(--ease-out);

  --z-base:   1;
  --z-nav:    100;
  --z-loader: 9999;
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.2; }

/* =============================================================
   3. UTILITIES
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: var(--container-wide); }
.section-pad { padding: 100px 0; }
.section-pad--lg { padding: 130px 0; }
.section-pad--sm { padding: 64px 0; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-white   { color: var(--white); }
.bg-dark      { background: var(--secondary); }
.bg-light     { background: var(--bg-light); }
.bg-white     { background: var(--white); }

.flex   { display: flex; }
.grid   { display: grid; }
.items-center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* Overflow clip for animations */
.clip { overflow: hidden; }
.will-animate { opacity: 0; }

/* Section heading */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title span { color: var(--primary); }
.section-title--white { color: var(--white); }
.section-title--white span { color: var(--accent); }

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.75;
}
.section-desc--center { margin: 0 auto 56px; text-align: center; }

/* =============================================================
   4. BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--t-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.12); }

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--sh-orange);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,149,218,.45);
}
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: var(--white);
  color: var(--secondary);
  border: 2px solid var(--border);
}
.btn--secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}

.btn--sm { padding: 10px 24px; font-size: 13px; }
.btn--lg { padding: 18px 44px; font-size: 16px; }

.btn svg, .btn .btn-icon { width: 18px; height: 18px; transition: transform var(--t-fast); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

/* =============================================================
   5. PAGE LOADER
   ============================================================= */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  width: 220px;
  animation: loader-logo-pulse 1.5s ease-in-out infinite;
}
@keyframes loader-logo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.97); }
}
.loader-tiles {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.loader-tile {
  width: 14px;
  border-radius: 3px;
  background: var(--primary);
}
.loader-tile:nth-child(1) { height: 14px; animation: loader-bar 1.2s ease-in-out infinite 0s; }
.loader-tile:nth-child(2) { height: 22px; animation: loader-bar 1.2s ease-in-out infinite 0.15s; }
.loader-tile:nth-child(3) { height: 34px; animation: loader-bar 1.2s ease-in-out infinite 0.3s; }
.loader-tile:nth-child(4) { height: 22px; animation: loader-bar 1.2s ease-in-out infinite 0.45s; }
.loader-tile:nth-child(5) { height: 14px; animation: loader-bar 1.2s ease-in-out infinite 0.6s; }
@keyframes loader-bar {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.6); opacity: 1; background: var(--accent); }
}
.loader-bar-track {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-full);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--r-full);
  animation: loader-progress 2s var(--ease-out) forwards;
  width: 0;
}
@keyframes loader-progress { to { width: 100%; } }
.loader-text {
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: 3px;
  font-family: var(--font-head);
  text-transform: uppercase;
}

/* =============================================================
   6. NAVIGATION
   ============================================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-normal), box-shadow var(--t-normal), height var(--t-normal);
}
#navbar.transparent { background: transparent; }
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  height: 68px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { height: 64px; width: auto; display: block; transition: opacity var(--t-fast); }
.nav-logo:hover { opacity: 0.85; }
/* On dark/transparent navbar: show real logo (blue works on dark bg) */
.nav-logo-white { display: block; }
.nav-logo-dark  { display: none; }
#navbar.scrolled .nav-logo-white { display: none; }
#navbar.scrolled .nav-logo-dark  { display: block; }
/* Footer logo: using igloo-logo-white.svg — no filter needed */
.footer-logo { filter: none; }
/* Page loader logo on dark background */

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  letter-spacing: 0.3px;
}
.nav-link svg { width: 14px; height: 14px; transition: transform var(--t-fast); flex-shrink: 0; }
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); }
#navbar.scrolled .nav-link { color: var(--secondary); }
#navbar.scrolled .nav-link:hover, #navbar.scrolled .nav-link.active { color: var(--primary); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Products Mega Menu */
.nav-dropdown {
  position: absolute;
  top: 100%;          /* flush — no gap so hover is never lost */
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border-light);
  width: 680px;
  /* top padding creates visual breathing room without a hover gap */
  padding: 20px 28px 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-normal), visibility var(--t-normal), transform var(--t-normal);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border-light);
  border-top: 1px solid var(--border-light);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.dropdown-item:hover { background: var(--bg-light); }
.dropdown-item:hover .di-title { color: var(--primary); }
.di-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
.di-body {}
.di-title { font-family: var(--font-head); font-size: 13.5px; font-weight: 700; color: var(--secondary); margin-bottom: 2px; transition: color var(--t-fast); }
.di-desc { font-size: 11.5px; color: var(--text-muted); }

.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  width: 44px;
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: all var(--t-normal);
}
#navbar.scrolled .hamburger span { background: var(--secondary); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--t-slow);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--primary); background: var(--primary-pale); }
.mobile-nav-products { margin-top: 8px; }
.mobile-nav-products-title { font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; padding: 12px 16px 8px; }
.mobile-product-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
  color: var(--text-light);
  font-size: 14px;
}
.mobile-product-link:hover { background: var(--bg-light); color: var(--primary); }
.mobile-product-link .pi { font-size: 20px; }

/* =============================================================
   7. HERO SLIDER
   ============================================================= */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27,40,56,.85) 0%, rgba(27,40,56,.4) 60%, transparent 100%);
}
.hero-slide .container {
  max-width: min(1920px, 92vw);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px 0 clamp(32px, 8vw, 200px);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.swiper-slide-active .hero-label {
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(30px);
}
.hero-title span { color: var(--primary); }
.hero-title em { color: var(--accent); font-style: normal; }
.swiper-slide-active .hero-title {
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
}
.swiper-slide-active .hero-desc {
  animation: fadeUp 0.8s 0.7s var(--ease-out) forwards;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.swiper-slide-active .hero-btns {
  animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
}
.hero-stats {
  position: absolute;
  bottom: 50px;
  right: 80px;
  display: flex;
  gap: 1px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
}
.swiper-slide-active .hero-stats {
  animation: fadeUp 0.8s 1.1s var(--ease-out) forwards;
}
.hero-stat {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  padding: 20px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  display: block;
}
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.7); letter-spacing: 1px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(13,27,42,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(13,27,42,0.3);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0; transform: translate(-50%, 10px); }
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Swiper navigation override */
.swiper-button-next, .swiper-button-prev {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white) !important;
  transition: all var(--t-normal);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px !important; font-weight: 800; }
.swiper-pagination-bullet { background: var(--white) !important; opacity: 0.5; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { opacity: 1 !important; background: var(--primary) !important; width: 24px !important; border-radius: 4px !important; }

/* =============================================================
   8. MARQUEE TICKER
   ============================================================= */
.marquee-bar {
  background: var(--primary);
  padding: 12px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   9. ABOUT SECTION
   ============================================================= */
.about-section { position: relative; overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 6px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 42%;
  right: 2%;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--sh-colored);
  width: 110px;
}
.about-badge-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.about-badge-label { font-size: 10px; font-weight: 600; letter-spacing: 1px; opacity: 0.85; margin-top: 4px; }

.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: var(--r-md);
  border-left: 3px solid transparent;
  transition: all var(--t-normal);
}
.about-feature:hover { background: var(--primary-pale); border-left-color: var(--primary); }
.af-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.af-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--secondary); margin-bottom: 3px; }
.af-desc { font-size: 13px; color: var(--text-light); }

/* =============================================================
   10. PRODUCTS SECTION
   ============================================================= */
.products-section { background: var(--bg-light); position: relative; overflow: hidden; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all 0.4s var(--ease-out);
  position: relative;
  group: true;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sh-xl);
}
.product-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(145deg, #eaf3fb 0%, #f4f9fd 60%, #edf5ff 100%);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-out);
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
}
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,40,56,.8), transparent 50%);
  opacity: 0;
  transition: opacity var(--t-normal);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-body { padding: 24px; }
.product-card-icon { margin-bottom: 14px; display: flex; align-items: center; }
.product-card-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--primary); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.product-card-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
  transition: color var(--t-fast);
}
.product-card:hover .product-card-name { color: var(--primary); }
.product-card-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.product-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--t-fast);
}
.product-card-link svg { width: 16px; height: 16px; }
.product-card-link:hover { gap: 10px; }

/* =============================================================
   11. PARALLAX SECTIONS
   ============================================================= */
.parallax-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,40,56,.78);
}
.parallax-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* =============================================================
   12. STATS COUNTER
   ============================================================= */
.stats-section {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,149,218,.15), transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.stat-item {
  background: var(--secondary);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: background var(--t-normal);
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  background: var(--primary);
  transition: transform var(--t-normal);
}
.stat-item:hover { background: var(--secondary-mid); }
.stat-item:hover::after { transform: translateX(-50%) scaleX(1); }
.stat-icon { font-size: 36px; margin-bottom: 16px; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num .suffix { color: var(--primary); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.55); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }

/* =============================================================
   13. WHY CHOOSE US
   ============================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 36px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-pale), transparent);
  opacity: 0;
  transition: opacity var(--t-normal);
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 62px;
  height: 62px;
  border-radius: var(--r-md);
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  transition: all var(--t-normal);
  position: relative;
}
.why-card:hover .why-icon { background: var(--primary); transform: rotate(-5deg) scale(1.1); }
.why-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
  position: relative;
}
.why-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; position: relative; }

/* =============================================================
   14. PROCESS SECTION (HOME PREVIEW)
   ============================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.process-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 88px;
  height: 88px;
  border-radius: var(--r-full);
  background: var(--white);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-muted);
  transition: all 0.4s var(--ease-spring);
  position: relative;
}
.process-num .p-icon { font-size: 32px; }
.process-step:hover .process-num {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.15);
  box-shadow: var(--sh-orange);
}
.process-step-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
}
.process-step-desc { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* =============================================================
   15. TESTIMONIALS
   ============================================================= */
.testimonials-section { background: var(--bg-light); overflow: hidden; }
.testi-swiper { overflow: visible !important; }
.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--sh-md);
  height: auto;
}
.testi-stars { color: var(--accent); font-size: 18px; margin-bottom: 16px; }
.testi-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-pale);
}
.testi-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--secondary); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* =============================================================
   16. CTA SECTIONS
   ============================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-mid) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,149,218,.15), transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(0,63,125,.1), transparent 60%);
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
}
.cta-desc { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  transition: opacity var(--t-fast);
}
.cta-phone:hover { opacity: 0.8; }

/* =============================================================
   17. FOOTER
   ============================================================= */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.65);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/world-map-dots.svg') center center / contain no-repeat;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.footer > * { position: relative; z-index: 1; }
.footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo { height: 64px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all var(--t-fast);
  color: rgba(255,255,255,.5);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link::before { content: '›'; color: var(--primary); font-size: 16px; }
.footer-link:hover { color: var(--white); }

.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; }
.fci-icon { flex-shrink: 0; margin-top: 2px; display: flex; }
.fci-icon svg { width: 16px; height: 16px; fill: none; stroke: #0095DA; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fci-text { line-height: 1.6; }
.fci-text a { color: rgba(255,255,255,.55); transition: color var(--t-fast); }
.fci-text a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: color var(--t-fast); font-size: 12px; }
.footer-bottom-links a:hover { color: var(--white); }
.footer-made-by { color: rgba(255,255,255,.3); font-size: 12px; }
.footer-made-by span { color: var(--primary); }

/* =============================================================
   18. BACK TO TOP
   ============================================================= */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: var(--r-full);
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-orange);
  transition: all var(--t-normal);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  cursor: pointer;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
#back-to-top svg { width: 20px; height: 20px; }

/* WhatsApp Float */
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all var(--t-normal);
  font-size: 26px;
}
#whatsapp-float:hover { transform: scale(1.12); background: #1DA851; }

/* =============================================================
   19. BREADCRUMB
   ============================================================= */
.page-hero {
  padding: 140px 0 70px;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.breadcrumb .sep { font-size: 16px; color: rgba(255,255,255,.25); }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-desc { font-size: 17px; color: rgba(255,255,255,.65); max-width: 560px; }

/* =============================================================
   20. PRODUCT DETAIL PAGE
   ============================================================= */
.product-detail-hero { padding: 120px 0 80px; background: var(--off-white); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-gallery { position: sticky; top: 100px; }
.product-main-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4/3;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; }
.product-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--t-fast);
}
.product-thumb.active { border-color: var(--primary); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-pale);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.product-badge svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.product-detail-name {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.15;
}
.product-detail-tagline { font-size: 17px; color: var(--primary); font-weight: 600; margin-bottom: 20px; }
.product-detail-desc { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.product-highlights { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.product-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.ph-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
}
.product-specs-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.spec-item {
  background: var(--off-white);
  border-radius: var(--r-sm);
  padding: 12px 16px;
}
.spec-label { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.spec-value { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--secondary); }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* Tabs */
.product-tabs { background: var(--bg-light); padding: 60px 0; }
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  overflow-x: auto;
}
.tab-btn {
  padding: 12px 24px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all var(--t-fast);
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-btn:hover { color: var(--secondary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Applications */
.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.app-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}
.app-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--sh-md); }
.app-icon { width: 52px; height: 52px; background: linear-gradient(135deg,rgba(0,149,218,.1),rgba(0,149,218,.16)); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; transition: background .3s; }
.app-card:hover .app-icon { background: linear-gradient(135deg,var(--primary),#0077b6); }
.app-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--primary); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s; }
.app-card:hover .app-icon svg { stroke: #fff; }
.app-name { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--secondary); }

/* Related products */
.related-products { padding: 80px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* =============================================================
   21. PROCESS PAGE
   ============================================================= */
.process-timeline { position: relative; padding: 0; }
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 80px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-content {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-out);
}
.timeline-content:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.timeline-item:nth-child(even) .timeline-left { order: 3; }
.timeline-item:nth-child(even) .timeline-center { order: 2; }
.timeline-item:nth-child(even) .timeline-right { order: 1; text-align: right; }
.timeline-center {
  width: 70px;
  height: 70px;
  border-radius: var(--r-full);
  background: var(--white);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--sh-colored);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  transition: all var(--t-spring);
}
.timeline-item:hover .timeline-center { background: var(--primary); transform: scale(1.15) rotate(-5deg); }
.timeline-step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.timeline-title { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.timeline-desc { font-size: 14.5px; color: var(--text-light); line-height: 1.75; }
.timeline-img { border-radius: var(--r-md); overflow: hidden; margin-top: 20px; }
.timeline-img img { width: 100%; height: 180px; object-fit: cover; }

/* Quality Section */
.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.quality-card {
  text-align: center;
  padding: 44px 32px;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-out);
}
.quality-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: var(--primary); }
.quality-icon { font-size: 52px; margin-bottom: 20px; }
.quality-title { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.quality-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* =============================================================
   22. DEALERS PAGE
   ============================================================= */
.dealers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dealer-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.dealer-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-normal);
}
.dealer-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.dealer-card:hover::after { transform: scaleX(1); }
.dealer-region {
  display: inline-block;
  background: var(--secondary-pale);
  color: var(--secondary);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.dealer-name { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.dealer-info { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.dealer-info-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-light); }
.dii-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.become-dealer {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-mid));
  border-radius: var(--r-xl);
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.become-dealer::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,149,218,.2), transparent 70%);
}
.bd-title { font-family: var(--font-head); font-size: clamp(22px, 3vw, 34px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.bd-desc { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; }

/* Regions filter */
.region-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.region-btn {
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--text-light);
  background: var(--white);
  transition: all var(--t-fast);
  cursor: pointer;
}
.region-btn.active, .region-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* =============================================================
   23. CONTACT PAGE
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border-light);
}
.form-title { font-family: var(--font-head); font-size: 24px; font-weight: 900; color: var(--secondary); margin-bottom: 8px; }
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--secondary); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  background: var(--off-white);
  transition: all var(--t-fast);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,149,218,.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.contact-info { padding-top: 12px; }
.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,63,125,.07), 0 1px 4px rgba(0,0,0,.04);
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.contact-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #0095DA, #5DD3F3);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.contact-card:hover { box-shadow: 0 16px 44px rgba(0,63,125,.13), 0 4px 12px rgba(0,149,218,.08); transform: translateY(-4px); }
.contact-card:hover::before { transform: scaleY(1); }
.cc-icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,149,218,.09), rgba(93,211,243,.14));
  border: 1.5px solid rgba(0,149,218,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .35s ease, border-color .35s ease, transform .38s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.cc-icon-box svg { width: 22px; height: 22px; fill: none; stroke: #0095DA; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s, transform .35s cubic-bezier(.22,1,.36,1); }
.contact-card:hover .cc-icon-box { background: linear-gradient(135deg,#0095DA,#005f8e); border-color: transparent; transform: scale(1.1) rotate(-6deg); box-shadow: 0 6px 20px rgba(0,149,218,.28); }
.contact-card:hover .cc-icon-box svg { stroke: #fff; transform: scale(0.9); }
.cc-title { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--primary); margin-bottom: 6px; }
.cc-text { font-size: 14.5px; color: var(--text); line-height: 1.65; }
.cc-text a { color: var(--text); transition: color var(--t-fast); }
.cc-text a:hover { color: var(--primary); }
.map-embed { border-radius: var(--r-lg); overflow: hidden; margin-top: 8px; }
.map-embed iframe { width: 100%; height: 280px; border: none; display: block; }

/* =============================================================
   24. ANIMATIONS (GSAP HELPER CLASSES)
   ============================================================= */
.fade-up    { opacity: 0; transform: translateY(40px); }
.fade-in    { opacity: 0; }
.fade-left  { opacity: 0; transform: translateX(-40px); }
.fade-right { opacity: 0; transform: translateX(40px); }
.scale-in   { opacity: 0; transform: scale(0.92); }
.line-clip  { overflow: hidden; }
.line-clip span { display: block; transform: translateY(110%); }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scaleIn {
  to { opacity: 1; transform: scale(1); }
}

/* Particle background dots */
.dot-pattern {
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* =============================================================
   25. RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  :root { --nav-h: 72px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; text-align: left !important; }
  .process-timeline::before { left: 35px; }
  .timeline-center { margin-left: 0; margin-top: 0; }
  .timeline-item:nth-child(even) .timeline-left,
  .timeline-item:nth-child(even) .timeline-center,
  .timeline-item:nth-child(even) .timeline-right { order: unset; text-align: left; }
  .become-dealer { grid-template-columns: 1fr; padding: 40px; text-align: center; }
  .dealers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 64px 0; }
  .section-pad--lg { padding: 80px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero-stats { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid { grid-template-columns: 1fr; }
  .dealers-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-slide-content { padding: 0 16px 0 24px; }
  .container { padding: 0 16px; }
  .contact-form { padding: 28px 22px; }
  .become-dealer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
