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

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 2rem 0;
}

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

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  border: 2px solid transparent;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
  color: #ffffff;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-btn:focus {
  outline: none;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.3);
}

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

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

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: 1rem 0;
  }
  
  .hero-btn {
    display: block;
    text-align: center;
    margin: 0 auto;
    max-width: 280px;
  }
}

/* Block 2 */
.smart-solutions-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

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

.solutions-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.solutions-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.solutions-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-main {
    width: 100%;
}

.gallery-primary {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-secondary {
    display: flex;
    gap: 1rem;
}

.gallery-thumb {
    flex: 1;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

.innovation-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .solutions-title {
        font-size: 2rem;
    }
    
    .innovation-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .stat-card {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .solutions-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .solutions-description {
        text-align: center;
    }
    
    .gallery-secondary {
        flex-direction: column;
    }
    
    .innovation-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-card {
        flex: none;
        width: 100%;
    }
}

/* Block 3 */
.future-living-trends {
      background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
      position: relative;
      overflow: hidden;
    }

    .future-living-trends::before {
      content: '';
      width: 300px;
      height: 300px;
      background: linear-gradient(45deg, rgba(13, 110, 253, 0.1), rgba(108, 117, 125, 0.1));
      border-radius: 50%;
      top: -150px;
      right: -150px;
      z-index: 1;
    }

    .trends-main-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #212529;
      margin-bottom: 1rem;
      position: relative;
      z-index: 2;
    }

    .trends-subtitle {
      font-size: 1.1rem;
      color: #6c757d;
      max-width: 600px;
      margin: 0 auto 3rem;
    }

    .trend-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .trend-image-wrapper {
      position: relative;
      overflow: hidden;
      height: 220px;
    }

    .trend-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .trend-card:hover .trend-image {
      transform: scale(1.1);
    }

    .trend-overlay {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 3;
    }

    .trend-badge {
      background: linear-gradient(135deg, #ff6b6b, #ee5a24);
      color: white;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .trend-badge.new-trend {
      background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    }

    .trend-badge.wellness-trend {
      background: linear-gradient(135deg, #11998e, #38ef7d);
    }

    .trend-content {
      padding: 1.5rem;
    }

    .trend-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: #212529;
      margin-bottom: 0.8rem;
    }

    .trend-description {
      color: #6c757d;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1.2rem;
    }

    .trend-features {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .feature-tag {
      background: #e3f2fd;
      color: #1976d2;
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .trend-spotlight {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 2rem;
      border-radius: 20px;
      height: 100%;
    }

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

    .spotlight-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0;
    }

    .spotlight-indicator {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .indicator-pulse {
      width: 10px;
      height: 10px;
      background: #4ade80;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .indicator-text {
      font-size: 0.8rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .spotlight-description {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .spotlight-stats {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
    }

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

    .stat-value {
      display: block;
      font-size: 1.5rem;
      font-weight: 700;
      color: #4ade80;
    }

    .stat-label {
      font-size: 0.8rem;
      opacity: 0.8;
    }

    .tech-showcase {
      position: relative;
      padding: 1rem;
    }

    .tech-device {
      background: white;
      border-radius: 15px;
      padding: 1.5rem;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      margin-bottom: 2rem;
      position: relative;
      z-index: 2;
    }

    .tech-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    .tech-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #212529;
      margin-bottom: 0.5rem;
    }

    .tech-desc {
      font-size: 0.9rem;
      color: #6c757d;
      margin: 0;
    }

    .tech-connections {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
    }

    .connection-line {
      width: 2px;
      height: 100px;
      background: linear-gradient(to bottom, #0d6efd, #6f42c1);
      margin: 0 auto;
    }

    .connection-dot {
      width: 8px;
      height: 8px;
      background: #0d6efd;
      border-radius: 50%;
      margin: 20px auto;
      animation: float 3s ease-in-out infinite;
    }

    .connection-dot:nth-child(3) {
      animation-delay: 1s;
    }

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

    .tech-features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      position: relative;
      z-index: 2;
    }

    .feature-box {
      background: white;
      padding: 1rem;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-5px);
    }

    .feature-icon {
      font-size: 1.5rem;
      color: #0d6efd;
      margin-bottom: 0.5rem;
    }

    .feature-name {
      font-size: 0.8rem;
      font-weight: 600;
      color: #495057;
    }

    @media (max-width: 768px) {
      .trends-main-title {
        font-size: 2rem;
      }
      
      .spotlight-stats {
        flex-direction: column;
        gap: 1.5rem;
      }
      
      .tech-features-grid {
        grid-template-columns: 1fr;
      }
      
      .spotlight-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
    }

/* Block 4 */
.order-form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

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

.header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
  line-height: 1.2;
}

.form-subtitle {
  font-size: 18px;
  color: #718096;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.form-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

.input-group-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 18px;
  z-index: 2;
  transition: all 0.3s ease;
}

.form-input {
  width: 100%;
  height: 64px;
  padding: 20px 20px 20px 56px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 16px;
  background: #fafafa;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-input:focus + .floating-label,
.form-input:not(:placeholder-shown) + .floating-label {
  top: 8px;
  font-size: 12px;
  color: #667eea;
}

.floating-label {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 8px;
}

.form-benefits {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.benefit-text {
  font-weight: 600;
  color: #4a5568;
  font-size: 14px;
}

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

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 16px;
  padding: 20px 48px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  margin-bottom: 20px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

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

.btn-icon {
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

.privacy-note {
  color: #718096;
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.privacy-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.privacy-link:hover {
  text-decoration: underline;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.trust-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.trust-text {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 32px 24px;
    border-radius: 16px;
  }
  
  .form-title {
    font-size: 24px;
  }
  
  .form-subtitle {
    font-size: 16px;
  }
  
  .form-benefits {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-item {
    min-width: auto;
    justify-content: center;
  }
  
  .trust-indicators {
    gap: 20px;
  }
  
  .trust-badge {
    flex-direction: column;
    text-align: center;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .order-form-section {
    padding: 40px 0;
  }
  
  .form-wrapper {
    margin: 0 16px;
  }
  
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}
