/* Theme Variables */
:root {
  --primary: #8080ff; /* light indigo */
  --accent: #a300cc;  /* vibrant purple */
  --bg: #001a33;      /* deep navy for body */
  --text: #e6ecf2;
  --muted: #9fb3c8;
  --card: #031d3f;
  --card-border: rgba(128, 128, 255, 0.25);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(10, 20, 60, 0.45);
}

/* CSS Reset-ish */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.05));
  border-bottom: 1px solid rgba(128,128,255,0.15);
  margin-bottom: 0; /* no gap between menu bar and hero */
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative; /* ensure mobile .site-nav (absolute) positions under this row */
}
.brand-logo { height: 80px; width: auto; display: block; }
.site-header .logo { display: inline-flex; align-items: center; gap: 10px; }
.logo { font-weight: 800; letter-spacing: 0.3px; font-size: 1.15rem; }
.logo span {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav ul {
  display: flex; gap: 16px; align-items: center; list-style: none; padding: 0; margin: 0;
}
.site-nav a {
  padding: 10px 12px; border-radius: 10px; color: var(--text); font-weight: 700;
}
.site-nav a:hover { background: rgba(128,128,255,0.12); }
/* Ensure header CTA is bold as well */
.site-header .btn { font-weight: 700; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 12px; border: 1px solid transparent; transition: 0.2s ease; font-weight: 600; }
.btn-primary {
  background: var(--gradient);
  box-shadow: 0 8px 22px rgba(128,128,255,0.35);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-outline {
  border-color: rgba(128,128,255,0.35);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { background: rgba(128,128,255,0.12); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle .bar { display: block; width: 22px; height: 2px; background: #dfe6ee; margin: 5px 0; border-radius: 2px; transition: 0.2s ease; }

/* Hero */
.hero { position: relative; overflow: clip; min-height: 720px; }

/* Mobile navigation behavior */
@media (max-width: 768px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(128,128,255,0.2);
    z-index: 60;
    pointer-events: auto;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 6px; padding: 12px; }
  .site-nav a { display: block; padding: 12px 14px; }
}
.hero-inner { display: grid; grid-template-columns: 1fr; align-items: center; gap: 20px; padding: 120px 0 84px; }
.hero-copy h1 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.15; margin: 0 0 12px; letter-spacing: 0.2px; color: #00cc66; }
.hero-copy p { color: #ffffff; margin: 0 0 20px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-copy { position: relative; z-index: 2; }
.hero-visual { position: absolute; inset: 0; z-index: 0; min-height: auto; }
.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(80% 60% at 10% 20%, rgba(128,128,255,0.18), transparent 50%),
              radial-gradient(60% 50% at 90% 10%, rgba(163,0,204,0.18), transparent 50%);
  pointer-events: none;
}

/* Hero Slider */
.hero-slider { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; margin: 0; border-radius: 0; overflow: hidden; border: none; background: #041b3b; }
.hero-slider .slides { position: relative; width: 100%; height: 100%; }
.hero-slider .slide { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.hero-slider .slide.is-active { display: block; }
.hero-slider img, .hero-slider video { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-slider .slide-video {
  /* ND filter: reduce brightness to darken footage without altering overlays */
  filter: brightness(0.6);
}

.js-slider { position: relative; width: 100%; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(128,128,255,0.2); background: #041b3b; box-shadow: var(--shadow); }
.js-slider .slides { position: relative; width: 100%; height: 100%; }
.js-slider .slide { position: relative; width: 100%; display: none; aspect-ratio: 16 / 9; }
.js-slider .slide.is-active { display: block; }
.js-slider img, .js-slider video { width: 100%; height: 100%; object-fit: cover; display: block; }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(128,128,255,0.3); background: rgba(0,0,0,0.35); color: #e9eff7; cursor: pointer; backdrop-filter: blur(6px); z-index: 2; }
.slider-btn:hover { background: rgba(0,0,0,0.5); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; gap: 6px; justify-content: center; z-index: 2; }
.slider-dots button { width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(128,128,255,0.5); background: rgba(128,128,255,0.15); padding: 0; cursor: pointer; }
.slider-dots button[aria-selected="true"] { background: var(--primary); border-color: var(--primary); }

/* Fun solar + wind motif */
.sun {
  position: absolute; right: 20%; top: 10%; width: 110px; height: 110px; border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 120px rgba(128,128,255,0.4), inset 0 0 18px rgba(255,255,255,0.3);
}
.turbine { position: absolute; bottom: 10px; right: 6%; width: 180px; height: 240px; }
.tower { position: absolute; bottom: 0; left: 50%; width: 10px; height: 180px; background: linear-gradient(180deg, #b7c4d6, #6a7c93); transform: translateX(-50%); border-radius: 6px; }
.nacelle { position: absolute; bottom: 160px; left: 50%; width: 36px; height: 16px; background: #a8b7cc; transform: translateX(-50%); border-radius: 8px; }
.blade { position: absolute; bottom: 168px; left: 50%; width: 6px; height: 90px; background: #d9e3ef; transform-origin: 50% 12px; border-radius: 8px; animation: spin 6s linear infinite; }
.b1 { transform: translateX(-50%) rotate(0deg); }
.b2 { transform: translateX(-50%) rotate(120deg); }
.b3 { transform: translateX(-50%) rotate(240deg); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Sections */
.section { padding: 62px 0; }
.section.alt { background: linear-gradient(180deg, rgba(3, 29, 63, 0.6), rgba(3, 29, 63, 0.2)); }
.section-title { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 0 0 22px; }

/* Additional Sections: Features, Stats, CTA */
.section.light { background: #f7f9fc0f; }
.section.gray { background: linear-gradient(180deg, rgba(3,29,63,0.5), rgba(3,29,63,0.3)); }
.text-center { text-align: center; }
.mb-12 { margin-bottom: 24px; }
.lead { font-size: 1.1rem; color: var(--muted); }
.lead.dark { color: #dfe7f1; opacity: 0.9; }
.section-title.dark { color: #ffffff; }

.grid-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { background: #041b3b; border: 1px solid rgba(128,128,255,0.18); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(10, 20, 60, 0.55); border-color: rgba(128,128,255,0.35); }
.feature-media { position: relative; margin-bottom: 10px; overflow: hidden; border-radius: var(--radius-sm); }
.feature-media img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--radius-sm); transform: scale(1); transition: transform .35s ease; }
.feature-card:hover .feature-media img { transform: scale(1.04); }
.badge { position: absolute; top: 8px; right: 8px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(0, 204, 102, 0.15); border: 1px solid rgba(0, 204, 102, 0.35); }
.badge.alt { background: rgba(128,128,255,0.15); border-color: rgba(128,128,255,0.35); }
.badge.warn { background: rgba(255,200,0,0.15); border-color: rgba(255,200,0,0.35); }

/* Subtle badge float effect on hover */
.feature-card:hover .badge { animation: floatY 1.6s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(16px) scale(0.98); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stat { background: #041b3b; border: 1px solid rgba(128,128,255,0.18); border-radius: var(--radius); padding: 18px; }
.stat-number { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 6px; }
.stat-number.green { color: #00cc66; }
.stat-number.blue { color: var(--primary); }
.stat-label { color: var(--muted); }

.section.cta { background: linear-gradient(135deg, #00a65a, #2a5bd7); color: #ffffff; text-align: center; }
.section.cta .lead { color: #f3f7fb; }

@media (max-width: 960px) {
  .grid-features { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .grid-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, rgba(4, 29, 66, 0.8), rgba(4, 29, 66, 0.5));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.card-icon { font-size: 24px; margin-bottom: 8px; }
.card h3 { margin: 6px 0 8px; }
.card p { color: var(--muted); margin: 0 0 10px; }
.card .link { color: var(--primary); }
.card .link:hover { text-decoration: underline; }

/* Projects */
.grid.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project { background: #041b3b; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(128,128,255,0.15); }
.project-media { background: var(--gradient); height: 140px; }
.project-body { padding: 14px 16px; }
.project-body p { color: var(--muted); margin: 6px 0 0; }

/* Products Page */
.products-intro .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.products-filter .filter-bar { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; justify-content: center; background: rgba(4,29,66,0.6); border: 1px solid rgba(128,128,255,0.2); border-radius: 999px; padding: 8px; box-shadow: var(--shadow); }
.filter-btn { appearance: none; border: 1px solid transparent; background: transparent; color: #dfe7f1; padding: 10px 14px; border-radius: 999px; cursor: pointer; font-weight: 600; transition: 0.2s ease; }
.filter-btn:hover { background: rgba(128,128,255,0.12); }
.filter-btn.is-active { background: var(--gradient); border-color: rgba(128,128,255,0.3); box-shadow: 0 6px 16px rgba(128,128,255,0.35); }

.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.p-card { background: #041b3b; border: 1px solid rgba(128,128,255,0.18); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.p-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(10,20,60,0.55); border-color: rgba(128,128,255,0.35); }
.p-card.is-hidden { display: none !important; }
.p-media { position: relative; }
.p-media img { width: 100%; height: 600px; object-fit: cover; object-position: center; display: block; }
.p-chip { position: absolute; top: 12px; right: 12px; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; background: rgba(128,128,255,0.2); border: 1px solid rgba(128,128,255,0.35); }
.p-chip.green { background: rgba(0,204,102,0.15); border-color: rgba(0,204,102,0.35); }
.p-chip.blue { background: rgba(128,128,255,0.15); border-color: rgba(128,128,255,0.35); }
.p-chip.warn { background: rgba(255,200,0,0.15); border-color: rgba(255,200,0,0.35); }
.p-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.p-list { margin: 0; padding-left: 1rem; color: var(--muted); font-size: 14px; }
.p-list li { margin: 2px 0; }
.p-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { color: #00cc66; font-weight: 800; }

.grid-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.benefit { background: #041b3b; border: 1px solid rgba(128,128,255,0.18); border-radius: var(--radius); padding: 18px; text-align: center; }
.benefit-icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 10px; background: rgba(128,128,255,0.12); border: 1px solid rgba(128,128,255,0.35); font-size: 24px; }
.benefit-icon.green { background: rgba(0,204,102,0.15); border-color: rgba(0,204,102,0.35); }
.benefit-icon.blue { background: rgba(128,128,255,0.15); border-color: rgba(128,128,255,0.35); }
.benefit-icon.warn { background: rgba(255,200,0,0.15); border-color: rgba(255,200,0,0.35); }

@media (max-width: 960px) {
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .grid-benefits { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .grid-cards { grid-template-columns: 1fr; }
}

/* Enhanced About Hero Section */
.about-hero-enhanced {
  background: linear-gradient(135deg, #00a65a 0%, #2a5bd7 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-hero-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-enhanced .container {
  position: relative;
  z-index: 2;
}

.about-hero-enhanced .section-title {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.about-hero-enhanced .lead {
  color: rgba(255,255,255,0.95);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #00ff88;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(0,255,136,0.5);
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about-hero-enhanced {
    padding: 60px 0;
  }

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

  .stat-item {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}
.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.a-card { background: #041b3b; border: 1px solid rgba(128,128,255,0.18); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.a-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(10,20,60,0.5); }
.a-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; margin-bottom: 10px; background: rgba(128,128,255,0.12); border: 1px solid rgba(128,128,255,0.3); font-size: 24px; }
.a-title { margin: 6px 0 8px; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.team-member .member-image img {
  /* ND filter: dim member photos on About page */
  filter: brightness(0.65);
}
.t-card { background: #041b3b; border: 1px solid rgba(128,128,255,0.18); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; max-width: 380px; margin-inline: auto; }
.t-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(10,20,60,0.55); }
.t-img { width: 100%; height: auto; max-height: 300px; object-fit: contain; display: block; background: rgba(0,0,0,0.1); }
.t-body { padding: 12px; }
.t-body .role { color: #00cc66; font-weight: 700; margin: 4px 0 8px; }
.story { max-width: 900px; margin: 0 auto; color: var(--muted); }
.story p { margin: 12px 0; }

@media (max-width: 960px) {
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .t-img { max-height: 220px; }
}
@media (max-width: 680px) {
  .values-grid { grid-template-columns: 1fr; }
  .t-img { max-height: 180px; }
}
/* About */
.about { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center; }
.ticks { margin: 0; padding-left: 1.1rem; }
.ticks li { margin: 10px 0; color: var(--muted); }
.about-media { position: relative; min-height: 220px; }
.about-media .orb { position: absolute; inset: 10% 15%; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(128,128,255,0.35), transparent 60%), radial-gradient(circle at 70% 70%, rgba(163,0,204,0.35), transparent 65%); border: 1px solid rgba(128,128,255,0.2); box-shadow: inset 0 0 40px rgba(128,128,255,0.2), 0 0 60px rgba(163,0,204,0.25); }

/* Contact */
.form { width: min(720px, 100%); }
.form-row { display: grid; gap: 8px; margin-bottom: 14px; }
.form-row.inline { grid-template-columns: auto 1fr; align-items: center; gap: 10px; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 18px; }
.c-card { background: #041b3b; border: 1px solid rgba(128,128,255,0.18); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.info-list { display: grid; gap: 12px; }
.info-item { display: grid; grid-template-columns: 44px 1fr; gap: 10px; align-items: start; }
.icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(128,128,255,0.12); border: 1px solid rgba(128,128,255,0.3); }
.icon.green { background: rgba(0,204,102,0.15); border-color: rgba(0,204,102,0.35); }
.icon.blue { background: rgba(128,128,255,0.15); border-color: rgba(128,128,255,0.35); }
.icon.warn { background: rgba(255,200,0,0.15); border-color: rgba(255,200,0,0.35); }
.muted { color: var(--muted); }
.notice { margin-top: 14px; padding: 12px; border-radius: var(--radius); background: rgba(0,204,102,0.12); border: 1px solid rgba(0,204,102,0.3); }

.grid.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.success-panel { text-align: center; padding: 22px; border: 1px solid rgba(128,128,255,0.25); border-radius: var(--radius); background: rgba(4,29,66,0.6); box-shadow: var(--shadow); }
.success-icon { font-size: 42px; margin-bottom: 10px; }
.success-next { margin-top: 10px; padding: 10px; border-radius: var(--radius-sm); background: rgba(0,204,102,0.1); border: 1px solid rgba(0,204,102,0.25); }

.c-faq .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.c-faq .faq-item { background: #041b3b; border: 1px solid rgba(128,128,255,0.18); border-radius: var(--radius); padding: 14px; transition: transform .2s ease, box-shadow .2s ease; }
.c-faq .faq-item:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,20,60,0.45); }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .grid.two { grid-template-columns: 1fr; }
  .c-faq .faq-grid { grid-template-columns: 1fr; }
}
/* Enhanced Custom Select Styling */
.service-select { 
  position: relative;
  margin: 10px 0;
}

.select-wrapper { 
  position: relative;
  margin-top: 8px;
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  transition: transform 0.3s ease;
  background: rgba(128, 128, 255, 0.1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.service-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(2, 20, 48, 0.8);
  border: 1px solid rgba(128, 128, 255, 0.3);
  border-radius: 12px;
  color: white;
  padding: 14px 48px 14px 16px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-image: none;
}

.service-dropdown:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(128, 128, 255, 0.25);
  background: rgba(4, 20, 48, 0.9);
}

.service-dropdown:hover {
  background: rgba(4, 24, 58, 0.9);
  border-color: rgba(128, 128, 255, 0.5);
}

/* Custom dropdown options */
.service-dropdown option {
  background: #041b3b;
  color: white;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.2s ease;
  position: relative;
}

/* Add some spacing between options */
.service-dropdown option:not(:last-child) {
  margin-bottom: 4px;
}

/* Hover effect for options */
.service-dropdown option:hover,
.service-dropdown option:focus {
  background: var(--primary);
  color: #041b3b;
}

/* Selected option */
.service-dropdown option:checked {
  background: rgba(128, 128, 255, 0.2);
  font-weight: 600;
}

/* Focus state for dropdown */
.service-dropdown:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
  background: rgba(128, 128, 255, 0.2);
}

/* Custom icons for dropdown options */
.service-dropdown option[value="residential-solar"] {
  background: #041b3b url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238080ff'%3E%3Cpath d='M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5z'/%3E%3C/svg%3E") no-repeat 8px center/16px;
  padding-left: 32px;
}

.service-dropdown option[value="commercial-solar"] {
  background: #041b3b url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238080ff'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z'/%3E%3C/svg%3E") no-repeat 8px center/16px;
  padding-left: 32px;
}

.service-dropdown option[value="wind-energy"] {
  background: #041b3b url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238080ff'%3E%3Cpath d='M9.5 12H4v-2h5.5c1.93 0 3.5-1.57 3.5-3.5S11.43 3 9.5 3 6 4.57 6 6.5V7H4v-.5C4 3.92 6.42 1.5 9.5 1.5 12.58 1.5 15 3.92 15 6.5c0 2.12-1.28 3.94-3.12 4.74.98.73 1.62 1.91 1.62 3.26v.5h1.5c1.93 0 3.5 1.57 3.5 3.5S17.93 22 16 22s-3.5-1.57-3.5-3.5V18h-2v.5c0 3.08 2.42 5.5 5.5 5.5s5.5-2.42 5.5-5.5c0-2.12-1.28-3.94-3.12-4.74-.98-.73-1.62-1.91-1.62-3.26v-.5H9.5z'/%3E%3C/svg%3E") no-repeat 8px center/16px;
  padding-left: 32px;
}

.service-dropdown option[value="energy-storage"] {
  background: #041b3b url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238080ff'%3E%3Cpath d='M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6z'/%3E%3C/svg%3E") no-repeat 8px center/16px;
  padding-left: 32px;
}

.service-dropdown option[value="maintenance"] {
  background: #041b3b url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238080ff'%3E%3Cpath d='M19.14 12.94c.04-.3.06-.61.06-.94 0-.32-.02-.64-.07-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.05.3-.09.63-.09.94 0 .31.03.64.07.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z'/%3E%3C/svg%3E") no-repeat 8px center/16px;
  padding-left: 32px;
}

.service-dropdown option[value="consultation"] {
  background: #041b3b url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238080ff'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6l-2 2V4h16v10z'/%3E%3C/svg%3E") no-repeat 8px center/16px;
  padding-left: 32px;
}

/* Focus state for dropdown */
.service-dropdown:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
  background: rgba(128, 128, 255, 0.2);
}

/* Animation for dropdown */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Apply animation to dropdown options */
.service-dropdown option {
  animation: fadeIn 0.2s ease-out forwards;
  opacity: 0;
}

/* Stagger the animations */
.service-dropdown option:nth-child(1) { animation-delay: 0.05s; }
.service-dropdown option:nth-child(2) { animation-delay: 0.1s; }
.service-dropdown option:nth-child(3) { animation-delay: 0.15s; }
.service-dropdown option:nth-child(4) { animation-delay: 0.2s; }
.service-dropdown option:nth-child(5) { animation-delay: 0.25s; }
.service-dropdown option:nth-child(6) { animation-delay: 0.3s; }

/* Base Form Elements */
input, textarea { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(128,128,255,0.25); background: rgba(2, 20, 48, 0.6); color: var(--text); outline: none; }
input::placeholder, textarea::placeholder { color: #7f95ac; }
input:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(128,128,255,0.18); }
.form-status { margin-top: 8px; min-height: 20px; color: var(--muted); }

/* CTA Button (beautiful gradient) */
.btn-cta { 
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; border: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff; font-weight: 700; letter-spacing: .2px;
  box-shadow: 0 10px 28px rgba(128,128,255,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-cta:hover { transform: translateY(-2px); filter: brightness(1.05);
  box-shadow: 0 16px 40px rgba(128,128,255,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-cta:active { transform: translateY(0); filter: brightness(.98); }
.btn-cta:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(128,128,255,0.28); }
.btn-cta .arrow { transition: transform .2s ease; }
.btn-cta:hover .arrow { transform: translateX(4px); }
.btn-wide { width: 100%; }

/* Footer */
.site-footer { border-top: 1px solid rgba(128,128,255,0.15); margin-top: 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.socials { display: flex; gap: 10px; }
.socials a { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(128,128,255,0.12); border: 1px solid rgba(128,128,255,0.2); }
.socials a:hover { background: rgba(128,128,255,0.22); }

/* Hide video buffering/loading indicators */
.slide-video::-webkit-media-controls {
  display: none !important;
}
.slide-video::-webkit-media-controls-panel {
  display: none !important;
}
.slide-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}
.slide-video::-webkit-media-controls-play-button {
  display: none !important;
}
.slide-video::-webkit-media-controls-timeline {
  display: none !important;
}
.slide-video::-webkit-media-controls-current-time-display {
  display: none !important;
}
.slide-video::-webkit-media-controls-time-remaining-display {
  display: none !important;
}
.slide-video::-webkit-media-controls-mute-button {
  display: none !important;
}
.slide-video::-webkit-media-controls-volume-slider {
  display: none !important;
}
.slide-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* Hide loading spinner for all browsers */
.slide-video::-webkit-media-controls-loading-panel {
  display: none !important;
}
.slide-video::cue {
  display: none !important;
}
.video-overlay-buttons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.video-btn {
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.video-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.video-btn:hover::before {
  left: 100%;
}

.video-btn.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 40px rgba(128, 128, 255, 0.4);
}

.video-btn.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 50px rgba(128, 128, 255, 0.6);
}

.video-btn.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 50px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments for video overlay buttons */
@media (max-width: 680px) {
  .video-overlay-buttons {
    bottom: 15px;
    gap: 16px;
  }

  .video-btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}
/* Slightly smaller logo on small screens */
.brand-logo { height: 42px; }

/* no gap on mobile as well */
.site-header { margin-bottom: 0; }

/* Enhanced Team Grid */
.team-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

/* Enhanced Team Cards */
.t-card {
  background: #041b3b;
  border: 1px solid rgba(128,128,255,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  max-width: 400px;
  margin-inline: auto;
}

.t-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10,20,60,0.6);
  border-color: rgba(128,128,255,0.4);
}

.t-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background: rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.t-card:hover .t-img {
  transform: scale(1.05);
}

.t-body {
  padding: 20px;
}

.t-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--text);
  font-weight: 700;
}

.t-body .role {
  color: #00cc66;
  font-weight: 700;
  margin: 4px 0 12px;
  font-size: 16px;
}

.t-body p:not(.role) {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* Enhanced Stats Grid */
.stats-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.stats-grid-enhanced .stat-item {
  text-align: center;
  padding: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.stats-grid-enhanced .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.stats-grid-enhanced .stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.stats-grid-enhanced .stat-number.green { color: #00ff88; }
.stats-grid-enhanced .stat-number.blue { color: #0088ff; }

.stats-grid-enhanced .stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Page Sections - Clean Design */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.mission-card, .vision-card {
  background: #041b3b;
  border: 1px solid rgba(128, 128, 255, 0.18);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(10, 20, 60, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(10, 20, 60, 0.6);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.mission-card h2, .vision-card h2 {
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 15px;
}

.mission-card p, .vision-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.value-card {
  background: #041b3b;
  border: 1px solid rgba(128, 128, 255, 0.18);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(10, 20, 60, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(10, 20, 60, 0.6);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.value-card h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.team-member {
  background: #041b3b;
  border: 1px solid rgba(128, 128, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(10, 20, 60, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(10, 20, 60, 0.6);
}

.member-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 25px;
}

.member-info h3 {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.member-role {
  color: #00cc66;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 15px;
}

.member-info p:not(.member-role) {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 960px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-card, .vision-card {
    padding: 25px;
  }

  .value-card {
    padding: 20px;
  }

  .member-image {
    height: 480px;
  }

  .member-info {
    padding: 20px;
  }
}

/* Product Categories Section */
.product-categories {
  background: rgba(4, 27, 59, 0.3);
  padding: 50px 0;
}

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

.categories-header h3 {
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.category-item {
  background: rgba(4, 27, 59, 0.8);
  border: 2px solid rgba(128, 128, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(128, 128, 255, 0.1) 0%, rgba(0, 204, 102, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.category-item:hover {
  transform: translateY(-3px);
  border-color: rgba(128, 128, 255, 0.4);
  box-shadow: 0 8px 25px rgba(128, 128, 255, 0.15);
}

.category-item.active {
  background: linear-gradient(135deg, rgba(128, 128, 255, 0.15) 0%, rgba(0, 204, 102, 0.15) 100%);
  border-color: rgba(128, 128, 255, 0.5);
  box-shadow: 0 4px 20px rgba(128, 128, 255, 0.2);
}

.category-item.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.category-name {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Responsive Categories */
@media (max-width: 680px) {
  .product-categories {
    padding: 40px 0;
  }

  .categories-header h3 {
    font-size: 20px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-item {
    padding: 16px;
  }

  .category-name {
    font-size: 14px;
  }
}

/* Product Detail Page Styles */
.products-details-grid {
  display: grid;
  gap: 60px;
  margin: 40px 0;
}

.product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  padding: 40px;
  background: #041b3b;
  border: 1px solid rgba(128, 128, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(10, 20, 60, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(10, 20, 60, 0.6);
}

.product-detail-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 500px;
  width: 100%;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-detail-card:hover .product-detail-image img {
  transform: scale(1.05);
}

.product-category-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-category-badge.solar {
  background: linear-gradient(135deg, #00cc66 0%, #009944 100%);
  color: white;
}

.product-category-badge.wind {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: white;
}

.product-category-badge.storage {
  background: linear-gradient(135deg, #ff9500 0%, #e68900 100%);
  color: white;
}

.product-detail-content {
  padding: 20px 0;
}

.product-detail-content h2 {
  color: var(--text);
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.2;
}

.product-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px;
}

.product-features,
.product-specifications,
.product-benefits {
  margin: 0 0 30px;
}

.product-features h3,
.product-specifications h3,
.product-benefits h3,
.product-pricing h3 {
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features h3::before {
  content: '✨';
  font-size: 18px;
}

.product-specifications h3::before {
  content: '⚙️';
  font-size: 18px;
}

.product-benefits h3::before {
  content: '💚';
  font-size: 18px;
}

.product-pricing h3::before {
  content: '💰';
  font-size: 18px;
}

.product-features ul,
.product-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li,
.product-benefits li {
  color: var(--muted);
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  border-bottom: 1px solid rgba(128, 128, 255, 0.1);
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00cc66;
  font-weight: bold;
}

.product-benefits li::before {
  content: '🌟';
  position: absolute;
  left: 0;
  font-size: 16px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.spec-item {
  background: rgba(128, 128, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid rgba(128, 128, 255, 0.3);
}

.spec-item strong {
  color: var(--text);
  display: block;
  margin-bottom: 5px;
}

.price-range {
  color: #00cc66;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}

.pricing-note {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  margin: 0;
}

.product-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Responsive Product Details */
@media (max-width: 960px) {
  .product-detail-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-detail-image {
    height: 350px;
  }

  .product-detail-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 680px) {
  .products-details-grid {
    gap: 40px;
  }

  .product-detail-card {
    padding: 25px;
  }

  .product-detail-image {
    height: 280px;
  }

  .product-detail-content h2 {
    font-size: 24px;
  }

  .product-description {
    font-size: 16px;
  }

  .product-actions {
    flex-direction: column;
  }
}
