/* Font variables and styling rules */

/* ==========================================================================
   1. DESIGN SYSTEM & ROOT VARIABLES
   ========================================================================== */
:root {
  /* Color Palette */
  --color-navy-deep: #0F2C59;       /* Midnight Cobalt Blue */
  --color-navy-card: #153568;       /* Saturated Cobalt Card */
  --color-navy-light: #204C8F;      /* Rich Cobalt Highlight */
  --color-amber-gold: #EAB308;      /* Vibrant Solar Yellow */
  --color-amber-hover: #CA8A04;     /* Darker Gold/Yellow Hover */
  --color-amber-glow: rgba(234, 179, 8, 0.15); /* Yellow glow */
  --color-white: #FFFFFF;
  --color-steel-light: #FAF7F0;     /* Premium Warm Sand Beige */
  --color-steel-border: #E6DFD3;    /* Soft Linen Border */
  --color-text-dark: #0F2C59;       /* Midnight Cobalt text color */
  --color-text-muted: #5C6B82;      /* Slate Blue/Gray supporting text */
  --color-text-light: #E6DFD3;      /* Light Beige text divider */
  --color-text-white: #FFFFFF;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing & Layout */
  --max-width: 1280px;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(15, 44, 89, 0.03);
  --shadow-md: 0 12px 35px -10px rgba(15, 44, 89, 0.06);
  --shadow-lg: 0 24px 48px -15px rgba(15, 44, 89, 0.1);
  --shadow-amber: 0 10px 25px -5px rgba(234, 179, 8, 0.25);
}

/* ==========================================================================
   2. BASE STYLES & RESET
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy-deep);
}

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

button, input, textarea {
  font-family: inherit;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-steel-light);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* ==========================================================================
   3. REUSABLE UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-amber-gold);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 50px;
}

/* Dark Theme Helpers */
.bg-dark {
  background-color: var(--color-navy-deep);
  color: var(--color-text-white);
}

.bg-dark .section-title {
  color: var(--color-text-white);
}

.bg-dark .section-desc {
  color: #94A3B8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-amber-gold);
  color: var(--color-navy-deep);
  box-shadow: var(--shadow-amber);
}

.btn-primary:hover {
  background-color: var(--color-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -5px rgba(245, 166, 35, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.btn-secondary:active {
  transform: translateY(0);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-navy-deep);
  border: 2px solid var(--color-navy-deep);
}

.btn-outline-dark:hover {
  background-color: var(--color-navy-deep);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Icons styling */
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--color-steel-light);
  color: var(--color-amber-gold);
  margin-bottom: 24px;
}

.bg-dark .icon-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   4. SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   5. NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 16px 0;
  background-color: rgba(11, 28, 61, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 24px;
  height: 24px;
  fill: var(--color-amber-gold);
}

.logo-image {
  width: auto;
  height: 55px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(234, 179, 8, 0.3));
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 50%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #94A3B8;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-amber-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar .btn-nav {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  transition: var(--transition-smooth);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ==========================================================================
   6. HERO SECTION - COMPLETELY REDESIGNED
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1628 0%, #0f2c59 50%, #1a3a6b 100%);
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  overflow: hidden;
}

/* Animated gradient background */
.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
  animation: gradientPulse 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes gradientPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Floating particles effect */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(234, 179, 8, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 80% 10%, rgba(234, 179, 8, 0.3), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200% 200%;
  animation: particleFloat 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes particleFloat {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-amber-gold);
  margin-bottom: 24px;
}

/* New Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-amber-gold);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.1rem;
}

/* New Hero Title */
.hero-title-new {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 28px;
  letter-spacing: -0.05em;
}

/* Letter Animation Container */
.letter-animate {
  display: inline-block;
  position: relative;
}

.letter-animate .letter {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: default;
}

.letter-animate .letter:hover {
  transform: translateY(-10px) scale(1.2);
  color: #FBBF24;
  text-shadow: 0 5px 15px rgba(251, 191, 36, 0.5);
}

.letter-animate .letter.space {
  width: 0.3em;
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, #EAB308 0%, #FBBF24 50%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: gradientShift 3s ease-in-out infinite;
}

.gradient-text .letter:hover {
  background: linear-gradient(135deg, #FCD34D 0%, #FBBF24 50%, #EAB308 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: brightness(1.3);
}

@keyframes gradientShift {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.hero-subtitle {
  font-size: 1.35rem;
  color: #CBD5E1;
  margin-bottom: 48px;
  line-height: 1.7;
  max-width: 650px;
}

/* Inline Stats - NO BOX, ANIMATED, BEAUTIFUL */
.hero-stats-inline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 48px;
  background: none;
  border: none;
  backdrop-filter: none;
  overflow: visible;
  position: relative;
}

/* Thin separator line between stats */
.hero-stats-inline::before {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 0;
  right: 0;
  pointer-events: none;
}

.stat-inline {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.stat-inline:last-child {
  border-right: none;
}

/* Golden top accent bar */
.stat-inline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #EAB308, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-inline:hover::before {
  opacity: 1;
}

.stat-inline:hover {
  transform: translateY(-4px);
}

.stat-icon-badge {
  display: none;
}

/* Animated number style */
.stat-number-hero {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #FFFFFF 0%, #EAB308 60%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(234, 179, 8, 0.4));
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #EAB308 0%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Procurement Specialist */
.stat-highlight .stat-badge-text {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #FFFFFF 0%, #EAB308 60%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(234, 179, 8, 0.3));
}

.stat-label-hero {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

.stat-divider {
  display: none;
}

/* New Hero CTAs */
.hero-ctas-new {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #FF6B35 !important;
  color: #FFFFFF !important;
  padding: 18px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.6s ease !important;
  border: 3px solid #FF6B35 !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4), 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%) !important;
  z-index: -1;
  transition: left 0.6s ease !important;
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  z-index: 10;
}

.btn-hero-primary:hover {
  transform: translateY(-5px) !important;
  border-color: #3B82F6 !important;
  box-shadow: 
    0 0 40px rgba(59, 130, 246, 0.8),
    0 0 80px rgba(59, 130, 246, 0.6),
    0 10px 30px rgba(30, 64, 175, 0.5) !important;
  animation: pulse-glow 1.5s ease-in-out infinite !important;
}

.btn-hero-primary:hover::before {
  left: 0 !important;
}

.btn-hero-primary:hover::after {
  width: 300px;
  height: 300px;
  opacity: 0.2;
}

.btn-hero-primary:active {
  transform: translateY(-2px) !important;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 
      0 0 40px rgba(59, 130, 246, 0.8),
      0 0 80px rgba(59, 130, 246, 0.6),
      0 10px 30px rgba(30, 64, 175, 0.5);
  }
  50% {
    box-shadow: 
      0 0 60px rgba(59, 130, 246, 1),
      0 0 120px rgba(59, 130, 246, 0.8),
      0 15px 40px rgba(30, 64, 175, 0.7);
  }
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  padding: 18px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 3px solid rgba(255, 255, 255, 0.3) !important;
  transition: all 0.6s ease !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), 0 4px 15px rgba(255, 255, 255, 0.1) !important;
}

.btn-hero-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #10B981 0%, #14F195 100%) !important;
  z-index: -1;
  transition: left 0.6s ease !important;
}

.btn-hero-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  z-index: 10;
}

