/* =============================================================
   SAFEGUARD ADULT DIAPERS — ICL BRANDS PVT LTD
   Stylesheet | Version 1.0
   ============================================================= */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:       #20305F;
  --primary-light: #2c4280;
  --primary-dark:  #162145;
  --white:         #ffffff;
  --accent-blue:   #4A90D9;
  --accent-teal:   #00B4D8;
  --light-bg:      #F4F7FB;
  --light-grey:    #EEF2F8;
  --mid-grey:      #B0BDD4;
  --text-dark:     #1A2340;
  --text-body:     #4A5568;
  --text-light:    #8896B0;
  --success:       #27AE60;
  --discount-red:  #E53E3E;
  --shadow-sm:     0 2px 8px rgba(32,48,95,0.08);
  --shadow-md:     0 6px 24px rgba(32,48,95,0.13);
  --shadow-lg:     0 16px 48px rgba(32,48,95,0.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:     'Poppins', sans-serif;
  --font-body:     'Open Sans', sans-serif;
}

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

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

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

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }

/* ── Page Visibility ── */
.page { display: none; }
.page.active { display: block; }

/* =============================================================
   NAVIGATION
   ============================================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(32,48,95,0.10);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 24px; height: 24px; fill: white; }
.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--accent-blue); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: var(--light-bg);
}

/* Subscribe CTA */
.btn-nav-subscribe {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(32,48,95,0.30);
  transition: var(--transition) !important;
}
.btn-nav-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32,48,95,0.35) !important;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-blue)) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: white;
  padding: 16px 24px 24px;
  gap: 8px;
  border-top: 1px solid var(--light-grey);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--primary); background: var(--light-bg); }
.nav-mobile .btn-nav-subscribe {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white !important;
  border-radius: 50px !important;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 16px rgba(32,48,95,0.30);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(32,48,95,0.40);
  background: linear-gradient(135deg, var(--primary-light), var(--accent-blue));
}
.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
  color: white;
  box-shadow: 0 4px 16px rgba(74,144,217,0.35);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(74,144,217,0.45);
}
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* =============================================================
   SECTION SHARED STYLES
   ============================================================= */
section { padding: 80px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  background: rgba(74,144,217,0.12);
  color: var(--accent-blue);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* =============================================================
   HOME PAGE — HERO SLIDER
   ============================================================= */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  padding-top: 72px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }

