/* 
 * Chandel Enterprises - Solar Plant Enterprises
 * Premium Design System & Stylesheet
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors - Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  
  --accent-amber: #d97706;
  --accent-amber-glow: rgba(217, 119, 6, 0.08);
  --accent-orange: #ea580c;
  --accent-teal: #0891b2;
  --accent-green: #16a34a;
  --accent-green-glow: rgba(22, 163, 74, 0.12);
  
  --solar-yellow: #facc15;
  --solar-yellow-glow: rgba(250, 204, 21, 0.16);
  --dark-blue: #0f172a;
  
  --gradient-solar: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  --gradient-solar-yellow: linear-gradient(135deg, #facc15 0%, #eab308 100%);
  --gradient-green: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  --gradient-tech: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  --gradient-dark: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  --gradient-glass: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, rgba(15, 23, 42, 0.01) 100%);
  
  --border-glass: rgba(15, 23, 42, 0.08);
  --border-glass-hover: rgba(15, 23, 42, 0.15);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-solar: 0 10px 30px -10px rgba(245, 158, 11, 0.3);
  --shadow-teal: 0 10px 30px -10px rgba(6, 182, 212, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Layout */
  --container-width: 1280px;
  --header-height: 80px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Navbar Themes variables */
  --header-bg: rgba(255, 255, 255, 0.4);
  --header-bg-scrolled: rgba(255, 255, 255, 0.85);
  --header-border: rgba(255, 255, 255, 0.2);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-amber);
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--gradient-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.glass-panel:hover {
  border-color: var(--border-glass-hover);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
}

.header.scrolled {
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 70px;
  border-bottom: 1px solid var(--border-glass-hover);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  display: inline-block;
  color: var(--text-primary);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  /* Gradient text effect only if browser supports it cleanly */
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-item a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-solar);
  transition: var(--transition-normal);
}

.nav-item a:hover {
  color: var(--text-primary);
}

.nav-item a:hover::after,
.nav-item.active a::after {
  width: 100%;
}

.btn-nav {
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient-solar);
  box-shadow: var(--shadow-solar);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-normal);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(245, 158, 11, 0.45);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001; /* Ensure hamburger stays above the drawer */
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-normal);
  transform-origin: center;
}

/* Hardware-accelerated Hamburger to X Transition */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-15px);
}

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

/* Button UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-solar);
  box-shadow: var(--shadow-solar);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
  background: var(--gradient-glass);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.12) 0%, rgba(250, 204, 21, 0) 70%);
  top: -10%;
  right: -5%;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, rgba(34, 197, 94, 0) 70%);
  bottom: -15%;
  left: -10%;
  z-index: 1;
}

/* Animated Background & Sunlight Glow Visuals */
.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.sunlight-glow {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.18) 0%, rgba(250, 204, 21, 0.05) 40%, rgba(250, 204, 21, 0) 70%);
  filter: blur(40px);
  animation: sunlight-pulse 10s ease-in-out infinite alternate;
}

@keyframes sunlight-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 1; }
}

.sunbeam-ray {
  position: absolute;
  top: 0;
  right: 15%;
  width: 120px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(250, 204, 21, 0.06) 0%, rgba(250, 204, 21, 0) 80%);
  transform: skewX(-35deg);
  transform-origin: top right;
}

.sunbeam-ray.ray-1 {
  right: 25%;
  animation: beam-drift-1 12s ease-in-out infinite alternate;
}

.sunbeam-ray.ray-2 {
  right: 5%;
  animation: beam-drift-2 15s ease-in-out infinite alternate;
  width: 80px;
}

@keyframes beam-drift-1 {
  0% { transform: skewX(-35deg) translateX(0); opacity: 0.6; }
  100% { transform: skewX(-30deg) translateX(40px); opacity: 1; }
}

@keyframes beam-drift-2 {
  0% { transform: skewX(-38deg) translateX(0); opacity: 0.4; }
  100% { transform: skewX(-34deg) translateX(-30px); opacity: 0.8; }
}

.solar-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 80% 30%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.1) 80%);
  -webkit-mask-image: radial-gradient(circle at 80% 30%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.1) 80%);
}

/* Floating clean energy elements representing sunlight phototrons */
.clean-energy-particle {
  position: absolute;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0) 70%);
  border-radius: 50%;
  bottom: -150px;
}

.clean-energy-particle.p-1 { width: 120px; height: 120px; left: 10%; animation: particle-rise 18s linear infinite; }
.clean-energy-particle.p-2 { width: 80px; height: 80px; left: 35%; animation: particle-rise 14s linear infinite 2s; }
.clean-energy-particle.p-3 { width: 140px; height: 140px; left: 55%; animation: particle-rise 22s linear infinite 5s; }
.clean-energy-particle.p-4 { width: 90px; height: 90px; left: 75%; animation: particle-rise 16s linear infinite 1s; }
.clean-energy-particle.p-5 { width: 60px; height: 60px; left: 90%; animation: particle-rise 12s linear infinite 4s; }

@keyframes particle-rise {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-120vh) scale(1.2); opacity: 0; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Trust Badges Bar styling */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.trust-badge i {
  font-size: 13px;
}

.trust-badge.badge-gov {
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.25);
  color: #b45309;
}
.trust-badge.badge-gov:hover {
  background: rgba(217, 119, 6, 0.12);
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
}
.trust-badge.badge-gov i {
  color: #d97706;
  filter: drop-shadow(0 0 3px rgba(217, 119, 6, 0.4));
}

.trust-badge.badge-upneda {
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.25);
  color: #c2410c;
}
.trust-badge.badge-upneda:hover {
  background: rgba(234, 88, 12, 0.12);
  border-color: rgba(234, 88, 12, 0.45);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15);
}
.trust-badge.badge-upneda i {
  color: #ea580c;
  filter: drop-shadow(0 0 3px rgba(234, 88, 12, 0.4));
}

.trust-badge.badge-clean {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: #15803d;
}
.trust-badge.badge-clean:hover {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.45);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}
.trust-badge.badge-clean i {
  color: #16a34a;
  filter: drop-shadow(0 0 3px rgba(22, 163, 74, 0.4));
}

/* Dark theme specific adjustments for trust badges */
body.dark-theme .trust-badge.badge-gov {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fef08a;
}
body.dark-theme .trust-badge.badge-gov:hover {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(251, 191, 36, 0.6);
}
body.dark-theme .trust-badge.badge-gov i {
  color: #fbbf24;
  filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.5));
}

body.dark-theme .trust-badge.badge-upneda {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.35);
  color: #ffedd5;
}
body.dark-theme .trust-badge.badge-upneda:hover {
  background: rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.6);
}
body.dark-theme .trust-badge.badge-upneda i {
  color: #f97316;
  filter: drop-shadow(0 0 3px rgba(249, 115, 22, 0.5));
}

body.dark-theme .trust-badge.badge-clean {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}
body.dark-theme .trust-badge.badge-clean:hover {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.6);
}
body.dark-theme .trust-badge.badge-clean i {
  color: #4ade80;
  filter: drop-shadow(0 0 3px rgba(34, 197, 94, 0.5));
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--solar-yellow) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

/* Floating Stats Layout */
.floating-stat-card {
  position: absolute;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 190px;
  max-width: 280px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  /* Exclude transform and opacity from base transition to prevent GSAP conflicts */
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
}

.floating-stat-card:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: var(--border-glass-hover);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
  background: rgba(255, 255, 255, 0.9);
  /* Transition transform smoothly ONLY on hover to avoid GSAP page-load timeline conflicts */
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.icon-yellow { background: var(--gradient-solar-yellow); box-shadow: 0 4px 10px rgba(250, 204, 21, 0.35); }
.icon-blue { background: var(--gradient-tech); box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3); }
.icon-green { background: var(--gradient-green); box-shadow: 0 4px 10px rgba(34, 197, 94, 0.35); }

.stat-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.stat-info p {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Exact Coordinates & Floating Animations for Stats */
.card-installations {
  top: 10%;
  left: -50px;
}

.card-projects {
  bottom: 5%;
  right: -40px;
  min-width: 240px;
}

.card-saving {
  bottom: 25%;
  left: -70px;
}

@keyframes floating-float-1 {
  0% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(-1deg); }
}

@keyframes floating-float-2 {
  0% { transform: translateY(0px) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(1deg); }
}

@keyframes floating-float-3 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Image Showcase / Hero Right Side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-glass);
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  transform: rotate(2deg);
  transition: var(--transition-slow);
}

.hero-main-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-main-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-badge-solar {
  position: absolute;
  bottom: 30px;
  left: -20px;
  z-index: 3;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-badge-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-solar);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  animation: pulse-solar 2s infinite;
}

@keyframes pulse-solar {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.hero-badge-info h4 {
  font-size: 16px;
  font-weight: 600;
}

.hero-badge-info p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Section Common Styles */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-amber);
  margin-bottom: 12px;
  background: var(--accent-amber-glow);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}

.about-img-box:nth-child(even) {
  margin-top: 40px;
}

.about-img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-img-box:hover img {
  transform: scale(1.08);
}

.about-experience {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 24px;
  text-align: center;
}

.about-experience h3 {
  font-size: 38px;
  color: var(--accent-amber);
  margin-bottom: 4px;
}

.about-experience p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* About Pillars Layout */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.pillar-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transition: background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 158, 11, 0.2);
  transition: transform var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-amber-glow);
  color: var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(217, 119, 6, 0.15);
  transition: var(--transition-normal);
}

.pillar-card:hover .pillar-icon {
  background: var(--gradient-solar);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.pillar-info h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}

.pillar-info p {
  font-size: 13.5px;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Timeline Milestones Section */
.about-timeline-section {
  margin-top: 80px;
  margin-bottom: 80px;
  position: relative;
}

.timeline-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-primary);
}

.timeline-title i {
  color: var(--accent-orange);
}

.timeline-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 62px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--solar-yellow) 50%, var(--accent-teal) 100%);
  border-radius: 2px;
  z-index: 1;
}

.timeline-node {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  text-align: center;
}

.node-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--accent-orange);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 24px;
  z-index: 3;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.timeline-node:nth-child(even) .node-marker {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}

.timeline-node:hover .node-marker {
  transform: scale(1.2);
  background: var(--gradient-solar);
  color: white;
  border-color: white;
  box-shadow: 0 0 15px rgba(234, 88, 12, 0.4);
}

.timeline-node:nth-child(even):hover .node-marker {
  background: var(--gradient-tech);
}

.node-content {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  width: 100%;
}

.timeline-node:hover .node-content {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-lg);
}

.node-date {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-orange);
  background: var(--accent-amber-glow);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.timeline-node:nth-child(even) .node-date {
  color: var(--accent-teal);
  background: rgba(8, 145, 178, 0.08);
}

.node-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.node-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Counters Showcase Dashboard */
.about-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.about-counters-grid .counter-card {
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.45);
}

.about-counters-grid .counter-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(255, 255, 255, 0.85);
}

.counter-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: var(--transition-normal);
}

.counter-card:hover .counter-card-icon {
  transform: scale(1.1) rotate(10deg);
}

.counter-card-val {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-headings);
}