.btn-hero-secondary:hover {
  transform: translateY(-5px) !important;
  border-color: #14F195 !important;
  color: #FFFFFF !important;
  box-shadow: 
    0 0 40px rgba(16, 185, 129, 0.9),
    0 0 80px rgba(20, 241, 149, 0.7),
    0 10px 30px rgba(16, 185, 129, 0.5) !important;
  animation: pulse-glow-green 1.5s ease-in-out infinite !important;
}

.btn-hero-secondary:hover::before {
  left: 0 !important;
}

.btn-hero-secondary:hover::after {
  width: 300px;
  height: 300px;
  opacity: 0.2;
}

.btn-hero-secondary:active {
  transform: translateY(-2px) !important;
}

@keyframes pulse-glow-green {
  0%, 100% {
    box-shadow: 
      0 0 40px rgba(16, 185, 129, 0.9),
      0 0 80px rgba(20, 241, 149, 0.7),
      0 10px 30px rgba(16, 185, 129, 0.5);
  }
  50% {
    box-shadow: 
      0 0 60px rgba(16, 185, 129, 1),
      0 0 120px rgba(20, 241, 149, 0.9),
      0 15px 40px rgba(16, 185, 129, 0.7);
  }
}

/* New Trust Items */
.hero-trust-new {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item-new {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #E2E8F0;
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-item-new svg {
  width: 20px;
  height: 20px;
  color: var(--color-amber-gold);
}

.hero-desc {
  font-size: 1.2rem;
  color: #94A3B8;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748B;
  margin-bottom: 16px;
}

.trust-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--color-amber-gold);
  flex-shrink: 0;
}

/* Visual Signature - STUNNING ENERGY VISUALIZATION */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 500px;
}

.energy-visualization {
  position: relative;
  width: 450px;
  height: 450px;
}

/* Animated Sun */
.animated-sun {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  z-index: 10;
}

.sun-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #FCD34D 0%, #FBBF24 50%, #EAB308 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 40px rgba(251, 191, 36, 0.8),
    0 0 80px rgba(234, 179, 8, 0.6),
    inset 0 0 20px rgba(252, 211, 77, 0.5);
  animation: sunPulse 3s ease-in-out infinite;
}

@keyframes sunPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 40px rgba(251, 191, 36, 0.8), 0 0 80px rgba(234, 179, 8, 0.6); }
  50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 60px rgba(251, 191, 36, 1), 0 0 100px rgba(234, 179, 8, 0.8); }
}

.sun-ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, #FCD34D 0%, transparent 100%);
  transform-origin: center 0;
  opacity: 0.7;
  animation: sunRayRotate 8s linear infinite;
}

.sun-ray-1 { transform: translate(-50%, -50%) rotate(0deg); }
.sun-ray-2 { transform: translate(-50%, -50%) rotate(45deg); }
.sun-ray-3 { transform: translate(-50%, -50%) rotate(90deg); }
.sun-ray-4 { transform: translate(-50%, -50%) rotate(135deg); }
.sun-ray-5 { transform: translate(-50%, -50%) rotate(180deg); }
.sun-ray-6 { transform: translate(-50%, -50%) rotate(225deg); }
.sun-ray-7 { transform: translate(-50%, -50%) rotate(270deg); }
.sun-ray-8 { transform: translate(-50%, -50%) rotate(315deg); }

@keyframes sunRayRotate {
  0% { transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scaleY(1); }
  50% { transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scaleY(1.3); }
  100% { transform: translate(-50%, -50%) rotate(calc(var(--rotation, 0deg) + 360deg)) scaleY(1); }
}

/* Energy Flow Visualization */
.energy-flow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  z-index: 5;
}

.energy-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: energyFlow 3s ease-in-out infinite;
}

.energy-line-1 { animation-delay: 0s; }
.energy-line-2 { animation-delay: 0.3s; }
.energy-line-3 { animation-delay: 0.6s; }
.energy-line-4 { animation-delay: 0.9s; }

@keyframes energyFlow {
  0% { stroke-dashoffset: 200; opacity: 0; }
  40% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

/* Energy Particles */
.energy-particle {
  opacity: 0;
  animation: particleTravel 3s ease-in-out infinite;
  will-change: transform;
}

.particle-1 { animation-delay: 0.2s; }
.particle-2 { animation-delay: 0.5s; }
.particle-3 { animation-delay: 0.8s; }
.particle-4 { animation-delay: 1.1s; }
.particle-5 { animation-delay: 1.4s; }
.particle-6 { animation-delay: 1.7s; }

@keyframes particleTravel {
  0% { 
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { 
    transform: translateY(150px) scale(0.5);
    opacity: 0;
  }
}

/* Modern Solar Panel */
.modern-panel {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 180px;
  background: linear-gradient(135deg, #1a3a6b 0%, #0f2c59 100%);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(234, 179, 8, 0.1);
  animation: panelFloat 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes panelFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.panel-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.3) 0%, transparent 70%);
  border-radius: 24px;
  animation: glowPulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.panel-cell {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #0a1e3d 0%, #071428 100%);
  border-radius: 6px;
  border: 1px solid rgba(234, 179, 8, 0.2);
  position: relative;
  overflow: hidden;
  animation: cellCharge 3s ease-in-out infinite;
}

.panel-cell::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(234, 179, 8, 0.3) 50%, transparent 70%);
  animation: cellShimmer 4s linear infinite;
}

@keyframes cellCharge {
  0%, 100% { border-color: rgba(234, 179, 8, 0.2); }
  50% { border-color: rgba(234, 179, 8, 0.6); box-shadow: 0 0 10px rgba(234, 179, 8, 0.3); }
}

@keyframes cellShimmer {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Energy Indicator */
.energy-indicator {
  background: rgba(10, 30, 61, 0.8);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.indicator-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.indicator-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #EAB308 0%, #FBBF24 50%, #FCD34D 100%);
  border-radius: 3px;
  animation: indicatorFill 2s ease-in-out infinite;
}

@keyframes indicatorFill {
  0%, 100% { width: 60%; }
  50% { width: 85%; }
}

.indicator-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FBBF24;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: textBlink 2s ease-in-out infinite;
}

@keyframes textBlink {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Floating Statistics */
.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: floatUpDown 3s ease-in-out infinite;
}

.stat-1 {
  top: 180px;
  left: 10px;
  animation-delay: 0s;
}

.stat-2 {
  top: 250px;
  right: 10px;
  animation-delay: 0.5s;
}

.stat-3 {
  bottom: 80px;
  left: 20px;
  animation-delay: 1s;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.stat-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .energy-visualization {
    width: 320px;
    height: 380px;
    transform: scale(0.85);
  }
  
  .animated-sun {
    width: 100px;
    height: 100px;
  }
  
  .sun-core {
    width: 70px;
    height: 70px;
  }
  
  .modern-panel {
    width: 240px;
    height: 150px;
  }
  
  .floating-stat {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .stat-icon {
    font-size: 1.2rem;
  }
}

/* Preloader Enhanced */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #0f2c59 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  animation: preloaderSpin 2s ease-in-out infinite;
}

@keyframes preloaderSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-amber-gold) 0%, #FBBF24 100%);
  border-radius: 2px;
  animation: preloaderProgress 1.5s ease-out forwards;
}

