/* =============================================
   AUTO CITY LUBRICANTS – MAIN STYLESHEET
   Brand: Dark Navy (#0a1628), Gold (#f5a623), White
   ============================================= */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --navy:       #0a1628;
  --navy-mid:   #0d1e3a;
  --navy-light: #132544;
  --navy-card:  #111e36;
  --gold:       #f5a623;
  --gold-dark:  #d4891a;
  --gold-light: #ffc655;
  --white:      #ffffff;
  --off-white:  #e8edf5;
  --grey:       #8a9bbf;
  --grey-light: #c5cfe0;
  --success:    #28d485;

  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;

  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 8px 32px rgba(0,0,0,0.35);
  --shadow-gold:0 4px 20px rgba(245,166,35,0.30);

  --transition: 0.3s ease;
  --max-width:  1200px;
}

/* ---------- 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);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }

.section {
  padding: 96px 0;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.12);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.section__desc {
  color: var(--grey-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section__header--light .section__title { color: var(--white); }
.section__header--light .section__desc { color: var(--grey-light); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  padding: 10px 22px;
  font-size: 0.82rem;
}
.btn--nav:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.btn--lg { padding: 18px 38px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.8rem; }
.btn--full { width: 100%; }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo__img {
  height: 60px;
  width: auto;
}


.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--off-white);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.nav a:hover {
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,166,35,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(13, 30, 58, 0.9) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0c1a30 100%);
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(245,166,35,0.03) 0px,
      rgba(245,166,35,0.03) 1px,
      transparent 1px,
      transparent 60px
    );
  pointer-events: none;
}

/* Animated oil splash decoration */
.hero::before {
  content: '';
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 120%;
  background:
    radial-gradient(ellipse at center, rgba(245,166,35,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge--lobp {
  background: var(--gold);
  color: var(--navy);
}

.badge--lobp-sub {
  background: rgba(245,166,35,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.3);
}

.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--grey-light);
  margin-bottom: 36px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero__sub strong { color: var(--gold); }

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.quality-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 110px;
  text-align: center;
  transition: all var(--transition);
}

.quality-badge:hover {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.5);
  transform: translateY(-3px);
}

.quality-badge__icon {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.quality-badge span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--off-white);
  line-height: 1.3;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1s both;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounceDown 1.5s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---------- TICKER ---------- */
.ticker {
  background: var(--gold);
  color: var(--navy);
  overflow: hidden;
  padding: 12px 0;
}

.ticker__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker__track span { padding: 0 16px; }
.ticker__track .sep { color: var(--navy-mid); padding: 0 4px; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.about__stat {
  text-align: center;
  padding: 32px 16px;
  background: rgba(245,166,35,0.06);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.about__stat:hover {
  background: rgba(245,166,35,0.12);
  transform: translateY(-4px);
}

.stat__number {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-light);
}

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

.pillar {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
}

.pillar:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pillar__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--gold);
  line-height: 1;
}

.pillar h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--white);
}

.pillar p {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.6;
}

/* ---------- PRODUCTS ---------- */
.products {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(245,166,35,0.05) 0%, transparent 50%),
    var(--navy-mid);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.product-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card__icon {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
}

.product-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.65;
}

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card__features li {
  position: relative;
  padding-left: 20px;
  font-size: 0.85rem;
  color: var(--off-white);
}

.product-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.product-card__grades {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.grade {
  background: rgba(245,166,35,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.3);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ---------- BULK BANNER ---------- */
.bulk-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 60px 24px;
}

.bulk-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.bulk-banner__text h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 10px;
}

.bulk-banner__text p {
  color: var(--navy-mid);
  font-size: 1rem;
  max-width: 560px;
}

.bulk-banner .btn--gold {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  flex-shrink: 0;
}

.bulk-banner .btn--gold:hover {
  background: var(--navy-mid);
  color: var(--gold-light);
}

/* ---------- SECTORS ---------- */
.sectors {
  background: var(--navy-light);
}

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

.sector-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}

.sector-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(245,166,35,0.15);
}

.sector-card__icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--gold);
  line-height: 1;
}

.sector-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sector-card p {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.65;
}

.vehicles-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.vehicle-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--off-white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 24px;
  transition: all var(--transition);
}

.vehicle-type:hover {
  background: rgba(245,166,35,0.18);
  border-color: var(--gold);
}

/* ---------- PACK SIZES ---------- */
.pack-sizes {
  background: var(--navy-mid);
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.pack-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all var(--transition);
}

.pack-card:hover {
  border-color: rgba(245,166,35,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pack-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #12234a 0%, var(--navy-card) 100%);
  box-shadow: 0 0 40px rgba(245,166,35,0.15);
}

.pack-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pack-card__volume {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.pack-card__volume span {
  font-size: 1.5rem;
  font-weight: 700;
}

.pack-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}

.pack-card p {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.6;
}

.pack-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pack-card ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--off-white);
}

.pack-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pack-sizes__note {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--grey-light);
  letter-spacing: 0.04em;
}

/* ---------- WHY US ---------- */
.why-us {
  background: var(--navy-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-item {
  padding: 32px 28px;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.why-item:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-4px);
}

.why-item__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--gold);
  line-height: 1;
}

.why-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.65;
}

/* ---------- CONTACT ---------- */
.contact {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(245,166,35,0.06) 0%, transparent 50%),
    var(--navy-mid);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item__icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 4px;
}

.contact-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  display: block;
}

.contact-link:hover { color: var(--gold-light); }

.contact-link--whatsapp { color: #25d366; }
.contact-link--whatsapp:hover { color: #1ebe5c; }

.contact-item__note {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 2px;
}

.contact__form {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--grey-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f5a623' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }

.form-group select option { background: var(--navy-card); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(245,166,35,0.05);
}

/* ---------- FOOTER ---------- */
.footer {
  background: #060f1e;
  border-top: 1px solid rgba(245,166,35,0.15);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 24px 48px;
}

.logo--footer .logo__img { height: 48px; }

.footer__brand p {
  font-size: 0.88rem;
  color: var(--grey);
  margin-top: 16px;
  line-height: 1.7;
}

.footer__cert {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem !important;
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 20px !important;
}

.footer__links,
.footer__products,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h4,
.footer__products h4,
.footer__contact h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer__links a,
.footer__products a {
  font-size: 0.88rem;
  color: var(--grey);
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__products a:hover { color: var(--white); }

.footer__contact p {
  font-size: 0.88rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact i {
  color: var(--gold);
  width: 14px;
  text-align: center;
}

.footer__contact a {
  color: var(--grey);
  transition: color var(--transition);
}

.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--grey);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: repeat(2, 1fr); }
  .about__pillars { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .sectors__grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav { display: none; flex-direction: column; position: fixed; inset: 72px 0 0; background: rgba(10,22,40,0.98); padding: 32px 24px; gap: 4px; z-index: 998; }
  .nav.open { display: flex; }
  .nav a { font-size: 1.1rem; padding: 14px 16px; border-radius: 8px; }
  .nav-toggle { display: flex; }

  .hero__content { text-align: center; }
  .hero__cta { flex-direction: column; align-items: center; }

  .pack-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }

  .contact__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .bulk-banner__inner { flex-direction: column; text-align: center; }

  .about__grid { grid-template-columns: repeat(2, 1fr); }
  .about__pillars { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .sectors__grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .hero__badges { gap: 8px; }
  .quality-badge { min-width: 90px; padding: 12px 14px; }
}

@media (max-width: 480px) {
  .contact__form { padding: 24px 20px; }
  .hero__heading { font-size: 1.9rem; }
  .about__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { padding: 48px 24px 32px; }
}