.counter-card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Services Section - Premium Dark + Solar Color Theme */
#services {
  background-color: var(--dark-blue);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.04) 0%, rgba(250, 204, 21, 0) 70%);
  z-index: 1;
}

#services::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.03) 0%, rgba(22, 163, 74, 0) 70%);
  z-index: 1;
}

#services .container {
  position: relative;
  z-index: 2;
}

#services .section-label {
  background: rgba(250, 204, 21, 0.08);
  color: var(--solar-yellow);
  border-color: rgba(250, 204, 21, 0.25);
}

#services .section-title {
  color: #ffffff;
}

#services .section-subtitle {
  color: #94a3b8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  text-align: center;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.06) 0%, rgba(250, 204, 21, 0) 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--solar-yellow);
  box-shadow: 0 15px 30px rgba(250, 204, 21, 0.15);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 30px auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--solar-yellow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon-wrapper {
  background: var(--gradient-solar-yellow);
  color: var(--dark-blue);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
  border-color: transparent;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #ffffff;
}

.service-card p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--solar-yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.service-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Interactive Solar Calculator */
.calc-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-input-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15px;
}

.calc-label-val {
  color: var(--accent-amber);
  font-size: 18px;
  font-weight: 700;
}

/* Range Slider Styling */
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  outline: none;
  border: 1px solid var(--border-glass);
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-solar);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
  transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
}

.select-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  cursor: pointer;
}

.select-box option {
  background: var(--bg-secondary);
}

/* Calculator Outputs */
.calc-outputs {
  background: var(--bg-tertiary);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.calc-out-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.calc-out-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-amber);
}

.calc-out-item:nth-child(2) .calc-out-icon {
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-teal);
}

.calc-out-item:nth-child(3) .calc-out-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
}

.calc-out-text h4 {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-out-val {
  font-family: var(--font-headings);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Portfolio Showcase Section */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.portfolio-filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-glass);
  background: var(--bg-primary);
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.portfolio-filter-btn:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber);
  transform: translateY(-2px);
}

.portfolio-filter-btn.active {
  background: var(--gradient-solar);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-solar);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-lg);
}

/* Before/After Dual Layered Wrapper */
.project-visual-wrapper {
  height: 250px;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.project-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.project-img.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Corner Control Toggle Pill */
.before-after-toggle {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 14px;
  border-radius: var(--radius-xl);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(15, 23, 42, 0.7);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.before-after-toggle:hover {
  background: var(--gradient-solar);
  border-color: transparent;
  transform: scale(1.05);
}

.before-after-toggle i {
  font-size: 12px;
  color: var(--solar-yellow);
}

/* Float Badges */
.project-badges {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.badge-status {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}

.badge-upneda { background: rgba(245, 158, 11, 0.85); border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-grid { background: rgba(14, 165, 233, 0.85); border: 1px solid rgba(14, 165, 233, 0.3); }
.badge-ceig { background: rgba(16, 185, 129, 0.85); border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-scale { background: rgba(79, 70, 229, 0.85); border: 1px solid rgba(79, 70, 229, 0.3); }
.badge-waterproof { background: rgba(6, 182, 212, 0.85); border: 1px solid rgba(6, 182, 212, 0.3); }
.badge-leakage { background: rgba(236, 72, 153, 0.85); border: 1px solid rgba(236, 72, 153, 0.3); }
.badge-sync { background: rgba(139, 92, 246, 0.85); border: 1px solid rgba(139, 92, 246, 0.3); }
.badge-impedance { background: rgba(20, 184, 166, 0.85); border: 1px solid rgba(20, 184, 166, 0.3); }
.badge-iec { background: rgba(100, 116, 139, 0.85); border: 1px solid rgba(100, 116, 139, 0.3); }
.badge-cpri { background: rgba(217, 70, 239, 0.85); border: 1px solid rgba(217, 70, 239, 0.3); }
.badge-busbar { background: rgba(244, 63, 94, 0.85); border: 1px solid rgba(244, 63, 94, 0.3); }
.badge-bee { background: rgba(234, 179, 8, 0.85); border: 1px solid rgba(234, 179, 8, 0.3); }
.badge-loss { background: rgba(101, 163, 13, 0.85); border: 1px solid rgba(101, 163, 13, 0.3); }
.badge-raychem { background: rgba(249, 115, 22, 0.85); border: 1px solid rgba(249, 115, 22, 0.3); }

/* Slide-up glassmorphic specs panel */
.portfolio-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}

.portfolio-card:hover .portfolio-hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay-content {
  width: 100%;
}

.overlay-content h4 {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: var(--solar-yellow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.specs-list li {
  font-size: 12px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.specs-list li i {
  color: var(--accent-green);
  font-size: 13px;
  flex-shrink: 0;
}

.btn-consult {
  width: 100%;
  text-align: center;
  font-size: 12px;
  padding: 8px 16px;
}

/* Card Info and Meta Grid */
.portfolio-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-info h3 {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.portfolio-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.portfolio-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
}

.portfolio-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.portfolio-stat-item .stat-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 600;
}

.portfolio-stat-item .stat-value {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   CONTACT SECTION (PREMIUM & GLASSMORPHIC)
   ========================================================================== */
.contact-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 0.05) 0%, rgba(245, 158, 11, 0.03) 90%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-lg);
}

.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-amber);
  border: 1px solid rgba(245, 158, 11, 0.15);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.contact-info-card:hover .contact-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-solar);
  color: white;
  border-color: transparent;
}

.contact-detail-box {
  flex-grow: 1;
}

.contact-detail-box h3 {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-detail-box p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.contact-detail-box p a {
  color: inherit;
  transition: color var(--transition-fast);
}

.contact-detail-box p a:hover {
  color: var(--accent-amber);
}

.contact-detail-box .desc-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.contact-detail-box .gstin-val {
  font-family: monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-amber);
}

/* Green WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white !important;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  margin-top: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  transition: all var(--transition-normal);
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* Floating Socials Bar */
.contact-socials-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
}

.contact-socials-wrapper span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.floating-socials {
  display: flex;
  gap: 12px;
}

.floating-socials .social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  transition: all var(--transition-normal);
}

.floating-socials .social-link:hover {
  color: white;
  transform: translateY(-3px) scale(1.08);
}

.floating-socials .social-ln:hover { background: #0077b5; border-color: transparent; }
.floating-socials .social-tw:hover { background: #0f1419; border-color: transparent; }
.floating-socials .social-yt:hover { background: #ff0000; border-color: transparent; }
.floating-socials .social-fb:hover { background: #1877f2; border-color: transparent; }

/* Contact Form Container */
.contact-form-wrapper {
  position: relative;
}

.contact-form {
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Premium Glassmorphic Inputs & Selects for Contact Form */
.contact-form .form-input,
.contact-form .select-box {
  width: 100%;
  padding: 14px 20px;
  background-color: var(--bg-tertiary);
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  box-sizing: border-box;
}

body.dark-theme .contact-form .form-input,
body.dark-theme .contact-form .select-box {
  background-color: rgba(15, 23, 42, 0.45);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-form .form-input:focus,
.contact-form .select-box:focus {
  border-color: var(--accent-amber);
  background-color: var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
}

body.dark-theme .contact-form .form-input:focus,
body.dark-theme .contact-form .select-box:focus {
  background-color: rgba(15, 23, 42, 0.7);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.2);
}

.contact-form textarea.form-input {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 120px;
}

.form-title-bar {
  margin-bottom: 28px;
}

.form-title-bar h3 {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-title-bar p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Input Wrappers & Iconography */
.input-wrapper {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.input-icon-textarea {
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.input-wrapper .form-input,
.input-wrapper .select-box {
  padding-left: 46px !important;
}

.input-wrapper .form-input:focus ~ .input-icon,
.input-wrapper .form-input:focus ~ .input-icon-textarea,
.input-wrapper .select-box:focus ~ .input-icon {
  color: var(--accent-amber);
}

/* Form Error Labels */
.error-msg {
  display: block;
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-5px);
  transition: all var(--transition-fast);
  height: 0;
  overflow: hidden;
}

.error-msg.active {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  margin-bottom: 2px;
}

.form-input.error {
  border-color: rgba(239, 68, 68, 0.4) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08) !important;
}

/* Custom textarea overrides */
textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* Modal Popup UI */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  max-width: 500px;
  width: 90%;
  padding: 40px;
  text-align: center;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: var(--accent-green);
  margin: 0 auto 24px auto;
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

/* Footer Section */
.premium-footer {
  position: relative;
  background: linear-gradient(180deg, #0b0f19 0%, #020617 100%);
  padding: 100px 0 40px 0;
  overflow: hidden;
  color: #f8fafc;
  border-top: none;
}

/* Subtle Animated Footer Particles */
.footer-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.footer-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(250, 204, 21, 0.25);
  border-radius: 50%;
  animation: footer-float 8s infinite ease-in-out;
}

.fp-1 { top: 20%; left: 10%; animation-duration: 6s; }
.fp-2 { top: 60%; left: 30%; animation-duration: 10s; }
.fp-3 { top: 40%; left: 70%; animation-duration: 7s; }
.fp-4 { top: 80%; left: 50%; animation-duration: 12s; }
.fp-5 { top: 15%; left: 85%; animation-duration: 8s; }
.fp-6 { top: 75%; left: 90%; animation-duration: 9s; }

@keyframes footer-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
  50% { transform: translateY(-40px) scale(1.3); opacity: 0.6; }
}

/* Glowing Divider Lines */
.footer-glow-divider-top {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(234, 88, 12, 0) 0%, rgba(250, 204, 21, 0.45) 50%, rgba(34, 197, 94, 0) 100%);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.35);
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.footer-glow-divider-bottom {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0) 0%, rgba(250, 204, 21, 0.45) 50%, rgba(234, 88, 12, 0) 100%);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.35);
  margin: 24px 0 16px 0;
  position: relative;
  z-index: 2;
}

/* Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-col .footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 320px;
  margin: 0;
}

.footer-tagline {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-orange);
  text-shadow: 0 0 8px rgba(234, 88, 12, 0.2);
  margin: 0;
  letter-spacing: 0.5px;
}

/* Animated Solar Logo */
.animated-solar-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  height: auto;
  text-decoration: none;
}

.logo-solar-ring {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1.5px dashed rgba(250, 204, 21, 0.45);
  border-radius: 50%;
  animation: rotate-logo-ring 15s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solar-dot {
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
}

.animated-solar-logo .brand-logo-img {
  width: 28px;
  height: 28px;
  position: absolute;
  left: 5px;
  top: 5px;
  animation: scale-logo-core 2.5s ease-in-out infinite alternate;
}

@keyframes rotate-logo-ring {
  100% { transform: rotate(360deg); }
}

@keyframes scale-logo-core {
  0% { transform: scale(0.92); filter: drop-shadow(0 0 2px rgba(250, 204, 21, 0.3)); }
  100% { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.6)); }
}

/* Social Media Icons */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-socials a:hover {
  color: #facc15;
  background: rgba(250, 204, 21, 0.06);
  border-color: #facc15;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.35);
  transform: translateY(-4px) scale(1.1);
}

