
/* Block 1 */
.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('hero-lighting-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.9) 100%);
  z-index: 2;
}

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

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

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

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

.btn-primary-custom {
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  border: none;
  color: #2c3e50;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
  background: linear-gradient(45deg, #ff5252, #ffeb3b);
}

.btn-secondary-custom {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-header {
  padding: 2rem 2rem 1rem 2rem;
}

.modal-title {
  color: #2c3e50;
  font-size: 1.5rem;
}

.consultation-form .form-control,
.consultation-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.consultation-form .form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}

.btn-form-submit {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-form-submit:hover {
  background: linear-gradient(45deg, #5a67d8, #6b46c1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%) rotate(45deg); }
  40% { transform: translateY(-10px) translateX(-50%) rotate(45deg); }
  60% { transform: translateY(-5px) translateX(-50%) rotate(45deg); }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    justify-content: center;
    width: 100%;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
}

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

.smart-lighting-features::before {
content: '';
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}

.smart-lighting-features .container {
position: relative;
z-index: 2;
}

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

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

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

.feature-item {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1.5rem;
background: white;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
transform: translateY(-4px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

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

.feature-text h4 {
font-size: 1.3rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 0.5rem;
}

.feature-text p {
color: #6c757d;
margin-bottom: 0;
line-height: 1.5;
}

.features-gallery {
position: relative;
}

.gallery-grid {
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: 200px 150px;
gap: 1rem;
}

.gallery-image {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
transition: transform 0.3s ease;
}

.gallery-image:hover {
transform: scale(1.02);
}

.main-image {
grid-row: span 2;
}

.accent-image:first-of-type {
grid-column: 2;
grid-row: 1;
}

.accent-image:last-of-type {
grid-column: 2;
grid-row: 2;
}

.tech-badge {
position: absolute;
top: 1rem;
right: 1rem;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 0.75rem 1rem;
border-radius: 25px;
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
color: #667eea;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.tech-badge i {
font-size: 1rem;
}

.stats-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-top: 3rem;
padding: 2rem;
background: white;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.stat-number {
font-size: 2.5rem;
font-weight: 700;
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: 1rem;
color: #6c757d;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
}

@media (max-width: 768px) {
.features-title {
font-size: 2rem;
}

.features-description {
font-size: 1.1rem;
}

.gallery-grid {
grid-template-columns: 1fr;
grid-template-rows: 200px 150px 150px;
}

.main-image {
grid-row: 1;
}

.accent-image:first-of-type {
grid-column: 1;
grid-row: 2;
}

.accent-image:last-of-type {
grid-column: 1;
grid-row: 3;
}

.stats-container {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}

.stat-number {
font-size: 2rem;
}
}

@media (max-width: 480px) {
.features-title {
font-size: 1.8rem;
}

.feature-item {
padding: 1rem;
}

.feature-icon {
width: 50px;
height: 50px;
}

.feature-icon i {
font-size: 1.2rem;
}

.stats-container {
grid-template-columns: 1fr;
}
}

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

.wellness-lighting-ecosystem::before {
  content: '';
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  position: relative;
  top: -150px;
  left: -150px;
  z-index: 1;
}

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

.ecosystem-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.wellness-content-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wellness-content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.wellness-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;
  position: relative;
}

.wellness-icon-wrapper::after {
  content: '';
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(20px);
  opacity: 0.3;
  z-index: -1;
}

.wellness-icon-wrapper i {
  font-size: 2rem;
  color: white;
}

.wellness-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.wellness-description {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.wellness-benefits {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.benefit-item i {
  color: #10b981;
  margin-right: 0.75rem;
  font-size: 1rem;
}

.benefit-item span {
  color: #4b5563;
}

.wellness-cta-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.wellness-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.wellness-visual-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 100%;
  min-height: 500px;
}

.visual-main {
  grid-row: 1 / -1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wellness-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lighting-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.time-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.time-label {
  font-weight: 600;
  font-size: 1.1rem;
}

.warmth-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  overflow: hidden;
}

.warmth-fill {
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, #ff9500 0%, #ffb84d 100%);
  border-radius: 3px;
}

.temp-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.visual-secondary, .visual-tertiary {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.wellness-accent-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #667eea;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(10px);
}

.zen-badge {
  color: #10b981;
}

.wellness-timeline {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(102, 126, 234, 0.08);
}

.timeline-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.timeline-subtitle {
  color: #6b7280;
  margin: 0;
}

.timeline-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 2rem 0;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 25%, #ff9500 75%, #ff6b00 100%);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-point {
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-point:hover {
  transform: translateY(-3px);
}

.point-marker {
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid #667eea;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  transition: all 0.3s ease;
}

.active-point .point-marker {
  background: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.point-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.point-time {
  font-weight: 700;
  color: #2d3748;
  font-size: 0.9rem;
}

.point-label {
  font-size: 0.8rem;
  color: #6b7280;
}

.point-temp {
  font-size: 0.75rem;
  color: #f59e0b;
  font-weight: 600;
}

@media (max-width: 992px) {
  .ecosystem-title {
    font-size: 2rem;
  }
  
  .wellness-visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr 1fr;
    min-height: 600px;
  }
  
  .visual-main {
    grid-row: 1;
  }
}

@media (max-width: 768px) {
  .wellness-content-card {
    padding: 2rem;
  }
  
  .timeline-track {
    flex-direction: column;
    gap: 2rem;
  }
  
  .timeline-track::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 25%, #ff9500 75%, #ff6b00 100%);
    transform: translateX(-50%);
  }
  
  .timeline-point {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }
  
  .point-marker {
    margin: 0;
    flex-shrink: 0;
  }
  
  .point-content {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

/* Block 4 */
.order-form-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
}

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

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

.form-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 80px;
height: 80px;
background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
border-radius: 50%;
margin-bottom: 1.5rem;
}

.form-icon i {
font-size: 2rem;
color: #2d3436;
}

.form-title {
font-size: 2.2rem;
font-weight: 700;
color: #2d3436;
margin-bottom: 1rem;
line-height: 1.2;
}

.form-description {
font-size: 1.1rem;
color: #636e72;
line-height: 1.6;
margin-bottom: 0;
}

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

.input-group {
position: relative;
}

.form-label {
display: block;
font-weight: 600;
color: #2d3436;
margin-bottom: 0.5rem;
font-size: 0.95rem;
}

.input-wrapper {
position: relative;
}

.input-icon {
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
color: #74b9ff;
font-size: 1.1rem;
z-index: 1;
}

.form-input {
width: 100%;
padding: 1rem 1rem 1rem 3rem;
border: 2px solid #e0e6ed;
border-radius: 12px;
font-size: 1rem;
background: white;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-input:focus {
outline: none;
border-color: #74b9ff;
box-shadow: 0 0 0 4px rgba(116, 185, 255, 0.1);
}

.form-input::placeholder {
color: #b2bec3;
}

.form-features {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.feature-badge {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1rem;
background: rgba(116, 185, 255, 0.1);
border-radius: 50px;
font-size: 0.9rem;
font-weight: 500;
color: #2d3436;
}

.feature-badge i {
color: #74b9ff;
font-size: 1rem;
}

.submit-button {
width: 100%;
padding: 1.2rem 2rem;
background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
border: none;
border-radius: 12px;
color: white;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
box-shadow: 0 8px 25px rgba(116, 185, 255, 0.3);
margin-bottom: 2rem;
}

.submit-button:hover {
transform: translateY(-2px);
box-shadow: 0 12px 35px rgba(116, 185, 255, 0.4);
}

.button-arrow {
transition: transform 0.3s ease;
}

.submit-button:hover .button-arrow {
transform: translateX(4px);
}

.form-trust {
border-top: 1px solid #e0e6ed;
padding-top: 1.5rem;
}

.trust-stats {
display: flex;
justify-content: space-around;
text-align: center;
}

.trust-item {
display: flex;
flex-direction: column;
}

.trust-number {
font-size: 1.3rem;
font-weight: 700;
color: #2d3436;
line-height: 1.2;
}

.trust-label {
font-size: 0.85rem;
color: #636e72;
margin-top: 0.25rem;
}

.testimonial-showcase {
margin-top: 3rem;
}

.testimonial-card {
background: white;
border-radius: 16px;
padding: 2rem;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.quote-mark {
color: #74b9ff;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.testimonial-text {
font-size: 1.1rem;
color: #2d3436;
line-height: 1.6;
margin-bottom: 1.5rem;
font-style: italic;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
}

.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.author-info {
display: flex;
flex-direction: column;
}

.author-name {
font-weight: 600;
color: #2d3436;
font-size: 1rem;
}

.author-location {
color: #636e72;
font-size: 0.9rem;
}

@media (min-width: 768px) {
.form-grid {
grid-template-columns: repeat(2, 1fr);
}

.input-group:last-child {
grid-column: 1 / -1;
}

.form-features {
gap: 2rem;
}

.trust-stats {
gap: 2rem;
}
}

@media (max-width: 767px) {
.form-wrapper {
padding: 2rem 1.5rem;
}

.form-title {
font-size: 1.8rem;
}

.form-description {
font-size: 1rem;
}

.trust-stats {
flex-direction: column;
gap: 1rem;
}

.testimonial-card {
padding: 1.5rem;
}
}
