:root {
  /* High-Tech Dark Theme Palette */
  --bg-main: #050810;       /* Deep Space Dark */
  --bg-bento: rgba(255, 255, 255, 0.03); /* Glassy Bento background */
  --bg-bento-hover: rgba(255, 255, 255, 0.05);
  
  --neon-green: #FFB703;    /* Yellow/Orange Accent */
  --neon-green-glow: rgba(255, 183, 3, 0.6);
  --neon-cyan: #026466;     /* Teal Accent */
  --neon-cyan-glow: rgba(2, 100, 102, 0.6);
  
  --text-main: #f8fafc;     /* Bright text */
  --text-muted: #94a3b8;    /* Muted text */
  
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 183, 3, 0.5);

  /* Typography */
  --font-sans: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.05), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.5rem 0;
}

header.scrolled {
  background: rgba(5, 8, 16, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

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

.logo {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green-glow);
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links li a {
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: var(--transition);
  color: var(--text-main);
  white-space: nowrap;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green-glow);
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--neon-green);
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Magnetic Buttons */
.magnetic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Will be transformed via JS */
  will-change: transform;
}

.btn-primary {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
  background-color: var(--neon-green);
  color: #000;
  box-shadow: 0 0 25px var(--neon-green-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 8, 16, 0.2) 0%, rgba(5, 8, 16, 1) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 1s ease-out forwards;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Sun Path Overlay */
.sun-path-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sun-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.smiling-sun {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
  filter: drop-shadow(0 0 20px var(--neon-green-glow));
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Bento Grid Shared */
.section-pad {
  padding: 8rem 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px;
  gap: 1.5rem;
}

.bento-item {
  background: var(--bg-bento);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.bento-item:hover::before {
  opacity: 1;
}

.bento-item:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(16, 185, 129, 0.1);
}

.bento-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.row-span-2 { grid-row: span 2; }

/* Features Section Specifics */
.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon {
  font-size: 2rem;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green-glow);
}

.bento-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.bento-item p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: auto;
}

/* Stats in Bento */
.bento-stat {
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--font-sans);
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* Solutions Section Specifics */
.solution-card {
  padding: 0; /* Remove padding for full image */
}

.solution-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
  opacity: 0.5;
}

.solution-card:hover .solution-image {
  transform: scale(1.05);
  opacity: 0.7;
}

.solution-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5,8,16,1) 0%, rgba(5,8,16,0.3) 50%, transparent 100%);
  z-index: 1;
}

.solution-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon-green);
  font-weight: 600;
  margin-top: 1rem;
  transition: gap 0.3s;
}

.solution-card:hover .solution-link {
  gap: 1rem;
  text-shadow: 0 0 8px var(--neon-green-glow);
}

/* CTA Banner */
.cta-banner {
  margin: 4rem 2rem 8rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

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

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 6rem 0 2rem;
  background: var(--bg-main);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--neon-green);
  color: #000;
  border-color: var(--neon-green);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--neon-green-glow);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--neon-green);
  text-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .span-3, .span-4 { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(5,8,16,0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
  }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: block; }
  
  .hero h1 { font-size: 2.5rem; }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(250px, auto);
  }
  .span-2, .span-3, .span-4 { grid-column: span 1; }
  .row-span-2 { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
}

.logo-image { height: 50px; width: auto; }

/* Compact button style for nav */
.nav-actions .btn-primary {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* ===================================================================
   INNER PAGES — SHARED COMPONENTS
   =================================================================== */

/* Page Hero (shorter than homepage hero) */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  text-align: center;
  overflow: hidden;
  background: var(--bg-main);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255, 183, 3, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(2, 100, 102, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.page-hero .hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--neon-green);
  transition: var(--transition);
}

.breadcrumb a:hover {
  text-shadow: 0 0 8px var(--neon-green-glow);
}

.breadcrumb .separator {
  opacity: 0.4;
}

/* Section Header - inline variant */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================================================
   PRODUCTS PAGE
   =================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--bg-bento);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

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

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255, 183, 3, 0.1);
}

.product-card.featured {
  grid-column: span 2;
}

.product-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}

.product-card.featured .product-image-wrapper {
  height: 340px;
}

.product-image-wrapper img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 1;
}

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

.product-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, var(--bg-main), transparent);
  z-index: 2;
  pointer-events: none;
}

.product-info {
  padding: 2rem 2.5rem 2.5rem;
  position: relative;
  z-index: 1;
}

