/* ============================================
   SHAKTI POWER SOLUTIONS - SOLAR LANDING PAGE
   Modern, Professional, Mobile-First Design
   ============================================ */

/* CSS Variables - Design System */
:root {
  /* Primary Colors - Blue Energy Theme */
  --primary-green: #2563EB;
  --primary-dark: #1E3A8A;
  --primary-light: #60A5FA;
  --accent-yellow: #38BDF8;
  --accent-orange: #0EA5E9;
  
/* Gradients */
--gradient-hero: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #38BDF8 100%);
--gradient-hero-overlay: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(37, 99, 235, 0.90) 50%, rgba(56, 189, 248, 0.85) 100%);
--gradient-card: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
--gradient-cta: linear-gradient(135deg, #2563EB 0%, #38BDF8 100%);
--gradient-trust: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
--gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  
  /* Neutral Colors */
  --text-primary: #212121;
  --text-secondary: #616161;
  --text-light: #9E9E9E;
  --bg-white: #FFFFFF;
  --bg-light: #FAFAFA;
  --bg-gray: #F5F5F5;
  --border-light: #E0E0E0;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --section-padding: 5rem;
  --container-max: 1200px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 6px 10px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-base);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
 height: 70px;
 width: 120px;
}

.logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: var(--transition-base);
}

.nav-menu a:hover {
  color: var(--primary-dark);
}

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

.nav-cta {
  background: var(--gradient-cta);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 3px;
  transition: var(--transition-base);
}

/* ============================================
   HERO SECTION - MODERN GRADIENT DESIGN
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 4rem;
  background-image: url("../public/images/man-worker-firld-by-solar-panels.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}


/* Animated Background Pattern */
.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.35) 0%, transparent 80%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.30) 0%, transparent 80%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 80%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(253, 216, 53, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -30px) scale(1.1); }
}

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

/* Hero Content */
.hero-content {
  color: white;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInDown 0.8s ease;
}

.badge-icon {
  background: var(--accent-yellow);
  color: var(--primary-dark);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-yellow);
  margin-top: 0.5rem;
  text-shadow: none;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.benefit-icon {
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-base);
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-cta);
  color: white;
  box-shadow: 0 4px 15px rgba(253, 216, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 216, 53, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.btn-submit {
  background: var(--gradient-cta);
  color: white;
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Hero Form Container */
.hero-form-container {
  animation: fadeInUp 0.8s ease 1s both;
}

.form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-cta);
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-header h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

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

/* Form Styles */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.form-group input,
.form-group select {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-white);
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Form Messages */
.form-message {
  text-align: center;
  padding: 2rem;
  display: none;
}

.form-message.success {
  background: rgba(46, 125, 50, 0.1);
  border-radius: var(--radius-md);
  color: var(--primary-dark);
}

.form-message.error {
  background: rgba(211, 47, 47, 0.1);
  border-radius: var(--radius-md);
  color: #d32f2f;
}

.message-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 100;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: var(--gradient-trust);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.trust-intro {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.trust-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.bullet {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 0;
}

/* Trust Badges Grid */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.badge-card {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 1px solid var(--border-light);
}

.badge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.stars {
  color: var(--accent-yellow);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.badge-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.badge-icon-large {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

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

.trust-footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--gradient-trust);
  border-radius: var(--radius-lg);
  color: var(--primary-dark);
  font-weight: 600;
  border-left: 4px solid var(--primary-green);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.partners-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.partner-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-gray);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-base);
}

.partner-benefit:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-2px);
}

.partner-benefit .check {
  color: var(--primary-green);
  font-weight: 700;
}

.partner-benefit:hover .check {
  color: white;
}

/* Partners Grid - Logo Placeholders */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.partner-logo-placeholder {
  background: var(--gradient-card);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  text-align: center;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.partner-logo-placeholder::before {
  content: url("../public/images/icons/certification.png");
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.5rem;
  opacity: 0.2;
}

.partner-logo-placeholder:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.partners-footer {
  text-align: center;
  color: var(--text-secondary);
  font-style: italic;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */
.problem-solution {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.problem-solution .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.problem-box,
.solution-box {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.problem-box::before,
.solution-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.problem-box::before {
  background: linear-gradient(90deg, #FF5252, #FF8A80);
}

.solution-box::before {
  background: var(--gradient-hero);
}

.problem-icon,
.solution-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.problem-box h3,
.solution-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.problem-box > p,
.solution-box > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.problem-list,
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.problem-list li {
  color: #d32f2f;
  font-weight: 500;
  padding-left: 1.5rem;
  position: relative;
}

.problem-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #FF5252;
  font-weight: 700;
}

.solution-list li {
  color: var(--primary-dark);
  font-weight: 600;
  padding-left: 1.5rem;
  position: relative;
}

.arrow {
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
}

.problem-highlight {
  background: #FFEBEE;
  color: #C62828 !important;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-align: center;
  border-left: 4px solid #EF5350;
}

.solution-footer {
  background: var(--gradient-trust);
  color: var(--primary-dark) !important;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  border-left: 4px solid var(--primary-green);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--gradient-hero);
  transition: var(--transition-slow);
  opacity: 0.05;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--gradient-trust);
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-benefits {
  background: var(--bg-light);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-green);
}

.service-benefits h4 {
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-benefits li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.25rem;
}

.service-benefits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
}

/* End-to-End Process */
.end-to-end {
  background: var(--gradient-dark);
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.end-to-end h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--accent-yellow);
}

