/* ============================================
   BioSafe One - Blue + White Minimal Theme
   Only #26418E and its light variations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --blue: #26418E;
  --blue-dark: #1b2f6b;
  --blue-light: #3a5ab8;
  --blue-lighter: #5b7fd4;
  --blue-pale: #eef2fa;
  --blue-faint: #f4f6fb;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --text-dark: #1e293b;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark); line-height: 1.7; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.25; font-weight: 700; color: var(--text-dark);
}
.text-blue { color: var(--blue); }
.text-dark { color: var(--text-dark); }
.text-white { color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  font-family: 'DM Sans', sans-serif;
  background: var(--blue-pale); color: var(--blue); border: 1px solid rgba(38,65,142,0.12);
}
.badge-white { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.25); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .badge { margin-bottom: 20px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; color: var(--text-dark); }
.section-header p { font-size: 1.05rem; color: var(--text-body); max-width: 580px; margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: var(--transition); font-family: 'DM Sans', sans-serif;
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(38,65,142,0.25); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--blue); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--blue); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-light { background: var(--blue-pale); color: var(--blue); font-weight: 700; }
.btn-light:hover { background: rgba(38,65,142,0.12); transform: translateY(-2px); }

/* --- Animations --- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.active { opacity: 1; transform: scale(1); }
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }

/* --- Preloader --- */
#preloader {
  position: fixed; inset: 0; z-index: 10000; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--gray-200); border-top-color: var(--blue);
  animation: spin 0.8s linear infinite;
}
.loader-text { color: var(--blue); font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase; font-family: 'DM Sans'; font-weight: 700; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ NAVBAR ============ */
.nav-top-bar {
  background: var(--blue-dark); padding: 8px 0; text-align: center;
  color: rgba(255,255,255,0.85); font-size: 0.82rem; font-family: 'DM Sans';
}
.nav-top-bar a { color: #fff; font-weight: 600; }
.nav-top-bar a:hover { text-decoration: underline; }
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 0; transition: var(--transition);
  background: var(--blue); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar.scrolled {
  background: rgba(38,65,142,0.98); backdrop-filter: blur(20px);
  padding: 16px 0; box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Poppins'; font-weight: 800; font-size: 1.2rem; color: #fff; }
.nav-logo span { color: #fff !important; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.8);
  position: relative; font-family: 'DM Sans'; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #fff; transition: var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  color: #fff; font-weight: 600; font-size: 0.88rem; font-family: 'DM Sans';
}
.nav-phone svg { width: 16px; height: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: var(--transition); border-radius: 1px; }

/* ============ HERO — WHITE BG ============ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--white);
}
.hero-content {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center; gap: 60px; padding: 180px 0 80px;
}
.hero-text .badge { margin-bottom: 24px; }
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 24px; line-height: 1.1; color: var(--text-dark);
}
.hero-text h1 .highlight {
  color: var(--blue); position: relative; display: inline-block;
}
.hero-text h1 .sub-heading {
  display: block; font-size: 0.5em; color: var(--text-body);
  font-weight: 400; margin-top: 14px; font-family: 'DM Sans';
}
.hero-text > p {
  font-size: 1.1rem; color: var(--text-body); margin-bottom: 36px;
  max-width: 500px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat { text-align: center; position: relative; padding: 0 16px; }
.hero-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%;
  height: 70%; width: 1px; background: var(--gray-200);
}
.hero-stat .number { font-family: 'Poppins'; font-size: 2.2rem; font-weight: 700; color: var(--blue); }
.hero-stat .label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.hero-visual { position: relative; }
.hero-img-wrapper {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; border: 2px solid var(--blue-pale);
  box-shadow: 0 20px 60px rgba(38,65,142,0.1);
}
.hero-img-wrapper img { width: 100%; border-radius: var(--radius-lg); }
.hero-float-card {
  position: absolute; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  animation: float 5s ease-in-out infinite;
}
.hero-float-card.card-1 { top: 8%; right: -20px; }
.hero-float-card.card-2 { bottom: 12%; left: -20px; animation-delay: 1.5s; }
.hero-float-card.card-3 { top: 55%; right: -15px; animation-delay: 3s; }
.hero-float-card .icon-circle {
  width: 42px; height: 42px; border-radius: 10px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.hero-float-card .card-info h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); font-family: 'DM Sans'; }
.hero-float-card .card-info p { font-size: 0.75rem; color: var(--text-muted); font-family: 'DM Sans'; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Hero Micro Floating Bubbles */
.float-bubble {
  position: absolute; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--white); box-shadow: 0 8px 32px rgba(38,65,142,0.08);
  font-size: 1.5rem; animation: float-bubble 6s ease-in-out infinite;
}
.bubble-1 { width: 60px; height: 60px; top: -10%; left: 10%; animation-delay: 0s; }
.bubble-2 { width: 45px; height: 45px; top: 15%; right: -5%; animation-delay: 2s; font-size: 1.1rem; }
.bubble-3 { width: 70px; height: 70px; bottom: 5%; left: -10%; animation-delay: 4s; font-size: 1.8rem; }
.bubble-4 { width: 50px; height: 50px; bottom: 25%; right: 15%; animation-delay: 1.5s; font-size: 1.2rem; }
@keyframes float-bubble {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.05); }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--blue-faint); border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100); padding: 28px 0;
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-body); font-size: 0.88rem; font-weight: 500; font-family: 'DM Sans'; transition: var(--transition);
}
.trust-item:hover { color: var(--blue); }
.trust-item .trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ============ ABOUT ============ */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; border-radius: var(--radius-lg); transition: var(--transition-slow); }
.about-img:hover img { transform: scale(1.02); }
.about-img .img-accent {
  position: absolute; bottom: -10px; right: -10px;
  width: 120px; height: 120px; background: var(--blue-pale); border-radius: var(--radius); z-index: -1;
}
.about-text .badge { margin-bottom: 16px; }
.about-text h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; }
.about-text > p { color: var(--text-body); margin-bottom: 32px; font-size: 1rem; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-feature {
  display: flex; gap: 14px; padding: 18px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-100); transition: var(--transition);
}
.about-feature:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(38,65,142,0.06); }
.about-feature .feat-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem;
}
.about-feature h4 { font-size: 0.88rem; margin-bottom: 2px; font-family: 'DM Sans'; font-weight: 700; color: var(--text-dark); }
.about-feature p { font-size: 0.78rem; color: var(--text-muted); }

