/* ============================================================
   WESTMINSTER OIL & GAS – Global Styles
   Palette: #044baa (blue), #da0300 (red), #000 (black), #fff (white)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue:   #044baa;
  --red:    #da0300;
  --black:  #0a0a0a;
  --white:  #ffffff;
  --gray:   #f4f6fb;
  --gray2:  #e8ecf4;
  --text:   #1a1a2e;
  --muted:  #6b7280;
  --shadow: 0 8px 40px rgba(4,75,170,0.12);
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

p, li, a, label, input, textarea, select, button { font-size: 17px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--blue); color: var(--white); }

/* ── UTILITY ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block; font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 12px;
  position: relative; padding-left: 36px;
}
.section-tag::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 26px; height: 2px; background: var(--red);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  line-height: 1.1; color: var(--red); text-transform: uppercase; letter-spacing: -0.03em;
}
.section-title span { color: var(--blue); }
.section-subtitle { font-size: 18px; color: var(--muted); max-width: 560px; margin-top: 16px; line-height: 1.7; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
  font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; border: none; cursor: pointer; text-decoration: none;
  transition: var(--transition); position: relative; overflow: hidden; border-radius: 2px;
}
.btn::before {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15);
  transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 20px rgba(4,75,170,0.35); }
.btn-primary:hover { background: #0358cc; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(4,75,170,0.4); }
.btn-danger  { background: var(--red); color: var(--white); box-shadow: 0 4px 20px rgba(218,3,0,0.35); }
.btn-danger:hover { background: #f00502; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--blue); color: var(--white); }

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 2200; display: inline-flex;
  align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: 50%;
  background: #25d366; color: var(--white); text-decoration: none; border: 3px solid rgba(255,255,255,0.95);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28); transition: var(--transition);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.35); }
.whatsapp-float svg { width: 28px; height: 28px; }
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .whatsapp-float svg { width: 25px; height: 25px; }
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%); width: min(92vw, 1240px);
  max-width: 1240px; z-index: 1000; border-radius: 20px; background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(35px) saturate(180%); -webkit-backdrop-filter: blur(35px) saturate(180%);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12); border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); padding: 0;
}
#navbar.scrolled { top: 12px; box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12); width: min(95vw, 1260px); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 110px;
  padding: 0 40px; margin: 0 auto; max-width: 1440px; gap: 24px;
  transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#navbar.scrolled .nav-inner { height: 88px; }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: 12px; padding: 4px 0; flex-shrink: 0; }
.nav-logo img {
  height: 49px; width: auto; max-width: none; object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
  transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s ease, filter 0.3s ease;
}
.nav-logo:hover img { transform: scale(1.04); filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18)); }
#navbar.scrolled .nav-logo img { height: 49px; transform: scale(1.03); filter: drop-shadow(0 6px 12px rgba(4, 75, 170, 0.16)); }

.nav-links { display: flex; align-items: center; list-style: none; gap: 10px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-display); font-size: 16px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--text); text-decoration: none; padding: 12px 18px;
  border-radius: 999px; transition: all 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(218, 3, 0, 0.5)); transform: scaleX(0);
  transform-origin: center; transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--blue); background: rgba(4, 75, 170, 0.08); transform: translateY(-1px); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after { transform: scaleX(1); }

/* ── CTA BUTTON ── */
.nav-cta {
  margin-left: 18px; padding: 10px 20px !important; border-radius: 999px; font-size: 13px !important;
  background: linear-gradient(135deg, var(--red) 0%, #ff1a1a 100%) !important; color: #ffffff !important;
  border: none; font-weight: 700; letter-spacing: 0.8px !important; box-shadow: 0 4px 15px rgba(218, 3, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important; white-space: nowrap; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #ff1a1a 0%, var(--red) 100%) !important;
  transform: translateY(-2px) scale(1.03) !important; box-shadow: 0 8px 25px rgba(218, 3, 0, 0.5) !important;
}

/* ── CART ICON (ADD TO CART) ── */
.nav-cart-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  margin-left: 12px; margin-right: 8px; border-radius: 50%; background: rgba(4, 75, 170, 0.08);
  color: var(--blue); text-decoration: none; transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative; flex-shrink: 0;
}
.nav-cart-icon:hover {
  background: var(--red); color: var(--white); transform: translateY(-2px) scale(1.08);
  box-shadow: 0 8px 20px rgba(218, 3, 0, 0.25);
}
.nav-cart-icon svg { width: 24px; height: 24px; stroke-width: 2.2; }
.nav-cart-icon::after {
  content: '0'; position: absolute; top: -2px; right: -2px; width: 20px; height: 20px;
  background: var(--red); color: var(--white); font-family: var(--font-display); font-size: 11px;
  font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white); box-shadow: 0 2px 6px rgba(218, 3, 0, 0.3);
}

