/* ===================================================
   NAMASTE ENTERPRISES - GLOBAL TRADE & SOLAR EPC
   Master Stylesheet & Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Brand Colors */
  --color-navy-primary: #0f2b4c;
  --color-navy-deep: #081a36;
  --color-navy-card: #f8fafc;
  --color-navy-light: #172a45;
  --color-gold-accent: #f6b716;
  --color-gold-hover: #dda312;
  --color-gold-light: #fef9e7;
  
  /* Solar Accents */
  --color-solar-primary: #f6b716;
  --color-solar-emerald: var(--color-gold-accent);
  --color-solar-cyan: #06b6d4;
  --color-solar-amber: #f59e0b;
  --color-solar-light: #fef9e7;

  /* Neutrals */
  --color-bg-dark: #ffffff;
  --color-bg-alt: #f9fafb;
  --color-surface: #ffffff;
  --color-surface-hover: #f3f4f6;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-focus: rgba(246, 183, 22, 0.4);
  
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --text-dim: #9ca3af;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows & Glass */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 25px rgba(246, 183, 22, 0.2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy-primary);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================
   TOP BAR & NAVIGATION
   =================================================== */
.top-bar {
  background: var(--color-navy-deep);
  border-bottom: 1px solid var(--color-navy-light); /* Make border blend better */
  font-size: 13px;
  color: #e2e8f0; /* Light gray for visibility */
  padding: 8px 0;
}

.top-bar a {
  color: #ffffff; /* Bright white for links */
  text-decoration: none;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item span.icon {
  color: var(--color-gold-accent);
}

.top-bar-item a:hover {
  color: var(--color-gold-accent);
}

header.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: var(--transition);
}

header.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

/* Unique & Attractive Brand Logo Typography */
.logo-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper:hover {
  transform: translateY(-1px);
}

.logo-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-wrapper:hover .logo-icon-box {
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.5));
  transform: scale(1.04);
}

.logo-icon-box img,
.logo-wrapper img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-brand-block,
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  margin-bottom: 3px;
}

.brand-namaste {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--color-navy-primary);
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.brand-enterprises {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: var(--color-navy-primary);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.logo-wrapper:hover .brand-enterprises {
  color: var(--color-gold-accent);
}

.brand-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tagline-dot {
  width: 5px;
  height: 5px;
  background: var(--color-gold-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-gold-accent);
}

.tagline-text {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--color-gold-accent);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-navy-primary);
}

.nav-link.active::after, .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold-accent);
  border-radius: 2px;
}

.nav-right-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-navy-primary);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.phone-badge:hover {
  background: var(--color-navy-deep);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-navy-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 6px;
}

/* Mobile Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--color-navy-deep);
  border-left: 1px solid var(--color-border);
  z-index: 1200;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.mobile-nav-overlay.open .mobile-drawer {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.mobile-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-links a {
  font-size: 17px;
  font-weight: 600;
  color: #e2e8f0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-links a.active, .mobile-nav-links a:hover {
  color: var(--color-gold-accent);
}

/* ===================================================
   BUTTONS & BADGES
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-gold {
  background: var(--color-navy-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(15, 43, 76, 0.2);
}

.btn-gold:hover {
  background: var(--color-navy-deep);
  box-shadow: 0 6px 22px rgba(15, 43, 76, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-navy-primary);
}

.btn-outline:hover {
  border-color: var(--color-navy-primary);
  color: var(--color-navy-primary);
  background: rgba(15, 43, 76, 0.06);
  transform: translateY(-2px);
}

.btn-solar {
  background: var(--color-gold-accent);
  color: var(--color-navy-deep);
  box-shadow: 0 4px 16px rgba(246, 183, 22, 0.3);
}

.btn-solar:hover {
  background: var(--color-gold-hover);
  box-shadow: 0 6px 22px rgba(246, 183, 22, 0.45);
  transform: translateY(-2px);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold-accent);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.badge-solar-tag {
  background: rgba(246, 183, 22, 0.12);
  color: var(--color-gold-accent);
  border: 1px solid rgba(246, 183, 22, 0.25);
}

/* ===================================================
   HOMEPAGE HERO SECTION (High-Impact Enterprise Aesthetic)
   =================================================== */