/* Link Columns */
.footer-col h3.footer-heading {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-col h3.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #facc15 0%, #22c55e 100%);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #94a3b8;
  transition: all 0.3s ease;
  padding: 2px 0;
}

.footer-links li a .link-bullet {
  font-size: 9px;
  opacity: 0.35;
  transition: all 0.3s ease;
  color: #22c55e;
}

.footer-links li a:hover {
  color: #ffffff;
  transform: translateX(6px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.footer-links li a:hover .link-bullet {
  opacity: 1;
  color: #facc15;
  transform: scale(1.25);
}

/* Glassmorphism Cards Wrapper */
.footer-col-glass-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.footer-glass-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s ease;
}

.footer-glass-card:hover {
  border-color: rgba(250, 204, 21, 0.2);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6), 0 0 18px rgba(250, 204, 21, 0.04);
  transform: translateY(-3px);
}

.footer-glass-card .card-heading {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.footer-glass-card .card-heading .card-icon {
  color: #22c55e;
  filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.4));
}

/* Contact List Card */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.5;
}

.footer-contact-list li .contact-icon {
  font-size: 14px;
  color: #facc15;
  margin-top: 3px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(250, 204, 21, 0.3));
}

.footer-contact-list li .location-pin {
  animation: pin-bounce 2s ease infinite;
}

@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.footer-contact-list .phones-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-list a {
  color: #cbd5e1;
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.gstin-badge {
  background: rgba(34, 197, 94, 0.08);
  border: 1px dashed rgba(34, 197, 94, 0.22);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  margin-top: 4px;
  display: flex;
  align-items: center;
}

.gstin-badge strong {
  color: #22c55e;
  font-family: monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Newsletter Card */
.footer-newsletter-card p {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 16px;
  line-height: 1.55;
  margin-top: 0;
}

.premium-newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.premium-newsletter-form:focus-within {
  border-color: #facc15;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.premium-newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 13px;
  padding: 8px 12px;
  flex-grow: 1;
}

.premium-newsletter-form input::placeholder {
  color: #64748b;
}

.newsletter-submit-btn {
  width: 36px;
  height: 36px;
  background: #facc15;
  border: none;
  border-radius: var(--radius-sm);
  color: #0b0f19;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
}

.newsletter-submit-btn:hover {
  background: #22c55e;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

/* Footer Bottom Copyright Area */
.footer-bottom-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
  z-index: 2;
  position: relative;
  padding-bottom: 10px;
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.1);
}

.footer-bottom-links a {
  color: #64748b;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #cbd5e1;
}

/* Fixed Floating Quick Actions (WhatsApp & Scroll-To-Top) */
.floating-quick-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-whatsapp-btn {
  position: relative;
  width: 52px;
  height: 52px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-badge-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: whatsapp-pulse 2s infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}

.scroll-to-top-btn {
  width: 52px;
  height: 52px;
  background-color: rgba(11, 15, 25, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #facc15;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.45);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-to-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background-color: #facc15;
  color: #0b0f19;
  border-color: #facc15;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.45);
}

/* Animations for Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   GALLERY SECTION (PREMIUM MASONRY & LIGHTBOX)
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-glass);
  background: var(--bg-primary);
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-solar);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-solar);
  transform: translateY(-2px);
}

/* Masonry Columns Layout */
.gallery-grid {
  column-count: 3;
  column-gap: 24px;
  width: 100%;
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 30%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal) ease;
  z-index: 2;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-glass-hover);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--solar-yellow);
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-overlay h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.4;
}

.gallery-item.hide {
  display: none !important;
}

/* Lightbox Modal fixed styles */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal) ease;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all var(--transition-normal);
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--solar-yellow);
}

.lightbox-prev {
  left: 32px;
}

.lightbox-next {
  right: 32px;
}

.lightbox-content {
  max-width: 85%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform var(--transition-normal) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  text-align: center;
  margin-top: 20px;
  color: white;
  max-width: 600px;
}

.lightbox-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--solar-yellow);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.lightbox-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.lightbox-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Gallery Video Thumbnail & Play Button Overlay styles */
.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-video-preview {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-item:hover .gallery-video-preview {
  transform: scale(1.06);
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(250, 204, 21, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
  transition: all var(--transition-normal);
  z-index: 3;
  pointer-events: none;
}

.gallery-item:hover .play-btn-overlay {
  background: var(--gradient-solar);
  color: white;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-solar);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS SECTION (SLIDER & GLOW CARDS)
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: flex-start;
}

.reviews-dashboard {
  padding: 40px;
  border-radius: var(--radius-lg);
}

.rating-huge {
  font-family: var(--font-headings);
  font-size: 64px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  background: var(--gradient-solar);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-stars-display {
  font-size: 20px;
  color: #fbbf24;
  margin: 16px 0 8px 0;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.rating-count {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 500;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.breakdown-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.breakdown-row span:first-child {
  width: 50px;
  text-align: left;
  font-weight: 600;
}

.breakdown-row span:last-child {
  width: 35px;
  text-align: right;
  font-weight: 600;
}

.progress-bar {
  flex-grow: 1;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.progress-fill {
  height: 100%;
  background: var(--gradient-solar);
  border-radius: var(--radius-sm);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-trust-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
}

.trust-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  text-align: left;
}

.trust-stat-item i {
  color: var(--accent-green);
  font-size: 16px;
}

/* Right side panel styles */
.reviews-carousel-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  overflow: hidden;
}

.reviews-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 16px;
}

.review-filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-glass);
  background: var(--bg-primary);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.review-filter-btn:hover,
.review-filter-btn.active {
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--accent-amber);
  color: var(--accent-amber);
}

/* Reviews slider container styles */
.reviews-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  padding: 4px;
}

.reviews-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  gap: 24px;
}

/* Coordinate mouse-tracking glow card details */
.review-card {
  flex: 0 0 100%;
  width: 100%;
  padding: 36px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(245, 158, 11, 0.06), transparent 40%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover {
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: var(--shadow-lg);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.reviewer-profile-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-amber);
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.reviewer-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.review-stars {
  font-size: 14px;
  color: #fbbf24;
  display: flex;
  gap: 2px;
}

.review-card-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

.review-body-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
  z-index: 2;
  margin: 0;
}

.review-body-text::before {
  content: '“';
  font-family: Georgia, serif;
  font-size: 40px;
  color: rgba(245, 158, 11, 0.15);
  position: absolute;
  left: -12px;
  top: -16px;
  line-height: 1;
}

/* Testimonial slider navigation dots and arrows */
.reviews-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.reviews-ctrl-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.reviews-ctrl-btn:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--accent-amber);
  color: var(--accent-amber);
  transform: scale(1.05);
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-glass-hover);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.review-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent-amber);
}

/* Rating Star Selection Form */
.star-rating-selector {
  display: flex;
  gap: 12px;
  font-size: 26px;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: 6px;
}

.star-select {
  transition: transform var(--transition-fast) ease, color var(--transition-fast) ease;
}

.star-select:hover {
  transform: scale(1.2);
}

.star-select.active {
  color: #fbbf24;
}

/* ==========================================================================
   INTERACTIVE SOLAR SAVINGS CALCULATOR STYLE DECLARATIONS
   ========================================================================== */
.calc-container {
  padding: 40px;
  background: var(--gradient-glass);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-input-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}

.calc-label-val {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(234, 88, 12, 0.15);
}

/* Custom Styled Range Slider */
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  outline: none;
  transition: background 0.3s ease;
  cursor: pointer;
  margin: 10px 0 5px 0;
}

.range-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.range-slider::-webkit-slider-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: var(--gradient-solar);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 2px solid white;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 14px rgba(234, 88, 12, 0.5);
}

.range-slider::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--gradient-solar);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 2px solid white;
}

.range-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 14px rgba(234, 88, 12, 0.5);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  padding: 0 2px;
}

/* Custom styled Select Dropdown */
.select-box {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 45px;
}

.select-box:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}

/* Outputs Area Styling */
.calc-outputs-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: rgba(15, 23, 42, 0.015);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.outputs-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 16px;
  margin-bottom: 5px;
}

.outputs-title i {
  color: var(--accent-orange);
}

/* Outputs Cards Grid */
.calc-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.calc-metric-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.calc-metric-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-md);
}

.calc-metric-card.count-full {
  grid-column: span 2;
  border-left: 4px solid var(--accent-green);
}

.metric-lbl {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.metric-val {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-headings);
  color: var(--text-primary);
}

.metric-val.highlight-orange {
  color: var(--accent-orange);
  background: linear-gradient(135deg, var(--accent-orange) 0%, #c2410c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-val.highlight-green {
  color: var(--accent-green);
  background: linear-gradient(135deg, var(--accent-green) 0%, #15803d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Graphical Progress and Timelines */
.calc-charts-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.chart-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.chart-percent {
  font-weight: 700;
  color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.chart-bar-container {
  height: 12px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.chart-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--solar-yellow) 0%, var(--accent-orange) 100%);
  border-radius: var(--radius-sm);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
}

.chart-footer-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Payback period warranty timeline */
.timeline-payback-track {
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  position: relative;
  margin: 25px 0 10px 0;
  border: 1px solid var(--border-glass);
}

.payback-line-highlight {
  height: 100%;
  background: var(--gradient-solar);
  border-radius: var(--radius-sm);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.payback-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-primary);
  border: 3px solid var(--solar-yellow);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 0 8px var(--solar-yellow);
}

.payback-marker::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(250, 204, 21, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-solar-marker 2.5s infinite;
}

@keyframes pulse-solar-marker {
  0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(250, 204, 21, 0); }
  100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

.marker-tooltip {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-blue);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.marker-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: var(--dark-blue) transparent transparent transparent;
}

.timeline-milestones {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  padding: 0 4px;
}

