/* =============================================
   MAURYA BAJAJ — Main Stylesheet
   Authorized Bajaj Dealership, Patna, Bihar
   ============================================= */

/* Google Fonts — loaded in HTML <head> */

/* ── CSS VARIABLES ── */
:root {
  --blue:        #0033A0;
  --blue-bright: #0047CC;
  --blue-light:  #1A5FD4;
  --blue-glow:   rgba(0, 71, 204, 0.22);
  --black:       #050508;
  --dark:        #0B0C12;
  --charcoal:    #10121A;
  --steel:       #181B26;
  --panel:       #1C2030;
  --white:       #F0F2FF;
  --silver:      #8A90B0;
  --muted:       #4A5070;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Noto Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--blue-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
}
.cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1.5px solid var(--blue-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.28s ease, width 0.2s, height 0.2s;
  opacity: 0.45;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 80px;
  background: rgba(5, 5, 8, 0.97);
  border-bottom: 1px solid rgba(0, 71, 204, 0.2);
  backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: 20px; text-decoration: none; }
.nav-divider { width: 1px; height: 44px; background: rgba(0, 71, 204, 0.35); }
nav ul { display: flex; list-style: none; gap: 36px; }
nav ul a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--silver); text-decoration: none;
  position: relative; transition: color 0.2s;
}
nav ul a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-bright);
  transition: width 0.3s;
}
nav ul a:hover { color: var(--white); }
nav ul a:hover::after { width: 100%; }
.nav-cta {
  background: var(--blue);
  color: white; padding: 10px 26px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; text-decoration: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta:hover { background: var(--blue-bright); transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 110px 60px 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 75% 50%, rgba(0,51,160,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 10% 20%, rgba(0,71,204,.06) 0%, transparent 60%),
    linear-gradient(160deg, #050508 0%, #080A14 60%, #050508 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,71,204,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,71,204,.045) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-lines::before {
  content: '';
  position: absolute; top: -20%; right: 0;
  width: 55%; height: 140%;
  background: repeating-linear-gradient(
    -15deg, transparent, transparent 30px,
    rgba(0,51,160,.04) 30px, rgba(0,51,160,.04) 31px
  );
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,51,160,.12);
  border: 1px solid rgba(0,71,204,.3);
  padding: 8px 20px; margin-bottom: 30px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #4A8AFF;
  animation: fadeUp 0.8s ease forwards; opacity: 0;
}
.badge-dot {
  width: 6px; height: 6px;
  background: #4A8AFF; border-radius: 50%;
  animation: pulse 1.8s infinite;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 118px);
  line-height: 0.9; letter-spacing: 3px;
  animation: fadeUp 0.8s 0.12s ease forwards; opacity: 0;
}
.hero-title .blue  { color: var(--blue-bright); }
.hero-title .outline { -webkit-text-stroke: 2px rgba(0,71,204,.25); color: transparent; }
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 400;
  color: var(--silver); margin-top: 22px; line-height: 1.65;
  animation: fadeUp 0.8s 0.24s ease forwards; opacity: 0;
}
.hero-actions {
  display: flex; gap: 14px; margin-top: 38px;
  animation: fadeUp 0.8s 0.38s ease forwards; opacity: 0;
}
.hero-stats {
  display: flex; gap: 48px;
  margin-top: 54px; padding-top: 34px;
  border-top: 1px solid rgba(0,71,204,.15);
  animation: fadeUp 0.8s 0.52s ease forwards; opacity: 0;
}
.stat-n { font-family: 'Bebas Neue', sans-serif; font-size: 46px; line-height: 1; color: var(--white); }
.stat-n span { color: var(--blue-bright); }
.stat-l {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--silver);
  margin-top: 4px; font-weight: 600;
}
.hero-visual {
  position: absolute; right: -10px; top: 0; bottom: 0;
  width: 50%; display: flex; align-items: center; justify-content: center;
  animation: fadeIn 1.2s 0.3s ease forwards; opacity: 0;
}
.hero-moto-svg { width: 96%; max-width: 580px; filter: drop-shadow(0 0 40px rgba(0,71,204,.28)); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--blue); color: white;
  padding: 16px 36px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; text-decoration: none; cursor: pointer;
  transition: all 0.2s; display: inline-block;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,71,204,.4);
}
.btn-outline {
  border: 1.5px solid rgba(0,71,204,.4);
  color: #4A8AFF; padding: 16px 36px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.2s; display: inline-block;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-outline:hover { border-color: var(--blue-bright); background: rgba(0,71,204,.1); }

/* ── MARQUEE ── */
.marquee-strip { background: var(--blue); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: 4px;
  color: white; padding: 0 36px;
  display: flex; align-items: center; gap: 16px;
}
.marquee-item::after { content: '◆'; font-size: 7px; opacity: 0.55; }

/* ── LOGOS BAR ── */
.logos-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(0,71,204,.12);
  padding: 34px 60px;
  display: flex; align-items: center;
  justify-content: center; gap: 48px; flex-wrap: wrap;
}
.logos-bar-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
}
.logos-bar-div { width: 1px; height: 44px; background: rgba(0,71,204,.2); }

