/* ==========================================================================
   SolvxSolar.com - Redesign Stylesheet (style.css)
   Brand: SolvxSolar.com | "Switch to Solar, Save Forever"
   Color Palette: Deep Navy Blue (#0c2340) & Solar Orange (#ff6600)
   ========================================================================== */

:root {
  --navy-primary: #0c2340;
  --navy-dark: #07172b;
  --navy-light: #16335a;
  
  --orange-accent: #ff6600;
  --orange-hover: #e65c00;
  --orange-light: #fff2e6;

  --bg-body: #f4f6f9;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;

  --font-main: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.04);
  --shadow-md: 0 5px 15px rgba(12, 35, 64, 0.08);
  --shadow-lg: 0 10px 30px rgba(12, 35, 64, 0.12);
}

/* General Reset */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

a {
  color: var(--navy-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--orange-accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--navy-primary);
}

/* Custom Buttons */
.btn-solvx-orange {
  background-color: var(--orange-accent);
  color: #ffffff !important;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.4rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-solvx-orange:hover {
  background-color: var(--orange-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.btn-solvx-orange-outline {
  background-color: transparent;
  color: var(--orange-accent) !important;
  font-weight: 700;
  border: 2px solid var(--orange-accent);
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.3rem;
  transition: all 0.2s ease;
}

.btn-solvx-orange-outline:hover {
  background-color: var(--orange-accent);
  color: #ffffff !important;
}

.btn-solvx-navy {
  background-color: var(--navy-primary);
  color: #ffffff !important;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.4rem;
  transition: all 0.2s ease;
}

.btn-solvx-navy:hover {
  background-color: var(--navy-dark);
  color: #ffffff !important;
}

/* Top Bar */
.top-bar-solvx {
  background-color: var(--navy-primary);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 7px 0;
}

.top-bar-solvx a {
  color: #cbd5e1;
}

.top-bar-solvx a:hover {
  color: #ffffff;
}

/* Navbar */
.navbar-solvx {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon-s {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0c2340 0%, #ff6600 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.4rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  letter-spacing: -0.5px;
  line-height: 1;
}

.brand-text-name span {
  color: var(--orange-accent);
}

.brand-tagline-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
  letter-spacing: 0.2px;
}

.nav-link-solvx {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-primary) !important;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem !important;
  letter-spacing: 0.3px;
}

.nav-link-solvx:hover, .nav-link-solvx.active {
  color: var(--orange-accent) !important;
}

/* Hero Section */
.hero-solvx-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(12, 35, 64, 0.88) 0%, rgba(12, 35, 64, 0.4) 60%), url('https://images.unsplash.com/photo-1509391365360-2e959784a276?w=1600&auto=format&fit=crop') center/cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 3rem 2.5rem;
  color: #ffffff;
}

.hero-solvx-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-solvx-title span {
  color: #ffd700;
}

.hero-solvx-subtitle {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 580px;
  margin-bottom: 1.8rem;
}

/* Circular Category Icons Grid Bar */
.cat-icon-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.2rem 0.5rem;
  text-align: center;
  transition: all 0.2s ease;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cat-icon-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-accent);
  box-shadow: var(--shadow-md);
}

.cat-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  transition: all 0.2s ease;
}

.cat-icon-card:hover .cat-icon-circle {
  background: var(--orange-accent);
  color: #ffffff !important;
  border-color: var(--orange-accent);
}

.cat-icon-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-primary);
  line-height: 1.2;
}

/* Package Cards */
.package-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-accent);
}

.package-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 0.2rem;
}

.package-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.package-price-wrap {
  margin-bottom: 1rem;
}

.package-price-wrap .starting-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.package-price-wrap .price-val {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--orange-accent);
}

.package-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  font-size: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.package-spec-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
}

.package-spec-list li i {
  color: #10b981;
  font-size: 0.85rem;
}

/* Dark Navy Banners */
.bg-navy-banner {
  background-color: var(--navy-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
}

.bg-navy-banner h2, .bg-navy-banner h3, .bg-navy-banner h4 {
  color: #ffffff;
}

/* Why Choose Us Pillars */
.why-pill-item {
  text-align: center;
  padding: 1rem;
}

.why-pill-icon {
  font-size: 2rem;
  color: var(--orange-accent);
  margin-bottom: 0.5rem;
}

.why-pill-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Product Cards */
.product-item-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-accent);
}

.product-img-box {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.product-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-item-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em;
}

.product-item-cat {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.product-item-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange-accent);
  margin-top: auto;
  margin-bottom: 0.8rem;
}

/* Features Strip (4 Items) */
.features-strip {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
}

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-strip-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-strip-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-primary);
  line-height: 1.2;
}

/* Trusted Brands Grid */
.brand-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-primary);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sidebar Filter */
.sidebar-filter-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.filter-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-primary);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Gallery Photo Grid */
.gallery-card-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
}

.gallery-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--navy-primary);
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-tab-btn.active, .gallery-tab-btn:hover {
  background: var(--navy-primary);
  color: #ffffff;
  border-color: var(--navy-primary);
}

/* Footer */
footer {
  background-color: var(--navy-dark);
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer h5, footer h6 {
  color: #ffffff;
}

footer a {
  color: #cbd5e1;
}

footer a:hover {
  color: var(--orange-accent);
}
