/* ============================================================
   AATOTEK ENERGIA PRIVATE LIMITED — Premium Website Styles
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --black:       #0B0B0B;
  --navy:        #0F172A;
  --navy-mid:    #1E293B;
  --navy-light:  #334155;
  --red:         #D90429;
  --red-dark:    #A30320;
  --red-light:   #EF233C;
  --white:       #FFFFFF;
  --grey-100:    #F1F5F9;
  --grey-200:    #E2E8F0;
  --grey-400:    #94A3B8;
  --grey-600:    #475569;

  --font-head:   'Rajdhani', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-display:'Bebas Neue', cursive;

  --glass-bg:    rgba(255, 255, 255, 0.05);
  --glass-border:rgba(255, 255, 255, 0.10);
  --glass-blur:  blur(16px);

  --shadow-red:  0 0 40px rgba(217, 4, 41, 0.25);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.4);

  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:      12px;
  --radius-lg:   20px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   Loading Screen
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 4px;
  color: var(--white);
}
.loader-logo span { color: var(--red); }

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--navy-light);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), var(--red-light));
  border-radius: 2px;
  animation: loadFill 1.6s ease forwards;
}
@keyframes loadFill { from { width: 0; } to { width: 100%; } }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}
.nav-logo-tagline {
  font-size: 0.65rem;
  color: var(--red);
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }

.btn-dealer-nav {
  margin-left: 16px;
  padding: 10px 22px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-dealer-nav:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(217,4,41,0.4);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(217,4,41,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* ============================================================
   Section Layout
   ============================================================ */
section { position: relative; overflow: hidden; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title span { color: var(--red); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-400);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================================
   Glassmorphism Cards
   ============================================================ */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0B0B0B 0%, #0F172A 50%, #1a0408 100%);
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217,4,41,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,4,41,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
}
.hero-bg-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,4,41,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-glow2 {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,23,42,0.8) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(217,4,41,0.4);
  border-radius: 100px;
  background: rgba(217,4,41,0.1);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--red); }
.hero-title .underline-red {
  position: relative;
}
.hero-title .underline-red::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--grey-400);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero Image Side */
.hero-image-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--red), transparent, var(--navy-mid));
  z-index: -1;
}
.hero-main-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 12px 20px;
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}
.hero-img-badge-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.hero-img-badge-sub {
  font-size: 0.72rem;
  color: var(--grey-400);
  margin-top: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: scrollBob 2s ease infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.scroll-mouse {
  width: 24px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse-dot {
  width: 4px; height: 8px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollDot 2s ease infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}
.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  padding: 0;
}
.stats-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  padding: 36px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,4,41,0.3);
  box-shadow: 0 20px 50px rgba(217,4,41,0.15);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(217,4,41,0.12);
  border: 1px solid rgba(217,4,41,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--red);
  border-color: var(--red);
}
.why-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card-desc {
  font-size: 0.9rem;
  color: var(--grey-400);
  line-height: 1.65;
}

/* ============================================================
   PRODUCTS PREVIEW (Home)
   ============================================================ */
