
/* Block 1 */
.hero-banner-section {
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

.hero-banner-container {
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(108, 117, 125, 0.7) 100%);
  z-index: 2;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  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;
  color: #f8f9fa;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #ffffff;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
  color: #ffffff;
  background: linear-gradient(45deg, #218838, #1ea085);
}

@media (max-width: 768px) {
  .hero-banner-container {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-content {
    padding: 60px 0;
  }
  
  .hero-cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

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

/* Block 2 */
.equipment-showcase-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

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

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

.equipment-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.15);
}

.feature-icon {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

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

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

.equipment-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

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

.equipment-gallery {
    padding-left: 2rem;
}

.equipment-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.equipment-image-wrapper:hover {
    transform: translateY(-5px);
}

.equipment-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-image-wrapper:hover .equipment-image {
    transform: scale(1.05);
}

.equipment-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(13, 110, 253, 0.3);
}

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

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

@media (max-width: 991.98px) {
    .equipment-gallery {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .equipment-title {
        font-size: 2rem;
    }
    
    .equipment-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .equipment-showcase-section {
        padding: 60px 0;
    }
    
    .equipment-image {
        height: 150px;
    }
    
    .equipment-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: none;
        width: 100%;
    }
}

/* Block 3 */
.testimonials-showcase-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9ff 0%, #e9ecef 100%);
}

.testimonials-main-title {
font-size: 2.5rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 1rem;
}

.testimonials-subtitle {
font-size: 1.1rem;
color: #6c757d;
line-height: 1.6;
}

.testimonial-card {
background: white;
border-radius: 20px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
height: 100%;
border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.testimonial-header {
display: flex;
align-items: center;
margin-bottom: 20px;
flex-wrap: wrap;
gap: 15px;
}

.customer-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #e9ecef;
}

.customer-info {
flex: 1;
min-width: 120px;
}

.customer-name {
font-size: 1.1rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 5px;
}

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

.rating-stars {
color: #ffc107;
font-size: 1.1rem;
}

.testimonial-content {
margin-top: 20px;
}

.testimonial-text {
font-size: 1rem;
line-height: 1.7;
color: #495057;
font-style: italic;
margin-bottom: 15px;
}

.service-highlight {
margin-top: 15px;
}

.service-tag {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 6px 12px;
border-radius: 15px;
font-size: 0.85rem;
font-weight: 500;
}

.testimonials-cta-section {
background: white;
padding: 40px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-title {
font-size: 1.8rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 10px;
}

.cta-description {
font-size: 1.1rem;
color: #6c757d;
margin: 0;
}

.testimonials-cta-button {
background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
color: white;
padding: 15px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
display: inline-block;
}

.testimonials-cta-button:hover {
color: white;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.trust-indicators {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
gap: 30px;
padding: 30px;
background: white;
border-radius: 20px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.trust-item {
display: flex;
align-items: center;
gap: 12px;
flex-direction: column;
text-align: center;
min-width: 120px;
}

.trust-logo {
width: 50px;
height: 50px;
object-fit: contain;
border-radius: 8px;
}

.trust-text {
display: flex;
flex-direction: column;
gap: 2px;
}

.trust-score {
font-weight: 700;
color: #2c3e50;
font-size: 1.1rem;
}

.trust-label {
font-size: 0.9rem;
color: #6c757d;
font-weight: 500;
}

@media (max-width: 768px) {
.testimonials-showcase-section {
padding: 60px 0;
}

.testimonials-main-title {
font-size: 2rem;
}

.testimonial-header {
justify-content: center;
text-align: center;
}

.customer-info {
text-align: center;
}

.testimonials-cta-section {
padding: 30px 20px;
text-align: center;
}

.cta-title {
font-size: 1.5rem;
}

.trust-indicators {
gap: 20px;
padding: 20px;
}

.trust-item {
min-width: 100px;
}
}

@media (max-width: 576px) {
.testimonial-card {
padding: 25px 20px;
}

.testimonials-cta-button {
width: 100%;
text-align: center;
margin-top: 20px;
}

.trust-indicators {
flex-direction: column;
gap: 15px;
}

.trust-item {
flex-direction: row;
min-width: auto;
width: 100%;
justify-content: center;
}
}

/* Block 4 */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
}

.order-form-section::before {
    content: '';
    background-image: url('carpet-pattern-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px;
    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: 40px;
}

.form-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid #0d6efd;
    padding: 15px;
    background: white;
}

.form-title {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.form-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    max-width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1rem;
}

.form-label-icon {
    margin-right: 8px;
    color: #0d6efd;
    width: 16px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.form-input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    transform: translateY(-2px);
}

.input-underline {
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #6f42c1);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    margin-top: -2px;
}

.form-input:focus + .input-underline {
    transform: scaleX(1);
}

.service-preferences {
    margin-bottom: 40px;
}

.preferences-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-checkbox {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-checkbox:hover {
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.15);
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: #0d6efd;
    border-color: #0d6efd;
}

.service-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.service-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 4px;
}

.service-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

.form-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.benefit-item {
    display: flex;
    align-items: center;
    color: #0d6efd;
    font-weight: 500;
    font-size: 0.95rem;
}

.benefit-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.4);
}

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

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

.submit-button:hover .button-icon {
    transform: translateX(5px);
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-group:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .form-wrapper {
        padding: 25px 20px;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
        padding: 10px;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
}