/* ============ SERVICES ============ */
.services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 36px 24px;
  text-align: center; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--blue); transition: var(--transition); transform: scaleX(0);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(38,65,142,0.08); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px; background: var(--blue-pale);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-family: 'DM Sans'; font-weight: 700; color: var(--text-dark); }
.service-card p { font-size: 0.88rem; color: var(--text-body); margin-bottom: 16px; }
.service-link { color: var(--blue); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 4px; font-family: 'DM Sans'; }
.service-link:hover { gap: 10px; }

/* ============ PRODUCTS ============ */
.products { background: var(--gray-50); }
.product-showcase { display: flex; flex-direction: column; gap: 24px; }
.product-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); overflow: hidden; align-items: stretch;
  transition: var(--transition); display: flex; flex-direction: row;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(38,65,142,0.08); }
.product-img {
  width: 250px; display: flex; align-items: center; justify-content: center;
  background: var(--white); border-right: 1px solid var(--gray-100);
  position: relative; padding: 30px; flex-shrink: 0;
}
.product-img img { height: 100%; width: auto; object-fit: contain; transition: var(--transition-slow); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: var(--blue); color: #fff;
  padding: 5px 14px; border-radius: 6px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; font-family: 'DM Sans';
}
.product-info { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 1.5rem; margin-bottom: 6px; color: var(--text-dark); }
.product-info .product-subtitle { color: var(--blue-light); font-weight: 600; font-size: 0.88rem; margin-bottom: 14px; font-family: 'DM Sans'; }
.product-info p { color: var(--text-body); margin-bottom: 20px; flex: 1; font-size: 0.92rem; }
.product-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.product-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-body); font-family: 'DM Sans'; }
.product-features li svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