/* ── SECTION SHARED ── */
section { padding: 100px 60px; }
.eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--blue-bright); }
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1; letter-spacing: 2px; margin-bottom: 18px;
}
.sec-desc { font-size: 15px; color: var(--silver); line-height: 1.8; max-width: 500px; }

/* ── ABOUT ── */
#about { background: var(--charcoal); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.feat-card {
  background: var(--steel);
  border: 1px solid rgba(0,71,204,.1);
  padding: 24px; border-bottom: 3px solid var(--blue);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.4); border-bottom-color: var(--blue-bright); }
.feat-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.feat-t { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 1px; color: var(--white); margin-bottom: 6px; }
.feat-d { font-size: 12px; color: var(--silver); line-height: 1.65; }

/* ── LOCATIONS ── */
#locations { background: var(--black); }
.loc-header { text-align: center; margin-bottom: 60px; }
.loc-header .eyebrow { justify-content: center; }
.loc-header .sec-desc { margin: 0 auto; }
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.loc-card {
  background: var(--charcoal);
  border: 1px solid rgba(0,71,204,.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.loc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(0,71,204,.3);
  border-color: rgba(0,71,204,.3);
}
.loc-top {
  height: 160px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--steel);
}
.loc-top-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,51,160,.12) 0%, rgba(0,71,204,.04) 100%); }
.loc-big-num { position: absolute; bottom: -14px; right: 4px; font-family: 'Bebas Neue', sans-serif; font-size: 92px; color: rgba(0,71,204,.07); user-select: none; line-height: 1; }
.loc-hex {
  width: 62px; height: 62px;
  background: rgba(0,51,160,.14); border: 1px solid rgba(0,71,204,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; position: relative; z-index: 2;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.loc-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--blue); color: white;
  font-family: 'Rajdhani', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.loc-body { padding: 24px 20px; }
.loc-name { font-family: 'Bebas Neue', sans-serif; font-size: 25px; letter-spacing: 2px; margin-bottom: 8px; }
.loc-addr { font-size: 12px; color: var(--silver); line-height: 1.6; margin-bottom: 14px; }
.loc-hr { height: 1px; background: rgba(0,71,204,.1); margin-bottom: 14px; }
.loc-meta { display: flex; flex-direction: column; gap: 6px; }
.loc-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--silver); font-family: 'Rajdhani', sans-serif; }
.loc-btn {
  display: block; text-align: center; margin-top: 16px; padding: 11px;
  border: 1px solid rgba(0,71,204,.3); color: #4A8AFF;
  text-decoration: none; font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.2s;
}
.loc-btn:hover { background: var(--blue); color: white; border-color: var(--blue); }