@keyframes preloaderProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SOLAR SAVINGS CALCULATOR - UNIQUE GRADIENT DESIGN
   ========================================================================== */
.calculator-section {
  background: linear-gradient(135deg, 
    #1a1a2e 0%, 
    #16213e 25%,
    #0f3460 50%,
    #533483 75%,
    #e94560 100%);
  background-size: 400% 400%;
  animation: calculatorGradient 15s ease infinite;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

@keyframes calculatorGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Floating particles */
.calculator-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(234, 179, 8, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(83, 52, 131, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.calculator-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.08) 0%, 
    rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 50px;
  border: 2px solid rgba(234, 179, 8, 0.2);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(234, 179, 8, 0.15),
    inset 0 0 60px rgba(234, 179, 8, 0.05);
  position: relative;
  z-index: 2;
}

.calculator-header {
  text-align: center;
  margin-bottom: 40px;
}

.calculator-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 12px;
  font-family: var(--font-display);
  text-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
}

.calculator-title .gradient-text {
  background: linear-gradient(135deg, #EAB308 0%, #FBBF24 50%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

.calculator-subtitle {
  font-size: 1.1rem;
  color: #CBD5E1;
}

.calculator-content {
  display: grid;
  gap: 32px;
}

.calculator-group {
  display: grid;
  gap: 12px;
}

.calculator-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FBBF24;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.type-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.type-btn {
  padding: 16px 24px;
  border: 2px solid rgba(234, 179, 8, 0.2);
  background: rgba(234, 179, 8, 0.05);
  color: #CBD5E1;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.type-btn:hover {
  border-color: rgba(234, 179, 8, 0.6);
  background: rgba(234, 179, 8, 0.15);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 179, 8, 0.2);
}

.type-btn.active {
  border-color: var(--color-amber-gold);
  background: linear-gradient(135deg, #EAB308 0%, #FBBF24 100%);
  color: #1a1a2e;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(234, 179, 8, 0.4);
}

.calculator-input {
  padding: 18px 24px;
  border: 2px solid rgba(234, 179, 8, 0.3);
  background: rgba(234, 179, 8, 0.05);
  color: var(--color-white);
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  transition: all 0.3s ease;
}

.calculator-input:focus {
  outline: none;
  border-color: var(--color-amber-gold);
  background: rgba(234, 179, 8, 0.1);
  box-shadow: 0 0 30px rgba(234, 179, 8, 0.3);
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.result-card {
  background: linear-gradient(135deg, 
    rgba(234, 179, 8, 0.1) 0%, 
    rgba(251, 191, 36, 0.05) 100%);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(234, 179, 8, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(234, 179, 8, 0.2) 0%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-card:hover {
  background: linear-gradient(135deg, 
    rgba(234, 179, 8, 0.2) 0%, 
    rgba(251, 191, 36, 0.1) 100%);
  transform: translateY(-4px);
  border-color: rgba(234, 179, 8, 0.5);
  box-shadow: 0 10px 30px rgba(234, 179, 8, 0.3);
}

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

.result-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 10px rgba(234, 179, 8, 0.3));
}

.result-label {
  font-size: 0.7rem;
  color: #FBBF24;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.result-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-white);
  font-family: var(--font-display);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.result-value.green {
  color: #10B981;
  text-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

.calculator-quote {
  background: linear-gradient(135deg, 
    rgba(26, 26, 46, 0.8) 0%, 
    rgba(22, 33, 62, 0.8) 100%);
  padding: 32px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  border: 2px solid rgba(234, 179, 8, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.quote-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.quote-label {
  font-size: 0.85rem;
  color: #FBBF24;
  font-weight: 600;
  white-space: nowrap;
}

.quote-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-white);
  font-family: var(--font-display);
  text-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
  white-space: nowrap;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  width: 100%;
}

.quote-input {
  padding: 16px 20px;
  border: 2px solid rgba(234, 179, 8, 0.2);
  background: rgba(234, 179, 8, 0.05);
  color: var(--color-white);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: 0;
}

.quote-input:focus {
  outline: none;
  border-color: var(--color-amber-gold);
  background: rgba(234, 179, 8, 0.1);
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.2);
}

.quote-input::placeholder {
  color: #94A3B8;
}

.quote-btn {
  white-space: nowrap;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  min-width: fit-content;
}

/* Responsive */
@media (max-width: 968px) {
  .calculator-results {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .calculator-quote {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .quote-price {
    justify-content: center;
    align-items: center;
  }
  
  .quote-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .type-buttons {
    grid-template-columns: 1fr;
  }
  
  .calculator-results {
    grid-template-columns: 1fr;
  }
  
  .calculator-wrapper {
    padding: 24px 16px;
  }
  
  .calculator-title {
    font-size: 1.75rem;
  }
  
  .calculator-subtitle {
    font-size: 0.9rem;
  }
  
  .calculator-results {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .result-card {
    padding: 16px 12px;
  }
  
  .result-icon {
    font-size: 1.75rem;
    margin-bottom: 8px;
  }
  
  .result-label {
    font-size: 0.7rem;
  }
  
  .result-value {
    font-size: 1.25rem;
  }
  
  .calculator-quote {
    flex-direction: column;
    gap: 20px;
  }
  
  .quote-price {
    text-align: center;
  }
  
  .quote-amount {
    font-size: 1.75rem;
  }
  
  .quote-form {
    flex-direction: column;
    gap: 12px;
  }
  
  .quote-input {
    width: 100%;
    font-size: 16px !important;
  }
  
  .quote-btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .type-buttons {
    gap: 8px;
  }
  
  .type-btn {
    font-size: 0.85rem;
    padding: 10px 16px;
  }
}

/* ==========================================================================
   7. WHY CHOOSE SOLAR SCIENCE - CLEAN & SMOOTH DESIGN
   ========================================================================== */
.why-us {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF8E7 50%, #F0F9FF 100%);
  position: relative;
  overflow: hidden;
}

/* Simple static background - NO ANIMATION */
.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(173, 216, 230, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 60%, rgba(255, 218, 185, 0.15) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* Remove large background numbers - PERFORMANCE KILLER */
.why-us::after {
  display: none;
}

/* Removed floating light spots for performance */

.why-us .container {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 10;
  counter-reset: why-counter;
}

.why-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.85) 100%
  );
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 
    0 8px 32px rgba(31, 38, 135, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  counter-increment: why-counter;
}

/* Stylish Number Badge */
.why-card::before {
  content: '0' counter(why-counter);
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 4.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  transition: all 0.5s ease;
  letter-spacing: -0.05em;
}

/* Pastel gradient borders for each card */
.why-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 229, 236, 0.95) 0%, rgba(255, 240, 245, 0.95) 100%);
  border-color: rgba(255, 182, 193, 0.3);
}

.why-card:nth-child(1)::before {
  color: rgba(255, 100, 120, 0.5);
  text-shadow: 2px 2px 12px rgba(255, 100, 120, 0.6);
}

.why-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.95) 0%, rgba(255, 248, 220, 0.95) 100%);
  border-color: rgba(255, 218, 185, 0.3);
}

.why-card:nth-child(2)::before {
  color: rgba(255, 180, 120, 0.5);
  text-shadow: 2px 2px 12px rgba(255, 180, 120, 0.6);
}

.why-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(230, 247, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
  border-color: rgba(173, 216, 230, 0.3);
}

.why-card:nth-child(3)::before {
  color: rgba(100, 180, 230, 0.5);
  text-shadow: 2px 2px 12px rgba(100, 180, 230, 0.6);
}

.why-card:nth-child(4) {
  background: linear-gradient(135deg, rgba(240, 255, 244, 0.95) 0%, rgba(247, 255, 250, 0.95) 100%);
  border-color: rgba(152, 251, 152, 0.3);
}

.why-card:nth-child(4)::before {
  color: rgba(100, 220, 120, 0.5);
  text-shadow: 2px 2px 12px rgba(100, 220, 120, 0.6);
}

.why-card:nth-child(5) {
  background: linear-gradient(135deg, rgba(255, 240, 245, 0.95) 0%, rgba(255, 245, 250, 0.95) 100%);
  border-color: rgba(221, 160, 221, 0.3);
}

.why-card:nth-child(5)::before {
  color: rgba(200, 120, 220, 0.5);
  text-shadow: 2px 2px 12px rgba(200, 120, 220, 0.6);
}

.why-card:nth-child(6) {
  background: linear-gradient(135deg, rgba(255, 250, 205, 0.95) 0%, rgba(250, 250, 210, 0.95) 100%);
  border-color: rgba(255, 250, 205, 0.5);
}

.why-card:nth-child(6)::before {
  color: rgba(230, 200, 80, 0.55);
  text-shadow: 2px 2px 12px rgba(230, 200, 80, 0.6);
}

/* Glowing effect on hover - SIMPLIFIED */
.why-card .hover-glow {
  display: none;
}

.why-card::after {
  display: none;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 15px 40px rgba(31, 38, 135, 0.12),
    0 0 0 1px rgba(255, 255, 255, 1) inset;
  transition: all 0.3s ease;
}

.why-card:hover::before {
  opacity: 0.3;
}

/* Icon wrapper with pastel colors - Updated for SVG */
.why-card .icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.4s ease;
}