.products-section { background: var(--black); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.product-card {
  background: var(--navy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(217,4,41,0.4);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, #0B0B0B, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: var(--red);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-body {
  padding: 24px;
}
.product-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-desc {
  font-size: 0.875rem;
  color: var(--grey-400);
  line-height: 1.65;
  margin-bottom: 18px;
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.feature-tag {
  padding: 4px 12px;
  background: rgba(217,4,41,0.1);
  border: 1px solid rgba(217,4,41,0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red-light);
  letter-spacing: 0.3px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  transition: var(--transition);
}
.product-link svg { transition: transform 0.3s ease; }
.product-link:hover { color: var(--red-light); }
.product-link:hover svg { transform: translateX(4px); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
  text-align: center;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover {
  background: var(--grey-100);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  border-top: 1px solid var(--glass-border);
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 5% 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand { }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}
.footer-company-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.footer-tagline {
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 2px;
  margin-top: 3px;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--grey-400);
  line-height: 1.7;
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--grey-400);
}
.social-btn:hover { border-color: var(--red); color: var(--white); background: var(--red); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--red);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.875rem;
  color: var(--grey-400);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link::before {
  content: '›';
  color: var(--red);
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.footer-link:hover { color: var(--white); }
.footer-link:hover::before { transform: translateX(3px); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(217,4,41,0.12);
  border: 1px solid rgba(217,4,41,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-text { font-size: 0.86rem; color: var(--grey-400); line-height: 1.55; }
.footer-contact-text strong { color: var(--white); display: block; font-size: 0.8rem; margin-bottom: 2px; }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--grey-600);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-link {
  font-size: 0.82rem;
  color: var(--grey-600);
  transition: color 0.3s ease;
}
.footer-bottom-link:hover { color: var(--white); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 5% 80px;
  background: linear-gradient(135deg, var(--navy) 0%, #12192f 60%, #1a0408 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(217,4,41,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,4,41,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero-title span { color: var(--red); }
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--grey-400);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--grey-400);
}
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: var(--grey-600); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 16px;
}
.about-img-stack {
  position: relative;
  padding-bottom: 40px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  max-height: 400px;
  box-shadow: var(--shadow-card);
}
.about-img-float {
  position: absolute;
  bottom: 0; right: -24px;
  width: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 3px solid var(--navy);
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.about-highlight-icon { font-size: 1.5rem; flex-shrink: 0; }
.about-highlight-text h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-highlight-text p { font-size: 0.875rem; color: var(--grey-400); line-height: 1.6; }

/* Mission / Vision Cards */
.mvq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.mvq-card {
  padding: 36px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}
.mvq-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,4,41,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.mvq-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.mvq-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.mvq-desc { font-size: 0.875rem; color: var(--grey-400); line-height: 1.7; }

/* Timeline */
.timeline { position: relative; margin-top: 56px; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 12px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: -28px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--black);
  box-shadow: 0 0 0 2px var(--red);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.timeline-desc { font-size: 0.875rem; color: var(--grey-400); line-height: 1.6; }

/* Manufacturing Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 36px 20px;
  position: relative;
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -12px; top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.4rem;
}
.process-step:last-child::after { display: none; }
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 16px;
}
.process-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.process-desc { font-size: 0.8rem; color: var(--grey-400); }

/* ============================================================
   LEADERSHIP PAGE
   ============================================================ */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.leader-card {
  background: var(--navy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(217,4,41,0.3);
}
.leader-img-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a1a, #1a0510);
}
.leader-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.leader-card:hover .leader-img-wrap img { transform: scale(1.05); }
.leader-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, transparent 60%);
}
.leader-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white);
  border: 4px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(217,4,41,0.4);
}
.leader-body { padding: 28px 24px 32px; }
.leader-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.leader-role {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.leader-divider {
  width: 40px; height: 2px;
  background: var(--red);
  margin: 0 auto 20px;
}
.leader-exp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(217,4,41,0.1);
  border: 1px solid rgba(217,4,41,0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red-light);
  margin-bottom: 16px;
}
.leader-bio { font-size: 0.875rem; color: var(--grey-400); line-height: 1.7; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--glass-border);
  color: var(--grey-400);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-grid {
  columns: 3;
  column-gap: 20px;
  margin-top: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(217,4,41,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-overlay svg { color: var(--white); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--red); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--red); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-info-card {
  padding: 40px;
  background: var(--navy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  height: fit-content;
}
.contact-info-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(217,4,41,0.12);
  border: 1px solid rgba(217,4,41,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.925rem;
  color: var(--grey-200);
  line-height: 1.6;
}

.contact-form-card {
  padding: 44px;
  background: var(--navy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--grey-200);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.925rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-control::placeholder { color: var(--grey-600); }
.form-control:focus {
  border-color: var(--red);
  background: rgba(217,4,41,0.05);
  box-shadow: 0 0 0 3px rgba(217,4,41,0.1);
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  color: #4ade80;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

.map-section { margin-top: 60px; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 360px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  font-size: 1.6rem;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.whatsapp-float svg { fill: white; }

/* Back To Top */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 16px rgba(217,4,41,0.4);
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--red-light); transform: translateY(-3px); }
.back-top svg { color: var(--white); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   DIVIDER
   ============================================================ */
.section-divider {
  height: 1px;
  background: var(--glass-border);
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-image-side { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }

  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

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

  .about-intro-grid { grid-template-columns: 1fr; }
  .about-img-float { right: 0; width: 140px; }

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

  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { order: 2; }

  .gallery-grid { columns: 2; }

  .leaders-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(11,11,11,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-link { font-size: 1.3rem; padding: 12px 24px; }
  .btn-dealer-nav { margin-left: 0; }
  .hamburger { display: flex; }

  .section-pad { padding: 70px 0; }
  .section-pad-sm { padding: 50px 0; }

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

  .stats-strip-inner { grid-template-columns: 1fr 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 36px; }

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

  .form-row { grid-template-columns: 1fr; }

  .contact-form-card, .contact-info-card { padding: 28px 24px; }

  .gallery-grid { columns: 1; }

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

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }

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

  .hero-stats { gap: 20px; }

  .page-hero { padding: 130px 5% 60px; }

  .about-img-float { display: none; }
}

@media (max-width: 480px) {
  .stats-strip-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:last-child { border-bottom: none; }

  .cta-actions { flex-direction: column; align-items: center; }

  .process-steps { grid-template-columns: 1fr; }
}
