
/* Block 1 */
.hero-banner {
      min-height: 80vh;
      background-image: url('bicycle-workshop-background.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: white;
      overflow: hidden;
    }

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

    .hero-content {
      flex: 1;
      display: flex;
      align-items: center;
      z-index: 2;
      padding: 6rem 0 4rem;
    }

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

    .hero-cta {
      display: inline-block;
      background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 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 8px 25px rgba(255, 107, 107, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .hero-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
      color: white;
    }

    .hero-features {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 3rem 0;
      z-index: 2;
      border-top: 3px solid #0d6efd;
    }

    .feature-item {
      text-align: center;
      padding: 1.5rem;
      height: 100%;
      transition: transform 0.3s ease;
    }

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

    .feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    }

    .feature-item h3 {
      color: #212529;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .feature-item p {
      color: #6c757d;
      font-size: 1rem;
      line-height: 1.5;
      margin: 0;
    }

    @media (max-width: 768px) {
      .hero-banner {
        min-height: 70vh;
        background-attachment: scroll;
      }

      .hero-title {
        font-size: 2.5rem;
      }

      .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
      }

      .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
      }

      .hero-content {
        padding: 4rem 0 2rem;
      }

      .hero-features {
        padding: 2rem 0;
      }

      .feature-item {
        margin-bottom: 2rem;
      }
    }

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

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

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

      .feature-item h3 {
        font-size: 1.25rem;
      }
    }

/* Block 2 */
.workshop-showcase {
padding: 5rem 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.workshop-stats {
display: flex;
gap: 2rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

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

.stat-number {
font-size: 2.2rem;
font-weight: 800;
color: #0d6efd;
line-height: 1;
}

.stat-label {
font-size: 0.9rem;
color: #6c757d;
margin-top: 0.5rem;
font-weight: 500;
}

.workshop-gallery {
position: relative;
}

.gallery-main {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
margin-bottom: 1rem;
}

.gallery-primary {
width: 100%;
height: 350px;
object-fit: cover;
transition: transform 0.3s ease;
}

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

.gallery-thumbnails {
display: flex;
gap: 0.75rem;
justify-content: center;
}

.gallery-thumb {
width: 80px;
height: 60px;
object-fit: cover;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.gallery-thumb:hover {
border-color: #0d6efd;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(13,110,253,0.3);
}

.specialties-section {
padding: 4rem 0 2rem 0;
background: white;
}

.specialties-title {
text-align: center;
font-size: 2.2rem;
font-weight: 700;
color: #212529;
margin-bottom: 3rem;
}

.specialty-card {
background: white;
border-radius: 15px;
padding: 2rem;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
transition: all 0.3s ease;
height: 100%;
text-align: center;
border: 1px solid #f1f3f4;
}

.specialty-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
border-color: #e3f2fd;
}

.specialty-icon {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 1.5rem;
border: 3px solid #f8f9fa;
}

.specialty-name {
font-size: 1.3rem;
font-weight: 600;
color: #212529;
margin-bottom: 1rem;
}

.specialty-desc {
font-size: 0.95rem;
color: #6c757d;
line-height: 1.6;
margin: 0;
}

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

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

.workshop-stats {
justify-content: center;
gap: 1.5rem;
}

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

.gallery-primary {
height: 250px;
}

.gallery-thumbnails {
flex-wrap: wrap;
}

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

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

@media (max-width: 576px) {
.workshop-stats {
flex-direction: column;
align-items: center;
gap: 1rem;
}

.gallery-thumbnails {
gap: 0.5rem;
}

.gallery-thumb {
width: 60px;
height: 45px;
}
}

/* Block 3 */
.innovation-lab {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.innovation-lab::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(13, 110, 253, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.innovation-lab .container {
    position: relative;
    z-index: 2;
}

.innovation-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

.section-heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.feature-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

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

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

.innovation-showcase {
    position: relative;
}

.showcase-main {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.tech-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    color: #212529;
    font-size: 0.9rem;
}

.research-projects {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 2rem;
}

.project-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

.project-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.active {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.project-status.prototype {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    color: white;
}

.project-status.research {
    background: linear-gradient(135deg, #6f42c1, #0d6efd);
    color: white;
}

.partnership-network {
    margin-top: 4rem;
    padding: 3rem 0;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.partnership-title {
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    width: 100%;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    opacity: 0.7;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .innovation-title {
        font-size: 2.2rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .feature-row {
        flex-direction: column;
        text-align: center;
    }
    
    .showcase-main {
        height: 300px;
    }
    
    .tech-badges {
        grid-template-columns: 1fr;
    }
    
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0066cc, #004499);
    -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;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

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

.input-group {
    position: relative;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

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

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #495057;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
    background: white;
    transform: translateY(-2px);
}

.input-icon, .select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #6c757d;
    pointer-events: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    padding-right: 20px;
}

.preferred-schedule {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.schedule-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.schedule-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.schedule-option:hover {
    border-color: #0066cc;
    background: white;
}

.schedule-radio {
    margin-right: 10px;
    accent-color: #0066cc;
}

.schedule-radio:checked + .schedule-text {
    color: #0066cc;
    font-weight: 600;
}

.schedule-text {
    font-size: 0.95rem;
    color: #495057;
    white-space: nowrap;
}

.urgency-indicator {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.urgency-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    border: 2px dashed #ffc107;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff3cd, #fef8e1);
    transition: all 0.3s ease;
}

.urgency-checkbox:hover {
    background: linear-gradient(135deg, #fef8e1, #fff3cd);
    transform: translateY(-2px);
}

.urgent-input {
    margin-right: 15px;
    accent-color: #ffc107;
    transform: scale(1.2);
}

.urgent-text {
    color: #856404;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-actions {
    text-align: center;
    border-top: 2px solid #f8f9fa;
    padding-top: 40px;
}

.submit-btn {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    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 10px 30px rgba(0,102,204,0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,102,204,0.4);
    background: linear-gradient(135deg, #0052a3, #003366);
}

.btn-text {
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.form-footer {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0.8;
}

.security-badge {
    width: 24px;
    height: 24px;
}

.privacy-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

.contact-alternatives {
    background: linear-gradient(135deg, #212529, #495057);
    padding: 60px 0;
    margin-top: 80px;
}

.contact-method {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.contact-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info {
    color: #0066cc;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-desc {
    color: #adb5bd;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-container {
        padding: 30px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .schedule-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .schedule-option {
        justify-content: center;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .order-form-section {
        padding: 40px 0;
        min-height: auto;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px;
    }
    
    .contact-alternatives {
        margin-top: 40px;
        padding: 40px 0;
    }
}
