/* Solar Panels Calculator CSS styles.css */
/* variables.css is loaded concurrently in parallel in HTML heads to eliminate render-blocking CSS chains */

/* Layout Framework */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--grad-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.9);
}

.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-navy);
  text-decoration: none;
}

.logo svg {
  color: var(--color-solar-yellow);
  fill: var(--color-solar-yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin-left: 6rem; /* Generous spacing separating the logo from the navigation menu links beautifully */
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-solar-orange);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 280px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1010;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
  background: var(--bg-secondary);
  color: var(--color-solar-orange);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-round);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--grad-solar);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -5px rgba(245, 158, 11, 0.4);
}

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

.btn-secondary:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary-navy);
  color: white;
}

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

/* Hamburger Icon */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--primary-navy);
}

/* Mobile Sidebar */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background: white;
  z-index: 999;
  padding: 2rem;
  transition: left var(--transition-normal);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mobile-nav.open {
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-nav ul a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

.mobile-sub-menu {
  margin-top: 0.5rem;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 2px solid var(--bg-secondary);
}

.mobile-sub-menu a {
  font-size: 0.95rem !important;
  color: var(--text-secondary) !important;
  font-weight: 500 !important;
}

/* Hero Section */
.hero {
  position: relative;
  background: var(--grad-navy);
  color: white;
  padding-top: 10rem;
  padding-bottom: 7rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content h1 span {
  background: var(--grad-solar);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-ctas .btn-secondary {
  background: transparent !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.45) !important;
}

.hero-ctas .btn-secondary:hover {
  background: white !important;
  color: var(--primary-navy) !important;
  border-color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15) !important;
}


/* Visual Illustration (CSS Sun and Panels) */
.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.solar-visual {
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: spin 60s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.solar-visual-sun {
  width: 120px;
  height: 120px;
  background: var(--grad-solar);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.6);
  position: absolute;
  animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 40px rgba(245, 158, 11, 0.4); }
  100% { transform: scale(1.05); box-shadow: 0 0 70px rgba(245, 158, 11, 0.7); }
}

.solar-visual-panels {
  width: 220px;
  height: 140px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid #38bdf8;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transform: rotate(-15deg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  padding: 8px;
  position: absolute;
  z-index: 3;
}

.panel-cell {
  background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%);
  border-radius: 2px;
}

/* Sections Common Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Popular Tools Cards Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.tool-card {
  padding: 2.25rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(245, 158, 11, 0.3);
}

.tool-card-icon {
  width: 54px;
  height: 54px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-solar-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.tool-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-navy);
}

.tool-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tool-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-solar-orange);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.tool-card .card-cta svg {
  transition: transform var(--transition-fast);
}

.tool-card:hover .card-cta svg {
  transform: translateX(4px);
}

/* Benefits Section */
.benefits {
  background: var(--bg-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: rgba(2, 132, 199, 0.08);
  color: var(--color-energy-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.75rem;
}

.benefit-card h3 {
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  color: var(--primary-navy);
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Why Use Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-box {
  display: flex;
  gap: 1.25rem;
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.feature-box:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.2);
}

.feature-box-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #f0fdf4;
  color: var(--color-success);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.feature-box-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--primary-navy);
}

.feature-box-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* FAQs Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(2, 132, 199, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question svg {
  transition: transform var(--transition-normal);
  color: var(--text-muted);
}

.faq-item {
  transition: all var(--transition-normal);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--color-energy-blue) !important;
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-2px) scale(1.005);
}

.faq-question svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.faq-answer p {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-bottom: 1.25rem;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-energy-blue);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* SEO Content Section */
.seo-section {
  background: var(--bg-secondary);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 3.5rem 3.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.seo-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.seo-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: var(--primary-navy-light);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.seo-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.seo-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.seo-content ul li {
  margin-bottom: 0.5rem;
}

/* Quote Section and Lead Forms */
.lead-section {
  background: var(--grad-navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.lead-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(2, 132, 199, 0.15) 0%, transparent 60%);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lead-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.lead-text p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lead-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.highlight-item svg {
  color: var(--color-solar-yellow);
}

.lead-form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #cbd5e1;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-solar-yellow);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.form-control::placeholder {
  color: #94a3b8;
}

select.form-control option {
  background: var(--primary-navy-light);
  color: white;
}

/* Modal Lead Gen Form */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  animation: modalIn var(--transition-normal) ease-out forwards;
}

