:root {
  --bg: #0d0d0d;
  --bg-soft: #141414;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --red: #b00000;
  --silver: #a6a6a6;
  --white: #d4af37;
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 18px 55px rgba(212, 175, 55, 0.15);
  --radius: 22px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 84px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 28%),
    radial-gradient(circle at left center, rgba(176, 0, 0, 0.14), transparent 20%),
    linear-gradient(180deg, #090909 0%, #0d0d0d 55%, #111111 100%);
  color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: #111;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 999;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.core-pading{
  position: relative;
  padding: 1.5rem 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Orbitron", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.22), rgba(255,255,255,0.04));
  border: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow: var(--shadow-gold);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.brand-copy small {
  color: var(--silver);
  font-size: 0.58rem;
  letter-spacing: 0.02em;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  box-shadow: var(--shadow);
}

.site-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(212, 175, 55, 0.12);
  color: var(--white);
  transform: translateX(2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #111;
  background: linear-gradient(135deg, #e5c35c, #d4af37 55%, #9d7721);
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.28);
}

.btn-outline {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.btn-sm {
  min-height: 42px;
  padding: 0.65rem 1rem;
}

.btn-block {
  width: 100%;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-top: 1rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(13,13,13,0.86) 0%, rgba(13,13,13,0.68) 45%, rgba(13,13,13,0.8) 100%),
    radial-gradient(circle at 75% 30%, rgba(212,175,55,0.18), transparent 22%),
    radial-gradient(circle at 70% 60%, rgba(176,0,0,0.18), transparent 24%);
  pointer-events: none;
}

.hero-grid,
.about-grid,
.contact-grid,
.packaging-grid,
.quality-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.12rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.eyebrowe {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

#quality-mar{
  margin-bottom: 20px;
}
.hero h1,
.section-heading h2 {
  margin: 1rem 0 1rem;
  font-family: "Orbitron", sans-serif;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(1.0rem, 7vw, 1.75rem);
}

.hero-subheadline {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-text,
.section-heading p,
.glass-card p,
.list-clean,
.showcase-card p,
.quality-item p,
.contact-card p,
.footer-text {
  color: var(--muted);
  line-height: 1.75;
  text-align: left;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.hero-highlights li,
.badge-row span,
.showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-highlights i,
.card-icon,
.feature-card i,
.market-card i,
.contact-card i,
.quality-item i {
  color: var(--gold);
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero-visual {
  min-height: 380px;
  position: relative;
  display: grid;
  place-items: center;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 0px, 5px, 0px, 5px;
  text-align: left;
}
.glass-card h3 {
  text-align: center;
  margin-bottom: 0.75rem; /* Headings ke neeche thoda gap dene ke liye */
}
.glass-per{
  text-align: left;
}

.engine-card {
  position: relative;
  width: min(420px, 100%);
  padding: 1.5rem;
  overflow: hidden;
}

.engine-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 40%, rgba(176,0,0,0.08));
  pointer-events: none;
}

.engine-topline,
.panel-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 700;
}

/* .hero-visual {
  min-height: 380px;
  position: relative;
  display: grid;
  place-items: center;
}

/* Animations and reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }

/* Background glowing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px); /* Blur thoda barha diya taake smoother glow aaye */
  opacity: 0.8;
}

.orb-gold {
  width: 140px;
  height: 140px;
  top: 5%;
  right: 12%;
  background: radial-gradient(circle, rgba(212,175,55,0.35), rgba(212,175,55,0));
}

.orb-red {
  width: 160px;
  height: 160px;
  bottom: 5%;
  left: 8%;
  background: radial-gradient(circle, rgba(176,0,0,0.3), rgba(176,0,0,0));
}

/* Main Glass Card Wrapper */
.engine-card {
  position: relative;
  width: min(440px, 100%); /* Width thodi barhai hai taake wide image fit aaye */
  padding: 1.75rem;
  overflow: hidden;
  z-index: 2;
}

.engine-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), transparent 40%, rgba(176,0,0,0.06));
  pointer-events: none;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px); /* Blur barhane se premium look aati hai */
  border-radius: var(--radius);
}

.engine-topline {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 700;
}

