/* ========== Base ========== */
:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --card-bg: #0f172a;
  --accent: #facc15;
  --accent-soft: rgba(250, 204, 21, 0.15);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2933;
  --danger: #ef4444;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 14px 35px rgba(15, 23, 42, 0.8);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
  color: var(--text);
}

/* ========== Layout ========== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== Header / Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  background: rgba(3, 7, 18, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  column-gap: 2.5rem;
}


.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;               /* thoda extra gap */
}

.logo-img {
  width: 100px;        /* Bigger premium logo */
  height: auto;
  border-radius: 15px;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #facc15, #f97316);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #020617;
  font-size: 1.1rem;
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
}

.logo-subtitle {
  font-size: 0.78rem;
  color: #e1e1e1;
}
.nav {
  display: flex;
  gap: 1.6rem;
}

.nav-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease;
  gap: 0.4rem;
}

.btn-primary {
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111827;
  box-shadow: 0 18px 40px rgba(250, 204, 21, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(250, 204, 21, 0.65);
}

.btn-outline {
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.7);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px dashed var(--border);
}

.btn-ghost:hover {
  border-style: solid;
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== Hero / Page Hero ========== */
.hero {
  padding: 3.2rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.text-accent {
  background: linear-gradient(120deg, #facc15, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 32rem;
  font-size: 0.98rem;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  margin: 1.6rem 0;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-tags span {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.25rem 0.7rem;
  background: rgba(15, 23, 42, 0.9);
}

.hero-side-card {
  background: radial-gradient(circle at top left, #111827, #020617);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--shadow-card);
}

.hero-side-card h2 {
  margin-top: 0;
  font-size: 1.1rem;
}

.hero-side-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Page hero for inner pages */
.page-hero {
  padding: 2.2rem 0 1.6rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.8);
  background: radial-gradient(circle at top, rgba(250, 204, 21, 0.08), transparent);
}

.page-hero h1 {
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.95rem;
}

/* ========== Sections / Grid / Cards ========== */
.section {
  padding: 2.7rem 0;
}

.section-alt {
  background: rgba(15, 23, 42, 0.7);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: radial-gradient(circle at top, #111827, #020617);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.1rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.5);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}

.card p {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 0.8rem;
  font-size: 0.86rem;
  color: var(--accent);
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* Highlight boxes */
.highlight-box {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.highlight-box h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--text);
}

/* Product row */
.product-row {
  align-items: flex-start;
}

/* Bullet lists */
.bullet-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.bullet-list li {
  margin-bottom: 0.25rem;
}

/* Center CTA */
.center-cta{
  margin-top:30px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}


/* Founders */
.founder-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact-cta {
  display: flex;
  gap: 0.7rem;
  margin: 1.1rem 0 0.8rem;
  flex-wrap: wrap;
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 1.5rem 1.3rem;
  box-shadow: var(--shadow-card);
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.55rem 0.9rem;
  background: #020617;
  color: var(--text);
  font-size: 0.86rem;
  outline: none;
}

.contact-form textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 110px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.7rem;
}

/* ==============================
   FINAL PREMIUM FOOTER (ONLY)
============================== */

.site-footer {
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1120px;
  margin: auto;
  padding: 3.2rem 1.25rem 2.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.8rem;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.footer-brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.footer-col a {
  display: block;
  margin: 0.4rem 0;
  color: #cbd5e1;
  font-size: 0.88rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-col a:hover {
  color: #facc15;
  transform: translateX(4px);
}

.footer-wa {
  margin-top: 0.8rem;
}

.footer-bottom {
  text-align: center;
  padding: 1rem 0 1.2rem;
  font-size: 0.75rem;
  color: #9ca3af;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Mobile */
@media (max-width: 640px) {
  .footer-inner {
    text-align: center;
  }
}



/* ========== Responsive ========== */
@media (max-width: 900px) {
  .hero-inner,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 2.3rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
    gap: 0.8rem;
  }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav {
  display: flex;
  gap: 1.5rem;
}
.hero-tag {
  display: inline-flex;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.7rem;
  background: rgba(15, 23, 42, 0.9);
}
/*---------------------------------
 HERO SECTION PREMIUM EFFECT
----------------------------------*/
.hero {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at top, #1c273a, #020617 70%);
  border-bottom: 1px solid rgba(250,204,21,0.12);
  overflow: hidden;
}

/* Soft textured look */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.18;
  pointer-events: none;
}

/* Glass card style */
.hero-side-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid rgba(250, 204, 21, 0.25);
  box-shadow: 0 25px 50px rgba(0,0,0,0.45);
  transition: 0.25s ease;
}

.hero-side-card:hover {
  box-shadow: 0 35px 65px rgba(0,0,0,0.6);
}

/* Title wow-effect */
.hero h1 {
  font-size: 3.1rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #FACC15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons premium */
.btn-primary {
  background: linear-gradient(90deg, #FACC15, #b48a04);
  box-shadow: 0px 8px 25px rgba(250,204,21,0.45);
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0px 15px 45px rgba(250,204,21,0.65);
}

/*---------------------------------
 PRODUCT CARDS PREMIUM EFFECT
----------------------------------*/
.card {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FACC15;
}

.card-link {
  font-weight: 600;
  color: #FFD84A;
  transition: 0.25s ease;
}

.card-link:hover {
  margin-left: 4px;
  color: #ffea88;
}

/*---------------------------------
 CONTACT PREMIUM SECTION
----------------------------------*/
.contact-box {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 14px 48px rgba(0,0,0,0.45);
  transition: 0.25s ease;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 65px rgba(0,0,0,0.55);
}

.contact-box h3 {
  color: #FACC15;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-list {
  margin: 1.3rem 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
  color: #e3e3e3;
}

.contact-details p {
  margin: 0.2rem 0;
}



/*---------------------------------
 HERO ANIMATION + TEXT SHINE
----------------------------------*/

/* Smooth hero fade-in */
.hero {
  animation: heroFadeIn 1.1s ease-out both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accent text gradient + shine */
.text-accent {
  background: linear-gradient(90deg, #ffffff, #FACC15, #fffbe6);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  color: transparent;
  animation: textShine 3.2s linear infinite;
  display: inline-block;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/*---------------------------------
 PREMIUM PRODUCT CARD EFFECT
----------------------------------*/
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.6rem;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  transition: 0.25s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Hover lift + glow */
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 16px 45px rgba(0,0,0,0.6);
}

/* Shine stroke on hover */
.product-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  transform: rotate(25deg);
  transition: 0.45s;
}

.product-card:hover::after {
  top: 0%;
  left: 0%;
}

/* Product title premium */
.product-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FACC15;
  margin-bottom: 0.6rem;
}

/* Bullet style */
.product-card li {
  margin: 0.3rem 0;
  color: #d9d9d9;
}
/*---------------------------------
 FLOATING WHATSAPP BUTTON
----------------------------------*/
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #25D366, #128C7E);
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  color: #ffffff;
  z-index: 999;
  border: 2px solid rgba(255,255,255,0.4);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.9);
}
/*---------------------------------
 ABOUT PAGE PREMIUM LAYOUT
----------------------------------*/
.about-hero {
  padding-top: 3.5rem;
}

.about-grid {
  align-items: flex-start;
  gap: 3rem;
}

.about-copy h1 {
  font-size: 2.3rem;
  margin-bottom: 0.6rem;
}

.about-copy .lead {
  font-size: 1rem;
  color: #e5e7eb;
  margin-bottom: 0.9rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.stat-pill {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.stat-number {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: #e5e7eb;
}

.stat-note {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.4rem;
}

.about-industries {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #e5e7eb;
}

.about-industries span {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.about-industries span:first-child {
  background: transparent;
  border: none;
  color: #9ca3af;
}

/* Mobile tweaks */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
/*---------------------------------
 PRODUCT TECH TABLE
----------------------------------*/
.product-table-wrapper {
  margin-top: 1.5rem;
  overflow-x: auto;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: rgba(15,23,42,0.98);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.product-table thead {
  background: linear-gradient(90deg,#0f172a,#1e293b);
}

.product-table th,
.product-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(31,41,55,0.9);
}

.product-table th {
  text-align: left;
  font-weight: 600;
  color: #e5e7eb;
}

.product-table tbody tr:nth-child(even) {
  background: rgba(15,23,42,0.9);
}

.product-table tbody tr:hover {
  background: rgba(30,64,175,0.35);
}

.product-table-note {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: #9ca3af;
}
/*---------------------------------
 MOBILE TABLE REFINEMENT
----------------------------------*/
@media (max-width: 680px) {
  .product-table {
    font-size: 0.75rem;
  }
  .product-table th,
  .product-table td {
    padding: 0.6rem 0.5rem;
  }
  .product-table-note {
    font-size: 0.68rem;
  }
}

@media (max-width: 650px) {
  .nav {
    gap: 0.9rem;
    font-size: 0.85rem;
  }
}
/*---------------------------------
 DEALER / DISTRIBUTOR BADGES
----------------------------------*/
.dealer-advantages {
  margin-top: 1.25rem;
}

.dealer-advantages h4 {
  margin: 0 0 0.8rem 0;
  color: #FACC15;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.dealer-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.9rem;
}

.badge {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  background: rgba(255,255,255,0.035);
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  cursor: default;
  overflow: hidden;
}

.badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(250,204,21,0.16), rgba(250,204,21,0.04));
  border: 1px solid rgba(250,204,21,0.12);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(250,204,21,0.06) inset;
}

.badge-body strong {
  display: block;
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.badge-body span {
  display: block;
  font-size: 0.82rem;
  color: #cbd5e1;
}

/* hover / focus micro animation */
.badge:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 60px rgba(0,0,0,0.6);
  border-color: rgba(250,204,21,0.28);
}

/* small-screen layout */
@media (max-width: 720px) {
  .dealer-badges { grid-template-columns: 1fr; }
  .badge { padding: 0.75rem; gap: 0.65rem; }
  .badge-icon { width: 44px; height: 44px; font-size: 1.1rem; }
}

/*---------------------------------
 DEALER MODAL & ICONS
----------------------------------*/
.badge-icon svg { color: #facc15; }

#open-dealer-modal { text-decoration: none; }

/* Modal base */
.modal { display: none; position: fixed; inset: 0; z-index: 2000; }
.modal[aria-hidden="false"] { display: block; }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(2,6,23,0.7);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 96%;
  max-width: 680px;
  background: rgba(11,14,22,0.95);
  border-radius: 12px;
  padding: 1.4rem;
  border: 1px solid rgba(250,204,21,0.1);
  box-shadow: 0 30px 80px rgba(2,6,23,0.8);
}

.modal-close {
  position: absolute; right: 12px; top: 10px;
  background: transparent; border: none; color: #ddd; font-size: 1.05rem; cursor: pointer;
}

/* Form inside modal */
.modal-panel form label { display:block; margin-bottom:0.6rem; color:#cfd8e3; font-size:0.92rem; }
.modal-panel form input,
.modal-panel form textarea,
.modal-panel form select {
  width:100%; margin-top:0.25rem;
  padding:0.6rem 0.9rem; border-radius:10px;
  background:#071024; color:#e6eef8; border:1px solid rgba(255,255,255,0.06);
}
.modal-panel .muted { color:#9ca3af; margin-bottom:0.6rem; }

/* small screens */
@media (max-width: 640px) {
  .modal-panel { padding: 1rem; width: 94%; }
}

/* modal debug visibility helper */
.modal { display: none; }
.modal[aria-hidden="false"] { display: block; }

/* modal visibility helpers */
.modal { display: none; position: fixed; inset: 0; z-index: 2000; }
.modal[aria-hidden="false"] { display: block; }
.modal-backdrop { position:absolute; inset:0; background: rgba(2,6,23,0.7); backdrop-filter: blur(4px); }
.modal-panel { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:96%; max-width:680px; padding:1.2rem; background: rgba(11,14,22,0.95); border-radius:12px; border:1px solid rgba(250,204,21,0.08); box-shadow:0 30px 80px rgba(0,0,0,0.75); }
.modal-close { position:absolute; right:12px; top:10px; background:transparent; border:none; color:#ddd; font-size:1.05rem; cursor:pointer; }

/* ==============================
   DEALER / OEM HIGHLIGHT SECTION
============================== */

.dealer-highlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(250,204,21,0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(250,204,21,0.08), transparent 60%),
    rgba(15,23,42,0.9);
  border-top: 1px solid rgba(250,204,21,0.12);
  border-bottom: 1px solid rgba(250,204,21,0.12);
}

/* Soft animated glow */
.dealer-highlight::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(250,204,21,0.18), transparent 60%);
  animation: dealerGlow 10s linear infinite;
  opacity: 0.6;
}

@keyframes dealerGlow {
  0% { transform: translate(-20%, -20%); }
  50% { transform: translate(20%, 20%); }
  100% { transform: translate(-20%, -20%); }
}

/* Content stays above glow */
.dealer-highlight .container {
  position: relative;
  z-index: 1;
}
/* Dealer badge entrance animation */
.badge {
  opacity: 0;
  transform: translateY(22px);
  animation: badgeIn 0.8s ease forwards;
}

.badge:nth-child(1) { animation-delay: 0.1s; }
.badge:nth-child(2) { animation-delay: 0.25s; }
.badge:nth-child(3) { animation-delay: 0.4s; }
.badge:nth-child(4) { animation-delay: 0.55s; }

@keyframes badgeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   PREMIUM STATS SECTION
============================== */

.stats-section {
  background: radial-gradient(circle at top, rgba(250,204,21,0.08), transparent 60%);
  padding: 3.2rem 0;
  border-bottom: 1px solid rgba(250,204,21,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.6rem;
  text-align: center;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 1.8rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: #FACC15;
  letter-spacing: 0.02em;
}

.stat-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #cbd5e1;
}

/* ==============================
   MICRO INTERACTIONS – GLOBAL
============================== */

/* Soft glow on hover for interactive elements */
.btn,
.card,
.badge,
.contact-box,
.stat-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.card:hover,
.badge:hover,
.contact-box:hover,
.stat-card:hover {
  box-shadow:
    0 0 0 1px rgba(250,204,21,0.25),
    0 18px 50px rgba(0,0,0,0.55);
}

/* Button press feedback */
.btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

/* Accessible focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(250,204,21,0.6);
  border-radius: 8px;
}

/* Animated underline for section titles */
.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, #facc15, transparent);
  transform: translateX(-50%);
  opacity: 0.8;
}

/* ==============================
   PAGE LOAD SMOOTHNESS
============================== */

body {
  animation: pageFade 0.6s ease-out both;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
::selection {
  background: rgba(250,204,21,0.35);
  color: #020617;
}

.product-link-note{
  margin-top:12px;
  font-size:0.95rem;
  opacity:0.85;
}
.product-link-note a{
  text-decoration:underline;
  font-weight:500;
}













