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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(52, 58, 64, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

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

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta-button {
    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-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
    color: white;
    background: linear-gradient(135deg, #218838 0%, #1fa57a 100%);
}

.hero-cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-banner {
        min-height: 500px;
    }
}

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-banner {
        height: 70vh;
        min-height: 400px;
    }
}

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

        .legal-expertise-showcase::before {
            content: '';
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="30" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .legal-expertise-showcase .container {
            position: relative;
            z-index: 2;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
        }

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

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

        .expertise-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

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

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #0d6efd;
            margin-bottom: 0.5rem;
        }

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

        .expertise-visual {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: transform 0.3s ease;
        }

        .expertise-visual:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

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

        .expertise-overlay {
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.9), rgba(102, 16, 242, 0.9));
            color: white;
            padding: 2rem;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .expertise-visual:hover .expertise-overlay {
            transform: translateY(0);
        }

        .expertise-visual:hover .expertise-image {
            transform: scale(1.05);
        }

        .expertise-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .overlay-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0;
        }

        .services-grid {
            margin-top: 4rem;
        }

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

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

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

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

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

        .service-features {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: #e9ecef;
            color: #495057;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

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

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

            .expertise-stats {
                justify-content: space-between;
            }

            .stat-item {
                flex: 1;
            }

            .expertise-visual {
                transform: none;
            }

            .expertise-visual:hover {
                transform: none;
            }

            .expertise-overlay {
                transform: none;
                background: rgba(13, 110, 253, 0.95);
            }

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

/* Block 3 */
.client-testimonials-2025 {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.client-testimonials-2025::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(13, 110, 253, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.client-testimonials-2025 .container {
    position: relative;
    z-index: 2;
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(13, 110, 253, 0.2);
}

.testimonials-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd 0%, #6610f2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before,
.testimonial-card.active::before {
    transform: scaleX(1);
}

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

.testimonial-card.active {
    border-color: #0d6efd;
    box-shadow: 0 15px 50px rgba(13, 110, 253, 0.15);
}

.stars-rating {
    margin-bottom: 1.5rem;
}

.stars-rating i {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 0.2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(13, 110, 253, 0.2);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-position {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.case-type {
    color: #0d6efd;
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-badge.success {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.stat-badge.urgent {
    background: rgba(255, 193, 7, 0.1);
    color: #d68910;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.stat-badge.prevention {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.stat-badge i {
    margin-right: 0.5rem;
}

.trust-indicators {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(13, 110, 253, 0.1);
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
}

.trust-metric {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 1rem;
}

.metric-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.metric-icon i {
    font-size: 1.5rem;
}

.metric-content {
    text-align: left;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-section {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.1);
}

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

.cta-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
    color: white;
}

.cta-secondary-btn {
    background: transparent;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

@media (max-width: 992px) {
    .testimonials-main-title {
        font-size: 2rem;
    }
    
    .trust-metric {
        margin-bottom: 1rem;
    }
    
    .metric-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .trust-metric {
        flex-direction: column;
    }
    
    .metric-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .client-testimonials-2025 {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Block 4 */
.order-form-section {
padding: 5rem 0;
background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
}

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

.form-badge {
display: inline-flex;
align-items: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.875rem;
font-weight: 600;
margin-bottom: 1rem;
}

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

.form-subtitle {
font-size: 1.125rem;
color: #6c757d;
margin-bottom: 0;
}

.contact-form-wrapper {
background: white;
border-radius: 20px;
padding: 2.5rem;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
margin-bottom: 2rem;
}

.consultation-form {
margin-bottom: 2rem;
}

.form-group {
margin-bottom: 1.5rem;
}

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

.form-input {
border: 2px solid #e9ecef;
border-radius: 12px;
padding: 0.875rem 1rem;
font-size: 1rem;
transition: all 0.3s ease;
background: #fafbfc;
}

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

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

.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-loading {
display: none;
}

.submit-btn.loading .btn-text {
display: none;
}

.submit-btn.loading .btn-loading {
display: block;
}

.form-features {
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
padding-top: 1.5rem;
border-top: 1px solid #e9ecef;
}

.feature-item {
display: flex;
align-items: center;
gap: 0.75rem;
}

.feature-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 0.875rem;
flex-shrink: 0;
}

.feature-title {
font-size: 0.95rem;
font-weight: 600;
color: #2c3e50;
margin: 0;
}

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

.contact-info-sidebar {
height: fit-content;
}

.info-card {
background: white;
border-radius: 20px;
padding: 2rem;
box-shadow: 0 15px 50px rgba(0,0,0,0.08);
margin-bottom: 1.5rem;
}

.info-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
}

.info-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.25rem;
}

.info-title {
font-size: 1.25rem;
font-weight: 700;
color: #2c3e50;
margin: 0;
}

.detail-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
margin-bottom: 1rem;
}

.detail-item i {
color: #667eea;
margin-top: 2px;
width: 16px;
}

.detail-content {
flex: 1;
}

.detail-label {
display: block;
font-size: 0.8rem;
color: #6c757d;
margin-bottom: 0.25rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.detail-value {
font-weight: 600;
color: #2c3e50;
text-decoration: none;
}

.detail-value:hover {
color: #667eea;
}

.availability-status {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1rem;
background: #f0f9f0;
border-radius: 10px;
margin-top: 1rem;
}

.status-indicator {
width: 8px;
height: 8px;
border-radius: 50%;
}

.status-indicator.online {
background: #28a745;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}

.status-text {
font-size: 0.875rem;
font-weight: 600;
color: #28a745;
}

.success-metrics {
background: white;
border-radius: 20px;
padding: 1.5rem;
box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.metric-row {
display: flex;
flex-direction: column;
gap: 1rem;
}

.metric-item {
text-align: center;
padding: 0.75rem;
border-radius: 10px;
background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
}

.metric-number {
display: block;
font-size: 1.5rem;
font-weight: 700;
color: #667eea;
}

.metric-label {
display: block;
font-size: 0.8rem;
color: #6c757d;
margin-top: 0.25rem;
}

@media (max-width: 991px) {
.order-form-section {
padding: 3rem 0;
}

.contact-info-sidebar {
margin-top: 2rem;
}

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

.contact-form-wrapper {
padding: 2rem;
}
}

@media (max-width: 768px) {
.form-features {
grid-template-columns: 1fr;
}

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

.contact-form-wrapper {
padding: 1.5rem;
}

.info-card {
padding: 1.5rem;
}

.metric-row {
flex-direction: column;
}
}