.why-card .icon-wrapper svg {
  width: 32px;
  height: 32px;
  transition: all 0.4s ease;
}

.why-card:nth-child(1) .icon-wrapper {
  background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
  color: #C71585;
}

.why-card:nth-child(2) .icon-wrapper {
  background: linear-gradient(135deg, #FFDAB9 0%, #FFE4B5 100%);
  box-shadow: 0 8px 20px rgba(255, 218, 185, 0.4);
  color: #FF8C00;
}

.why-card:nth-child(3) .icon-wrapper {
  background: linear-gradient(135deg, #ADD8E6 0%, #B0E0E6 100%);
  box-shadow: 0 8px 20px rgba(173, 216, 230, 0.4);
  color: #1E90FF;
}

.why-card:nth-child(4) .icon-wrapper {
  background: linear-gradient(135deg, #98FB98 0%, #90EE90 100%);
  box-shadow: 0 8px 20px rgba(152, 251, 152, 0.4);
  color: #228B22;
}

.why-card:nth-child(5) .icon-wrapper {
  background: linear-gradient(135deg, #DDA0DD 0%, #EE82EE 100%);
  box-shadow: 0 8px 20px rgba(221, 160, 221, 0.4);
  color: #9932CC;
}

.why-card:nth-child(6) .icon-wrapper {
  background: linear-gradient(135deg, #FFFFE0 0%, #FFFACD 100%);
  box-shadow: 0 8px 20px rgba(255, 250, 205, 0.4);
  color: #DAA520;
}

.why-card:hover .icon-wrapper {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.why-card:hover .icon-wrapper svg {
  transform: scale(1.1);
}

.why-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2D3748;
  transition: color 0.3s ease;
}

.why-card:hover .why-card-title {
  color: #1A202C;
}

.why-card-desc {
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.why-card:hover .why-card-desc {
  color: #2D3748;
}

/* Adjust grid layout for odd card numbers (e.g. 7 cards) */
.why-grid > *:last-child {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  /* Center the 7th card or span it */
  .why-grid > *:nth-last-child(1):nth-child(3n-2) {
    grid-column: 2 / 3;
  }
}

/* ==========================================================================
   8. WORK GALLERY - OUR PROJECTS IN ACTION
   ========================================================================== */
.work-gallery {
  background: linear-gradient(135deg, #0a1628 0%, #0f2c59 50%, #1a3a6b 100%);
  position: relative;
  overflow: hidden;
}

.work-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(234, 179, 8, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  animation: gallery-bg-float 20s ease-in-out infinite;
  will-change: transform;
}

@keyframes gallery-bg-float {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(20px, 20px); opacity: 0.8; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4/3;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 10px 30px rgba(15, 44, 89, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.2) 0%, 
    rgba(255, 217, 61, 0.2) 25%,
    rgba(107, 207, 127, 0.2) 50%,
    rgba(77, 150, 255, 0.2) 75%,
    rgba(255, 107, 207, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
}

.gallery-item:hover {
  transform: translateY(-20px) scale(1.05);
  z-index: 10;
  box-shadow: 
    0 30px 80px rgba(102, 126, 234, 0.4),
    0 0 60px rgba(234, 179, 8, 0.3),
    0 0 100px rgba(255, 107, 207, 0.2),
    0 0 0 3px rgba(255, 255, 255, 0.3);
  animation: gallery-pop-glow 2s ease-in-out infinite;
}

@keyframes gallery-pop-glow {
  0%, 100% {
    box-shadow: 
      0 30px 80px rgba(255, 107, 107, 0.5),
      0 0 60px rgba(255, 217, 61, 0.4),
      0 0 100px rgba(107, 207, 127, 0.3),
      0 0 0 3px rgba(255, 255, 255, 0.3);
  }
  33% {
    box-shadow: 
      0 30px 80px rgba(107, 207, 127, 0.5),
      0 0 60px rgba(77, 150, 255, 0.4),
      0 0 100px rgba(255, 107, 207, 0.3),
      0 0 0 3px rgba(255, 255, 255, 0.4);
  }
  66% {
    box-shadow: 
      0 30px 80px rgba(255, 107, 207, 0.5),
      0 0 60px rgba(102, 126, 234, 0.4),
      0 0 100px rgba(255, 107, 107, 0.3),
      0 0 0 3px rgba(255, 255, 255, 0.5);
  }
}

.gallery-item:hover::before {
  opacity: 0.3;
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: brightness(0.95) contrast(1.05);
}

.gallery-image .gallery-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-item:hover .gallery-image img,
.gallery-item:hover .gallery-image .gallery-svg {
  transform: scale(1.25) rotate(2deg);
  filter: brightness(1.1) contrast(1.15) saturate(1.2);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.3) 30%,
    rgba(15, 44, 89, 0.7) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  backdrop-filter: blur(8px);
}

.gallery-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

.gallery-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 10px;
  font-family: var(--font-display);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}

.gallery-desc {
  font-size: 0.95rem;
  color: #E2E8F0;
  margin-bottom: 14px;
  font-weight: 500;
}

.gallery-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.3) 0%, rgba(251, 191, 36, 0.3) 100%);
  border: 2px solid rgba(234, 179, 8, 0.6);
  color: #FCD34D;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
    border-color: rgba(234, 179, 8, 0.6);
  }
  50% {
    box-shadow: 0 4px 25px rgba(234, 179, 8, 0.6);
    border-color: rgba(251, 191, 36, 0.9);
  }
}

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .gallery-item {
    aspect-ratio: 16/10;
  }
}

/* ==========================================================================
   9. SOLAR INSURANCE SECTION
   ========================================================================== */
.insurance {
  background-color: var(--color-navy-deep);
  color: var(--color-text-white);
  position: relative;
  overflow: hidden;
}

.insurance::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.insurance-col-left {
  max-width: 540px;
}

.insurance-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.insurance-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.insurance-item:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 166, 35, 0.2);
}