.hero-split-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
  padding: 130px 0 30px 0; /* Shifted down by increasing top padding */
  border-bottom: 1px solid var(--color-border);
}

.hero-split-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Background Slider Styles */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 15%;
  opacity: 0;
  animation: heroSlideFade 18s infinite;
  pointer-events: none;
}

.hero-slider .slide-1 {
  background-image: url('../assets/images/hero_master_visual.png');
  animation-delay: 0s;
}
.hero-slider .slide-2 {
  background-image: url('../assets/images/global_trade_cargo.png');
  animation-delay: 6s;
}
.hero-slider .slide-3 {
  background-image: url('../assets/images/solar_rooftop.png');
  animation-delay: 12s;
}

@keyframes heroSlideFade {
  0% { opacity: 0; transform: scale(1.05); }
  10% { opacity: 1; transform: scale(1); }
  33% { opacity: 1; transform: scale(1); }
  43% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-compliance-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 43, 76, 0.05);
  border: 1px solid var(--color-border);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-navy-primary);
  letter-spacing: 0.4px;
  backdrop-filter: blur(10px);
  margin-bottom: 18px;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold-accent);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(246, 183, 22, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(246, 183, 22, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(246, 183, 22, 0); }
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  margin: 14px 0 20px 0;
  letter-spacing: -0.8px;
  color: var(--color-navy-primary);
}

.hero-title .highlight-gold {
  color: var(--color-gold-accent);
  display: block;
}

.hero-subtitle {
  font-size: 17.5px;
  color: var(--text-main);
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Trust Metrics Bar */
.trust-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-navy-deep);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-top: 20px; 
  z-index: 10;
  position: relative;
}

.metric-item {
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 12px;
}

.metric-item:last-child {
  border-right: none;
  padding-right: 0;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-gold-accent);
  line-height: 1.1;
  margin-bottom: 4px;
}

.metric-number.solar-text {
  color: var(--color-gold-accent);
}

.metric-label {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Hero Cards on the right */
.hero-divisions-preview {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.hero-division-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.hero-division-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-navy-primary);
  box-shadow: var(--shadow-md);
}

.hero-division-card.solar-card:hover {
  border-color: rgba(246, 183, 22, 0.4);
}

.hero-division-card h3 {
  font-size: 22px;
  margin: 10px 0 8px 0;
}

.hero-division-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.division-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.division-link.solar-link {
  color: var(--color-gold-accent);
}

/* ===================================================
   SECTION UTILITIES & HEADERS
   =================================================== */
section.section-pad {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-header .section-tag {
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================================================
   DUAL DIVISION SHOWCASE ON HOME
   =================================================== */
.divisions-showcase {
  background: var(--color-bg-alt);
}

.divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.division-feature-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.division-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.division-feature-box.trade:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.division-feature-box.solar:hover {
  border-color: rgba(246, 183, 22, 0.4);
}

.division-feature-box h3 {
  font-size: 26px;
  margin: 16px 0 12px 0;
}

.division-feature-box p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-main);
}

.feature-list li span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold-accent);
}

.division-feature-box.solar .feature-list li span.dot {
  background: var(--color-gold-accent);
}

/* ===================================================
   PROCESS WORKFLOW SECTION
   =================================================== */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.process-step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold-accent);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-gold-accent);
  margin-bottom: 12px;
  opacity: 0.9;
}

.process-step-card.solar-step .step-num {
  color: var(--color-gold-accent);
}

.process-step-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================================================
   PRODUCTS GRID
   =================================================== */
.products-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-lg);
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.product-id-tag {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-gold-accent);
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-features-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-pill {
  font-size: 12px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--text-muted);
}