.stats { background: #26418E; position: relative; overflow: hidden; padding: 60px 0; }
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/images/bacteria-microscopic.png') center/cover no-repeat; opacity: 0.05;
}
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 20px; position: relative; transition: var(--transition); }
.stat-card:hover { transform: translateY(-4px); }
.stat-card:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 25%; height: 50%;
  width: 1px; background: rgba(255,255,255,0.15);
}
.stat-number {
  font-family: 'Poppins'; font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -1px;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ============ HOW IT WORKS ============ */
.how-it-works { background: var(--white); }
.how-it-works-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.hiw-image { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.hiw-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.hiw-image::after { content:''; position:absolute; inset:0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); }
.steps { display: flex; flex-direction: column; gap: 24px; }
.step { 
  display: flex; gap: 20px; padding: 24px; background: var(--white); 
  border: 1px solid var(--gray-100); border-radius: var(--radius); transition: var(--transition); 
}
.step:hover { box-shadow: 0 8px 32px rgba(38,65,142,0.06); border-color: var(--blue-pale); transform: translateX(4px); }
.step-number {
  width: 54px; height: 54px; border-radius: 50%; background: var(--blue-pale);
  color: var(--blue); border: 2px solid var(--blue); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins'; font-size: 1.4rem; font-weight: 700; transition: var(--transition);
}
.step:hover .step-number { background: var(--blue); color: #fff; }
.step-content h3 { font-size: 1.05rem; margin-bottom: 6px; font-family: 'DM Sans'; font-weight: 700; color: var(--text-dark); }
.step-content p { font-size: 0.88rem; color: var(--text-body); margin: 0; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 36px; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(38,65,142,0.06); }
.testimonial-card .stars { color: var(--blue-light); margin-bottom: 16px; font-size: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.92rem; color: var(--text-body); line-height: 1.8;
  margin-bottom: 24px; font-style: italic; font-family: 'DM Sans';
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff; font-family: 'DM Sans';
}
.author-info h4 { font-size: 0.88rem; font-weight: 600; font-family: 'DM Sans'; color: var(--text-dark); }
.author-info p { font-size: 0.78rem; color: var(--text-muted); }

/* ============ FAQ ============ */
.faq { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden; transition: all 0.35s ease;
}
.faq-item.active { border-color: var(--blue); box-shadow: 0 4px 20px rgba(38,65,142,0.08); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; cursor: pointer; font-weight: 600;
  font-size: 0.95rem; background: none; border: none;
  color: var(--text-dark); width: 100%; text-align: left;
  transition: var(--transition); font-family: 'DM Sans'; gap: 16px;
}
.faq-question:hover { color: var(--blue); }
.faq-question .faq-icon {
  width: 30px; height: 30px; border-radius: 8px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: all 0.35s ease; color: var(--blue);
  flex-shrink: 0; line-height: 1;
}
.faq-item.active .faq-question .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding: 0 24px 24px; color: var(--text-body); font-size: 0.92rem; line-height: 1.9; }

/* ============ CTA (#26418E BG) ============ */
.cta-section { background: #26418E; position: relative; overflow: hidden; text-align: center; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M20 0L0 20h40z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; color: #fff; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============ CONTACT ============ */
.contact { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 14px; }
.contact-info > p { color: var(--text-body); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; transition: var(--transition); }
.contact-item:hover { transform: translateX(4px); }
.contact-item .ci-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 0.92rem; margin-bottom: 2px; font-family: 'DM Sans'; font-weight: 700; color: var(--text-dark); }
.contact-item p { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }
.contact-addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.address-block { padding: 20px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); }
.address-block h5 { font-size: 0.82rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; font-family: 'DM Sans'; text-transform: uppercase; letter-spacing: 1px; }
.address-block p { font-size: 0.82rem; color: var(--text-body); line-height: 1.7; margin: 0; }
.contact-form { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); font-family: 'DM Sans'; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border-radius: 8px;
  border: 1px solid var(--gray-200); background: var(--gray-50);
  color: var(--text-dark); font-size: 0.92rem; font-family: 'DM Sans'; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(38,65,142,0.08); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============ FOOTER (#26418E BG) ============ */
.footer { background: #26418E; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 32px; }
.footer-brand p { color: rgba(255,255,255,0.6); margin: 14px 0 24px; font-size: 0.88rem; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 0.9rem; color: rgba(255,255,255,0.6);
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 18px; color: #fff; font-family: 'DM Sans'; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.55); font-family: 'DM Sans'; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* ============ FLOATING CALL ============ */
.float-call-wrapper {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.float-call-tooltip {
  background: var(--gray-800); border-radius: 8px; padding: 8px 16px; color: #fff;
  font-size: 0.8rem; font-weight: 600; font-family: 'DM Sans';
  white-space: nowrap; opacity: 0; transform: translateY(6px);
  transition: var(--transition); pointer-events: none; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.float-call-wrapper:hover .float-call-tooltip { opacity: 1; transform: translateY(0); }
.float-call {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(38,65,142,0.35);
  transition: var(--transition); cursor: pointer; border: none;
  position: relative; animation: call-breathe 3s ease-in-out infinite;
}
.float-call svg { width: 24px; height: 24px; }
.float-call:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(38,65,142,0.45); background: var(--blue-dark); }
.float-call::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 20px; border: 2px solid rgba(38,65,142,0.2);
  animation: call-ring 3s ease-out infinite;
}
@keyframes call-breathe {
  0%,100% { box-shadow: 0 6px 24px rgba(38,65,142,0.35); }
  50% { box-shadow: 0 6px 24px rgba(38,65,142,0.35), 0 0 0 10px rgba(38,65,142,0); }
}
@keyframes call-ring {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ============ ACCENT COLORS ============ */
.ic-teal { background: #ccfbf1 !important; color: #0d9488 !important; }
.ic-purple { background: #ede9fe !important; color: #7c3aed !important; }
.ic-orange { background: #ffedd5 !important; color: #ea580c !important; }
.ic-blue { background: var(--blue-pale) !important; color: var(--blue) !important; }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--gray-200);
  color: var(--text-dark); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; cursor: pointer;
  opacity: 0; visibility: hidden; transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }

/* ============ MAP ============ */
.map-section { background: var(--white); }
.map-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-100); height: 380px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
  .hero-text > p { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .about-grid, .how-it-works-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .product-card { flex-direction: column; }
  .product-img { width: 100%; height: 200px; border-right: none; border-bottom: 1px solid var(--gray-100); }
  .nav-cta { display: none !important; }
  .nav-top-bar { display: none !important; }
  .nav-links {
    display: flex; flex-direction: column; position: fixed;
    top: 0; right: -320px; width: 280px; height: 100vh;
    background: var(--blue-dark); padding: 120px 30px 40px; gap: 32px;
    box-shadow: -15px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.3, 1, 0.3, 1);
    z-index: 1001;
  }
  .hamburger { 
    display: flex; z-index: 1002; position: relative; 
    width: 44px; height: 44px; justify-content: center; align-items: center; 
    background: rgba(255,255,255,0.08); border-radius: 8px; transition: var(--transition);
  }
  .hamburger span { background: #fff !important; }
  .hamburger.menu-open { background: rgba(0,0,0,0.1); }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.2rem; color: #fff !important; text-align: center; font-weight: 700; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }
  .nav-links a::after { display: none; }
  .nav-links a:hover { color: rgba(255,255,255,0.8) !important; }
  .services-grid { grid-template-columns: 1fr; }
  .product-showcase { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat::after { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .hero-float-card { display: none; }
  .trust-inner { gap: 20px; }
  .contact-addresses { grid-template-columns: 1fr; }
  .stat-card:not(:last-child)::after { display: none; }
  .nav-top-bar { font-size: 0.72rem; }
}
