
/* Block 1 */
.hero-banner {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
  width: 100%;
  height: 100%;
}

.hero-content {
  z-index: 3;
  color: white;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: white;
}

.hero-cta-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-banner {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-cta-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* Block 2 */
.smart-features {
  background: linear-gradient(135deg, #f8fffe 0%, #f0f9ff 50%, #ecfdf5 100%);
  overflow: hidden;
}

.feature-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.feature-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.feature-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.highlight-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.highlight-content p {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.feature-image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.feature-image-container:hover .feature-image {
  transform: scale(1.05);
}

.floating-stats {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wellness-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.25rem;
}

.metric-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.metric-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.metric-text {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.nature-indicator {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.nature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #10b981;
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@media (max-width: 991px) {
  .feature-title {
    font-size: 2rem;
  }
  
  .floating-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  
  .wellness-metrics {
    grid-template-columns: 1fr;
  }
  
  .metric-card {
    flex-direction: row;
    text-align: left;
  }
  
  .metric-icon {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}

@media (max-width: 576px) {
  .feature-title {
    font-size: 1.75rem;
  }
  
  .floating-stats,
  .nature-indicator {
    display: none;
  }
}

/* Block 3 */
.sustainability-showcase {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-showcase::before {
    content: '';
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23059669" opacity="0.1"/></svg>') repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.sustainability-showcase > .container {
    position: relative;
    z-index: 2;
}

.sustainability-badge {
    display: inline-block;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.sustainability-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sustainability-subtitle {
    font-size: 1.2rem;
    color: #065f46;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.eco-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(5, 150, 105, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
    height: 100%;
}

.eco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.15);
}

.eco-icon-wrapper {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.eco-icon {
    font-size: 2rem;
    color: #059669;
}

.eco-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #064e3b;
    margin-bottom: 1rem;
}

.eco-card-description {
    color: #065f46;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.eco-stats {
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.stat-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    display: block;
}

.stat-text {
    font-size: 0.9rem;
    color: #065f46;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eco-showcase-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.2);
}

.eco-showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.energy-dashboard {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #064e3b;
}

.dashboard-header i {
    color: #f59e0b;
}

.energy-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.energy-item {
    text-align: center;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid;
}

.energy-item.generating {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.energy-item.consuming {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.energy-item.surplus {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.energy-value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.energy-item.generating .energy-value {
    color: #059669;
}

.energy-item.consuming .energy-value {
    color: #dc2626;
}

.energy-item.surplus .energy-value {
    color: #2563eb;
}

.energy-label {
    font-size: 0.8rem;
    color: #065f46;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impact-summary {
    padding: 2rem;
}

.impact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 1rem;
}

.impact-description {
    color: #065f46;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.impact-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.impact-metric {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(5, 150, 105, 0.1);
    border-left: 4px solid #10b981;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    display: block;
    line-height: 1;
}

.metric-label {
    font-weight: 600;
    color: #064e3b;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.metric-detail {
    color: #065f46;
    font-size: 0.9rem;
}

.certification-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .sustainability-title {
        font-size: 2rem;
    }
    
    .sustainability-subtitle {
        font-size: 1.1rem;
    }
    
    .energy-metrics {
        grid-template-columns: 1fr;
    }
    
    .certification-badges {
        justify-content: center;
    }
    
    .impact-summary {
        padding: 1rem;
        text-align: center;
    }
    
    .energy-dashboard {
        margin: 1rem;
    }
}

@media (max-width: 992px) {
    .impact-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .impact-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Block 4 */
.order-consultation {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.order-consultation::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.03) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

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

.consultation-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.consultation-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.consultation-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.consultation-description {
  font-size: 1.125rem;
  color: #6c757d;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.consultation-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.benefit-content h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.consultation-form-container {
  padding-left: 2rem;
}

.consultation-form {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.1);
}

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

.form-header-icon {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: #6c757d;
  margin: 0;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.field-group {
  display: flex;
  flex-direction: column;
}

.field-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.field-icon {
  color: #0d6efd;
  font-size: 0.875rem;
}

.field-input {
  padding: 1rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.field-input:focus {
  outline: none;
  border-color: #0d6efd;
  background: white;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

.form-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  50% { transform: translateX(100%) rotate(45deg); }
  100% { transform: translateX(-100%) rotate(45deg); }
}

.form-trust-indicators {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #6c757d;
}

.trust-icon {
  color: #28a745;
  font-size: 0.75rem;
}

@media (max-width: 991px) {
  .consultation-wrapper {
    padding: 2rem;
  }
  
  .consultation-form-container {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .consultation-title {
    font-size: 2rem;
  }
  
  .trust-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .consultation-wrapper {
    padding: 1.5rem;
  }
  
  .consultation-form {
    padding: 1.5rem;
  }
  
  .form-trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}