/* ── BURGER MENU ── */
.nav-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px;
  border-radius: 12px; transition: background 0.2s ease; background: transparent; border: none; outline: none;
}
.nav-burger:hover { background: rgba(4, 75, 170, 0.06); }
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--blue);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1); border-radius: 999px; transform-origin: center;
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; }
.nav-overlay { display: none; }

/* ── DROPDOWN ── */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; background: var(--white);
  border-radius: 16px; border-top: 3px solid var(--blue); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  opacity: 0; pointer-events: none; transform: translateY(8px); transition: var(--transition); z-index: 100; overflow: hidden;
}
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown li { list-style: none; }
.dropdown a {
  display: block; padding: 10px 20px !important; font-size: 13px !important; color: var(--text) !important;
  border-bottom: 1px solid var(--gray2); letter-spacing: 0.5px !important;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover { background: var(--gray); color: var(--blue) !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative; width: 100%; height: 100vh; min-height: 820px; padding-top: 120px;
  overflow: hidden; display: flex; align-items: center;
  background: linear-gradient(135deg, #070b13 0%, #0d1527 50%, #050810 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 25%, rgba(218, 3, 0, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 35%, rgba(4, 75, 170, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 50% 80%, rgba(10, 22, 40, 0.8) 0%, transparent 65%);
  z-index: 0;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px; z-index: 0;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 75%);
}
.hero-content {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 40px; gap: 60px;
}
.hero-text { flex: 1; max-width: 560px; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 64px); font-weight: 800;
  line-height: 0.9; color: var(--white); text-transform: uppercase; letter-spacing: -0.03em;
  margin-bottom: 28px; text-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.hero-title .accent { color: var(--red); text-shadow: 0 10px 24px rgba(218, 3, 0, 0.3); }
.hero-title .blue-line { display: block; color: rgba(255,255,255,0.28); -webkit-text-stroke: 1px rgba(255,255,255,0.45); }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 480px; }
.hero-stats { display: flex; gap: 40px; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255, 255, 255, 0.6); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

