/* =========================================
   Solar Udayan Energy - Main Stylesheet
   ========================================= */

/* CSS Variables */
:root {
  --primary: #0F766E;
  --primary-dark: #0a5a54;
  --primary-light: #ccfbf1;
  --secondary: #F59E0B;
  --secondary-dark: #d97706;
  --accent: #16A34A;
  --bg: #ffffff;
  --bg-gray: #f9fafb;
  --text: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --transition: 0.2s ease;
  --font: 'Inter', Arial, Helvetica, sans-serif;
}

/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* =========================================
   Layout
   ========================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
section { padding: 4rem 0; }

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 { margin-bottom: 1rem; }
.section-title p { color: var(--text-muted); font-size: 1.125rem; }

/* =========================================
   Navbar
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}
.brand-name { display: flex; align-items: center; }
.brand-solar { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.brand-udayan { font-size: 1.25rem; font-weight: 700; color: var(--secondary); margin-left: 0.25rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: #374151;
  font-weight: 500;
  transition: color var(--transition);
  font-size: 0.9375rem;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #f9fafb;
  padding: 1rem;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  display: block;
  padding: 0.625rem 1rem;
  color: #374151;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-link:hover { background: var(--primary-light); color: var(--primary); }

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-md { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); }

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

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.btn-full { width: 100%; }

/* =========================================
   Cards
   ========================================= */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.card-body { padding: 1.5rem; }
.card-body-lg { padding: 2rem; }

/* =========================================
   Hero Section
   ========================================= */
