/* ============================================
   AKSHAYSOLAR.COM — MAIN STYLESHEET
   Theme: Industrial Solar / Bold & Authoritative
   ============================================ */

:root {
  --solar-gold: #F5A623;
  --solar-orange: #E8660A;
  --deep-navy: #0A1628;
  --mid-navy: #122040;
  --light-navy: #1C3056;
  --sky-blue: #4ABEFF;
  --pale-gold: #FFF3D6;
  --text-white: #F7F9FC;
  --text-muted: #8FA3BE;
  --text-dark: #0A1628;
  --surface: #F0F4FA;
  --border: rgba(255,255,255,0.08);
  --border-light: #DDE5EF;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.10);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--solar-orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--deep-navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  color: #4A6080;
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--solar-orange), var(--solar-gold));
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232,102,10,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,102,10,0.45); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  background: var(--deep-navy);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-primary-dark:hover { background: var(--mid-navy); transform: translateY(-2px); }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  color: var(--deep-navy);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid var(--deep-navy);
  transition: var(--transition);
}
.btn-ghost-dark:hover { background: var(--deep-navy); color: #fff; }

.btn-nav {
  background: linear-gradient(135deg, var(--solar-orange), var(--solar-gold));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,22,40,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 2px;
  color: #fff;
}
.logo-sun { color: var(--solar-gold); font-size: 28px; }
.logo-accent { color: var(--solar-gold); }
.logo-text { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links > li > a {
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  display: block;
}
.nav-links > li > a:hover, .nav-links > li > a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--mid-navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--deep-navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sun-core {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(245,166,35,0.3) 0%, rgba(232,102,10,0.15) 40%, transparent 70%);
  border-radius: 50%;
  animation: pulse-core 4s ease-in-out infinite;
}
.sun-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.12);
  animation: spin-ring 20s linear infinite;
}
.sun-ring-1 { width: 500px; height: 500px; top: -180px; right: -150px; animation-duration: 30s; }
.sun-ring-2 { width: 700px; height: 700px; top: -280px; right: -250px; animation-duration: 45s; animation-direction: reverse; }
.sun-ring-3 { width: 900px; height: 900px; top: -380px; right: -350px; animation-duration: 60s; }
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(74,190,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(74,190,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes pulse-core { 0%,100%{opacity:1} 50%{opacity:0.7} }
@keyframes spin-ring { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--solar-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 110px);
  color: var(--text-white);
  line-height: 0.95;
  margin-bottom: 28px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title em {
  font-style: italic;
  color: var(--solar-gold);
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(247,249,252,0.7);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  animation: fadeInUp 1.1s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  animation: fadeInUp 1.2s ease 0.4s both;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--solar-gold);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(247,249,252,0.55);
  font-weight: 500;
}

@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }

/* ---- SERVE CARDS ---- */
.serve-section { background: var(--surface); }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.serve-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  cursor: pointer;
}
.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--solar-gold);
}
.serve-icon {
  font-size: 40px;
  margin-bottom: 8px;
}
.serve-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--deep-navy);
}
.serve-card p {
  color: #4A6080;
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
}
.serve-link {
  color: var(--solar-orange);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.serve-card:hover .serve-link { letter-spacing: 0.5px; }

/* ---- SERVICES BAND ---- */
.services-band { background: var(--deep-navy); }
.services-band .section-title { color: var(--text-white); }
.services-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.service-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.service-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(245,166,35,0.3); }
.service-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: rgba(245,166,35,0.25);
  line-height: 1;
  flex-shrink: 0;
}
.service-item h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 10px;
}
.service-item p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }
.services-cta { text-align: center; }