/* Slide backgrounds */
.slide-1 { background: linear-gradient(135deg, #20305F 0%, #2c4280 50%, #1a5276 100%); }
.slide-2 { background: linear-gradient(135deg, #1a3a5c 0%, #20305F 50%, #2d6a9f 100%); }
.slide-3 { background: linear-gradient(135deg, #162145 0%, #20305F 60%, #3a7bd5 100%); }

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.slide-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.slide-text { color: white; }
.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.slide-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: white;
}
.slide-text h1 span { color: #90CDF4; }
.slide-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 460px;
}
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slide image */
.slide-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide-img-wrap {
  width: 340px;
  height: 400px;
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.slide-img-wrap::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.slide-img-icon { font-size: 80px; opacity: 0.85; }
.slide-img-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active { background: white; width: 28px; border-radius: 5px; }

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover { background: rgba(255,255,255,0.25); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* =============================================================
   HOW IT WORKS (HOME)
   ============================================================= */
.how-home { background: var(--light-bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
  opacity: 0.3;
}

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.step-number {
  position: absolute;
  top: -16px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
}
.step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(32,48,95,0.08), rgba(74,144,217,0.12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.step-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* =============================================================
   PACKAGES SECTION
   ============================================================= */
.packages-section { background: white; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.package-card {
  background: white;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.package-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.package-card.featured {
  background: linear-gradient(160deg, var(--primary), var(--primary-light));
  border-color: transparent;
  color: white;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.package-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.package-badge {
  position: absolute;
  top: 16px; right: -28px;
  background: var(--discount-red);
  color: white;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}
.package-card.featured .package-badge { background: #f6ad55; }

.package-name {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 8px;
}
.package-card.featured .package-name { color: rgba(255,255,255,0.75); }

.package-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.package-card.featured .package-price { color: white; }
.package-price span { font-size: 1rem; font-weight: 400; }

.package-period {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.package-card.featured .package-period { color: rgba(255,255,255,0.65); }

.package-divider {
  height: 1px;
  background: var(--light-grey);
  margin: 20px 0;
}
.package-card.featured .package-divider { background: rgba(255,255,255,0.2); }

.package-features {
  text-align: left;
  margin-bottom: 28px;
}
.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-body);
  padding: 5px 0;
}
.package-card.featured .package-features li { color: rgba(255,255,255,0.88); }
.package-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(39,174,96,0.12);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.package-card.featured .package-features li::before {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* =============================================================
   PROMO BANNER
   ============================================================= */
.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5276 50%, var(--accent-blue) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.promo-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.promo-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.promo-text p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }

/* =============================================================
   COMPANY SECTION
   ============================================================= */
.company-section { background: var(--light-bg); }

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.company-img-wrap {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--light-grey), var(--mid-grey));
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 5rem;
  color: var(--mid-grey);
  position: relative;
  overflow: hidden;
}
.company-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32,48,95,0.05), transparent);
}
.company-img-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.company-text .section-tag { display: block; width: fit-content; }
.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stat-item { text-align: center; padding: 20px; background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.stat-value {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

/* =============================================================
   PRODUCT PAGE
   ============================================================= */
.product-hero {
  background: var(--light-bg);
  padding: 120px 0 80px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.product-gallery { position: sticky; top: 96px; }
.gallery-main {
  aspect-ratio: 1;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}
.gallery-main-label {
  position: absolute;
  bottom: 20px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gallery-thumbs {
  display: flex;
  gap: 12px;
}
.gallery-thumb {
  flex: 1;
  aspect-ratio: 1;
  background: white;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--accent-blue); }

/* Product details */
.product-details {}
.product-brand {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.stars { color: #f6ad55; font-size: 1rem; letter-spacing: 2px; }
.rating-text { font-size: 0.875rem; color: var(--text-light); }
.product-desc { font-size: 0.95rem; line-height: 1.8; color: var(--text-body); margin-bottom: 28px; }

/* Size selector */
.option-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.size-options, .qty-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.size-btn, .qty-btn {
  padding: 10px 20px;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-sm);
  background: white;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}
.size-btn:hover, .qty-btn:hover,
.size-btn.active, .qty-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(32,48,95,0.05);
}

/* Subscription selector */
.sub-options { margin-bottom: 28px; }
.sub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
.sub-option {
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.sub-option:hover, .sub-option.selected {
  border-color: var(--accent-blue);
  background: rgba(74,144,217,0.05);
}
.sub-option-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}
.sub-option-price { font-size: 0.82rem; color: var(--text-body); margin-top: 4px; }
.sub-discount {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--discount-red);
  color: white;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

/* Payment toggle */
.payment-toggle { margin-bottom: 28px; }
.toggle-wrap {
  display: flex;
  background: var(--light-grey);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin-top: 12px;
}
.toggle-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}
.toggle-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.product-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =============================================================
   HOW IT WORKS PAGE
   ============================================================= */
.hiw-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 140px 0 80px;
  color: white;
  text-align: center;
}
.hiw-hero .section-title { color: white; }
.hiw-hero .section-subtitle { color: rgba(255,255,255,0.78); margin: 0 auto; }

.hiw-steps { background: var(--light-bg); }

.hiw-steps-list { margin-top: 56px; }
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px;
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.hiw-step:hover { box-shadow: var(--shadow-md); transform: translateX(6px); }
.hiw-step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-blue), var(--accent-teal));
  border-radius: 4px 0 0 4px;
}
.hiw-step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.hiw-step-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.hiw-step-content p { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; }
.hiw-step-tag {
  display: inline-block;
  background: rgba(74,144,217,0.1);
  color: var(--accent-blue);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 8px;
}

/* =============================================================
   ABOUT PAGE
   ============================================================= */
.about-hero {
  background: linear-gradient(135deg, var(--primary), #1a5276);
  padding: 140px 0 80px;
  text-align: center;
}
.about-hero .section-title { color: white; }
.about-hero .section-subtitle { color: rgba(255,255,255,0.78); margin: 0 auto; }

.about-brand { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--light-bg), var(--light-grey));
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  gap: 12px;
}
.about-img-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--light-grey);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(74,144,217,0.3); }
.value-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(32,48,95,0.08), rgba(74,144,217,0.12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-card p { font-size: 0.875rem; color: var(--text-body); line-height: 1.6; }

.icl-section { background: var(--light-bg); }

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 140px 0 80px;
  text-align: center;
}
.contact-hero .section-title { color: white; }
.contact-hero .section-subtitle { color: rgba(255,255,255,0.78); margin: 0 auto; }

.contact-body { background: var(--light-bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.cinfo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(32,48,95,0.08), rgba(74,144,217,0.12));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.cinfo-title {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.cinfo-value { font-size: 0.875rem; color: var(--text-body); }

/* Map placeholder */
.map-placeholder {
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.map-placeholder p {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

/* Contact form */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-subtitle { font-size: 0.9rem; color: var(--text-body); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(74,144,217,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 22px; height: 22px; fill: white; }
.footer-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}
.footer-logo-text span { color: #90CDF4; }
.footer-desc { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 24px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: white; padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  cursor: pointer;
}
.social-icon:hover { background: rgba(255,255,255,0.2); color: white; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* =============================================================
   PAGE HEADER (inner pages)
   ============================================================= */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 120px 0 60px;
  text-align: center;
  color: white;
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-header p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* =============================================================
   UTILITIES
   ============================================================= */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.trust-badge .icon { font-size: 1rem; }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp 0.6s ease forwards; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .company-grid  { grid-template-columns: 1fr; }
  .company-img-wrap { max-width: 500px; }
  .footer-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .slide-content { grid-template-columns: 1fr; }
  .slide-image { display: none; }
  .hero-slider { min-height: 540px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo-inner { flex-direction: column; text-align: center; }
  .sub-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
  .packages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .company-stats { grid-template-columns: repeat(3, 1fr); }
}
