/* ==========================================================================
   COMPONENT STYLES - METALLIC GOLD THEME & CAPSULE BUTTONS
   ========================================================================== */

/* Navbar Component */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #081226;
  backdrop-filter: blur(16px);
  z-index: var(--z-sticky);
  border-bottom: 1px solid rgba(223, 172, 66, 0.25);
  transition: all var(--transition-normal);
  padding: 0.9rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.navbar.scrolled {
  padding: 0.65rem 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(223, 172, 66, 0.5);
  background: rgba(8, 18, 38, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1280px;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0 auto;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: #CBD5E1;
  font-size: 0.925rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: #FCE081;
}

.nav-link:hover::after {
  width: 100%;
}

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

.btn-gold-outline {
  background: rgba(223, 172, 66, 0.05);
  border: 1.5px solid rgba(223, 172, 66, 0.6);
  color: #DFAC42;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill) !important;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-gold-outline:hover {
  background: rgba(223, 172, 66, 0.18);
  color: #FFF;
  border-color: #FCE081;
  box-shadow: 0 0 18px rgba(223, 172, 66, 0.35);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2.5px;
  background: #DFAC42;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Buttons - Capsule Form (Pill Shaped) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill) !important;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #0A192F;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(212, 155, 42, 0.45);
  color: #000;
}

.btn-secondary {
  background: var(--secondary-navy);
  color: var(--text-white);
  border: 1px solid var(--primary-orange);
}

.btn-secondary:hover {
  background: var(--secondary-navy-light);
  transform: translateY(-2px);
  color: var(--primary-orange);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.btn-outline:hover {
  background: var(--primary-orange-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFF;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  color: #FFF;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.125rem;
  border-radius: var(--radius-pill) !important;
}

.btn-block {
  width: 100%;
}

/* Hero Section Component */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #081226 0%, #0D1D3A 60%, #FFFFFF 100%);
  padding: 4rem 0 5rem 0;
  overflow: hidden;
  color: #FFF;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.25rem;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  color: #FFF;
}

.hero-title span {
  background: linear-gradient(135deg, #FCE081 0%, #DFAC42 50%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.925rem;
  color: #E2E8F0;
}

.hero-feature-item span {
  color: #00E676;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  background: #FFF;
  border: 3px solid rgba(223, 172, 66, 0.4);
}

.floating-savings-pill {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(8, 18, 38, 0.92);
  backdrop-filter: blur(10px);
  color: #FFF;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(223, 172, 66, 0.3);
}

.floating-savings-pill .icon {
  width: 42px;
  height: 42px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #FFF;
}

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Service Cards */
.service-card {
  text-align: left;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  background: #FFF;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #DFAC42;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

/* USP Cards */
.usp-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(223, 172, 66, 0.4);
}

.usp-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Calculator Section */
.calculator-section {
  background: var(--secondary-navy);
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.calculator-section h2, .calculator-section h3 {
  color: #FFF;
}

.calculator-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

.calc-input-box {
  background: rgba(255, 255, 255, 0.07);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.calc-result-box {
  background: linear-gradient(135deg, #FCE081 0%, #DFAC42 50%, #B8860B 100%);
  color: #0A192F;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(223, 172, 66, 0.35);
}

.result-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(10, 25, 47, 0.15);
}

.result-stat-row:last-child {
  border-bottom: none;
}

.result-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #0A192F;
}

.pincode-status {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  min-height: 20px;
}

.pincode-status.success { color: #00E676; font-weight: 600; }
.pincode-status.info { color: #80D8FF; }

/* Subsidy Table */
.subsidy-table-wrapper {
  background: #FFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.subsidy-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.subsidy-table th {
  background: var(--secondary-navy);
  color: #FFF;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.subsidy-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 1rem;
}

.subsidy-table tr:nth-child(even) {
  background: var(--bg-alt);
}

.subsidy-highlight {
  color: var(--accent-green);
  font-weight: 700;
}

/* 4-Step Journey */
.step-card {
  position: relative;
  background: #FFF;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-orange);
}

/* Counter Section */
.counter-card {
  text-align: center;
  padding: 2rem 1rem;
  background: #FFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.counter-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #DFAC42;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

/* Testimonials */
.testimonial-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-bill-reduction {
  background: var(--accent-green-light);
  color: var(--accent-green);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange-light);
}

/* Cities Grid */
.city-chip {
  background: #FFF;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--secondary-navy);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.city-chip:hover, .city-chip.active {
  background: var(--gradient-primary);
  color: #0A192F;
  border-color: #DFAC42;
  box-shadow: var(--shadow-orange);
}

/* Floating Bar on Mobile */
.floating-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 18, 38, 0.98);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  z-index: var(--z-sticky);
  gap: 0.75rem;
}

.floating-bottom-bar .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

/* SLICK MODERN FOOTER */
footer.slick-footer {
  background: #050B18;
  color: #94A3B8;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(223, 172, 66, 0.25);
  position: relative;
  overflow: hidden;
}

footer.slick-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 250px;
  background: radial-gradient(circle, rgba(223, 172, 66, 0.08) 0%, rgba(5, 11, 24, 0) 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 0.5rem;
}

.footer-motto {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #DFAC42;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.footer-badges-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: #E2E8F0;
}

.footer-heading {
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: #DFAC42;
  border-radius: 2px;
}

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

.footer-links-list a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.925rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-links-list a:hover {
  color: #DFAC42;
  transform: translateX(4px);
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(223, 172, 66, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item span.icon {
  color: #DFAC42;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-copyright {
  color: #64748B;
}

.footer-demo-credit {
  margin-top: 0.4rem;
  font-size: 0.825rem;
  color: #94A3B8;
}

.footer-demo-credit a {
  color: #DFAC42;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-demo-credit a:hover {
  color: #FCE081;
  text-decoration: underline;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #64748B;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: #DFAC42;
}

/* Cards & Containers */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 155, 42, 0.3);
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Rating Badge */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #E2E8F0;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.star-rating {
  color: #DFAC42;
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Form Controls */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
  color: var(--secondary-navy);
}

.form-input, .form-select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-pill);
  background: #FFF;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 4px rgba(212, 155, 42, 0.15);
}

/* Range Slider */
.slider-container {
  margin: var(--space-md) 0;
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #E2E8F0;
  outline: none;
  -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-primary);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(212, 155, 42, 0.5);
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Accordion */
.accordion-item {
  background: #FFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.accordion-header {
  padding: 1.25rem var(--space-lg);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--secondary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion-header:hover {
  color: var(--primary-orange);
  background-color: var(--bg-alt);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform var(--transition-normal);
  color: var(--primary-orange);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 var(--space-lg);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.accordion-item.active .accordion-body {
  padding: 0 var(--space-lg) 1.25rem var(--space-lg);
}

/* Badges & Pills */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-green {
  background: var(--accent-green-light);
  color: var(--accent-green);
}

.badge-orange {
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  border: 1px solid rgba(212, 155, 42, 0.3);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(6px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.modal-container {
  background: #FFF;
  width: 90%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.modal-close:hover {
  background: var(--bg-alt);
  color: var(--text-dark);
}