.btn-calc-quote {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 10px;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-trust-badges {
    justify-content: center;
  }
  .hero-content h1 {
    font-size: 38px;
  }
  .hero-tagline {
    margin: 0 auto 30px auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .hero-main-img {
    transform: none !important;
    margin-bottom: 20px;
  }
  .floating-stat-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
    animation: none !important;
    box-shadow: var(--shadow-md);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-visual {
    order: 2;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 20px 20px;
    gap: 40px;
  }
  .timeline-line {
    top: 0;
    bottom: 0;
    left: 42px;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, var(--accent-orange) 0%, var(--solar-yellow) 50%, var(--accent-teal) 100%);
  }
  .timeline-node {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    width: 100%;
  }
  .node-marker {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .node-content {
    text-align: left;
  }
  .about-counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .gallery-grid {
    column-count: 2;
  }
}

/* Intermediate Desktop Navigation Spacing */
@media (min-width: 1025px) and (max-width: 1280px) {
  .nav-links {
    gap: 14px;
  }
  .nav-item a {
    font-size: 13px;
  }
  .logo {
    font-size: 20px;
    gap: 8px;
  }
  .logo img {
    height: 32px;
  }
  .nav-actions {
    gap: 12px;
  }
  .btn-nav {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Tablet & Mobile Header Collapse Breakpoint */
@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }
  .logo {
    font-size: 20px;
    gap: 8px;
  }
  .logo img {
    height: 32px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -320px;
    left: auto;
    width: 320px;
    max-width: 85%;
    height: calc(100vh - var(--header-height));
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    padding: 50px 30px;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-item {
    width: 100%;
  }
  .nav-item a {
    font-size: 17px;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-item a::after {
    display: none; /* Hide hover underline line on mobile dropdown */
  }
  
  /* Light Theme Overrides for Mobile Navigation Drawer */
  body:not(.dark-theme) .nav-links {
    background: rgba(255, 255, 255, 0.92);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  }
  body:not(.dark-theme) .nav-item a {
    color: #1e293b;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none !important;
  }
  .logo {
    gap: 0;
  }
  .nav-container {
    padding: 0 12px;
  }
}

@media (max-width: 768px) {
  .about-counters-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .calc-container {
    padding: 24px;
  }
  .calc-outputs-panel {
    padding: 20px;
  }
  .calc-metrics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .calc-metric-card {
    padding: 12px 16px;
  }
  .metric-val {
    font-size: 20px;
  }
  .slider-ticks span,
  .timeline-milestones span {
    font-size: 9px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .contact-form {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .portfolio-filters {
    gap: 8px;
    margin-bottom: 30px;
  }
  .portfolio-filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  .project-visual-wrapper {
    height: 220px;
  }
  .gallery-grid {
    column-count: 1;
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ==========================================================================
   GLOBAL DARK THEME TOKENS & STYLE RULES
   ========================================================================== */
body.dark-theme {
  --bg-primary: #0b0f19;
  --bg-secondary: #111827;
  --bg-tertiary: #1f2937;
  
  --text-primary: #f8fafc;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  
  --gradient-dark: linear-gradient(180deg, #111827 0%, #0b0f19 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.15);
  
  --header-bg: rgba(11, 15, 25, 0.55);
  --header-bg-scrolled: rgba(11, 15, 25, 0.9);
  --header-border: rgba(255, 255, 255, 0.08);

  scrollbar-color: var(--bg-tertiary) var(--bg-primary);
}

/* Specific component overrides for dark mode */
body.dark-theme .calc-container {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

body.dark-theme .reviews-dashboard,
body.dark-theme .review-form-container,
body.dark-theme .contact-info-card,
body.dark-theme .contact-socials-wrapper,
body.dark-theme .contact-form,
body.dark-theme .map-wrapper,
body.dark-theme .modal-content {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

body.dark-theme ::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

body.dark-theme ::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-color: var(--bg-primary);
}

body.dark-theme .floating-stat-card {
  background: rgba(17, 24, 39, 0.8) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

body.dark-theme .milestone-card {
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Dark theme: pillar cards — use dark glass instead of white card */
body.dark-theme .pillar-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

body.dark-theme .pillar-card:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(245, 158, 11, 0.25) !important;
}

body.dark-theme .pillar-info h4 {
  color: #f1f5f9 !important;
}

body.dark-theme .pillar-info p {
  color: #94a3b8 !important;
}


/* ==========================================================================
   FUTURISTIC LOADING SCREEN PRELOADER
   ========================================================================== */
.loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0b0f19;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.loader-screen.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Solar system preloader animation */
.loader-solar-system {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-sun {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, #facc15 0%, #ea580c 100%);
  box-shadow: 0 0 25px #ea580c, 0 0 50px rgba(250, 204, 21, 0.5);
  animation: sun-pulse-loader 2s ease-in-out infinite alternate;
}

.loader-orbit {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1.5px dashed rgba(250, 204, 21, 0.35);
  border-radius: 50%;
  animation: orbit-spin-loader 3.5s linear infinite;
}

.loader-planet {
  position: absolute;
  top: -6px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

@keyframes sun-pulse-loader {
  0% { transform: scale(0.9); box-shadow: 0 0 15px #ea580c, 0 0 30px rgba(250, 204, 21, 0.4); }
  100% { transform: scale(1.1); box-shadow: 0 0 35px #ea580c, 0 0 70px rgba(250, 204, 21, 0.7); }
}

@keyframes orbit-spin-loader {
  100% { transform: rotate(360deg); }
}

.loader-brand {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 40%, #facc15 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.loader-bar-wrapper {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ea580c 0%, #facc15 50%, #22c55e 100%);
  box-shadow: 0 0 8px #facc15;
  transition: width 0.1s linear;
}

.loader-percent {
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  font-family: var(--font-body);
}

/* ==========================================================================
   DYNAMIC SOLAR PARTICLES CANVAS BACKGROUND
   ========================================================================== */
#solarParticlesCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================================
   NAVBAR THEME TOGGLE SWITCH WIDGET
   ========================================================================== */
.theme-toggle-btn {
  width: 64px;
  height: 32px;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  overflow: hidden;
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

body.dark-theme .theme-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
}

.theme-toggle-btn i {
  font-size: 14px;
  z-index: 2;
  transition: transform 0.5s ease, color 0.3s ease;
}

.theme-toggle-btn .icon-sun {
  color: var(--accent-orange);
}

.theme-toggle-btn .icon-moon {
  color: var(--text-muted);
}

body.dark-theme .theme-toggle-btn .icon-sun {
  color: var(--text-muted);
  transform: rotate(30deg);
}

body.dark-theme .theme-toggle-btn .icon-moon {
  color: var(--solar-yellow);
  transform: rotate(0);
}

.theme-toggle-btn .toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

body.dark-theme .theme-toggle-btn .toggle-slider {
  transform: translateX(32px);
  background: var(--bg-tertiary);
  box-shadow: 0 2px 10px rgba(250, 204, 21, 0.25);
}

.theme-toggle-btn:hover {
  border-color: var(--border-glass-hover);
  transform: scale(1.03);
}

/* Adjust header to align nicely with theme button */
.nav-container {
  gap: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Responsive adjustment for theme button in header */
@media (max-width: 991px) {
  .nav-actions {
    margin-left: auto;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .nav-actions .btn-nav {
    display: none;
  }
}

/* ==========================================================================
   PREMIUM TOP PROJECTS SECTION (FUTURISTIC DARK SOLAR UI)
   ========================================================================== */
.premium-solar-section {
  position: relative;
  background: radial-gradient(circle at 50% 15%, #0d1527 0%, #03060c 100%);
  color: #f8fafc;
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid rgba(250, 204, 21, 0.15);
  border-bottom: 1px solid rgba(6, 182, 212, 0.15);
  z-index: 5;
}

/* Background mesh overlays & floating particles */
.solar-particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.solar-grid-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 85%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 85%);
  z-index: 2;
  pointer-events: none;
}

.radial-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 3;
}

.radial-ambient-glow.glow-gold {
  background: radial-gradient(circle, #facc15 0%, rgba(250, 204, 21, 0) 70%);
  top: -10%;
  right: 5%;
}

.radial-ambient-glow.glow-cyan {
  background: radial-gradient(circle, #06b6d4 0%, rgba(6, 182, 212, 0) 70%);
  bottom: -10%;
  left: 5%;
}

/* Section Header Typography Overrides inside Premium Solar */
.premium-solar-section .section-header {
  margin-bottom: 50px;
}

.solar-glow-label {
  color: #facc15 !important;
  background: rgba(250, 204, 21, 0.1) !important;
  border: 1px solid rgba(250, 204, 21, 0.3) !important;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.15);
}

.text-glow-light {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.15);
}

.text-muted-light {
  color: #94a3b8 !important;
}

/* Glass panel dark */
.glass-panel-dark {
  background: rgba(10, 18, 36, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.glass-panel-dark:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

/* Premium Dashboard Stats Grid */
.premium-stats-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 4;
}

.dashboard-stat-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.dashboard-stat-card:hover {
  transform: translateY(-5px);
}

.d-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.icon-glow-amber {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.icon-glow-cyan {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.icon-glow-green {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.d-stat-content h3 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff !important;
  margin-bottom: 4px;
}

.d-stat-content p {
  font-size: 14px;
  color: #94a3b8 !important;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

/* Stat card glow edge */
.d-stat-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  opacity: 0.8;
}

.edge-amber { background: linear-gradient(90deg, #f59e0b, transparent); }
.edge-cyan { background: linear-gradient(90deg, #06b6d4, transparent); }
.edge-green { background: linear-gradient(90deg, #22c55e, transparent); }


/* Interactive Project Grid */
.premium-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 4;
}

.top-project-card {
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.top-project-card:hover {
  transform: translateY(-5px);
  transition: transform var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

/* Card Glow Spotlight Overlay */
.top-project-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.08), transparent 45%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Custom glow borders tailored per project capacity colors */
.top-project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(350px circle at var(--mouse-x, 0) var(--mouse-y, 0), var(--glow-color, #facc15), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.top-project-card[data-project="1"] { --glow-color: #f59e0b; }
.top-project-card[data-project="2"] { --glow-color: #06b6d4; }
.top-project-card[data-project="3"] { --glow-color: #a855f7; }
.top-project-card[data-project="4"] { --glow-color: #22c55e; }
.top-project-card[data-project="5"] { --glow-color: #3b82f6; }
.top-project-card[data-project="6"] { --glow-color: #f97316; }

.top-project-card:hover::after,
.top-project-card:hover::before {
  opacity: 1;
}

.project-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* Badges styling */
.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-amber {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: #22d3ee;
}

.badge-purple {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
}

.badge-green {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #60a5fa;
}

.badge-orange {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #ff9d43;
}

/* Card custom icons */
.project-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.project-card-icon.icon-amber { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.2); }
.project-card-icon.icon-cyan { background: rgba(6, 182, 212, 0.1); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.2); }
.project-card-icon.icon-purple { background: rgba(168, 85, 247, 0.1); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.2); }
.project-card-icon.icon-green { background: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.project-card-icon.icon-blue { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.project-card-icon.icon-orange { background: rgba(249, 115, 22, 0.1); color: #ff9d43; border: 1px solid rgba(249, 115, 22, 0.2); }

/* Body Content */
.project-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}

.project-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 12px;
}

.project-desc {
  font-size: 14px;
  color: #94a3b8 !important;
  line-height: 1.5;
  margin-bottom: 20px;
}

.project-details {
  list-style: none;
  margin-bottom: 25px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-details li {
  font-size: 13.5px;
  color: #cbd5e1 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-details li i {
  color: #22c55e;
  font-size: 14px;
}

/* Telemetry Gauge styling */
.telemetry-gauge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 25px;
}

.gauge-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8 !important;
  margin-bottom: 8px;
}

.gauge-val {
  color: #ffffff !important;
  font-family: monospace;
}

.gauge-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.gauge-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.1, 0.76, 0.55, 0.94);
  position: relative;
  box-shadow: 0 0 10px currentColor;
}

.gauge-fill.fill-amber { background: #f59e0b; color: rgba(245, 158, 11, 0.5); }
.gauge-fill.fill-cyan { background: #06b6d4; color: rgba(6, 182, 212, 0.5); }
.gauge-fill.fill-purple { background: #a855f7; color: rgba(168, 85, 247, 0.5); }
.gauge-fill.fill-green { background: #22c55e; color: rgba(34, 197, 94, 0.5); }
.gauge-fill.fill-blue { background: #3b82f6; color: rgba(59, 130, 246, 0.5); }
.gauge-fill.fill-orange { background: #f97316; color: rgba(249, 115, 22, 0.5); }

/* Milestone timeline track nodes */
.milestone-timeline-container {
  margin-top: auto;
  position: relative;
  padding-top: 15px;
}

.timeline-track-line {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.timeline-track-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #facc15, #22c55e);
  transition: width 1.5s ease-in-out;
}

.milestone-nodes-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.milestone-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.node-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1e293b;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.milestone-node.active .node-dot {
  background: #22c55e;
  border-color: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.milestone-node:last-child.active .node-dot {
  width: 18px;
  height: 18px;
  background: #22c55e;
  border-color: #22c55e;
  color: #ffffff;
  font-size: 8px;
  transform: translateY(-2px);
}

.node-lbl {
  font-size: 10px;
  font-weight: 600;
  color: #64748b !important;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.milestone-node.active .node-lbl {
  color: #94a3b8 !important;
}

.milestone-node:last-child.active .node-lbl {
  color: #22c55e !important;
  font-weight: 700;
}

/* Simple Tooltip for Milestone nodes on Hover */
.milestone-node::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 10;
}

.milestone-node:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* Trust Visual Badges Bar */
.premium-projects-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
  position: relative;
  z-index: 4;
}

.trust-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #cbd5e1 !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
  opacity: 1 !important;
  visibility: visible !important;
}

.trust-badge-dark:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.trust-badge-dark i {
  color: #facc15;
  font-size: 15px;
}


/* Floating Section Energy Particles keyframes */
.solar-energy-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #facc15 0%, rgba(250, 204, 21, 0.2) 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px #facc15;
  pointer-events: none;
  opacity: 0;
  animation: floating-nodes 8s infinite linear;
}

@keyframes floating-nodes {
  0% {
    transform: translate3d(0, 110%, 0) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 0.8;
  }
  85% {
    opacity: 0.8;
  }
  100% {
    transform: translate3d(var(--x-drift, 50px), -10%, 0) scale(1.1);
    opacity: 0;
  }
}

/* Responsive Overrides for Projects Grid */
@media (max-width: 1024px) {
  .premium-stats-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
  .premium-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .premium-solar-section {
    padding: 80px 0;
  }
  .premium-stats-dashboard {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .premium-project-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trust-badge-dark {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   PREMIUM CONSOLIDATED SERVICES SECTION (FUTURISTIC SOLAR UI)
   ========================================================================== */
#services {
  position: relative;
  background: radial-gradient(circle at 50% 90%, #0c1222 0%, #050811 100%);
  border-bottom: 1px solid rgba(250, 204, 21, 0.1);
  overflow: hidden;
}

#services .section-title {
  color: #ffffff;
}

/* Consolidated Services Grid Layout */
.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 4;
}

.premium-service-card {
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  cursor: default;
}

.premium-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: rgba(15, 23, 42, 0.85);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Glow Spotlight Overlay */
.premium-service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.08), transparent 45%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Custom glow borders tailored per service colors */
.premium-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(350px circle at var(--mouse-x, 0) var(--mouse-y, 0), var(--glow-color, #fbbf24), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.premium-service-card[data-service="1"] { --glow-color: #f59e0b; }
.premium-service-card[data-service="2"] { --glow-color: #22c55e; }
.premium-service-card[data-service="3"] { --glow-color: #06b6d4; }

.premium-service-card:hover::after,
.premium-service-card:hover::before {
  opacity: 1;
}

.service-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.service-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-badge-amber {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

.service-badge-green {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

.service-badge-cyan {
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: #22d3ee;
}

.service-icon-premium {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.service-icon-premium.icon-amber { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.2); }
.service-icon-premium.icon-green { background: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.service-icon-premium.icon-cyan { background: rgba(6, 182, 212, 0.1); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.2); }

.service-body-premium {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body-premium h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-body-premium p {
  color: #94a3b8;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.service-benefits-list li {
  font-size: 14px;
  color: #e2e8f0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-benefits-list li i {
  font-size: 14px;
}

.premium-service-card[data-service="1"] .service-benefits-list li i { color: #fbbf24; }
.premium-service-card[data-service="2"] .service-benefits-list li i { color: #4ade80; }
.premium-service-card[data-service="3"] .service-benefits-list li i { color: #22d3ee; }

/* Sub-service pills style */
.sub-service-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.sub-service-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.premium-service-card:hover .sub-service-pill {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-action-row {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-cta-link {
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.premium-service-card[data-service="1"] .service-cta-link { color: #fbbf24; }
.premium-service-card[data-service="2"] .service-cta-link { color: #4ade80; }
.premium-service-card[data-service="3"] .service-cta-link { color: #22d3ee; }

.premium-service-card:hover .service-cta-link {
  transform: translateX(4px);
}

/* Support Light Theme: keep #services always dark for card contrast */
body:not(.dark-theme) #services {
  background: radial-gradient(circle at 50% 90%, #0c1222 0%, #050811 100%);
  border-bottom: 1px solid rgba(250, 204, 21, 0.1);
}

body:not(.dark-theme) #services .section-title {
  color: #ffffff;
}

body:not(.dark-theme) #services .section-subtitle {
  color: #94a3b8;
}

body:not(.dark-theme) #services .section-label {
  background: rgba(250, 204, 21, 0.08);
  color: var(--solar-yellow);
  border-color: rgba(250, 204, 21, 0.25);
}

body:not(.dark-theme) .premium-service-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

body:not(.dark-theme) .premium-service-card:hover {
  background: rgba(15, 23, 42, 0.85);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

body:not(.dark-theme) .service-body-premium h3 {
  color: #ffffff;
}

body:not(.dark-theme) .service-body-premium p {
  color: #94a3b8;
}

body:not(.dark-theme) .service-benefits-list li {
  color: #e2e8f0;
}

body:not(.dark-theme) .sub-service-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #94a3b8;
}

body:not(.dark-theme) .premium-service-card:hover .sub-service-pill {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

body:not(.dark-theme) .premium-service-card::after {
  background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.08), transparent 45%);
}

/* Responsive Premium Services Grid */
@media (max-width: 1024px) {
  .services-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid-premium {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ==========================================================================
   PREMIUM TEAM & ASSOCIATES SECTION (FUTURISTIC SOLAR UI)
   ========================================================================== */
.team-section {
  position: relative;
  background: radial-gradient(circle at 50% 10%, #0d162a 0%, #040810 100%);
  border-bottom: 1px solid rgba(250, 204, 21, 0.1);
  overflow: hidden;
  padding: 100px 0;
}

#team .section-title {
  color: #ffffff;
}

/* Floating Solar Energy Particles inside Team Section */
.team-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.team-energy-node {
  position: absolute;
  bottom: -10px;
  background: radial-gradient(circle, #facc15 0%, rgba(250, 204, 21, 0.2) 100%);
  border-radius: 50%;
  box-shadow: 0 0 8px #facc15;
  opacity: 0;
  animation: floating-nodes linear infinite;
}

/* Team Stats Counters Dashboard */
.team-counters-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
  position: relative;
  z-index: 4;
}

.team-counter-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 25px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-counter-card:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 204, 21, 0.25);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.08);
}

.team-counter-card .counter-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.15);
  color: #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.team-counter-card .counter-value {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.team-counter-card .counter-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}

/* Core Operations Section Titles */
.team-sub-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 4;
}

.team-sub-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.team-sub-header h3 i {
  color: #facc15;
}

.team-sub-header p {
  color: #94a3b8;
  font-size: 14.5px;
}

/* Core Team Cards Grid */
.team-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 4;
}

.team-card {
  position: relative;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 35px 25px 30px 25px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  cursor: default;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: rgba(15, 23, 42, 0.8);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mouse spotlight border effect */
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(300px circle at var(--mouse-x, 0) var(--mouse-y, 0), var(--glow-color, #facc15), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Mouse spotlight inner overlay glow */
.team-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(350px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(250, 204, 21, 0.05), transparent 45%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover::before,
.team-card:hover::after {
  opacity: 1;
}

/* Color theme mappings */
.team-card[data-member="1"] { --glow-color: #f59e0b; }
.team-card[data-member="2"] { --glow-color: #22c55e; }
.team-card[data-member="3"] { --glow-color: #06b6d4; }
.team-card[data-member="4"] { --glow-color: #a855f7; }
.team-card[data-member="5"] { --glow-color: #3b82f6; }

/* Team Member Header details */
.team-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 4;
}

.team-badge-amber { background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.3); color: #fbbf24; }
.team-badge-green { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3); color: #4ade80; }
.team-badge-cyan { background: rgba(6, 182, 212, 0.15); border: 1px solid rgba(6, 182, 212, 0.3); color: #22d3ee; }
.team-badge-purple { background: rgba(168, 85, 247, 0.15); border: 1px solid rgba(168, 85, 247, 0.3); color: #c084fc; }
.team-badge-blue { background: rgba(59, 130, 246, 0.15); border: 1px solid rgba(59, 130, 246, 0.3); color: #60a5fa; }

.team-avatar {
  display: flex;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.avatar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.avatar-icon.icon-amber { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.2); }
.avatar-icon.icon-green { background: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.avatar-icon.icon-cyan { background: rgba(6, 182, 212, 0.1); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.2); }
.avatar-icon.icon-purple { background: rgba(168, 85, 247, 0.1); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.2); }
.avatar-icon.icon-blue { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }

.team-card:hover .avatar-icon {
  transform: scale(1.08);
}

.team-info {
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.team-info h4 {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.team-role {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #facc15;
  margin-bottom: 15px;
}

.team-info p {
  color: #94a3b8;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.team-skills-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 15px;
}

.team-skills-list li {
  font-size: 12.5px;
  color: #e2e8f0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-card[data-member="1"] .team-skills-list li i { color: #fbbf24; }
.team-card[data-member="2"] .team-skills-list li i { color: #4ade80; }
.team-card[data-member="3"] .team-skills-list li i { color: #22d3ee; }
.team-card[data-member="4"] .team-skills-list li i { color: #c084fc; }
.team-card[data-member="5"] .team-skills-list li i { color: #60a5fa; }

.team-socials {
  margin-top: 15px;
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

.team-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease;
}

.team-socials a:hover {
  color: #ffffff;
  background: rgba(250, 204, 21, 0.15);
  border-color: rgba(250, 204, 21, 0.4);
}

/* Authorized Dealers Grid */
.associates-grid-premium {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 4;
}

.dealer-card {
  position: relative;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.dealer-card:hover {
  transform: translateY(-5px);
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(250, 204, 21, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Spotlight Glowing Border and Overlay for Dealer Cards */
.dealer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: radial-gradient(220px circle at var(--mouse-x, 0) var(--mouse-y, 0), #facc15, transparent 65%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.dealer-card:hover::before {
  opacity: 1;
}

.dealer-card .dealer-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.dealer-card:hover .dealer-icon {
  background: rgba(250, 204, 21, 0.08);
  border-color: rgba(250, 204, 21, 0.2);
  color: #facc15;
  transform: scale(1.06);
}

.dealer-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
  line-height: 1.3;
}

.dealer-card:hover h4 {
  color: #ffffff;
}

.dealer-region {
  font-size: 11.5px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-weight: 600;
}

.dealer-region i {
  color: #facc15;
}

.dealer-specialty {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 16px;
  flex-grow: 1;
}

.dealer-card:hover .dealer-specialty {
  color: #94a3b8;
}

.dealer-badge {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #facc15;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.15);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   SUPPORT LIGHT THEME (TEAM & ASSOCIATES SECTION)
   ========================================================================== */
body:not(.dark-theme) .team-section {
  background: radial-gradient(circle at 50% 10%, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body:not(.dark-theme) #team .section-title {
  color: #0f172a;
}

body:not(.dark-theme) .team-sub-header h3 {
  color: #0f172a;
}

body:not(.dark-theme) .team-sub-header p {
  color: #475569;
}

body:not(.dark-theme) .team-counter-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
}

body:not(.dark-theme) .team-counter-card:hover {
  background: #ffffff;
  border-color: rgba(217, 119, 6, 0.2);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.06);
}

body:not(.dark-theme) .team-counter-card .counter-icon {
  background: rgba(217, 119, 6, 0.06);
  border-color: rgba(217, 119, 6, 0.12);
  color: var(--accent-amber);
}

body:not(.dark-theme) .team-counter-card .counter-value {
  color: #0f172a;
}

body:not(.dark-theme) .team-counter-card .counter-label {
  color: #475569;
}

body:not(.dark-theme) .team-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

body:not(.dark-theme) .team-card:hover {
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

body:not(.dark-theme) .team-info h4 {
  color: #0f172a;
}

body:not(.dark-theme) .team-role {
  color: var(--accent-amber);
}

body:not(.dark-theme) .team-info p {
  color: #475569;
}

body:not(.dark-theme) .team-skills-list {
  border-top-color: rgba(15, 23, 42, 0.06);
}

body:not(.dark-theme) .team-skills-list li {
  color: #334155;
}

body:not(.dark-theme) .team-socials {
  border-top-color: rgba(15, 23, 42, 0.04);
}

body:not(.dark-theme) .team-socials a {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(15, 23, 42, 0.05);
  color: #64748b;
}

body:not(.dark-theme) .team-socials a:hover {
  background: rgba(217, 119, 6, 0.08);
  border-color: rgba(217, 119, 6, 0.25);
  color: var(--accent-amber);
}

body:not(.dark-theme) .dealer-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.02);
}

body:not(.dark-theme) .dealer-card:hover {
  background: #ffffff;
  border-color: rgba(217, 119, 6, 0.15);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

body:not(.dark-theme) .dealer-card h4 {
  color: #334155;
}

body:not(.dark-theme) .dealer-card:hover h4 {
  color: #0f172a;
}

body:not(.dark-theme) .dealer-region {
  color: #64748b;
}

body:not(.dark-theme) .dealer-region i {
  color: var(--accent-amber);
}

body:not(.dark-theme) .dealer-specialty {
  color: #94a3b8;
}

body:not(.dark-theme) .dealer-card:hover .dealer-specialty {
  color: #475569;
}

body:not(.dark-theme) .dealer-badge {
  color: var(--accent-amber);
  background: rgba(217, 119, 6, 0.06);
  border-color: rgba(217, 119, 6, 0.15);
}

body:not(.dark-theme) .team-particles-container .team-energy-node {
  background: radial-gradient(circle, var(--accent-amber) 0%, rgba(217, 119, 6, 0.2) 100%);
  box-shadow: 0 0 8px var(--accent-amber);
}

/* ==========================================================================
   RESPONSIVE TEAM & ASSOCIATES GRID
   ========================================================================== */
@media (max-width: 1024px) {
  .team-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .associates-grid-premium {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .team-counters-dashboard {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .team-grid-premium {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .associates-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .associates-grid-premium {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ADVANCED CONTACT INFO & EXPERIENCE HIGHLIGHTS SECTION
   ========================================================================== */
.contact-experience-section {
  position: relative;
  background: radial-gradient(circle at 50% 80%, #070a13 0%, #020408 100%);
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.experience-particles-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Premium Showcase Banner */
.experience-showcase-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 80px 60px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.showcase-backdrop-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
  z-index: 1;
}

.experience-showcase-banner:hover .showcase-backdrop-image {
  transform: scale(1.03);
}

.showcase-backdrop-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(7, 10, 19, 0.95) 0%, rgba(2, 4, 8, 0.8) 100%);
  z-index: 2;
}

.showcase-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.achievement-badges-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.achievement-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.glow-badge-gold {
  color: #facc15;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.2);
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.1);
}

.glow-badge-blue {
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.glow-badge-green {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}

.showcase-title {
  font-size: 40px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.showcase-title .highlight-yellow {
  color: #facc15;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 20px rgba(250, 204, 21, 0.35);
  font-weight: 900;
}

.showcase-subtitle {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 45px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Moving Grid Energy Pulse Animation */
.energy-flow-track {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
}

.energy-flow-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.8), transparent);
  animation: energyFlow 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.energy-flow-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  background: #facc15;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 15px #facc15, 0 0 30px #facc15;
  opacity: 0.6;
  animation: energyFlowPulse 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes energyFlow {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes energyFlowPulse {
  0% { left: 0%; opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { left: 100%; opacity: 0; }
}

/* Utility Icon Animation Classes for department contact cards */
@keyframes anim-pulse-kf {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
}

@keyframes anim-bounce-kf {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  70% { transform: translateY(-2px); }
}

@keyframes anim-spin-slow-kf {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.anim-pulse i {
  animation: anim-pulse-kf 2.5s ease-in-out infinite;
  display: block;
}

.anim-bounce i {
  animation: anim-bounce-kf 2s ease infinite;
  display: block;
}

.anim-spin-slow i {
  animation: anim-spin-slow-kf 8s linear infinite;
  display: block;
}

/* Departmental Contact Cards */
.dept-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  z-index: 2;
  position: relative;
}

.dept-contact-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s ease;
  overflow: hidden;
  z-index: 2;
}

.dept-contact-card:hover {
  transform: translateY(-8px);
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(250, 204, 21, 0.2);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.dept-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dept-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.dept-contact-card:hover .dept-icon-wrapper {
  background: rgba(250, 204, 21, 0.08);
  border-color: rgba(250, 204, 21, 0.2);
  color: #facc15;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.1);
}

.dept-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #facc15;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.dept-info {
  margin-bottom: 28px;
  flex-grow: 1;
}

.dept-info h3 {
  font-size: 18px;
  color: #e2e8f0;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.dept-contact-card:hover .dept-info h3 {
  color: #ffffff;
}

.dept-desc {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.dept-contact-card:hover .dept-desc {
  color: #94a3b8;
}

.address-text {
  font-size: 11.5px;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
  font-weight: 500;
}

.address-text i {
  color: #facc15;
  margin-top: 2px;
  font-size: 12px;
}

.dept-contact-card:hover .address-text {
  color: #64748b;
}

.dept-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.btn-dept-call {
  width: 100%;
  padding: 10px 18px !important;
  font-size: 13.5px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

.btn-dept-wa {
  width: 100%;
  padding: 9px 18px !important;
  font-size: 13px !important;
  border-radius: var(--radius-md) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600 !important;
  color: #22c55e !important;
  background: rgba(34, 197, 94, 0.06) !important;
  border: 1px solid rgba(34, 197, 94, 0.15) !important;
}

.btn-dept-wa:hover {
  background: rgba(34, 197, 94, 0.12) !important;
  border-color: rgba(34, 197, 94, 0.3) !important;
  color: #ffffff !important;
}

/* Desktop Floating Sidebar Widget */
.floating-contact-sidebar-desktop {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) translateX(100px);
  width: 60px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.5s ease;
}

.floating-contact-sidebar-desktop.active {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  visibility: visible;
}

.sidebar-header {
  font-size: 14px;
  color: #facc15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
  width: 100%;
}

.sidebar-header span {
  display: none;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-btn:hover {
  transform: scale(1.12);
  color: #ffffff;
}

.sb-sales:hover {
  background: var(--gradient-solar);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(234, 88, 12, 0.4);
}

.sb-service:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.4);
}

.sb-wa:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.sb-loc:hover {
  background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

/* Tooltip on sidebar hover */
.sb-tooltip {
  position: absolute;
  right: 60px;
  background: rgba(7, 10, 19, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.sidebar-btn:hover .sb-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Sticky Bottom CTA Bar */
.sticky-cta-buttons-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 1001;
  background: #070a13;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.sticky-cta-buttons-mobile.active {
  transform: translateY(0);
  opacity: 1;
}

.m-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}

.cta-call {
  background: var(--gradient-solar);
}

.cta-call:active {
  background: #c2410c;
}

.cta-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.cta-whatsapp:active {
  background: #15803d;
}

/* Adjust body padding when mobile cta is active */
body.mobile-cta-active {
  padding-bottom: 60px !important;
}

/* Coordinate spotlight masking on cards hover */
.dept-contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(250px circle at var(--mouse-x, 0) var(--mouse-y, 0), #facc15, transparent 65%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.dept-contact-card:hover::before {
  opacity: 1;
}

/* ==========================================================================
   SUPPORT LIGHT THEME (CONTACT & EXPERIENCE SECTION)
   ========================================================================== */
body:not(.dark-theme) .contact-experience-section {
  background: radial-gradient(circle at 50% 80%, #f8fafc 0%, #e2e8f0 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body:not(.dark-theme) .experience-showcase-banner {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.03);
}

body:not(.dark-theme) .showcase-backdrop-overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(248, 250, 252, 0.5) 100%);
}

body:not(.dark-theme) .showcase-title {
  color: #0f172a;
}

body:not(.dark-theme) .showcase-title .highlight-yellow {
  color: var(--accent-amber);
  text-shadow: 0 0 15px rgba(217, 119, 6, 0.15);
}

body:not(.dark-theme) .showcase-subtitle {
  color: #475569;
}

body:not(.dark-theme) .energy-flow-track {
  background: rgba(15, 23, 42, 0.04);
}

body:not(.dark-theme) .energy-flow-line {
  background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.8), transparent);
}

body:not(.dark-theme) .energy-flow-pulse {
  background: var(--accent-amber);
  box-shadow: 0 0 15px var(--accent-amber);
}

body:not(.dark-theme) .dept-contact-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

body:not(.dark-theme) .dept-contact-card:hover {
  background: #ffffff;
  border-color: rgba(217, 119, 6, 0.2);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

body:not(.dark-theme) .dept-info h3 {
  color: #334155;
}

body:not(.dark-theme) .dept-contact-card:hover .dept-info h3 {
  color: #0f172a;
}

body:not(.dark-theme) .dept-desc {
  color: #475569;
}

body:not(.dark-theme) .dept-contact-card:hover .dept-desc {
  color: #334155;
}

body:not(.dark-theme) .address-text {
  color: #64748b;
}

body:not(.dark-theme) .address-text i {
  color: var(--accent-amber);
}

body:not(.dark-theme) .dept-contact-card:hover .address-text {
  color: #475569;
}

body:not(.dark-theme) .dept-icon-wrapper {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(15, 23, 42, 0.05);
  color: #64748b;
}

body:not(.dark-theme) .dept-contact-card:hover .dept-icon-wrapper {
  background: rgba(217, 119, 6, 0.06);
  border-color: rgba(217, 119, 6, 0.2);
  color: var(--accent-amber);
}

body:not(.dark-theme) .dept-badge {
  color: var(--accent-amber);
  background: rgba(217, 119, 6, 0.06);
  border-color: rgba(217, 119, 6, 0.15);
}

body:not(.dark-theme) .dept-contact-card::before {
  background: radial-gradient(250px circle at var(--mouse-x, 0) var(--mouse-y, 0), var(--accent-amber), transparent 65%);
}

body:not(.dark-theme) .floating-contact-sidebar-desktop {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

body:not(.dark-theme) .sidebar-btn {
  color: #475569;
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(15, 23, 42, 0.05);
}

body:not(.dark-theme) .sidebar-btn:hover {
  color: #ffffff;
}

body:not(.dark-theme) .sidebar-header {
  color: var(--accent-amber);
  border-bottom-color: rgba(15, 23, 42, 0.04);
}

body:not(.dark-theme) .sb-tooltip {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

body:not(.dark-theme) .sticky-cta-buttons-mobile {
  background: #ffffff;
  border-top-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.06);
}

body:not(.dark-theme) .m-cta-btn {
  color: #ffffff;
}

body:not(.dark-theme) .experience-particles-container .experience-energy-node {
  background: radial-gradient(circle, var(--accent-amber) 0%, rgba(217, 119, 6, 0.2) 100%);
  box-shadow: 0 0 8px var(--accent-amber);
}

/* ==========================================================================
   RESPONSIVE LAYOUTS & MEDIA QUERIES (CONTACT & EXPERIENCE)
   ========================================================================== */
@media (max-width: 1200px) {
  .dept-contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .experience-showcase-banner {
    padding: 60px 40px;
  }
  
  .showcase-title {
    font-size: 32px;
  }
  
  .floating-contact-sidebar-desktop {
    display: flex !important;
    left: 12px !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) translateX(-80px) !important;
    width: 44px !important;
    padding: 12px 4px !important;
    gap: 12px !important;
    border-radius: 12px !important;
    background: rgba(15, 23, 42, 0.85) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
  }
  
  .floating-contact-sidebar-desktop.active {
    transform: translateY(-50%) translateX(0) !important;
  }
  
  .floating-contact-sidebar-desktop .sidebar-header {
    padding-bottom: 8px !important;
    font-size: 11px !important;
  }
  
  .floating-contact-sidebar-desktop .sidebar-links {
    gap: 10px !important;
  }
  
  .floating-contact-sidebar-desktop .sidebar-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }
  
  .floating-contact-sidebar-desktop .sb-tooltip {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .experience-showcase-banner {
    padding: 40px 24px;
    border-radius: var(--radius-md);
  }
  
  .showcase-title {
    font-size: 24px;
  }
  
  .showcase-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .dept-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .dept-contact-card {
    padding: 24px;
    border-radius: var(--radius-md);
  }
  
  .desktop-only {
    display: none !important;
  }
}

/* ==========================================================================
   PREMIUM GLASSMORPHIC "GET A QUOTE" MODAL STYLING
   ========================================================================== */

/* Prevent scrolling when modal is active */
body.modal-open {
  overflow: hidden !important;
}

/* Modal Overlay & Backdrop */
.quote-modal-overlay {
  /* Enforce dark theme variables locally inside the modal to guarantee text visibility on dark glass panel */
  --text-primary: #f8fafc;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.15);
  --bg-tertiary: #1f2937;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
  pointer-events: none;
}

.quote-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Explicit options and placeholder styling rules for inputs inside modal */
.quote-modal-overlay ::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
  opacity: 1 !important; /* Firefox support */
}

.quote-modal-overlay select option {
  background-color: #111827 !important;
  color: #f8fafc !important;
}

.quote-modal-overlay input,
.quote-modal-overlay select,
.quote-modal-overlay textarea {
  color: #f8fafc !important; /* Enforce white text for fields in all browsers */
}

.quote-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 7, 15, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.quote-modal-wrapper {
  position: relative;
  width: 100%;
  max-width: 980px;
  max-height: 90vh;
  margin: 20px;
  z-index: 10;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 
              0 0 40px rgba(250, 204, 21, 0.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(250, 204, 21, 0.3) transparent;
}

/* Custom Scrollbar for Modal wrapper */
.quote-modal-wrapper::-webkit-scrollbar {
  width: 6px;
}
.quote-modal-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.quote-modal-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(250, 204, 21, 0.3);
  border-radius: 3px;
}

/* Main Glassmorphic Modal Box */
.quote-modal-container {
  background: rgba(10, 15, 28, 0.93) !important;
  border: 1.5px solid rgba(250, 204, 21, 0.2) !important;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* Floating Solar Particles Background inside Modal */
.modal-particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.modal-particle {
  position: absolute;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.75) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

/* Modal Close Button */
.quote-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-modal-close:hover {
  background: rgba(250, 204, 21, 0.15);
  border-color: rgba(250, 204, 21, 0.4);
  color: #facc15;
  transform: rotate(90deg);
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.3);
}

/* Dual Panel Layout Grid */
.quote-modal-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 560px;
  position: relative;
  z-index: 2;
}

/* ==================== LEFT COLUMN: TELEMETRY PANEL ==================== */
.modal-telemetry-panel {
  background: rgba(5, 8, 17, 0.95);
  border-right: 1.5px solid rgba(250, 204, 21, 0.15);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.telemetry-header {
  margin-bottom: 30px;
}

.telemetry-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.25);
  color: #facc15;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.1);
}

.telemetry-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-accent-yellow {
  color: #facc15;
  filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.5));
}

.telemetry-display-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.telemetry-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  transition: color 0.3s ease;
}

.metric-value.text-green {
  color: #10b981;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.metric-value.text-yellow {
  color: #fbbf24;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

/* Custom mini dynamic sizing bar */
.metric-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 4px;
}

.metric-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbf24, #facc15);
  border-radius: 20px;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.5);
}

.subsidy-note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

.telemetry-support-card {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.telemetry-support-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.support-link {
  font-size: 18px;
  font-weight: 800;
  color: #facc15;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.support-link:hover {
  color: #fbbf24;
  transform: translateX(2px);
}

.support-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ==================== RIGHT COLUMN: FORM PANEL ==================== */
.modal-form-panel {
  padding: 40px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-header {
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-solar-icon {
  color: #facc15;
  font-size: 22px;
  filter: drop-shadow(0 0 5px rgba(250, 204, 21, 0.3));
}

.form-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Form Success Overlay */
.modal-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 24, 0.98);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-content {
  text-align: center;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
  animation: success-bounce 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes success-bounce {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-content h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}

.success-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn-success-close {
  margin-top: 10px;
  padding: 12px 28px;
  font-weight: 700;
  width: 100%;
}

/* Premium Modal Forms Fields */
.modal-quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group-modal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group-modal label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 18px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 15px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.input-with-icon.align-start i {
  top: 18px;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
  width: 100%;
  padding: 13px 20px 13px 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Custom styled selects arrow inside modal */
.input-with-icon select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 15px;
  padding-right: 40px;
  cursor: pointer;
}

.input-with-icon textarea {
  resize: vertical;
  min-height: 90px;
  max-height: 160px;
  line-height: 1.5;
  padding-top: 13px;
}

/* Focused Glow states */
.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
  border-color: #facc15;
  background: rgba(250, 204, 21, 0.02);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
  outline: none;
}

.input-with-icon input:focus ~ i,
.input-with-icon select:focus ~ i,
.input-with-icon textarea:focus ~ i {
  color: #facc15;
  filter: drop-shadow(0 0 4px rgba(250, 204, 21, 0.4));
}

/* Validation Errors styling */
.form-group-modal.error label {
  color: #ef4444;
}

.form-group-modal.error .input-with-icon input,
.form-group-modal.error .input-with-icon select,
.form-group-modal.error .input-with-icon textarea {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.02);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group-modal.error .input-with-icon i {
  color: #ef4444;
}

.form-group-modal .error-text {
  position: absolute;
  bottom: -18px;
  left: 2px;
  font-size: 10px;
  font-weight: 600;
  color: #ef4444;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.form-group-modal.error .error-text {
  opacity: 1;
  visibility: visible;
  bottom: -16px;
}

/* Actions Section */
.modal-form-actions {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  margin-top: 15px;
}

/* Request Quote primary submit */
.btn-modal-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbf24 0%, #facc15 100%);
  border: 1px solid rgba(250, 204, 21, 0.2);
  color: #050811;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.btn-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(250, 204, 21, 0.35);
  background: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);
}

.btn-modal-submit .loading-spinner {
  display: none;
  font-size: 18px;
}

/* Submit loading state class rules */
.btn-modal-submit.submitting {
  pointer-events: none;
  background: rgba(250, 204, 21, 0.45);
  border-color: transparent;
  color: rgba(5, 8, 17, 0.5);
  box-shadow: none !important;
  transform: none !important;
}

.btn-modal-submit.submitting .btn-text {
  display: none;
}

.btn-modal-submit.submitting .loading-spinner {
  display: block;
  color: #050811;
}

/* WhatsApp action button styling */
.btn-modal-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.06);
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-modal-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.3);
}

/* ==================== RESPONSIVE OVERRIDES ==================== */
@media (max-width: 991px) {
  .quote-modal-wrapper {
    max-width: 580px;
    max-height: 85vh;
  }
  
  .quote-modal-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-telemetry-panel {
    border-right: none;
    border-bottom: 1.5px solid rgba(250, 204, 21, 0.15);
    padding: 30px;
    gap: 20px;
  }
  
  .telemetry-header {
    margin-bottom: 10px;
  }
  
  .telemetry-display-card {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 16px;
    margin-bottom: 10px;
  }
  
  .telemetry-metric {
    flex: 1 1 120px;
  }
  
  .metric-value {
    font-size: 20px;
  }
  
  .telemetry-support-card {
    display: none; /* Hide telephone card on small grids to save vertical height */
  }
  
  .modal-form-panel {
    padding: 30px;
  }
  
  .modal-success-overlay {
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 560px) {
  .quote-modal-wrapper {
    margin: 10px;
    max-height: 92vh;
  }
  
  .modal-telemetry-panel {
    padding: 24px 20px;
  }
  
  .telemetry-display-card {
    gap: 14px;
  }
  
  .telemetry-metric {
    flex: 1 1 100%;
  }
  
  .modal-form-panel {
    padding: 24px 20px;
  }
  
  .form-header {
    margin-bottom: 20px;
  }
  
  .form-header h3 {
    font-size: 20px;
  }
  
  .form-row-two {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .modal-form-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .input-with-icon input,
  .input-with-icon select,
  .input-with-icon textarea {
    padding: 11px 16px 11px 44px;
    font-size: 13px;
  }
  
  .input-with-icon i {
    left: 15px;
  }
  
  .btn-modal-submit,
  .btn-modal-wa {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* ==========================================================================
   CENTERED CONTACT PANEL & PREMIUM FOOTER LEGIBILITY OVERRIDES
   ========================================================================== */

/* Center left contact details column in contact section after right form removal */
.contact-section .contact-grid {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  max-width: 680px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.contact-section .contact-info-panel {
  width: 100% !important;
}

/* Local High-Contrast Variable Enforcements for Premium Footer to resolve Light Theme Inheritance */
.premium-footer {
  --text-primary: #f8fafc !important;
  --text-secondary: #cbd5e1 !important;
  --text-muted: #94a3b8 !important;
  --border-glass: rgba(255, 255, 255, 0.08) !important;
  --border-glass-hover: rgba(255, 255, 255, 0.15) !important;
  --bg-tertiary: rgba(255, 255, 255, 0.03) !important;
  --bg-secondary: #0b0f19 !important;
  --bg-primary: #020617 !important;
}

/* Enforce dark colors for links and text in footer under all themes */
.premium-footer a {
  color: #cbd5e1 !important;
}

.premium-footer a:hover {
  color: #facc15 !important;
}

.premium-footer .footer-heading {
  color: #ffffff !important;
}

.premium-footer .logo-text {
  color: #ffffff !important;
}

.premium-footer .footer-glass-card {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.premium-footer .footer-glass-card:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(250, 204, 21, 0.45) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(250, 204, 21, 0.08) !important;
}

/* Card headings inside footer glass cards */
.premium-footer .footer-glass-card .card-heading {
  color: #ffffff !important;
}

/* All text inside footer glass cards */
.premium-footer .footer-glass-card p,
.premium-footer .footer-contact-list li,
.premium-footer .footer-contact-list span {
  color: #cbd5e1 !important;
}

/* Footer contact list links */
.premium-footer .footer-contact-list a {
  color: #cbd5e1 !important;
}

.premium-footer .footer-contact-list a:hover {
  color: #facc15 !important;
}

.premium-footer .footer-description {
  color: #94a3b8 !important;
}

.premium-footer .footer-bottom-premium p {
  color: #64748b !important;
}

/* ==========================================================================
   INTERACTIVE GALLERY PREVIEW SHOWCASE STYLES
   ========================================================================== */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.preview-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border-glass, rgba(255,255,255,0.08));
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
  text-decoration: none;
  background: #0b0f19;
}

.preview-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-amber, #f59e0b);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.15);
}

.preview-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.preview-card:hover .preview-card-bg {
  transform: scale(1.08);
}

.preview-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 17, 0.95) 15%, rgba(2, 6, 17, 0.4) 60%, transparent 100%);
  transition: background 0.4s ease;
}

.preview-card:hover .preview-card-overlay {
  background: linear-gradient(to top, rgba(2, 6, 17, 0.98) 25%, rgba(2, 6, 17, 0.5) 65%, transparent 100%);
}

.preview-card-content {
  position: relative;
  padding: 24px;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.preview-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--accent-amber, #f59e0b);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  align-self: flex-start;
}

.preview-card h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0 0 4px 0;
  font-weight: 700;
}

.preview-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.preview-card-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-amber, #f59e0b);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.preview-card:hover .preview-card-cta {
  gap: 12px;
}

.gallery-preview-footer {
  text-align: center;
  margin-top: 50px;
}

.btn-solar-glow {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
}

.btn-solar-glow:hover {
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.45) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   TWITTER/X SOCIAL BRAND STYLING AND HOVER EFFECTS
   ========================================================================== */
.fa-x-twitter {
  color: #ffffff !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.fa-x-twitter:hover {
  color: var(--accent-amber, #f59e0b) !important;
  transform: scale(1.1);
}

/* ==========================================================================
   MOBILE MENU DRIFT AND HIGH-BLUR ACTIVE STYLING OVERRIDES
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-links.active {
    right: 0;
    border-left: 1px solid rgba(245, 158, 11, 0.3) !important;
    box-shadow: -10px 0 30px rgba(245, 158, 11, 0.15) !important;
  }
}


/* ==========================================================================
   MOBILE FIXES - Comprehensive responsive overrides for small screens
   ========================================================================== */

/* ---- Fix 1: Prevent horizontal scroll on all screen sizes ---- */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  min-width: 0;
}

/* ---- Fix 2: Logo too small on mobile — make it visible & bigger ---- */
@media (max-width: 480px) {
  /* Make the logo image itself much larger so it's prominent */
  .header .logo img,
  #logoImg {
    height: 46px !important;
    width: auto !important;
  }

  /* Keep logo gap reasonable */
  .header .logo {
    gap: 6px !important;
  }

  /* Show a short brand name on very small screens */
  .header .logo-text {
    display: none !important;
  }

  /* Widen nav container on very small screens */
  .nav-container {
    padding: 0 14px !important;
  }

  /* Reduce header height slightly so logo has room */
  :root {
    --header-height: 64px !important;
  }
}

/* Between 480-767px keep logo text, but shrink it */
@media (min-width: 481px) and (max-width: 767px) {
  .header .logo img,
  #logoImg {
    height: 36px !important;
    width: auto !important;
  }

  .header .logo-text {
    font-size: 15px !important;
  }
}

/* ---- Fix 3 & 4: Reduce excessive section padding & about spacing on mobile ---- */
@media (max-width: 768px) {
  /* Reduce section padding from 120px to 60px */
  .section {
    padding: 60px 0 !important;
  }

  /* Hero section */
  .hero {
    padding-top: calc(var(--header-height) + 30px) !important;
    padding-bottom: 60px !important;
    min-height: auto !important;
  }

  /* Section header margin */
  .section-header {
    margin: 0 auto 40px auto !important;
  }

  /* About grid — reduce gap between image and text */
  .about-grid {
    gap: 24px !important;
  }

  /* About visual images — reduce image height on mobile */
  .about-img-box img {
    height: 160px !important;
  }

  /* About timeline section — reduce top/bottom margin */
  .about-timeline-section {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* About counters grid — reduce top margin */
  .about-counters-grid {
    margin-top: 30px !important;
    margin-bottom: 20px !important;
  }

  /* Premium solar section padding */
  .premium-solar-section {
    padding: 60px 0 !important;
  }

  /* Team section */
  .team-section {
    padding: 60px 0 !important;
  }

  /* Contact experience section */
  .contact-experience-section {
    padding: 60px 0 !important;
  }

  /* Experience showcase banner padding */
  .experience-showcase-banner {
    padding: 40px 24px !important;
  }

  /* Dept contact grid section header margin */
  .contact-experience-section .section-header {
    margin-top: 40px !important;
  }

  /* Footer padding */
  .premium-footer {
    padding: 60px 0 30px 0 !important;
  }

  /* Hero h1 size */
  .hero-content h1 {
    font-size: 30px !important;
    letter-spacing: -0.5px !important;
  }

  /* Section title size */
  .section-title {
    font-size: 26px !important;
  }

  /* About margin-bottom on about-grid */
  .about-grid[style*="margin-bottom"] {
    margin-bottom: 30px !important;
  }

  /* Team dealers sub-header margin */
  .team-sub-header[style*="margin-top: 60px"] {
    margin-top: 30px !important;
  }

  /* Dept contact grid responsive */
  .dept-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Stats dashboards on mobile */
  .premium-stats-dashboard {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 30px !important;
  }

  /* Premium project grid */
  .premium-project-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
  }

  /* Hero trust badges text wrapping */
  .hero-trust-badges {
    gap: 8px !important;
  }

  .trust-badge {
    font-size: 11px !important;
    padding: 6px 10px !important;
  }

  /* Reviews grid gap */
  .reviews-grid {
    gap: 24px !important;
  }
}

@media (max-width: 480px) {
  /* Even more compact on very small phones */
  .section {
    padding: 48px 0 !important;
  }

  .hero {
    padding-top: calc(var(--header-height) + 20px) !important;
    padding-bottom: 48px !important;
  }

  .hero-content h1 {
    font-size: 26px !important;
  }

  .section-title {
    font-size: 22px !important;
  }

  .about-grid {
    gap: 16px !important;
  }

  /* Floating stat cards smaller */
  .floating-stat-card {
    min-width: unset !important;
    padding: 12px 14px !important;
  }

  /* Calc container */
  .calc-container {
    padding: 20px 16px !important;
  }

  /* Contact info card smaller */
  .contact-info-card {
    padding: 18px 16px !important;
    gap: 16px !important;
  }

  .contact-icon-wrapper {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
  }
}

/* ---- Fix 5: Footer "Chandel Enterprises" text visibility & no-overlap ---- */
/* Force the logo-text in footer to always be white, visible, and not overlapping */
.premium-footer .animated-solar-logo .logo-text,
.premium-footer .logo-text {
  display: inline-block !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  text-shadow: 0 0 8px rgba(250, 204, 21, 0.2) !important;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer animated-solar-logo: constrain height, prevent overflow */
.premium-footer .animated-solar-logo {
  height: auto !important;
  flex-wrap: nowrap;
  max-width: 100%;
  overflow: hidden;
  gap: 12px !important;
}

/* On very small screens: allow footer logo text to wrap below the ring */
@media (max-width: 480px) {
  .premium-footer .animated-solar-logo {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .premium-footer .logo-text {
    display: inline-block !important;
    font-size: 13px !important;
    white-space: normal !important;
    width: 100%;
  }
}

/* ---- Fix 6: Enable/restore the contact form in contact section ---- */
/* Restore contact grid to show both info panel + form side by side */
.contact-section .contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.1fr !important;
  flex-direction: unset !important;
  justify-content: unset !important;
  align-items: start !important;
  gap: 40px !important;
  max-width: 100% !important;
  margin: 0 !important;
  width: 100% !important;
}

.contact-section .contact-info-panel {
  width: 100% !important;
}

/* Show the inline contact form that may have been hidden */
.contact-form-inline-wrapper {
  display: block !important;
  width: 100% !important;
}

/* Responsive: Stack contact grid on tablets/mobile */
@media (max-width: 991px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* ---- Additional mobile nav fixes ---- */
@media (max-width: 768px) {
  /* Ensure nav links take full remaining height */
  .nav-links {
    overflow-y: auto !important;
  }

  /* Mobile hero actions stack vertically */
  .hero-actions {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    max-width: 280px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Gallery preview grid full width on mobile */
  .gallery-preview-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Footer bottom row */
  .footer-bottom-premium {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .footer-bottom-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  /* Trust badges on projects section */
  .premium-projects-trust {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
}

/* Prevent any content from overflowing horizontally */
@media (max-width: 768px) {
  .container {
    padding: 0 16px !important;
  }

  /* No negative margins that cause overflow */
  .card-installations,
  .card-projects,
  .card-saving {
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: auto !important;
  }
}

/* ---- Google Map Mobile & Desktop Pointer Events Fix ---- */
.map-wrapper iframe {
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.map-wrapper.map-active iframe {
  pointer-events: auto;
}

@media (max-width: 768px) {
  /* Reduce map wrapper height on mobile */
  .map-wrapper {
    height: 280px !important;
    margin-top: 30px !important;
  }
}