.product-brand {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.product-feature-tag {
  padding: 0.3rem 0.8rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===================================================================
   SOLAR PAGE
   =================================================================== */

.solar-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.solar-cat-card {
  background: var(--bg-bento);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.solar-cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.solar-cat-card:hover::before { opacity: 1; }

.solar-cat-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255, 183, 3, 0.1);
}

.solar-cat-icon {
  width: 70px;
  height: 95px;
  border-radius: 20px;
  background: rgba(255, 183, 3, 0.08);
  border: 1px solid rgba(255, 183, 3, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--neon-green);
}

.solar-cat-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.solar-cat-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.solar-cat-card .btn-small {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  background: rgba(255, 183, 3, 0.05);
  transition: var(--transition);
}

.solar-cat-card .btn-small:hover {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 0 20px var(--neon-green-glow);
}

/* Info blocks (2-column) */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.info-block.reverse {
  direction: rtl;
}

.info-block.reverse > * {
  direction: ltr;
}

.info-visual {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-bento);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.info-visual .info-icon {
  font-size: 8rem;
  color: var(--neon-green);
  opacity: 0.3;
}

.info-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.info-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Scheme Section */
.scheme-section {
  background: var(--bg-bento);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.scheme-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 100, 102, 0.15), transparent 70%);
  pointer-events: none;
}

.scheme-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.scheme-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(2, 100, 102, 0.15);
  border: 1px solid rgba(2, 100, 102, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4dd4d4;
  font-family: var(--font-sans);
}

.scheme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.scheme-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem;
}

.scheme-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--neon-green);
}

.scheme-card ul {
  list-style: none;
  padding: 0;
}

.scheme-card ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.scheme-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
}

.scheme-card ol {
  padding-left: 1.2rem;
}

.scheme-card ol li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  line-height: 1.6;
}

/* ===================================================================
   CAREER PAGE
   =================================================================== */

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.career-card {
  background: var(--bg-bento);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 2.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.career-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

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

.career-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255, 183, 3, 0.1);
}

.career-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: rgba(255, 183, 3, 0.08);
  border: 1px solid rgba(255, 183, 3, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--neon-green);
}

.career-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.career-card .career-level {
  font-size: 0.85rem;
  color: var(--neon-green);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
}

.career-qualifications {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.career-qualifications li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.career-qualifications li::before {
  content: '\ea4e';
  font-family: 'boxicons';
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-size: 0.9rem;
}

.career-card .btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  background: rgba(255, 183, 3, 0.05);
  transition: var(--transition);
  text-align: center;
  width: 100%;
}

.career-card .btn-apply:hover {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 0 25px var(--neon-green-glow);
}

/* Why Work With Us */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.perk-card {
  background: var(--bg-bento);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.perk-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-3px);
}

.perk-card .perk-icon {
  font-size: 2.5rem;
  color: var(--neon-green);
  margin-bottom: 1rem;
}

.perk-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.perk-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===================================================================
   MEDIA PAGE
   =================================================================== */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.video-card {
  background: var(--bg-bento);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  overflow: hidden;
  transition: var(--transition);
}

.video-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255, 183, 3, 0.1);
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1.5rem 2rem;
}

.video-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.video-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Photo Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4/3;
  background: var(--bg-bento);
  transition: var(--transition);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

/* ===================================================================
   CONTACT PAGE
   =================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-bento);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: rgba(255, 183, 3, 0.08);
  border: 1px solid rgba(255, 183, 3, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--neon-green);
}

.contact-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

.contact-card-content a:hover {
  color: var(--neon-green);
}

/* Map */
.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 250px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1) contrast(1.2) brightness(0.6);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-bento);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 3rem;
}

.contact-form-wrapper h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper .form-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  background: rgba(255, 183, 3, 0.05);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn-submit:hover {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 0 25px var(--neon-green-glow);
}

/* ===================================================================
   INNER PAGES — RESPONSIVE
   =================================================================== */

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-card.featured {
    grid-column: span 2;
  }
  .solar-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .career-grid .career-card:last-child {
    grid-column: span 2;
  }
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .info-block.reverse {
    direction: ltr;
  }
  .scheme-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 8rem 0 3rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card.featured {
    grid-column: span 1;
  }
  .solar-categories {
    grid-template-columns: 1fr;
  }
  .career-grid {
    grid-template-columns: 1fr;
  }
  .career-grid .career-card:last-child {
    grid-column: span 1;
  }
  .perks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .scheme-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}