.insurance-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: rgba(245, 166, 35, 0.15);
  color: var(--color-amber-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.insurance-item-text {
  font-weight: 600;
  font-size: 1.05rem;
}

.insurance-col-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  background-color: var(--color-navy-card);
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 166, 35, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  margin-bottom: 20px;
  color: var(--color-amber-gold);
}

.benefit-title {
  color: var(--color-text-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.5;
}

.insurance-bottom-cta {
  margin-top: 50px;
  text-align: left;
}

.insurance-bottom-cta .btn {
  padding-left: 0;
  background: transparent;
  color: var(--color-amber-gold);
  box-shadow: none;
  font-size: 1.05rem;
}

.insurance-bottom-cta .btn:hover {
  color: var(--color-amber-hover);
  transform: translateX(4px);
}

/* ==========================================================================
   9. PROCESS / HOW WE WORK SECTION
   ========================================================================== */
.process {
  background-color: var(--color-steel-light);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 64px;
}

/* Connector line */
.process-line {
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-image: linear-gradient(to right, var(--color-amber-gold) 50%, rgba(245, 166, 35, 0.1) 50%);
  background-size: 16px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 10px;
}

.step-num {
  width: 80px;
  height: 80px;
  background-color: var(--color-white);
  border: 2px solid var(--color-steel-border);
  color: var(--color-navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
}

.step-num svg {
  position: absolute;
  width: 24px;
  height: 24px;
  color: var(--color-amber-gold);
  opacity: 0;
  transform: scale(0.6);
  transition: var(--transition-smooth);
}

.process-step:hover .step-num {
  border-color: var(--color-amber-gold);
  color: transparent;
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
  transform: scale(1.05);
}

.process-step:hover .step-num svg {
  opacity: 1;
  transform: scale(1);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   10. HIGHLIGHT BANNER - STUNNING GRADIENT DESIGN
   ========================================================================== */
.banner {
  background: linear-gradient(135deg, 
    #667eea 0%, 
    #764ba2 25%, 
    #f093fb 50%, 
    #4facfe 75%, 
    #00f2fe 100%);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: none;
  box-shadow: 
    0 20px 60px rgba(102, 126, 234, 0.3),
    inset 0 -2px 10px rgba(255, 255, 255, 0.2);
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating light orbs */
.banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb1 8s ease-in-out infinite;
  filter: blur(40px);
  z-index: 1;
  will-change: transform;
}

@keyframes floatOrb1 {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 0.6;
  }
  50% { 
    transform: translate(200px, 150px) scale(1.3); 
    opacity: 0.9;
  }
}

.banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb2 10s ease-in-out infinite;
  filter: blur(60px);
  z-index: 1;
  will-change: transform;
}

@keyframes floatOrb2 {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 0.5;
  }
  50% { 
    transform: translate(-250px, -100px) scale(1.5); 
    opacity: 0.8;
  }
}

.banner-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.banner-title {
  color: #FFFFFF;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(255, 255, 255, 0.2);
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { 
    text-shadow: 
      0 4px 20px rgba(0, 0, 0, 0.3),
      0 0 60px rgba(255, 255, 255, 0.2);
  }
  50% { 
    text-shadow: 
      0 4px 25px rgba(0, 0, 0, 0.4),
      0 0 80px rgba(255, 255, 255, 0.4),
      0 0 100px rgba(102, 126, 234, 0.3);
  }
}

.banner-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 50px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

/* UNIQUE SLIDING COLOR BUTTON */
.banner .btn-primary {
  position: relative;
  padding: 20px 50px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(90deg, 
    #FF6B6B 0%, 
    #FFD93D 25%, 
    #6BCF7F 50%, 
    #4D96FF 75%, 
    #FF6BCF 100%);
  background-size: 300% 100%;
  background-position: 0% 0%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.6s ease;
  box-shadow: 
    0 10px 40px rgba(255, 107, 107, 0.4),
    0 0 30px rgba(255, 255, 255, 0.2);
  animation: buttonPulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 
      0 10px 40px rgba(255, 107, 107, 0.4),
      0 0 30px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 
      0 15px 60px rgba(107, 207, 127, 0.6),
      0 0 50px rgba(255, 255, 255, 0.4);
  }
}

.banner .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
}

