
/* Block 1 */
.hero-banner {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

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

.hero-overlay {
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(42, 82, 152, 0.75) 50%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 2;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 4rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
  color: white;
  background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
}

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

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-banner {
    min-height: 60vh;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .hero-banner {
    min-height: 50vh;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Block 2 */
.smart-city-features {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 50%, #f0f8ff 100%);
      overflow: hidden;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .feature-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      height: 100%;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border: 1px solid rgba(102, 126, 234, 0.1);
      display: flex;
      flex-direction: column;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
      border-color: rgba(102, 126, 234, 0.3);
    }

    .feature-icon-wrapper {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: transform 0.3s ease;
    }

    .feature-card:hover .feature-icon-wrapper {
      transform: rotate(5deg) scale(1.05);
    }

    .feature-icon {
      width: 50px;
      height: 50px;
      filter: brightness(0) invert(1);
    }

    .feature-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .feature-description {
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      flex-grow: 1;
      font-size: 0.95rem;
    }

    .feature-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .feature-tag {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .innovation-badge {
      background: white;
      border-radius: 25px;
      padding: 2rem 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      max-width: 600px;
      margin: 0 auto;
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
      border: 2px solid rgba(102, 126, 234, 0.1);
    }

    .innovation-icon {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
    }

    .innovation-text {
      text-align: left;
    }

    .innovation-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 0.5rem;
    }

    .innovation-desc {
      color: #64748b;
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .smart-city-features {
        padding: 60px 0;
      }

      .section-title {
        font-size: 2rem;
      }

      .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
      }

      .feature-card {
        padding: 1.5rem;
      }

      .innovation-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
      }

      .innovation-text {
        text-align: center;
      }

      .innovation-title {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 576px) {
      .feature-tags {
        justify-content: center;
      }

      .innovation-badge {
        margin: 0 1rem;
        padding: 1.5rem;
      }
    }

/* Block 3 */
.urban-wellness-ecosystem {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.wellness-intro {
    padding-right: 2rem;
}

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

.wellness-subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.wellness-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #3498db;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 600;
    margin-top: 0.5rem;
}

.wellness-visualization {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.wellness-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.data-overlay {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.data-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52, 152, 219, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 2px solid rgba(52, 152, 219, 0.2);
}

.data-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.data-value {
    font-weight: 700;
    color: #2980b9;
    font-size: 0.9rem;
}

.wellness-module {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.wellness-module:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.module-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.module-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.module-description {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.module-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-chip {
    font-size: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
}

.wellness-dashboard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(52, 152, 219, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.dashboard-date {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 600;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: #3498db;
    transform: translateY(-3px);
}

.metric-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-unit {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 600;
}

.metric-label {
    font-size: 0.9rem;
    color: #5a6c7d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    display: inline-block;
}

.metric-trend.positive {
    background: #d4edda;
    color: #155724;
}

.metric-trend.negative {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 768px) {
    .wellness-title {
        font-size: 2rem;
    }
    
    .wellness-intro {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .wellness-stats {
        justify-content: center;
    }
    
    .data-overlay {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dashboard-header {
        text-align: center;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
    animation: float 20s linear infinite;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-icon {
    margin-bottom: 20px;
}

.connect-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(102, 126, 234, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

.benefit-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.4;
}

.contact-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 1rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 16px;
    z-index: 3;
    opacity: 0.6;
}

.form-control {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.priority-selection {
    margin: 35px 0;
}

.priority-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.priority-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.priority-option {
    position: relative;
}

.priority-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.priority-option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    min-width: 120px;
}

.priority-option-label:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.priority-checkbox:checked + .priority-option-label {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.priority-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.priority-checkbox:checked + .priority-option-label .priority-icon {
    filter: brightness(0) invert(1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    margin: 40px 0 30px 0;
}

.btn-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
}

.privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.privacy-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.privacy-text {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        gap: 20px;
    }
    
    .benefit-item {
        min-width: 100px;
    }
    
    .benefit-text {
        font-size: 0.8rem;
    }
    
    .priority-options {
        gap: 15px;
    }
    
    .priority-option-label {
        min-width: 90px;
        padding: 15px 10px;
    }
    
    .submit-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        flex-direction: row;
        gap: 15px;
        text-align: left;
    }
    
    .priority-options {
        justify-content: stretch;
    }
    
    .priority-option {
        flex: 1;
    }
}