.hero-visual { flex: 0 0 min(520px, 48vw); min-height: 560px; position: relative; display: flex; align-items: center; justify-content: center; margin-left: 8px; }
.hero-image-stack { position: relative; width: min(460px, 100%); max-width: 460px; aspect-ratio: 1 / 1; }
.hero-image-circle { position: absolute; border: 10px solid var(--red); border-radius: 50%; background: #f7f9fc; overflow: hidden; box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22); }
.hero-image-circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hero-image-primary { width: 100%; height: 100%; top: 0; right: 0; left: 0; bottom: 0; }
.hero-image-secondary { width: 38%; aspect-ratio: 1 / 1; bottom: 5%; left: 2%; transform: translate(-10%, 10%); z-index: 2; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { padding: 120px 0; background: linear-gradient(135deg, #0b1d35 0%, #0c2846 50%, #07111f 100%); overflow: hidden; position: relative; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr); gap: 48px; align-items: center; }
.about-image-card { width: 100%; max-width: 640px; min-height: 420px; border-radius: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.about-image-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
#about .section-title { color: var(--white); }
#about .section-subtitle { color: rgba(255, 255, 255, 0.9); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; padding: 20px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 16px; transition: var(--transition); }
.about-feature:hover { background: linear-gradient(135deg, rgba(4, 75, 170, 0.9), rgba(2, 63, 142, 0.92)); transform: translateY(-4px); }
.af-icon { width: 44px; height: 44px; background: var(--blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.af-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); text-transform: uppercase; }
.af-desc { font-size: 13px; color: rgba(255,255,255,0.72); margin-top: 2px; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services { padding: 120px 0; background: linear-gradient(135deg, #071827 0%, #061520 48%, #08111f 100%); position: relative; overflow: hidden; }
#services .section-title { color: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 28px; overflow: hidden; box-shadow: 0 18px 48px rgba(0,0,0,0.22); transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(56,189,248,0.25); }
.service-img { height: 210px; position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.08); }
.service-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-num { position: absolute; top: 16px; right: 16px; font-family: var(--font-display); font-size: 48px; font-weight: 900; color: rgba(255,255,255,0.18); }
.service-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.service-icon { width: 54px; height: 54px; background: linear-gradient(135deg, var(--blue), #0256c9); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.service-desc { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 18px; }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
#products { padding: 120px 0; background: linear-gradient(135deg, #07111f 0%, #081f3f 45%, #07111f 100%); overflow: hidden; }
#products .section-title { color: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.product-card { background: linear-gradient(180deg, rgba(5,24,47,0.95) 0%, rgba(4,43,89,0.85) 100%); border: 1px solid rgba(255,255,255,0.18); border-radius: 42px; padding: 0 0 12px; transition: transform 0.35s ease; box-shadow: 0 38px 110px rgba(0,0,0,0.3); min-height: 600px; display: flex; flex-direction: column; }
.product-card:hover { border-color: rgba(56,189,248,0.55); transform: translateY(-10px); }
.product-card-top { height: 320px; display: flex; align-items: stretch; justify-content: center; margin-bottom: 18px; position: relative; overflow: hidden; border-radius: 42px 42px 0 0; }
.product-image { width: 100%; height: 100%; object-fit: cover; border-radius: 42px 42px 0 0; }
.product-badge { position: absolute; top: 20px; left: 20px; background: linear-gradient(135deg, #38bdf8, #0c7dff); color: #fff; font-family: var(--font-display); font-size: 11px; font-weight: 900; letter-spacing: 1.6px; text-transform: uppercase; padding: 10px 16px; border-radius: 999px; }
.product-name { font-family: var(--font-display); font-size: 30px; font-weight: 900; text-transform: uppercase; color: var(--white); padding: 0 28px; margin-bottom: 6px; }
.product-size { font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 700; padding: 0 28px; }
.product-desc { font-size: 16px; color: rgba(255,255,255,0.88); padding: 0 28px; line-height: 1.85; }
.product-highlights { display: flex; flex-wrap: wrap; gap: 12px; padding: 8px 28px 0; margin-top: 6px; }
.product-highlights span { padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.88); font-size: 14px; }

/* ============================================================
   WHY CHOOSE US & STATS & SAFETY
   ============================================================ */
#why-us { padding: 90px 0 80px; background: linear-gradient(160deg, #081824 0%, #0f3a6a 100%); }
#why-us .section-title { color: #eef7ff; }
.why-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 42px; align-items: center; margin-top: 42px; }
.why-items { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-item { display: flex; gap: 16px; padding: 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; }
.why-item-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.12); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item-title { font-family: var(--font-display); font-size: 16px; font-weight: 800; text-transform: uppercase; color: #f3f9ff; }
.why-item-desc { font-size: 14px; color: rgba(238,247,255,0.76); margin-top: 6px; }
.why-visual { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; padding: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 28px; }
.why-image { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }

#stats { padding: 80px 0; background: var(--black); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 40px 24px; border-right: 1px solid rgba(255,255,255,0.06); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: clamp(40px, 4vw, 64px); font-weight: 900; color: var(--white); display: flex; justify-content: center; gap: 4px; }
.stat-suffix { color: var(--red); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 2px; margin-top: 8px; }

#safety { padding: 90px 0; background: linear-gradient(160deg, #06131f 0%, #0b2a52 100%); }
#safety .section-title { color: var(--white); }
.safety-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.safety-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; background: rgba(255,255,255,0.06); }
.safety-num { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: rgba(255,255,255,0.18); min-width: 40px; }
.safety-item-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; text-transform: uppercase; color: #f4f8ff; }
.safety-item-desc { font-size: 13px; color: rgba(255,255,255,0.72); margin-top: 6px; }

/* ============================================================
   TESTIMONIALS & CTA & CONTACT & FOOTER
   ============================================================ */
#testimonials { padding: 120px 0; background: linear-gradient(180deg, #0a1a35 0%, #0e2c5d 100%); overflow: hidden; }
#testimonials .section-title { color: var(--white); }
.testimonials-track-wrap { overflow: hidden; }
.testimonials-track { display: flex; gap: 28px; animation: scroll-track 30s linear infinite; width: max-content; }
@keyframes scroll-track { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.testimonial-card { width: 380px; flex-shrink: 0; background: rgba(7,27,50,0.92); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 32px; }
.test-stars { color: #38bdf8; font-size: 20px; margin-bottom: 16px; }
.test-text { font-size: 14px; color: rgba(238,247,255,0.88); line-height: 1.8; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #38bdf8, #0d4ea8); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); }
.test-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; color: #eef7ff; }
.test-company { font-size: 12px; color: rgba(173,216,255,0.7); }

#cta-band { padding: 100px 0; background: linear-gradient(135deg, #03162f 0%, #0c3d77 60%, #071b3b 100%); text-align: center; }
.cta-band-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 900; color: var(--white); text-transform: uppercase; }
.cta-band-sub { font-size: 16px; color: rgba(255,255,255,0.75); margin: 16px auto 40px; max-width: 480px; }

#contact { padding: 120px 0; background: linear-gradient(135deg, #04101e 0%, #081e3d 100%); }
#contact .section-title { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-block { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon { width: 48px; height: 48px; background: var(--blue); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-block-label { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #d8f1ff; margin-bottom: 4px; }
.contact-block-value { font-size: 16px; color: #eef7ff; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: white; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { padding: 14px 18px; border: 1.5px solid var(--gray2); border-radius: 2px; font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--white); outline: none; }
.form-textarea { min-height: 120px; resize: vertical; }

#footer { background: #070e1f; color: rgba(255,255,255,0.65); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo img { height: 44px; width: auto; margin-bottom: 20px; }
.footer-desc { font-size: 14px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-social { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); }
.footer-social:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.footer-heading { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--white); }
.footer-links a::before { content: '›'; color: var(--blue); font-size: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 16px; }
.footer-bottom a { color: var(--blue); text-decoration: none; }

/* ============================================================
   ANIMATION CLASSES
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE FIXES (Cleaned & Fixed)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; text-align: center; padding: 0 24px; }
  .hero-visual { flex: 0 0 420px; min-height: 420px; width: 100%; max-width: 440px; margin: 0 auto; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-cta { display: none !important; }
}

@media (max-width: 768px) {
  #navbar { top: 12px; width: calc(100% - 24px); border-radius: 18px; }
  #navbar.scrolled { top: 8px; width: calc(100% - 16px); }
  .nav-inner { height: 68px; padding: 0 20px; }
  #navbar.scrolled .nav-inner { height: 60px; }
  .nav-logo img { height: 56px; }
  #navbar.scrolled .nav-logo img { height: 48px; }

  .nav-links, .nav-cta { display: none; }
  
  /* 🛒 Cart Icon Mobile Fix */
  .nav-cart-icon { 
    display: inline-flex !important; 
    width: 42px; 
    height: 42px; 
    margin-left: auto; 
    margin-right: 8px; 
    background: rgba(4, 75, 170, 0.1); 
  }
  .nav-cart-icon svg { width: 20px; height: 20px; }
  .nav-cart-icon::after { width: 18px; height: 18px; font-size: 10px; top: -4px; right: -4px; }

  .nav-burger { display: flex; }

  .mobile-menu {
    display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(30px) saturate(180%);
    padding: 100px 24px 32px; z-index: 998; gap: 6px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-110%); transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1); border-radius: 0 0 28px 28px;
  }
  body.nav-open .mobile-menu { transform: translateY(0); }
  .mobile-menu a {
    font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text); text-decoration: none; padding: 14px 20px;
    border-radius: 14px; transition: all 0.25s ease; display: block;
  }
  .mobile-menu .mobile-cta {
    margin-top: 12px; background: linear-gradient(135deg, var(--red) 0%, #ff1a1a 100%); color: #fff;
    text-align: center; border-radius: 999px; padding: 16px 20px; font-size: 15px; letter-spacing: 1.5px;
  }
  .nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.3); z-index: 997; backdrop-filter: blur(2px);
  }
  body.nav-open .nav-overlay { display: block; }

  .services-grid, .products-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .safety-items, .why-items, .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 480px) {
  #navbar { top: 8px; width: calc(100% - 16px); border-radius: 16px; }
  .nav-inner { height: 62px; padding: 0 16px; }
  .nav-logo img { height: 48px; }
  .hero-stats { gap: 20px; flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}