.hero {
  background: linear-gradient(135deg, #0F766E 0%, #134e4a 100%);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-placeholder {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  width: 100%;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 2px dashed rgba(255,255,255,0.3);
}

/* Page Hero (smaller) */
.page-hero {
  background: linear-gradient(135deg, #0F766E 0%, #134e4a 100%);
  color: #fff;
  padding: 4rem 0;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.125rem; }

/* =========================================
   Stats / Counter Section
   ========================================= */
.stats-section { background: linear-gradient(180deg, #f0fdf9 0%, #fff 100%); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1.1;
}
.stat-label { color: var(--text-muted); font-size: 1rem; margin-top: 0.5rem; }

/* =========================================
   Why Choose Us
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  text-align: center;
  padding: 2rem;
}
.why-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.why-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-desc { color: var(--text-muted); font-size: 0.9375rem; }

/* =========================================
   Services Grid
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card { display: flex; flex-direction: column; }
//.service-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.service-icon { font-size: 3rem; margin-bottom: 1rem;}
.service-title { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-desc { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.5rem; flex: 1; }
.service-benefits { margin-bottom: 1.5rem; }
.service-benefit {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
}
.service-benefit::before { content: '✓ '; color: var(--accent); font-weight: 700; }

/* =========================================
   Solar Calculator
   ========================================= */
.calculator-wrap {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--bg-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
  color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.15);
}
.form-error {
  color: #dc2626;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  display: none;
}
.error {
  color: #dc2626;
  font-size: 1rem;
  margin-top: 0.25rem;
}
.form-error.visible { display: block; }
.form-success {
  color: var(--accent);
  text-align: center;
  padding: 0.75rem;
  background: #dcfce7;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.form-fail {
  color: #dc2626;
  text-align: center;
  padding: 0.75rem;
  background: #fee2e2;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.form-message { display: none; }
.form-message.visible { display: block; }

.calc-results {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: none;
}
.calc-results.visible { display: block; }
.calc-results-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.calc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.calc-result-item {
  background: var(--bg-gray);
  border: 1px solid #d1fae5;
  border-radius: var(--radius);
  padding: 1rem;
}
.calc-result-item.full { grid-column: 1 / -1; }
.calc-result-label { color: var(--text-muted); font-size: 0.8125rem; margin-bottom: 0.25rem; }
.calc-result-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}
.calc-result-value.green { color: var(--accent); }
.calc-result-value.amber { color: var(--secondary); }

/* =========================================
   Testimonials Carousel
   ========================================= */
.carousel-wrap {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
}
.testimonial-slide {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.stars { margin-bottom: 1rem; color: var(--secondary); font-size: 1.25rem; }
.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-name { font-weight: 700; color: var(--text); }
.testimonial-location { color: var(--text-muted); font-size: 0.9375rem; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.carousel-btn:hover { background: var(--primary-dark); }
.carousel-prev { left: -1.5rem; }
.carousel-next { right: -1.5rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.carousel-dot.active { background: var(--primary); }

/* =========================================
   Blog Cards
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card { display: flex; flex-direction: column; }
.blog-thumb {
  background: var(--primary-light);
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.blog-tag {
  font-size: 0.75rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

/* Blog search & filters */
.blog-controls { margin-bottom: 2rem; }
.search-box {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}
.search-box:focus { outline: none; border-color: var(--primary); }

.filter-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #e5e7eb;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.filter-btn:hover { background: #d1d5db; }
.filter-btn.active { background: var(--primary); color: #fff; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.page-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background: #e5e7eb;
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.page-btn:hover { background: #d1d5db; }
.page-btn.active { background: var(--primary); color: #fff; }

/* =========================================
   Projects
   ========================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.project-thumb {
  background: #e5e7eb;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.project-body { padding: 1.5rem; }
.project-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.project-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.project-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: capitalize;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.category-badge.commercial { background: #fef3c7; color: #d97706; }
.category-badge.industrial { background: #fee2e2; color: #dc2626; }

/* =========================================
   FAQ Accordion
   ========================================= */
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  transition: background var(--transition);
  cursor: pointer;
}
.faq-question:hover { background: var(--primary-light); }
.faq-question.open { background: var(--primary-light); color: var(--primary); }
.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
  font-weight: 300;
}
.faq-question.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 1.25rem 1.5rem;
  background: #f0fdf9;
  border-top: 1px solid var(--border);
  color: #374151;
  line-height: 1.7;
  font-size: 0.9375rem;
}
.faq-answer.open { display: block; }

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, #0F766E 0%, #134e4a 100%);
  color: #fff;
  padding: 5rem 0;
}
.cta-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.cta-title { color: #fff; margin-bottom: 1rem; font-size: clamp(1.75rem, 4vw, 3rem); }
.cta-subtitle { color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; font-size: 1.1rem; }
.cta-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.cta-form-grid input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--transition);
}
.cta-form-grid input:focus { outline: none; border-color: var(--primary); }

/* =========================================
   Contact Info
   ========================================= */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.contact-label { font-weight: 700; margin-bottom: 0.25rem; }
.contact-text { color: var(--text-muted); }
.map-placeholder {
  background: #e5e7eb;
  border-radius: var(--radius-lg);
  height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  flex-direction: column;
  gap: 0.5rem;
}
.map-placeholder .pin { font-size: 4rem; }
.map-placeholder p { color: var(--text-muted); }

/* =========================================
   About Page
   ========================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.375rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year { font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.timeline-title { font-weight: 600; margin-bottom: 0.25rem; }
.timeline-desc { color: var(--text-muted); font-size: 0.9375rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-photo {
  background: var(--primary-light);
  height: 10rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.team-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-role { color: var(--primary); font-weight: 600; font-size: 0.9375rem; }

/* =========================================
   Franchise Page
   ========================================= */
.franchise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.franchise-card { display: flex; flex-direction: column; }
.franchise-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.franchise-name { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.franchise-price { font-size: 2.5rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.franchise-price-label { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.franchise-benefits { flex: 1; margin-bottom: 1.5rem; }
.franchise-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: #374151;
}
.franchise-benefit::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.franchise-meta { border-top: 1px solid var(--border); padding-top: 1.25rem; margin-bottom: 1.5rem; }
.franchise-meta p { font-size: 0.875rem; margin-bottom: 0.5rem; }
.franchise-meta strong { color: var(--text); }
.franchise-meta span { color: var(--primary); }

/* =========================================
   Breadcrumb
   ========================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.6; }

/* =========================================
   Footer
   ========================================= */
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-brand .solar { color: #5eead4; }
.footer-brand .udayan { color: var(--secondary); }
.footer-desc { font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
  color: #d1d5db;
}
.social-link:hover { background: var(--secondary); color: #fff; }
.footer-heading { font-size: 1rem; font-weight: 700; color: #f9fafb; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { font-size: 0.875rem; color: #9ca3af; transition: color var(--transition); }
.footer-link:hover { color: var(--secondary); }
.footer-contact-item { font-size: 0.875rem; color: #9ca3af; margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

/* =========================================
   Utilities
   ========================================= */
.bg-white { background: #fff; }
.bg-gray { background: var(--bg-gray); }
.bg-teal-light { background: #f0fdf9; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.gap-4 { gap: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Fade-in animation classes (set by IntersectionObserver) */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =========================================
   Still-have-questions box
   ========================================= */
.help-box {
  background: #f0fdf9;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}
.help-box h3 { margin-bottom: 0.75rem; }
.help-box p { color: var(--text-muted); margin-bottom: 1.5rem; }
.help-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

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

/* =========================================
   Class Aliases (agent-generated markup)
   ========================================= */
/* Form aliases */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
  color: var(--text);
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.15);
}
.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Calculator wrapper alias */
.calculator-card {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--bg-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.calc-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) { .calc-input-grid { grid-template-columns: 1fr; } }

/* Result box aliases */
.result-box {
  background: var(--bg-gray);
  border: 1px solid #d1fae5;
  border-radius: var(--radius);
  padding: 1rem;
}
.result-label { color: var(--text-muted); font-size: 0.8125rem; margin-bottom: 0.25rem; }
.result-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

/* Hero layout alias */
.hero-content { max-width: 38rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Article / blog content */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.article-content { max-width: 48rem; margin: 0 auto; }
.article-content h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.article-content h3 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.article-content p { color: #374151; line-height: 1.8; margin-bottom: 1.25rem; }
.article-content ul { padding-left: 1.5rem; margin-bottom: 1.25rem; color: #374151; }
.article-content ul li { margin-bottom: 0.5rem; line-height: 1.7; }
.article-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-content ol li { margin-bottom: 0.5rem; line-height: 1.7; color: #374151; }

/* Project detail */
.project-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 768px) { .project-detail-grid { grid-template-columns: 1fr; } }
.project-highlights { display: flex; flex-direction: column; gap: 0.75rem; }
.highlight-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.highlight-label { color: var(--text-muted); }
.highlight-value { font-weight: 600; color: var(--text); }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ba-box {
  background: #e5e7eb;
  border-radius: var(--radius);
  height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  gap: 0.5rem;
}
.ba-label { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
.result-card { text-align: center; background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-md); }
.result-card .number { font-size: 2rem; font-weight: 800; color: var(--primary); display: block; }
.result-card .label { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.25rem; }

/* Inline service detail styles (service pages may use these) */
.service-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 768px) { .service-overview { grid-template-columns: 1fr; } }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 768px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
.cert-badge {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.cert-badge .cert-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.cert-badge .cert-name { font-weight: 700; font-size: 0.875rem; }
.rounded { border-radius: var(--radius); }
.p-6 { padding: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-bold { font-weight: 700; }
.mb-2 { margin-bottom: 0.5rem; }
.text-amber { color: var(--secondary); }
.text-green { color: var(--accent); }
.text-teal { color: var(--primary); }

/* =========================================
   Service Detail Page
   ========================================= */
  .service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 64px 0; }
  .service-detail-grid h2 { font-size: 1.8rem; color: var(--primary); margin-bottom: 16px; }
  .service-detail-grid h3 { font-size: 1.2rem; color: #1f2937; margin: 28px 0 12px; }
  .service-detail-grid p { color: #4b5563; line-height: 1.7; }
  .benefits-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .benefit-item { display: flex; align-items: center; gap: 10px; color: #374151; }
  .benefit-item::before { content: "✓"; background: var(--accent); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
  @media (max-width: 768px) {
      .service-detail-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; } 
    }
  .process-list { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
  .process-step { display: flex; gap: 16px; align-items: flex-start; }
  .step-number { background: var(--secondary); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
  .step-content h4 { font-size: 1rem; color: #1f2937; margin: 0 0 4px; }
  .step-content p { font-size: 0.9rem; color: #6b7280; margin: 0; line-height: 1.6; }

/* =========================================
   Call Now — Navbar Button
   ========================================= */
.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #28a745;
  color: #fff !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.nav-call-btn:hover {
  background: #218838 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40,167,69,0.35);
}
.nav-call-icon { font-size: 1.1rem; }
.nav-call-desktop { display: flex; flex-direction: column; }
.nav-call-desktop small { font-weight: 400; font-size: 0.75rem; opacity: 0.9; }
.nav-call-mobile { display: none; }

/* =========================================
   Call Now — Mobile Menu Link
   ========================================= */
.mobile-call-link {
  background: #28a745 !important;
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 0.25rem;
}
.mobile-call-link:hover { background: #218838 !important; color: #fff !important; }

/* =========================================
   Call Now — Footer Assistance Banner
   ========================================= */
.footer-call-banner {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  padding: 1.75rem 0;
}
.footer-call-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-call-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-call-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.footer-call-sub { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.footer-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: #28a745;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.footer-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.footer-call-icon { font-size: 1.4rem; }
.footer-call-btn-text { display: flex; flex-direction: column; line-height: 1.3; }
.footer-call-btn-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; }
.footer-call-btn-number { font-size: 1.05rem; }

/* =========================================
   Call Now — Contact Page Card
   ========================================= */
.contact-call-card {
  background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
  border: 2px solid #28a745;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-call-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}
.contact-call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #28a745;
  color: #fff !important;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  width: fit-content;
}
.contact-call-link:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40,167,69,0.35);
}
.contact-call-icon { font-size: 1.2rem; }
.contact-call-number { font-size: 1rem; letter-spacing: 0.02em; }
.contact-call-hours {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* =========================================
   Call Now — Service Page CTA Section
   ========================================= */
.call-cta-section {
  background: #f0fff4;
  border-top: 3px solid #28a745;
  border-bottom: 3px solid #28a745;
  padding: 2.5rem 0;
}
.call-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.call-cta-text { flex: 1; }
.call-cta-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.call-cta-sub { color: var(--text-muted); font-size: 0.9375rem; }
.call-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #28a745;
  color: #fff !important;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.call-cta-btn:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(40,167,69,0.4);
}
.call-cta-icon { font-size: 1.6rem; }
.call-cta-btn-text { display: flex; flex-direction: column; line-height: 1.3; }
.call-cta-btn-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.85; }
.call-cta-btn-number { font-size: 1.1rem; }

/* =========================================
   Call Now — Floating Mobile Button
   ========================================= */
.float-call-btn {
  display: none; /* shown only on mobile via media query */
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: #28a745;
  color: #fff !important;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: 0 4px 20px rgba(40,167,69,0.5);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 0.6rem;
  font-weight: 700;
}
.float-call-btn:hover {
  background: #218838;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(40,167,69,0.6);
}
.float-call-icon { font-size: 1.4rem; line-height: 1; }
.float-call-label { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* =========================================
   Call Now — Responsive
   ========================================= */

/* Tablet: hide number text in nav, show icon + label only */
@media (max-width: 1024px) {
  .nav-call-desktop small { display: none; }
  .call-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* Mobile (768px): hamburger visible, hide desktop nav */
@media (max-width: 768px) {
  /* Floating call button visible */
  .float-call-btn { display: inline-flex; }

  /* Footer banner stacks */
  .footer-call-inner { flex-direction: column; align-items: flex-start; }
  .footer-call-btn { width: 100%; justify-content: center; }

  /* Service CTA stacks */
  .call-cta-btn { width: 100%; justify-content: center; }

  /* Nav call button: hide on mobile (hamburger replaces nav-menu) */
  .nav-call-btn { display: none; }
}

/* Narrow mobile: ensure float button doesn't obscure content */
@media (max-width: 480px) {
  .float-call-btn { bottom: 1rem; right: 1rem; }
  .contact-call-link { width: 100%; justify-content: center; }
}

/* For get quotation header button */

/* Logo Color Alignment */
.logo-text span {
  color: #e88d22; /* Matches the warm orange in the logo */
}

/* Orange Pill Button (GET FREE QUOTE) */
.btn-orange-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e88d22;
  color: #ffffff;
  padding: 0.5rem 1.4rem;
  border-radius: 12px; /* Smooth rounded corners matching the Call Now button */
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.2;
}

.btn-orange-pill:hover {
  background-color: #d17a15;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 141, 34, 0.35);
}

.btn-orange-pill .btn-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-orange-pill .btn-subtext {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Green Pill Button (Call Now) */
.btn-green-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #22a24d;
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  line-height: 1.2;
  transition: background-color 0.2s ease;
}

.btn-green-pill:hover {
  background-color: #1b8a40;
}

.btn-green-pill .btn-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
}

.btn-green-pill .btn-subtext {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
}

/* For get quotation header button */

/* =========================================
   Quotation Page  Styles
   ========================================= */

/* Matching Orange Brand Color (#e88d22) */
.brand-udayan,
.text-orange {
  color: #e88d22 !important;
}

/* Orange Pill CTA Button (GET FREE QUOTE) */
.btn-orange-quote,
.nav-cta-quote {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e88d22;
  color: #ffffff !important;
  padding: 0.5rem 1.4rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-orange-quote:hover,
.nav-cta-quote:hover {
  background-color: #d17a15 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 141, 34, 0.35);
}

.btn-orange-quote .btn-subtext,
.nav-cta-quote .btn-subtext {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: none;
  opacity: 0.9;
}

/* Call Button Alignment (Matching Pill Style) */
.nav-call-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #22a24d;
  color: #ffffff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  line-height: 1.2;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-call-btn-pill:hover {
  background-color: #1b8a40 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 162, 77, 0.35);
}

.nav-call-btn-pill .btn-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
}

.nav-call-btn-pill .btn-subtext {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Container Spacing */
.showcase-container {
    padding-right: 1.5rem;
}

/* Image Card Styling */
.hero-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem;
}

/* .hero-consultation-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
} */

.hero-image-card:hover .hero-consultation-img {
    transform: scale(1.03);
}

/* Floating Image Badge */
.image-overlay-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.825rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #22c55e;
}

/* Heading Typography */
.hero-heading-block {
    margin-bottom: 1.25rem;
}

.hero-subhead {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.hero-subtext {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Benefits Grid Cards */
.hero-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
}

/* Icon Containers & Colors */
.benefit-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-green  { background: #ecfdf5; color: #10b981; }
.icon-blue   { background: #eff6ff; color: #3b82f6; }
.icon-orange { background: #fff7ed; color: #f97316; }
.icon-teal   { background: #f0fdf4; color: #14b8a6; }

/* Benefit Text Details */
.benefit-info {
    display: flex;
    flex-direction: column;
}

.benefit-info strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

.benefit-info span {
    font-size: 0.825rem;
    color: #64748b;
    line-height: 1.3;
    margin-top: 2px;
}

.hero-consultation-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: bottom; /* Focuses directly on the solar panels at the bottom */
    display: block;
    transition: transform 0.4s ease;
}

/*testing*/