/* ── SERVICES ── */
#services { background: var(--charcoal); }
.svc-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.svc-card {
  background: var(--steel);
  border: 1px solid rgba(0,71,204,.08);
  padding: 24px; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.svc-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.svc-t { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.svc-d { font-size: 12px; color: var(--silver); line-height: 1.7; }

/* ── WHY US ── */
#why { background: var(--black); position: relative; overflow: hidden; }
.why-radial { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(0,51,160,.05) 0%, transparent 70%); }
.why-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-items { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 18px; align-items: flex-start; padding: 20px;
  border: 1px solid rgba(0,71,204,.08); background: rgba(0,71,204,.02);
  transition: border-color 0.2s, background 0.2s;
}
.why-item:hover { border-color: rgba(0,71,204,.25); background: rgba(0,51,160,.06); }
.why-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  color: var(--blue-bright); opacity: 0.35; line-height: 1;
  flex-shrink: 0; width: 42px; transition: opacity 0.2s;
}
.why-item:hover .why-num { opacity: 0.7; }
.why-t { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 0.8px; margin-bottom: 5px; }
.why-d { font-size: 13px; color: var(--silver); line-height: 1.7; }
.why-visual { display: flex; flex-direction: column; gap: 18px; }
.why-big {
  background: var(--blue); padding: 42px; text-align: center;
  clip-path: polygon(18px 0%, 100% 0%, calc(100% - 18px) 100%, 0% 100%);
}
.why-big-n { font-family: 'Bebas Neue', sans-serif; font-size: 80px; line-height: 1; color: white; display: block; }
.why-big-l { font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.75); display: block; margin-top: 4px; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini { background: var(--charcoal); border: 1px solid rgba(0,71,204,.1); padding: 22px; text-align: center; }
.mini-n { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--white); display: block; }
.mini-n span { color: #4A8AFF; }
.mini-l { font-size: 10px; font-family: 'Rajdhani', sans-serif; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--silver); }

/* ── CONTACT ── */
#contact { background: var(--charcoal); }
.ct-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.ct-form { display: flex; flex-direction: column; gap: 16px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { display: flex; flex-direction: column; gap: 8px; }
.f-lbl { font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); }
.f-input, .f-select, .f-ta {
  background: var(--steel);
  border: 1px solid rgba(0,71,204,.15);
  color: var(--white); padding: 14px 16px;
  font-family: 'Noto Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; resize: none;
}
.f-input:focus, .f-select:focus, .f-ta:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(0,71,204,.12); }
.f-select option { background: var(--steel); }
.ct-info { display: flex; flex-direction: column; gap: 26px; }
.ct-locs { display: flex; flex-direction: column; gap: 13px; }
.ct-loc { display: flex; gap: 13px; align-items: flex-start; padding: 15px; background: rgba(0,71,204,.04); border-left: 3px solid var(--blue); }
.ct-loc-icon { font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.ct-loc-n { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; margin-bottom: 3px; }
.ct-loc-a { font-size: 12px; color: var(--silver); line-height: 1.5; }
.hotline { background: rgba(0,51,160,.1); border: 1px solid rgba(0,71,204,.25); padding: 22px; }
.hl-lbl { font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: #4A8AFF; text-transform: uppercase; margin-bottom: 8px; }
.hl-num { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 3px; }
.hl-hrs { font-size: 12px; color: var(--silver); margin-top: 4px; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(0,71,204,.12);
  padding: 42px 60px;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 22px;
}
.ft-brand { display: flex; align-items: center; gap: 14px; }
.ft-div { width: 1px; height: 28px; background: rgba(0,71,204,.25); }
.ft-copy { font-size: 11px; color: rgba(138,144,176,.5); letter-spacing: 1px; margin-top: 5px; }
.ft-links { display: flex; gap: 28px; }
.ft-links a { font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(138,144,176,.5); text-decoration: none; transition: color 0.2s; }
.ft-links a:hover { color: #4A8AFF; }
.ft-tag { font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(138,144,176,.35); }
.ft-tag span { color: var(--blue-bright); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── KEYFRAME ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.7); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  nav ul { display: none; }
  section { padding: 72px 28px; }
  #hero { padding: 90px 28px 56px; }
  .hero-visual { display: none; }
  #about { grid-template-columns: 1fr; gap: 44px; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .svc-wrap { grid-template-columns: 1fr; gap: 44px; }
  .why-wrap { grid-template-columns: 1fr; gap: 44px; }
  .ct-wrap { grid-template-columns: 1fr; gap: 44px; }
  footer { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
  .logos-bar { padding: 26px 28px; gap: 28px; }
}
@media (max-width: 600px) {
  .loc-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .feat-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
}