.engine-title {
  margin-top: 0.65rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

/* --- NEW IMAGE CSS --- */
.engine-product-image {
  position: relative;
  width: 100%;
  margin: 1.5rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.premium-oil-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  /* Agar image ke borders sharp lag rahe hon to aap line niche soft border de sakte hain */
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
}
/* --------------------- */

/* Bottom Buttons/Specs */
.engine-specs {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 1.25rem;
}

.engine-specs span {
  flex: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 0.4rem;
  font-size: 0.75rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  white-space: nowrap;
}
.stats-strip {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.stats-grid,
.card-grid,
.product-grid,
.showcase-grid,
.feature-grid,
.market-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.stat-card,
.product-card,
.showcase-card,
.feature-card,
.market-card,
.contact-card {
  padding: 1.35rem;
}

.stat-card strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--gold);
}

.stat-card span {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-width {
  max-width: 100%;
}

.section-heading.left-align {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3.3rem);
}

.about-grid,
.contact-grid,
.packaging-grid,
.quality-grid {
  grid-template-columns: 1fr;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.18);
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  }
  .about-mar{
    margin-top: 10px;
  }

.list-clean {
  margin: 0;
  padding-left: 1.1rem;
}

.five-col,
.pack-grid,
.specialty-grid,
.showcase-grid,
.feature-grid,
.market-grid {
  grid-template-columns: 1fr;
}

.portfolio-block + .portfolio-block {
  margin-top: 2rem;
}

.portfolio-header {
  margin-bottom: 1rem;
}

.portfolio-header h3,
.showcase-card h3,
.product-card h4,
.quality-item h3,
.market-card h3,
.contact-card h3,
.contact-form-wrap h3,
.site-footer h3,
.quality-panel h3 {
  margin-top: 0;
}

/* .product-thumb {
  position: relative;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  place-items: end center;
  padding-bottom: 1.1rem;
  margin-bottom: 1rem;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01)),
    radial-gradient(circle at top, rgba(212,175,55,0.18), transparent 36%),
    linear-gradient(180deg, #171717, #090909);
  border: 1px solid rgba(255,255,255,0.08);
} */
.product-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
  text-align: center;
}

.product-thumb img {
  width: 100%;
  height: 88%;
  object-fit: contain; /* poori bottle nazar ayegi */
  display: block;
}

.product-thumb::before,
.product-thumb::after,
.bottle::before,
.bottle::after {
  content: "";
  position: absolute;
}

/* .product-thumb::before {
  width: 92px;
  height: 140px;
  border-radius: 22px 22px 14px 14px;
  bottom: 32px;
  background: linear-gradient(180deg, #202020 0%, #080808 68%, #151515 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 35px rgba(0,0,0,0.42);
} */

/* .product-thumb::after {
  width: 44px;
  height: 22px;
  border-radius: 8px 8px 4px 4px;
  bottom: 158px;
  background: linear-gradient(180deg, #2a2a2a, #111);
  border: 1px solid rgba(255,255,255,0.08);
} */

.product-thumb span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.92), rgba(157,119,33,0.95));
  color: #111;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(212,175,55,0.22);
  margin-bottom: 10px;
  margin-top: 10px;
}

.pack-4l::before,
.pack-5l::before,
.thumb-grease::before {
  width: 130px;
  height: 120px;
  border-radius: 20px;
  bottom: 44px;
}

.pack-4l::after,
.pack-5l::after,
.thumb-grease::after {
  width: 34px;
  height: 28px;
  bottom: 130px;
  right: calc(50% - 74px);
  border-radius: 6px 10px 8px 6px;
}

.pack-20l::before,
.pack-208l::before,
.thumb-gear::before,
.thumb-brake::before,
.thumb-chain::before {
  width: 110px;
  height: 146px;
  border-radius: 16px;
}

.pack-208l::before {
  width: 125px;
  height: 155px;
  border-radius: 20px;
}

/* .pack-208l::after {
  width: 108px;
  height: 10px;
  bottom: 175px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(212,175,55,0.8), rgba(255,255,255,0.2), rgba(212,175,55,0.8));
  border: none;
} */

.pack-1l,
.pack-4l,
.pack-5l,
.pack-20l,
.pack-208l,
 .thumb-grease,
.thumb-gear,
.thumb-brake,
.thumb-chain {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01)),
    radial-gradient(circle at top, rgba(176,0,0,0.18), transparent 36%),
    linear-gradient(180deg, #171717, #090909);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.badge-row span {
  color: var(--white);
  font-weight: 600;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.24), transparent 65%);
}

.showcase-tag {
  display: inline-flex;
  width: fit-content;
  color: var(--gold);
  border-color: rgba(212,175,55,0.22);
  margin-bottom: 10px;
  
}


.feature-card,
.market-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 82px;
}