.banner .btn-primary::after {
  content: '✨';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

/* HOVER EFFECT - COLOR SLIDING + SHIMMER */
.banner .btn-primary:hover {
  background-position: 100% 0%;
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 20px 80px rgba(77, 150, 255, 0.8),
    0 0 100px rgba(255, 107, 207, 0.6),
    0 0 50px rgba(255, 255, 255, 0.5);
  animation: rainbowGlow 1s ease-in-out infinite;
}

@keyframes rainbowGlow {
  0%, 100% {
    box-shadow: 
      0 20px 80px rgba(255, 107, 107, 0.8),
      0 0 100px rgba(255, 217, 61, 0.6),
      0 0 50px rgba(255, 255, 255, 0.5);
  }
  33% {
    box-shadow: 
      0 20px 80px rgba(107, 207, 127, 0.8),
      0 0 100px rgba(77, 150, 255, 0.6),
      0 0 50px rgba(255, 255, 255, 0.5);
  }
  66% {
    box-shadow: 
      0 20px 80px rgba(255, 107, 207, 0.8),
      0 0 100px rgba(255, 107, 107, 0.6),
      0 0 50px rgba(255, 255, 255, 0.5);
  }
}

.banner .btn-primary:hover::before {
  transform: translateX(100%);
}

.banner .btn-primary:hover::after {
  transform: translate(-50%, -50%) scale(1) rotate(360deg);
  opacity: 1;
}

.banner .btn-primary:active {
  transform: translateY(-4px) scale(1.02);
}

.banner-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  color: var(--color-text-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.banner-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 8px 16px;
  border-radius: 30px;
}

.banner-feature svg {
  width: 14px;
  height: 14px;
  color: var(--color-amber-gold);
}

/* ==========================================================================
   11. STATISTICS SECTION
   ========================================================================== */
.stats {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-steel-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-card {
  padding: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-navy-deep);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
  background-color: #061026;
  color: #94A3B8;
  padding: 80px 0 32px;
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-logo-area {
  max-width: 100%;
}

.footer-tagline {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #64748B;
  max-width: 280px;
}

.footer-title {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

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

.footer-link:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 12px;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-amber-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-text a {
  display: block;
}

.contact-text a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #475569;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   13. RESPONSIVE BREAKPOINTS (Mobile-First Adjustments)
   ========================================================================== */

/* Up to Tablet (Max width 1023px) */
@media (max-width: 1023px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .trust-badges {
    justify-content: center;
  }

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

  .insurance-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .insurance-col-left {
    max-width: 100%;
  }

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

  .process-line {
    display: none; /* Hide timeline horizontal connector on grid wrap */
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-logo-area {
    max-width: 100%;
  }
}

/* Mobile Devices (Max width 767px) */
@media (max-width: 767px) {
  .form-control,
  .select-control,
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  /* Hamburger Menu Activation */
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    gap: 24px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .btn-nav {
    width: 100%;
    margin-top: 16px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .why-card {
    padding: 32px 24px;
  }

  .insurance-col-right {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-num {
    margin-bottom: 16px;
  }

  .banner-title {
    font-size: 1.85rem;
  }

  .banner-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .stat-number {
    font-size: 2.85rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo-area {
    grid-column: span 1;
    text-align: center;
  }
  
  .footer-title {
    text-align: center;
    font-size: 0.9rem;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-contact-info {
    align-items: center;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* ==========================================================================
   14. SERVICES SECTION ADDITIONS
   ========================================================================== */
.service-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-steel-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.3);
}

.service-img-placeholder {
  width: 100%;
  height: 160px;
  background-color: var(--color-navy-deep);
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-img-placeholder svg {
  width: 70px;
  height: 70px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img-placeholder svg {
  transform: scale(1.08);
}

/* ==========================================================================
   15. FAQ ACCORDION SECTION ADDITIONS
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  background-color: var(--color-steel-light);
  border: 1px solid var(--color-steel-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  background-color: var(--color-white);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: var(--shadow-md);
}

.faq-header {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy-deep);
  gap: 24px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-amber-gold);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr;
}

.faq-inner {
  overflow: hidden;
}

.faq-inner p {
  padding: 0 32px 24px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .faq-header {
    padding: 20px 24px;
    font-size: 1rem;
  }
  
  .faq-inner p {
    padding: 0 24px 20px;
  }
}

/* ==========================================================================
   16. CUSTOM CURSOR EFFECTS (Disable on devices with touch capabilities)
   ========================================================================== */
.custom-cursor {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-amber-gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.3s;
  opacity: 0;
  will-change: transform;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-amber-gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10001;
  transition: opacity 0.3s;
  opacity: 0;
  will-change: transform;
}

.custom-cursor.hovered {
  width: 54px;
  height: 54px;
  background-color: rgba(234, 179, 8, 0.08);
  border-color: var(--color-amber-gold);
}

.custom-cursor.hidden {
  opacity: 0 !important;
}

.custom-cursor-dot.hidden {
  opacity: 0 !important;
}

@media (hover: none) and (pointer: coarse) {
  .custom-cursor, .custom-cursor-dot {
    display: none;
  }
}

/* ==========================================================================
   17. SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--color-amber-gold);
  transition: width 0.1s ease-out;
  z-index: 1002;
}

/* ==========================================================================
   18. ABOUT US SECTION STYLES
   ========================================================================== */
.about-section {
  background-color: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content {
  max-width: 600px;
}

.about-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.about-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-amber-gold) 0%, #F59E0B 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(234, 179, 8, 0.25);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-navy-deep);
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card-large {
  background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy-card) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.stat-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(15, 44, 89, 0.2);
}

.stat-icon {
  color: var(--color-amber-gold);
  margin-bottom: 16px;
}

.stat-icon svg {
  width: 40px;
  height: 40px;
}

.stat-number-large {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.stat-label-large {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   19. PROJECTS / PORTFOLIO SECTION STYLES
   ========================================================================== */
.projects-section {
  background-color: var(--color-steel-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.project-card {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 44, 89, 0.06);
  border: 1.5px solid rgba(234, 179, 8, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 24px 60px rgba(15, 44, 89, 0.12),
    0 0 0 1.5px rgba(234, 179, 8, 0.25);
}

.project-image {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 44, 89, 0.6) 100%);
}

.project-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image-placeholder svg {
  width: 100%;
  height: 100%;
}

/* Badge color per type */
.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.project-badge.commercial  { background: rgba(234, 179, 8, 0.95);  color: #0F2C59; }
.project-badge.residential { background: rgba(59, 130, 246, 0.9);  color: #fff; }
.project-badge.industrial  { background: rgba(16, 185, 129, 0.9);  color: #fff; }
.project-badge.institutional { background: rgba(139, 92, 246, 0.9); color: #fff; }

/* Stats bar on projects page */
.projects-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  background: var(--color-navy-deep);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(234, 179, 8, 0.15);
  box-shadow: 0 8px 32px rgba(15, 44, 89, 0.2);
}

.proj-stat {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  transition: background 0.3s ease;
}

.proj-stat:hover {
  background: rgba(234, 179, 8, 0.08);
}

.proj-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.proj-stat-num {
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #fff 0%, #EAB308 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.proj-stat-special .proj-stat-num {
  font-size: 1.3rem;
}

.proj-stat-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.project-content {
  padding: 26px;
}

.project-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-navy-deep);
  letter-spacing: -0.02em;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.project-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.project-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-stats svg {
  width: 14px;
  height: 14px;
  color: var(--color-amber-gold);
}

.projects-cta {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.08) 0%, rgba(234, 179, 8, 0.02) 100%);
  border-radius: 20px;
  border: 1px solid rgba(234, 179, 8, 0.15);
}

.projects-cta-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy-deep);
  margin-bottom: 24px;
}

/* ==========================================================================
   20. CONTACT FORM STYLES
   ========================================================================== */
.contact {
  background: linear-gradient(135deg, #0a1628 0%, #0f2c59 50%, #1a3a6b 100%);
  color: var(--color-white);
}

.contact .section-title {
  color: var(--color-white);
}

.contact .section-desc {
  color: #94A3B8;
}

.text-center-header {
  text-align: center;
  margin-bottom: 60px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 48px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.split-row {
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-margin-bottom {
  margin-bottom: 24px;
}

.form-margin-large {
  margin-bottom: 32px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.form-control {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-amber-gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.select-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' 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 14px center;
  padding-right: 40px;
}

.textarea-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 8px;
}

.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 44, 89, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.success-icon-wrap {
  margin-bottom: 24px;
}

.success-icon-check {
  width: 80px;
  height: 80px;
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
}

.success-message {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.btn-reset-form {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-reset-form:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   22. PAGE HEADER STYLES (for all pages)
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, #0a1628 0%, #0f2c59 50%, #1a3a6b 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(234, 179, 8, 0.1) 0%, transparent 70%);
  animation: gradientPulse 8s ease-in-out infinite;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.page-subtitle {
  font-size: 1.15rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   23. SERVICES DETAILED LAYOUT - STUNNING DESIGN
   ========================================================================== */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-detailed-card {
  background: var(--color-white);
  padding: 48px;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(15, 44, 89, 0.06);
  border: 1.5px solid rgba(234, 179, 8, 0.12);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Card number watermark */
.service-detailed-card:nth-child(1)::before { content: '01'; }
.service-detailed-card:nth-child(2)::before { content: '02'; }
.service-detailed-card:nth-child(3)::before { content: '03'; }
.service-detailed-card:nth-child(4)::before { content: '04'; }

.service-detailed-card::before {
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 7rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: rgba(234, 179, 8, 0.06);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  transition: all 0.4s ease;
}

/* Colored top border per card */
.service-detailed-card:nth-child(1) { border-top: 3px solid #EAB308; }
.service-detailed-card:nth-child(2) { border-top: 3px solid #3B82F6; }
.service-detailed-card:nth-child(3) { border-top: 3px solid #10B981; }
.service-detailed-card:nth-child(4) { border-top: 3px solid #8B5CF6; }

/* Gradient glow at bottom on hover */
.service-detailed-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-detailed-card:nth-child(1)::after { background: linear-gradient(90deg, #EAB308, #FCD34D); }
.service-detailed-card:nth-child(2)::after { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.service-detailed-card:nth-child(3)::after { background: linear-gradient(90deg, #10B981, #34D399); }
.service-detailed-card:nth-child(4)::after { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }

.service-detailed-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 24px 60px rgba(15, 44, 89, 0.12),
    0 0 0 1.5px rgba(234, 179, 8, 0.2);
}

.service-detailed-card:hover::before {
  color: rgba(234, 179, 8, 0.1);
  transform: scale(1.05);
}

.service-detailed-card:hover::after {
  opacity: 1;
}

/* Different hover border colors per card */
.service-detailed-card:nth-child(1):hover { box-shadow: 0 24px 60px rgba(234, 179, 8, 0.12), 0 0 0 1.5px rgba(234, 179, 8, 0.25); }
.service-detailed-card:nth-child(2):hover { box-shadow: 0 24px 60px rgba(59, 130, 246, 0.12), 0 0 0 1.5px rgba(59, 130, 246, 0.25); }
.service-detailed-card:nth-child(3):hover { box-shadow: 0 24px 60px rgba(16, 185, 129, 0.12), 0 0 0 1.5px rgba(16, 185, 129, 0.25); }
.service-detailed-card:nth-child(4):hover { box-shadow: 0 24px 60px rgba(139, 92, 246, 0.12), 0 0 0 1.5px rgba(139, 92, 246, 0.25); }

.service-detailed-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-bottom: 28px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Unique icon color per card */
.service-detailed-card:nth-child(1) .service-detailed-icon {
  background: linear-gradient(135deg, #EAB308, #FCD34D);
  box-shadow: 0 8px 24px rgba(234, 179, 8, 0.35);
}
.service-detailed-card:nth-child(2) .service-detailed-icon {
  background: linear-gradient(135deg, #3B82F6, #60A5FA);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}
.service-detailed-card:nth-child(3) .service-detailed-icon {
  background: linear-gradient(135deg, #10B981, #34D399);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}
.service-detailed-card:nth-child(4) .service-detailed-icon {
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.service-detailed-card:hover .service-detailed-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-detailed-icon svg {
  width: 36px;
  height: 36px;
}

.service-detailed-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-navy-deep);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.service-detailed-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-detailed-features {
  list-style: none;
  margin-bottom: 36px;
}

.service-detailed-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(15, 44, 89, 0.06);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  font-weight: 500;
  transition: all 0.2s ease;
}

.service-detailed-features li:last-child {
  border-bottom: none;
}

.service-detailed-features li:hover {
  padding-left: 6px;
  color: var(--color-navy-deep);
}

/* Check icon colors per card */
.service-detailed-card:nth-child(1) .service-detailed-features li svg { color: #EAB308; }
.service-detailed-card:nth-child(2) .service-detailed-features li svg { color: #3B82F6; }
.service-detailed-card:nth-child(3) .service-detailed-features li svg { color: #10B981; }
.service-detailed-card:nth-child(4) .service-detailed-features li svg { color: #8B5CF6; }

/* Button colors per card */
.service-detailed-card:nth-child(1) .btn-primary { background: linear-gradient(135deg, #EAB308, #FCD34D); color: #0F2C59; }
.service-detailed-card:nth-child(2) .btn-primary { background: linear-gradient(135deg, #3B82F6, #60A5FA); color: #fff; }
.service-detailed-card:nth-child(3) .btn-primary { background: linear-gradient(135deg, #10B981, #34D399); color: #fff; }
.service-detailed-card:nth-child(4) .btn-primary { background: linear-gradient(135deg, #8B5CF6, #A78BFA); color: #fff; }

.service-detailed-card .btn-primary {
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-detailed-card .btn-primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-detailed-features li svg {
  width: 18px;
  height: 18px;
  color: var(--color-amber-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   24. CONTACT PAGE SPECIFIC STYLES - SUPER ATTRACTIVE & MODERN
   ========================================================================== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info-section {
  position: sticky;
  top: 120px;
}

.contact-icon-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #EAB308 0%, #F59E0B 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(234, 179, 8, 0.4);
  animation: float 3s ease-in-out infinite;
}

.contact-icon-badge svg {
  width: 36px;
  height: 36px;
  color: #0F2C59;
  stroke-width: 2.5;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.contact-info-header h2 {
  background: linear-gradient(90deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.08) 0%, rgba(234, 179, 8, 0.02) 100%);
  border-radius: 20px;
  border: 2px solid rgba(234, 179, 8, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.contact-info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.1), transparent);
  transition: left 0.6s ease;
}

.contact-info-item:hover::before {
  left: 100%;
}

.contact-info-item:hover {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(234, 179, 8, 0.05) 100%);
  border-color: rgba(234, 179, 8, 0.4);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(234, 179, 8, 0.25), 0 0 0 1px rgba(234, 179, 8, 0.2);
}

.contact-info-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #EAB308 0%, #F59E0B 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F2C59;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 6px 24px rgba(234, 179, 8, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  position: relative;
}

.contact-info-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 3px;
  background: linear-gradient(135deg, #FCD34D, #EAB308);
  -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;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 8px 32px rgba(234, 179, 8, 0.6), inset 0 2px 6px rgba(255, 255, 255, 0.4);
}

.contact-info-item:hover .contact-info-icon::after {
  opacity: 1;
}

.contact-info-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.5;
}

.contact-info-item h4 {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(90deg, #FFFFFF 0%, #E5E7EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.contact-info-item p {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.8;
  margin: 4px 0;
  font-weight: 500;
}

.contact-info-item a {
  color: #CBD5E1;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: #FCD34D;
  text-shadow: 0 0 8px rgba(234, 179, 8, 0.5);
}

.contact-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(234, 179, 8, 0.2);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(234, 179, 8, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, transparent 70%);
  animation: rotateGradient 8s linear infinite;
  pointer-events: none;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contact-card:hover {
  border-color: rgba(234, 179, 8, 0.5);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(234, 179, 8, 0.3), inset 0 2px 6px rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* ==========================================================================
   25. ENHANCED MOBILE RESPONSIVENESS FOR NEW PAGES
   ========================================================================== */
@media (max-width: 1023px) {
  .services-detailed-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .page-header {
    padding: 110px 0 60px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .page-title {
    font-size: 2.25rem;
  }
  
  .page-subtitle {
    font-size: 1.05rem;
  }
  
  .service-detailed-card {
    padding: 32px 24px;
  }
  
  .service-detailed-title {
    font-size: 1.4rem;
  }
  
  .service-detailed-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-detailed-icon svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 50px 0;
  }

  .page-title {
    font-size: 1.85rem;
  }
  
  .service-detailed-card {
    padding: 24px 20px;
  }
}

@media (max-width: 1200px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1023px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero-stats-inline {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-title-new {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats-inline {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  
  .stat-number-hero {
    font-size: 1.6rem;
  }
  
  .hero-ctas-new {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-trust-new {
    flex-direction: column;
    gap: 16px;
  }
  
  .about-features {
    gap: 24px;
  }
  
  .about-feature-item {
    gap: 16px;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
  }
  
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number-large {
    font-size: 2.5rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row,
  .split-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-card {
    padding: 32px 24px;
  }
  
  .nav-menu {
    gap: 16px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .solar-panel-3d svg {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title-new {
    font-size: 2rem;
  }
  
  .hero-stats-inline {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stat-inline {
    padding: 16px 12px;
  }
  
  .stat-number-hero {
    font-size: 2.25rem;
  }
  
  .stat-label-hero {
    font-size: 0.75rem;
  }
  
  .hero-ctas-new {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
    justify-content: center;
  }
  
  .hero-trust-new {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-item-new {
    font-size: 0.85rem;
  }
  
  .project-title {
    font-size: 1.05rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.85rem;
  }
  
  .section-desc {
    font-size: 0.95rem;
  }
}
   ========================================================================== */
.contact {
  background-color: var(--color-steel-light);
}

.contact-card {
  max-width: 650px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 48px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-steel-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-margin-bottom {
  margin-bottom: 24px;
}

.form-margin-large {
  margin-bottom: 32px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--color-navy-deep);
  transition: var(--transition-smooth);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--color-steel-border);
  outline: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.form-control::placeholder {
  color: #94A3B8;
}

.form-control:focus {
  border-color: var(--color-amber-gold);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.12);
}

/* Focus color change on parent labels */
.form-group:focus-within .form-label {
  color: var(--color-amber-gold);
}

.select-control {
  background-color: var(--color-white);
  height: 50px;
}

.textarea-control {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  height: 52px;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .contact-card {
    padding: 24px 18px;
    border-radius: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-control,
  .select-control,
  .textarea-control {
    font-size: 16px !important;
  }
  
  .contact-info-item {
    padding: 18px 14px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-info-icon {
    width: 54px;
    height: 54px;
  }
  
  .contact-info-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .contact-icon-badge {
    width: 56px;
    height: 56px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-icon-badge svg {
    width: 28px;
    height: 28px;
  }
  
  .contact-info-section {
    position: static;
  }
  
  .contact-info-header h2 {
    text-align: center;
    font-size: 1.65rem;
  }
  
  .contact-info-header p {
    text-align: center;
  }
  
  .contact-page-grid {
    gap: 36px;
  }
  
  .contact-info-item h4 {
    font-size: 1.1rem;
  }
  
  .contact-info-item p {
    font-size: 0.9rem;
  }
}

/* Logo responsive styling */
@media (max-width: 1023px) {
  .logo-image {
    height: 45px;
  }
  
  .logo-title {
    font-size: 1.4rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
}

@media (max-width: 767px) {
  .logo {
    gap: 8px;
  }
  
  .logo-image {
    height: 38px;
  }
  
  .logo-title {
    font-size: 1.2rem;
  }
  
  .logo-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }
  
  .logo-text-wrapper {
    gap: 3px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 35px;
  }
  
  .logo-title {
    font-size: 1.1rem;
  }
  
  .logo-tagline {
    font-size: 0.5rem;
  }
}

/* ==========================================================================
   19. EXTRA PREMIUM STYLING DETAILS & MICROS
   ========================================================================== */
.text-center-header {
  text-align: center;
  margin-bottom: 60px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Drifting Amber/Navy Gradient Blobs for Awwwards Aesthetic */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.07) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
  animation: blobDrift 20s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 44, 89, 0.5) 0%, transparent 75%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  animation: blobDrift 25s ease-in-out infinite alternate-reverse;
  will-change: transform;
}

@keyframes blobDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.15); }
  100% { transform: translate(-40px, 80px) scale(0.9); }
}

/* Button hover slide-in shine overlay */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: 0.75s;
}

.btn:hover::after {
  left: 150%;
}

/* ==========================================================================
   20. PRELOADER ANIMATIONS & STYLES
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-navy-deep);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

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

.preloader-logo {
  width: 50px;
  height: 50px;
  animation: preloaderSpin 2.5s linear infinite;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader-bar {
  width: 140px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background-color: var(--color-amber-gold);
  animation: loadProgress 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Page revealed state */
.preloader.loaded {
  transform: translateY(-100%);
}

/* ==========================================================================
   21. FORM SUCCESS STATE OVERLAY
   ========================================================================== */
.contact-card {
  position: relative;
  overflow: hidden;
}

.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 10;
}

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

.success-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: rgba(245, 166, 35, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-amber-gold);
}

.success-icon-check {
  width: 32px;
  height: 32px;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy-deep);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.success-message {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}

.btn-reset-form {
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* ==========================================================================
   22. ABOUT US SECTION (`#about`)
   ========================================================================== */
.about {
  background-color: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-story {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy-deep);
  line-height: 1.5;
  margin-bottom: 24px;
}

.about-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.about-stats-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--color-steel-light);
  border: 1px solid var(--color-steel-border);
  padding: 16px 24px;
  border-radius: 16px;
  margin-top: 16px;
}

.badge-accent {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-amber-gold);
  line-height: 1;
}

.badge-details {
  display: flex;
  flex-direction: column;
}

.badge-details strong {
  font-size: 1rem;
  color: var(--color-navy-deep);
}

.badge-details span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.about-pillars {
  background-color: var(--color-steel-light);
  border: 1px solid var(--color-steel-border);
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pillars-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy-deep);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pillar-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pillar-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(15, 44, 89, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-deep);
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon-wrapper {
  background-color: var(--color-amber-gold);
  color: var(--color-navy-deep);
  transform: scale(1.08);
}

.pillar-content {
  display: flex;
  flex-direction: column;
}

.pillar-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy-deep);
  margin-bottom: 6px;
}

.pillar-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   23. PROJECTS SECTION (`#projects`)
   ========================================================================== */
.projects {
  background-color: var(--color-steel-light);
  border-top: 1px solid var(--color-steel-border);
  border-bottom: 1px solid var(--color-steel-border);
}

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

.project-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-steel-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(234, 179, 8, 0.3);
}

.project-badge {
  position: absolute;
  top: 36px;
  left: 36px;
  background-color: var(--color-amber-gold);
  color: var(--color-navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(234, 179, 8, 0.2);
}

.project-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.project-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.project-card:hover .project-svg {
  transform: scale(1.03);
}

.project-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy-deep);
  margin-bottom: 4px;
}

.project-location {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.project-specs {
  list-style: none;
  border-top: 1px solid var(--color-steel-border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  line-height: 1.4;
}

.spec-label {
  color: var(--color-text-muted);
}

.spec-value {
  font-weight: 600;
  color: var(--color-navy-deep);
}

.spec-value.text-accent {
  color: var(--color-navy-light);
}

/* Responsive Overrides for About and Projects */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-pillars {
    padding: 30px 24px;
  }
}

/* ==========================================================================
   24. LENIS SMOOTH SCROLL INTEGRATION
   ========================================================================== */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overflow: clip;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ==========================================================================
   25. PERFORMANCE OPTIMIZATION: ANIMATIONS PAUSING
   ========================================================================== */
.animations-paused,
.animations-paused *,
.animations-paused::before,
.animations-paused::after {
  animation-play-state: paused !important;
}