/* ===================================================
   DIRECT ENQUIRY & CONTACT SECTION
   =================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-accent);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-text p, .contact-text a {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy-primary);
}

.contact-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-navy-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===================================================
   MODAL DIALOG (Direct Enquiry & Review Submission)
   =================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: var(--transition);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===================================================
   FOOTER
   =================================================== */
footer.site-footer {
  background: var(--color-navy-deep);
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px 0;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 17px;
  margin-bottom: 22px;
  position: relative;
  color: #ffffff;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-gold-accent);
  margin-top: 8px;
}

.footer-about p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 20px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: var(--text-dim);
}

.footer-bottom a:hover {
  color: var(--text-muted);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--color-navy-deep);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: #ffffff;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-width: 380px;
}

.toast.success {
  border-left: 4px solid var(--color-gold-accent);
}

.toast.error {
  border-left: 4px solid #ef4444;
}

/* ===================================================
   PRODUCT & SOLAR VISUAL SHOWCASE STYLES
   =================================================== */
.products-visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 36px;
}

.product-visual-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.product-visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 175, 55, 0.15);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #060d17;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.product-visual-card:hover .product-image-wrap img {
  transform: scale(1.08);
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 19, 34, 0.2) 0%, rgba(8, 19, 34, 0.7) 100%);
  pointer-events: none;
}

.product-badge-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.product-num-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(8, 19, 34, 0.85);
  border: 1px solid var(--color-border);
  color: var(--color-gold-accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body h3 {
  font-size: 21px;
  color: var(--color-navy-primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.product-card-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.product-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-spec-pill {
  font-size: 11.5px;
  color: var(--text-muted);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 3px 10px;
  border-radius: 4px;
}

/* Solar Visual Showcase Card */
.solar-visual-card {
  border-color: rgba(246, 183, 22, 0.2);
}

.solar-visual-card:hover {
  border-color: rgba(246, 183, 22, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(246, 183, 22, 0.15);
}

.solar-num-tag {
  color: var(--color-gold-accent);
}

/* Real Commercial Showcase Card Styles (Clean & Seamless) */
.real-showcase-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.real-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.15);
}

.real-showcase-card.solar-glow:hover {
  border-color: rgba(246, 183, 22, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(246, 183, 22, 0.15);
}

.real-showcase-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #030811;
}

.real-showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.real-showcase-card:hover .real-showcase-img-wrap img {
  transform: scale(1.05);
}

.real-showcase-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 8, 17, 0.1) 0%, rgba(3, 8, 17, 0.75) 100%);
  pointer-events: none;
}

.real-showcase-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Ambient Glow Orbs for Hero & High-Impact Sections */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -15%;
  right: 10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(10, 25, 47, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: ambientFloat 12s ease-in-out infinite alternate;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(246, 183, 22, 0.06) 0%, rgba(10, 25, 47, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: ambientFloat 14s ease-in-out infinite alternate-reverse;
}

@keyframes ambientFloat {
  0% { transform: translateY(0px) scale(1); opacity: 0.5; }
  50% { transform: translateY(-25px) scale(1.08); opacity: 0.85; }
  100% { transform: translateY(10px) scale(0.95); opacity: 0.6; }
}

/* Smooth Scroll Reveals */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* Subtle Badge Glow Animation */
.badge-tag {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-tag:hover {
  transform: scale(1.02);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.25);
}

.badge-solar-tag:hover {
  box-shadow: 0 0 14px rgba(246, 183, 22, 0.3);
}

/* Interactive Card Elevations */
.hero-division-card,
.real-showcase-card,
.product-visual-card,
.feature-card,
.solar-benefit-card,
.process-step-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease;
}

.hero-division-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.real-showcase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.real-showcase-card.solar-glow:hover {
  border-color: rgba(246, 183, 22, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(246, 183, 22, 0.15);
}

.product-visual-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}

.product-image-wrap img,
.real-showcase-img-wrap img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-visual-card:hover .product-image-wrap img,
.real-showcase-card:hover .real-showcase-img-wrap img {
  transform: scale(1.04);
}