@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-header {
  background: var(--grad-navy);
  color: white;
  padding: 1.5rem 2rem;
  position: relative;
}

.modal-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: white;
}

.modal-body {
  padding: 2rem;
}

.modal-body .form-group label {
  color: var(--text-primary);
}

.modal-body .form-control {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.modal-body .form-control:focus {
  background: white;
  border-color: var(--color-energy-blue);
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.2);
}

.modal-body select.form-control option {
  background: white;
  color: var(--text-primary);
}

/* Floating widgets */
.sticky-widgets {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 900;
}

.widget-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-decoration: none;
}

.widget-whatsapp {
  background: #25d366;
  color: white;
  font-size: 1.75rem;
}

.widget-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.widget-cta {
  background: var(--grad-solar);
  color: white;
  font-size: 1.35rem;
}

.widget-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

/* Footer Section */
.footer {
  background: var(--primary-navy);
  color: #94a3b8;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--primary-navy-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.25fr 1.25fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand .logo {
  color: white;
}

.footer-brand p {
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--color-solar-orange);
  transform: translateY(-2px);
}

.footer-column h4 {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul a {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: 0.95rem;
}

.footer-column ul a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--primary-navy-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

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

.footer-bottom-links a:hover {
  color: #cbd5e1;
}

/* Breadcrumbs (Tools/Blogs pages) */
.breadcrumbs {
  background: var(--primary-navy);
  padding-top: 7.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--primary-navy-light);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.9rem;
  color: #94a3b8;
}

.breadcrumbs-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-list a:hover {
  color: white;
}

.breadcrumbs-separator {
  color: #64748b;
}

/* Blog layouts */
.blog-header {
  background: var(--grad-navy);
  color: white;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.blog-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  gap: 2rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-body {
  max-width: 800px;
  margin: 4rem auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-body h2 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-navy);
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-body p {
  margin-bottom: 1.5rem;
}

.blog-body img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.blog-body blockquote {
  border-left: 4px solid var(--color-solar-orange);
  background: var(--bg-secondary);
  padding: 1.5rem;
  font-style: italic;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid, .lead-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-illustration {
    order: -1;
  }
  .solar-visual {
    width: 320px;
    height: 320px;
  }
  .solar-visual-panels {
    width: 180px;
    height: 110px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .section-header h2 {
    font-size: 2.0rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .seo-content {
    padding: 1.75rem 1.25rem;
  }
  
  /* Compact sticky widgets on mobile to protect tap actions */
  .sticky-widgets {
    bottom: 1.25rem;
    right: 1.25rem;
    gap: 0.5rem;
  }
  .widget-btn {
    width: 48px;
    height: 48px;
  }
  .widget-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .hero-content p {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }
  .blog-title {
    font-size: 1.85rem;
  }
  .seo-content h2 {
    font-size: 1.65rem;
  }
}

/* Custom Language Switcher buttons active state and layout */
.lang-toggle-wrapper .lang-btn {
  transition: all 0.2s ease;
  position: relative;
}

.lang-toggle-wrapper .lang-btn:hover {
  color: white !important;
  opacity: 1 !important;
}

.lang-toggle-wrapper .lang-btn.active {
  color: var(--color-solar-orange) !important;
  font-weight: 700 !important;
}

/* Custom Google Translate simple element overrides */
.goog-te-banner-frame.skiptranslate, 
.goog-te-banner, 
.goog-te-balloon {
  display: none !important;
}

body {
  top: 0px !important;
}

.goog-tooltip {
  display: none !important;
}

.goog-tooltip:hover {
  display: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