/* ---- STATES ---- */
.states-section { background: #fff; }
.states-section .section-sub { margin: 0 auto 48px; text-align: center; }
.states-section .section-label, .states-section .section-title { text-align: center; }
.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.state-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: var(--surface);
  transition: var(--transition);
  cursor: pointer;
}
.state-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.nsw:hover { border-color: #1A73E8; background: #EEF4FF; }
.qld:hover { border-color: #D93025; background: #FEF0EE; }
.vic:hover { border-color: #1B6CA8; background: #EEF2FF; }
.sa:hover { border-color: #B5272D; background: #FFF0EE; }
.wa:hover { border-color: #F4A100; background: #FFF8EE; }
.tas:hover { border-color: #0A7763; background: #EDFAF5; }
.act:hover { border-color: #29548A; background: #EEF3FF; }
.nt:hover { border-color: #E87722; background: #FFF5EE; }

.state-abbr {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 3px;
  color: var(--deep-navy);
  line-height: 1;
}
.state-name {
  font-size: 13px;
  font-weight: 600;
  color: #4A6080;
}
.state-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.state-highlights span {
  font-size: 12px;
  color: var(--solar-orange);
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(232,102,10,0.08);
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

/* ---- MARKETPLACE PREVIEW ---- */
.marketplace-preview { background: var(--surface); }
.marketplace-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.marketplace-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 36px;
}
.marketplace-features li {
  color: #2A4060;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.marketplace-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-card-preview {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}
.product-card-preview:hover { box-shadow: var(--shadow-card); transform: translateX(4px); }
.pcp-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--solar-orange), var(--solar-gold));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 20px;
}
.pcp-icon { font-size: 36px; margin-bottom: 12px; }
.pcp-name { font-family: var(--font-serif); font-size: 20px; color: var(--deep-navy); margin-bottom: 6px; }
.pcp-brand { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.pcp-price { font-size: 22px; font-weight: 700; color: var(--solar-orange); margin-bottom: 8px; }
.pcp-specs { font-size: 12px; color: #4A6080; }

/* ---- COST TABLE ---- */
.cost-snapshot { background: var(--deep-navy); }
.cost-snapshot .section-label { color: var(--solar-gold); }
.cost-snapshot .section-title { color: var(--text-white); }
.cost-table-wrap { overflow-x: auto; margin: 40px 0 20px; border-radius: var(--radius-lg); }
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 750px;
}
.cost-table thead th {
  background: var(--mid-navy);
  color: var(--solar-gold);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  padding: 16px 20px;
  text-align: left;
  white-space: nowrap;
}
.cost-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.cost-table tbody tr:hover { background: rgba(255,255,255,0.04); }
.cost-table tbody td {
  padding: 18px 20px;
  color: rgba(247,249,252,0.8);
}
.cost-table tbody td:first-child { font-weight: 600; color: var(--text-white); }
.highlight-row { background: rgba(245,166,35,0.06) !important; }
.highlight-row td { color: var(--solar-gold) !important; }
.highlight-row td:first-child { color: var(--solar-gold) !important; }
.cost-note { color: var(--text-muted); font-size: 13px; text-align: center; }
.cost-snapshot .text-center { text-align: center; }

/* ---- WHY SECTION ---- */
.why-section { background: var(--surface); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 28px; margin: 36px 0 40px; }
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon { font-size: 28px; flex-shrink: 0; }
.why-point strong { display: block; font-size: 17px; color: var(--deep-navy); margin-bottom: 6px; }
.why-point p { color: #4A6080; font-size: 14px; line-height: 1.65; }

.circular-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}
.cs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cs-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(var(--solar-orange) var(--pct), rgba(255,255,255,0.1) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cs-ring::after {
  content: '';
  position: absolute;
  width: 76px;
  height: 76px;
  background: var(--surface);
  border-radius: 50%;
}
.cs-label {
  font-size: 12px;
  font-weight: 600;
  color: #4A6080;
  text-align: center;
  line-height: 1.4;
}
.key-cert {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cert-badge {
  background: var(--deep-navy);
  color: var(--solar-gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--solar-orange) 0%, var(--solar-gold) 100%);
  padding: 96px 0;
}
.cta-content { text-align: center; }
.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  margin-bottom: 20px;
}
.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer { background: var(--deep-navy); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0 24px;
}
.footer-contact div {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-links h5 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--solar-gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links ul li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--text-white); }
.footer-bottom {
  padding: 28px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(143,163,190,0.6);
  font-size: 12px;
  line-height: 1.7;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--deep-navy);
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.15), transparent 70%);
  border-radius: 50%;
}
.page-hero .section-label { justify-content: center; display: flex; }
.page-hero .section-title { color: var(--text-white); margin: 0 auto 20px; }
.page-hero .section-sub { color: rgba(247,249,252,0.65); margin: 0 auto; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .states-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .marketplace-split { gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--deep-navy); padding: 20px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.03); margin: 8px 0; }
  .serve-grid { grid-template-columns: 1fr; }
  .services-strip { grid-template-columns: 1fr; }
  .states-grid { grid-template-columns: repeat(2, 1fr); }
  .marketplace-split { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .circular-stats { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .states-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .cta-banner { padding: 64px 24px; }
}