.feature-card i,
.market-card i {
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.18);
}
/* 
.quality-list {
  display: grid;
  gap: 1rem;
}

.quality-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem;
}

.quality-item i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.18);
}

.quality-panel {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.quality-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), transparent 40%, rgba(176,0,0,0.08));
}

.quality-panel > * {
  position: relative;
  z-index: 1;
} */

.quality-list {
  display: grid;
  /* Expert Tip: Grid ko responsive banane ke liye taake laptop par cards side-by-side dikhein 
     aur mobile par ek ke niche ek automatic center ho jayein.
  */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; /* Gap thoda badha diya taake clean lage */
}

.quality-item h3 {
  text-align: left;
}

.quality-item {
  display: flex;
  flex-direction: column; /* Items ko upar se niche (vertical) align karne ke liye */
  align-items: center;    /* Icon, H3, aur P sab ko horizontal center karne ke liye */
  text-align: center;     /* Poore text ko center align karne ke liye */
  gap: 1.2rem;            /* Icon aur text ke darmiyan ka gap */
  padding: 1.5rem;        /* Padding thodi behtar kar di */
}

.quality-item i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.18);
  /* Agar icon ke niche thoda mazeed gap chahiye ho to margin use kar sakte hain */
  margin-bottom: 0.5rem; 
}

/* Dono .glass-card classes ko merge (akatha) kar diya hai taake code saaf ho jaye */
/* .glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px); 
  border-radius: var(--radius);
} */

/* H3 ke liye thodi spacing */
/* .quality-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
} */

/* Paragraph ke liye font size aur opacity taake premium look aaye */
.quality-item p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
}
.panel-metrics {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.panel-metrics div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.panel-metrics strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.packaging-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.packaging-points li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--muted);
}

.packaging-points i {
  color: var(--gold);
}

.packaging-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.2rem;
  overflow: hidden;
}

.bottle {
  position: relative;
  width: 94px;
  height: 220px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(180deg, #222 0%, #090909 68%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 38px rgba(0,0,0,0.42);
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 1rem;
}

.bottle::before {
  width: 42px;
  height: 24px;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #2e2e2e, #141414);
  border: 1px solid rgba(255,255,255,0.08);
}

.bottle::after {
  inset: 34px 14px 60px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(212,175,55,0.92), rgba(142,106,20,0.92));
  opacity: 0.92;
}

.bottle span {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 800;
  color: #111;
  background: rgba(255,255,255,0.88);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

.bottle-center {
  width: 120px;
  height: 270px;
  transform: translateY(-10px);
}

.bottle-right::after {
  background: linear-gradient(180deg, rgba(176,0,0,0.92), rgba(100,0,0,0.92));
}

.bottle-left::after {
  background: linear-gradient(180deg, rgba(166,166,166,0.96), rgba(100,100,100,0.92));
}

.packaging-glow {
  position: absolute;
  inset: auto 10% 18px;
  height: 70px;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 65%);
  filter: blur(10px);
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-card i {
  font-size: 1.1rem;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.18);
  flex-shrink: 0;
}

.contact-card a:hover,
.footer-links a:hover,
.social-links a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  padding: 1.4rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.42);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212,175,55,0.46);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
  background: rgba(255,255,255,0.05);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: rgba(255, 99, 99, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 99, 99, 0.1);
}

.error-message {
  display: block;
  min-height: 18px;
  margin-top: 0.4rem;
  color: #ff8f8f;
}

.form-status {
  min-height: 24px;
  margin: 1rem 0 0;
  font-weight: 600;
}

.form-status.success {
  color: #7cf2a2;
}

.form-status.error {
  color: #ff9e9e;
}

.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  padding: 4rem 0 2.4rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.08);
}

.footer-bottom {
  padding: 1rem 0 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateCounter {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@media (min-width: 640px) {
  .hero-highlights,
  .stats-grid,
  .about-grid,
  .feature-grid,
  .market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pack-grid,
  .specialty-grid,
  .showcase-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
  }

  .site-nav a {
    padding: 0.75rem 0.95rem;
  }

  .hero-grid,
  .contact-grid,
  .packaging-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .quality-grid {
     grid-template-columns: repeat(1, minmax(1, 1fr));
    align-items: center;
  }
  .contact-grid {
    grid-template-columns: 0.9fr;
    align-items: center;

  }

  .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card-grid.five-col {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .pack-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .specialty-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  }
}

@media (min-width: 1120px) {
  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
