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

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(108, 117, 125, 0.6) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

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

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.6);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

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

/* Block 2 */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

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

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.service-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.4rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: relative;
    left: -1.5rem;
    color: #28a745;
    font-weight: bold;
}

.cta-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    color: #5a67d8;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .cta-container {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

/* Block 3 */
.client-testimonials-showcase {
      padding: 5rem 0;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      overflow: hidden;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 4rem;
    }

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

    .testimonials-main-title::after {
      content: '';
      position: relative;
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #3b82f6, #8b5cf6);
      margin: 1rem auto 0;
      border-radius: 2px;
    }

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

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .testimonial-card {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
    }

    .testimonial-featured {
      grid-column: span 2;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      transform: scale(1.02);
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .testimonial-featured:hover {
      transform: scale(1.02) translateY(-5px);
    }

    .quote-icon {
      margin-bottom: 1.5rem;
    }

    .quote-img {
      width: 32px;
      height: 32px;
      opacity: 0.6;
    }

    .testimonial-featured .quote-img {
      filter: brightness(0) invert(1);
    }

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

    .testimonial-featured .testimonial-text {
      color: white;
      font-size: 1.2rem;
    }

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

    .author-photo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #e2e8f0;
    }

    .testimonial-featured .author-photo {
      border-color: rgba(255, 255, 255, 0.3);
    }

    .author-details {
      flex: 1;
    }

    .author-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 0.25rem;
    }

    .testimonial-featured .author-name {
      color: white;
    }

    .author-position {
      font-size: 0.95rem;
      color: #64748b;
      display: block;
      margin-bottom: 0.5rem;
    }

    .testimonial-featured .author-position {
      color: rgba(255, 255, 255, 0.8);
    }

    .star-rating {
      color: #fbbf24;
      font-size: 1.1rem;
    }

    .testimonials-stats {
      margin-bottom: 4rem;
    }

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

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

    .stat-icon {
      margin-bottom: 1rem;
    }

    .stat-img {
      width: 48px;
      height: 48px;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: #3b82f6;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 1rem;
      color: #64748b;
      font-weight: 500;
    }

    .testimonials-cta {
      text-align: center;
      background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
      padding: 3rem 2rem;
      border-radius: 20px;
      color: white;
    }

    .cta-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .cta-description {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .cta-btn {
      display: inline-block;
      background: linear-gradient(135deg, #3b82f6, #8b5cf6);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    }

    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
      color: white;
    }

    @media (max-width: 768px) {
      .client-testimonials-showcase {
        padding: 3rem 0;
      }

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

      .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .testimonial-featured {
        grid-column: span 1;
        transform: none;
      }

      .testimonial-featured:hover {
        transform: translateY(-5px);
      }

      .testimonial-card {
        padding: 1.5rem;
      }

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

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

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

    @media (max-width: 480px) {
      .stats-container {
        grid-template-columns: 1fr;
      }
    }

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

.order-form-section::before {
    content: '';
    background: url('maintenance-bg-pattern.png') repeat;
    opacity: 0.03;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}

.form-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.form-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    transform: translate(50%, -50%);
    opacity: 0.1;
    z-index: -1;
}

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

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    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.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.maintenance-order-form {
    position: relative;
}

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

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

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

.form-input {
    width: 100%;
    padding: 18px 55px 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafbfc;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background-color: white;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-25%);
    pointer-events: none;
}

.icon-img {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

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

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.service-option {
    position: relative;
}

.service-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-option-label {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fafbfc;
    gap: 15px;
}

.service-option-label:hover {
    border-color: #667eea;
    background-color: #f8f9ff;
}

.service-radio:checked + .service-option-label {
    border-color: #667eea;
    background-color: #f8f9ff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.service-option-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.service-option-text {
    font-weight: 500;
    color: #495057;
    font-size: 0.95rem;
}

.form-actions {
    text-align: center;
}

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

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

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

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

.form-benefits {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    height: fit-content;
    margin-top: 80px;
}

.benefits-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 30px;
    text-align: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
}

.benefit-text {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .form-benefits {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 40px 25px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .service-option-label {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-input {
        padding: 16px 20px;
    }
    
    .input-icon {
        display: none;
    }
}
