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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.hero-banner .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    padding: 2rem 0;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.6);
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@media (max-width: 576px) {
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-cta {
        padding: 0.75rem 1.75rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Block 2 */
.methodology-preview {
        padding: 120px 0;
        background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .methodology-preview::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }
    
    .methodology-badge {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 8px 24px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }
    
    .methodology-title {
        font-size: 3rem;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.2;
        margin-bottom: 24px;
    }
    
    .methodology-description {
        font-size: 1.2rem;
        color: #6c757d;
        line-height: 1.8;
        margin-bottom: 40px;
    }
    
    .methodology-features {
        margin-bottom: 50px;
    }
    
    .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 32px;
        transition: transform 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateX(8px);
    }
    
    .feature-icon {
        background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        flex-shrink: 0;
        box-shadow: 0 8px 25px rgba(13, 110, 253, 0.2);
    }
    
    .feature-icon i {
        font-size: 1.5rem;
        color: white;
    }
    
    .feature-text h4 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 6px;
    }
    
    .feature-text p {
        color: #6c757d;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    .methodology-link {
        display: inline-flex;
        align-items: center;
        padding: 16px 32px;
        background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(13, 110, 253, 0.25);
    }
    
    .methodology-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(13, 110, 253, 0.35);
        color: white;
    }
    
    .methodology-visual {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
        transition: transform 0.3s ease;
    }
    
    .methodology-visual:hover {
        transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    }
    
    .methodology-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }
    
    .visual-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
        padding: 40px 30px 30px;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-item {
        text-align: center;
        color: white;
    }
    
    .stat-number {
        display: block;
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 4px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .stat-label {
        font-size: 0.9rem;
        opacity: 0.9;
        font-weight: 500;
    }
    
    @media (max-width: 992px) {
        .methodology-preview {
            padding: 80px 0;
        }
        
        .methodology-title {
            font-size: 2.5rem;
        }
        
        .methodology-visual {
            transform: none;
            margin-top: 40px;
        }
        
        .methodology-visual:hover {
            transform: none;
        }
    }
    
    @media (max-width: 768px) {
        .methodology-preview {
            padding: 60px 0;
        }
        
        .methodology-title {
            font-size: 2rem;
        }
        
        .methodology-description {
            font-size: 1.1rem;
        }
        
        .feature-item {
            margin-bottom: 24px;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            margin-right: 16px;
        }
        
        .feature-icon i {
            font-size: 1.25rem;
        }
        
        .methodology-image {
            height: 400px;
        }
        
        .visual-overlay {
            padding: 30px 20px 20px;
        }
        
        .stat-number {
            font-size: 1.5rem;
        }
        
        .stat-label {
            font-size: 0.8rem;
        }
    }

/* Block 3 */
.learning-pathways {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
    position: relative;
}

.learning-pathways::before {
    content: '';
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(13, 110, 253, 0.2) 50%, transparent 100%);
}

.section-header {
    margin-bottom: 60px;
}

.pathway-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pathway-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.pathways-grid {
    margin-bottom: 80px;
}

.pathway-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: 2px solid transparent;
}

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

.pathway-foundation:hover {
    border-color: #10b981;
}

.pathway-advanced:hover {
    border-color: #3b82f6;
}

.pathway-mastery:hover {
    border-color: #f59e0b;
}

.pathway-visual {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.pathway-card:hover .pathway-image {
    transform: scale(1.05);
}

.pathway-badge-overlay {
    position: relative;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #374151;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    float: right;
    backdrop-filter: blur(10px);
}

.pathway-foundation .pathway-badge-overlay {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.pathway-advanced .pathway-badge-overlay {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.pathway-mastery .pathway-badge-overlay {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.pathway-content {
    padding: 30px;
}

.pathway-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.pathway-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.pathway-features {
    margin-bottom: 25px;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.feature-point i {
    color: #10b981;
    margin-right: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-point span {
    color: #374151;
    font-weight: 500;
}

.pathway-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.pathway-duration {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.pathway-duration i {
    margin-right: 8px;
}

.pathway-level {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pathway-foundation .pathway-level {
    background: #d1fae5;
    color: #065f46;
}

.pathway-advanced .pathway-level {
    background: #dbeafe;
    color: #1e40af;
}

.pathway-mastery .pathway-level {
    background: #fef3c7;
    color: #92400e;
}

.pathway-navigation {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.navigation-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.navigation-description {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.pathway-assessment-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pathway-assessment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .learning-pathways {
        padding: 60px 0;
    }
    
    .pathway-main-title {
        font-size: 2rem;
    }
    
    .pathway-navigation {
        padding: 30px 20px;
        text-align: center;
    }
    
    .col-lg-4.text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .pathways-grid {
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .pathway-content {
        padding: 25px 20px;
    }
    
    .pathway-visual {
        height: 180px;
    }
    
    .navigation-content {
        margin-bottom: 20px;
    }
}

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

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

.order-form-section .container {
    position: relative;
    z-index: 2;
}

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

.form-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 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.form-icon i {
    font-size: 36px;
    color: white;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.order-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.form-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.consultation-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

.benefit-item i {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-label i {
    color: #667eea;
    font-size: 18px;
}

.form-control {
    padding: 15px 18px;
    border: 2px solid #e1e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

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

.form-helper {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
    padding-left: 5px;
}

.form-actions {
    margin-top: 15px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    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);
}

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

.form-security {
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #888;
    font-size: 0.9rem;
}

.form-security i {
    color: #28a745;
}

.trust-indicators {
    margin-top: 60px;
    padding: 40px 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.trust-item {
    padding: 20px;
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
    line-height: 1;
}

.trust-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 992px) {
    .order-form-container {
        grid-template-columns: 1fr;
    }
    
    .form-visual {
        padding: 30px;
        text-align: center;
    }
    
    .form-benefits {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        min-width: 140px;
    }
    
    .consultation-image {
        height: 220px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .form-content {
        padding: 40px 25px;
    }
    
    .trust-indicators .row > div {
        margin-bottom: 20px;
    }
    
    .trust-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .benefit-item {
        min-width: 120px;
        font-size: 1rem;
    }
    
    .form-content {
        padding: 30px 20px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .submit-btn {
        padding: 16px 25px;
        font-size: 1rem;
    }
}