.end-to-end > p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.step-number {
  background: var(--gradient-cta);
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ============================================
   LOCAL SECTION
   ============================================ */
.local-section {
  padding: var(--section-padding) 0;
  background: var(--gradient-trust);
}

.local-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.local-text .section-tag {
  margin-bottom: 1rem;
}

.local-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.local-text > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.local-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.local-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition-base);
}

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

.check-icon {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.25rem;
}

.local-footer {
  font-style: italic;
  color: var(--text-secondary);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-green);
}

/* Map Placeholder */
.local-map {
  position: relative;
}

.map-placeholder {
  background: var(--bg-white);
  border: 3px dashed var(--primary-light);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(46, 125, 50, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(253, 216, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.map-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.map-placeholder p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.city-tag {
  background: var(--gradient-hero);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.city-tag:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-section {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

/* Project Image Placeholder */
.project-image {
  width: 100%;
  height: 250px;
  background: var(--gradient-card);
  border-bottom: 3px dashed var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, var(--border-light) 49%, var(--border-light) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--border-light) 49%, var(--border-light) 51%, transparent 52%);
  background-size: 20px 20px;
  opacity: 0.3;
}

.project-image span {
  background: var(--bg-white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  color: var(--primary-green);
  box-shadow: var(--shadow-md);
  z-index: 1;
  border: 2px solid var(--primary-light);
}

.project-info {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.project-type {
  color: var(--text-secondary);
  font-weight: 600;
}

.project-separator {
  color: var(--text-light);
}

.project-size {
  background: var(--gradient-trust);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
}

.project-location {
  color: var(--primary-green);
  font-weight: 700;
}

/* Projects Features */
.projects-features {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.projects-features > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.feature-tag {
  background: var(--bg-light);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  transition: var(--transition-base);
}

.feature-tag:hover {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-light);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
  transition: var(--transition-base);
}

.pricing-feature:hover {
  border-color: var(--primary-green);
  transform: scale(1.05);
}

.feature-icon {
  font-size: 1.5rem;
}

/* Offer Box */
.offer-box {
  background: var(--gradient-hero);
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.offer-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-badge {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--text-primary);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.offer-box h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.offer-box p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.offer-box .btn {
  position: relative;
  z-index: 1;
  background: var(--accent-yellow);
  color: var(--text-primary);
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
}

.offer-box .btn:hover {
  background: white;
  transform: scale(1.05);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  text-align: left;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-green);
  font-weight: 300;
  transition: var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  padding: var(--section-padding) 0;
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(253, 216, 53, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 143, 0, 0.1) 0%, transparent 40%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.cta-points {
  margin-bottom: 2.5rem;
}

.cta-points p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons .btn-primary {
  background: var(--accent-yellow);
  color: white;
  font-size: 1.2rem;
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Quick Form Mini */
.quick-form-mini {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 675px;
  margin: 0 auto;
}

.quick-form-mini > p {
  margin-bottom: 1rem;
  font-weight: 600;
}

.mini-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mini-form input {
  padding: 1rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
}

.mini-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(253, 216, 53, 0.3);
}

.mini-form .btn {
  background: var(--accent-yellow);
  color: white;
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gradient-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  color: white;
}

.footer-brand .logo-text {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-yellow);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.sticky-btn {
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-base);
}

.sticky-btn.call {
  background: var(--primary-dark);
}

.sticky-btn.quote {
  background: var(--gradient-cta);
  color: white;
}

.sticky-btn:hover {
  opacity: 0.9;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (min-width: 768px) {
  :root {
    --section-padding: 6rem;
  }
  
  .container {
    padding: 0 2rem;
  }
  
  /* Navigation */
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  /* Hero */
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-title .highlight {
    font-size: 1.5rem;
  }
  
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
  
  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Partners */
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Problem/Solution */
  .problem-solution .container {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Process */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Local */
  .local-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Projects */
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Pricing */
  .pricing-features {
    flex-direction: row;
    justify-content: center;
  }
  
  /* CTA */
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
  
  .mini-form {
    flex-direction: row;
  }
  
  .mini-form input {
    flex: 1;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --section-padding: 7rem;
  }
  
  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .hero-content {
    text-align: left;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .benefits-list,
  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-ctas {
    justify-content: flex-start;
  }
  
  /* Trust */
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Process */
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Local */
  .local-content {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Projects */
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Partners */
  .partners-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Loading State */
.btn-loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

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

/* Focus Visible for Accessibility */
*:focus-visible {
  outline: 3px solid var(--accent-yellow);
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .sticky-cta,
  .hero-form-container,
  .btn {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: white !important;
    color: black !important;
  }
  
  .hero-title,
  .hero-description {
    color: black !important;
    text-shadow: none !important;
  }
}
.fade-in-up{
opacity:1 !important;
transform:none !important;
animation:none !important;
}

.error-text {
  color: #e63946;
  font-size: 13px;
  display: block;
  margin-top: 4px;
}

input.error,
select.error {
  border-color: #e63946;
}