/* Button Subtle Hover Shifts */
.btn {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s ease,
              border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-solar:hover {
  box-shadow: 0 6px 20px rgba(246, 183, 22, 0.35);
}

/* Trust Metric Counter Interactive Lift */
.metric-item {
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.metric-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.035);
}

/* Accessibility: Respect Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* WhatsApp Floating Button */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-floating-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4);
}



/* ===================================================
   RESPONSIVE COMPONENT GRID DEFINITIONS (MOBILE FIRST ROBUST)
   =================================================== */

/* Global Anti-Overflow */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.solar-hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.responsive-two-col,
.responsive-split-grid,
.about-division-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.divisions-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: stretch;
}

.operations-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.hero-home-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(15, 43, 76, 0.16);
  border: 1px solid #e2e8f0;
  height: 100%;
  min-height: 440px;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-home-heading {
  font-size: 42px;
  line-height: 1.16;
}

.btn-hero-secondary {
  border: 2px solid #1e3a8a !important;
  color: #1e3a8a !important;
  background: #ffffff !important;
}

.btn-hero-secondary:hover {
  background: #1e3a8a !important;
  color: #ffffff !important;
}

/* ===================================================
   RESPONSIVE DESIGN (Tablets & Mobile Full Optimization)
   =================================================== */
@media (max-width: 1024px) {
  .hero-grid,
  .solar-hero-layout,
  .responsive-two-col,
  .responsive-split-grid,
  .about-division-grid,
  .divisions-preview-grid,
  .operations-showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .hero-title {
    font-size: 40px;
  }
  .divisions-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-division-card.solar-card {
    width: 100% !important;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .top-bar {
    display: none;
  }
  .nav-menu, .nav-right-cta .phone-badge {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }

  /* Homepage Hero Mobile Enhancement */
  .hero-home-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    width: 100% !important;
    padding: 36px 0 !important;
  }
  .hero-image-card {
    min-height: 260px !important;
    height: 260px !important;
    width: 100% !important;
  }
  .hero-home-heading {
    font-size: 28px !important;
    line-height: 1.22 !important;
  }
  .hero-home-buttons {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .hero-home-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Solar Solutions Hero Mobile (Screenshot 1 Fix) */
  .solar-hero-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .solar-hero-layout .hero-title {
    font-size: 30px !important;
    line-height: 1.22 !important;
  }
  .solar-hero-layout .hero-ctas {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .solar-hero-layout .hero-ctas .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero-division-card.solar-card {
    width: 100% !important;
    padding: 24px 20px !important;
  }

  /* Two Column & Division Grids Mobile Stacking (Screenshots 2 & 3 Fix) */
  .responsive-two-col,
  .responsive-split-grid,
  .about-division-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .divisions-preview-grid,
  .operations-showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .feature-list li {
    font-size: 14px !important;
    line-height: 1.55 !important;
    word-break: break-word !important;
  }

  .form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-split-section {
    padding: 44px 0 36px 0;
    min-height: auto;
  }
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-compliance-pill {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 14px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 15px;
  }
  .trust-metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
  }
  .metric-item {
    border-right: none;
    padding-right: 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 12px;
    border-radius: 6px;
  }
  .metric-number {
    font-size: 24px;
  }
  .metric-label {
    font-size: 10.5px;
  }
  .products-visual-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-image-wrap {
    height: 200px;
  }
  .real-showcase-img-wrap {
    height: 220px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .section-header p {
    font-size: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .logo-icon-box img, .logo-wrapper img {
    height: 36px;
  }
  .brand-namaste {
    font-size: 15px;
    letter-spacing: 1px;
  }
  .brand-enterprises {
    font-size: 11px;
    letter-spacing: 1.2px;
  }
  .brand-tagline {
    display: none;
  }
  .hero-title, .hero-home-heading {
    font-size: 27px !important;
  }
  .hero-title .highlight-gold {
    font-size: 27px !important;
  }
  .brand-name {
    font-size: 16px !important;
  }
  .brand-sub {
    font-size: 9px !important;
  }
  .section-pad {
    padding: 40px 0;
  }
  .trust-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
}
