
/* Block 1 */
.hero-banner-section {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-banner-container {
    width: 100%;
    height: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    min-height: 70vh;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    width: 100%;
    height: 100%;
    min-height: 70vh;
    z-index: 2;
    margin-top: -70vh;
}

.hero-content-wrapper {
    width: 100%;
    height: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    margin-top: -70vh;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    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;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid transparent;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: transparent;
    color: white;
    border-color: white;
}

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

@media (max-width: 768px) {
    .hero-banner-section {
        min-height: 60vh;
    }
    
    .hero-banner-container,
    .hero-background-image,
    .hero-overlay,
    .hero-content-wrapper {
        min-height: 60vh;
    }
    
    .hero-overlay {
        margin-top: -60vh;
    }
    
    .hero-content-wrapper {
        margin-top: -60vh;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Block 2 */
.legal-services-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    overflow: hidden;
}

.legal-services-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-image {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 16px;
}

.service-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.service-features li {
    color: #2d3748;
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: 600;
}

.statistics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .legal-services-showcase {
        padding: 60px 0;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .statistics-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .statistics-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin: 0 10px;
    }
}

/* Block 3 */
.expert-team-profile {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.team-intro-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.team-section-description {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.experts-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.expert-profile-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

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

.expert-image-container {
    flex-shrink: 0;
    position: relative;
}

.expert-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e3f2fd;
}

.expert-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.expert-info-content {
    flex: 1;
}

.expert-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.expert-specialization {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 20px;
}

.expert-credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.credential-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.expert-achievements {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
    font-style: italic;
}

.team-stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.team-stat-block {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.stat-visual {
    flex-shrink: 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.stat-data {
    flex: 1;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label-text {
    font-size: 0.9rem;
    color: #5a6c7d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .expert-team-profile {
        padding: 60px 0;
    }
    
    .team-section-title {
        font-size: 2.2rem;
    }
    
    .experts-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expert-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .expert-image-container {
        align-self: center;
    }
    
    .team-stats-banner {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }
    
    .team-stat-block {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-number-large {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .team-stats-banner {
        grid-template-columns: 1fr;
    }
    
    .experts-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-profile-card {
        margin: 0 10px;
    }
}

/* Block 4 */
.consultation-request-form {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    padding: 80px 0;
    margin-top: 0;
}

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

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

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

.consultation-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

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

.benefit-highlight-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e3f2fd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: hue-rotate(220deg);
}

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

.benefit-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.consultation-form-container {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid #e8eaf6;
}

.consultation-form {
    margin-bottom: 40px;
}

.form-group-wrapper {
    margin-bottom: 30px;
}

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

.form-control-input,
.form-control-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e7ff;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbff;
}

.form-control-input:focus,
.form-control-textarea:focus {
    outline: none;
    border-color: #5c6bc0;
    box-shadow: 0 0 0 4px rgba(92,107,192,0.1);
    background: white;
}

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

.input-validation-message {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #f44336;
    min-height: 20px;
}

.form-checkbox-wrapper {
    margin: 35px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
}

.form-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-checkmark {
    width: 24px;
    height: 24px;
    background: #fafbff;
    border: 2px solid #e0e7ff;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-checkmark:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-checkbox-input:checked ~ .checkbox-checkmark {
    background: #5c6bc0;
    border-color: #5c6bc0;
}

.form-checkbox-input:checked ~ .checkbox-checkmark:after {
    opacity: 1;
}

.checkbox-label-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.privacy-link {
    color: #5c6bc0;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-submit-button {
    width: 100%;
    background: linear-gradient(135deg, #5c6bc0 0%, #3f51b5 100%);
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(92,107,192,0.3);
    background: linear-gradient(135deg, #3f51b5 0%, #303f9f 100%);
}

.submit-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.emergency-contact-info {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ffcc02;
    text-align: center;
}

.emergency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.emergency-icon {
    width: 32px;
    height: 32px;
    filter: hue-rotate(30deg);
}

.emergency-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e65100;
}

.emergency-description {
    color: #bf360c;
    margin-bottom: 15px;
    font-size: 1rem;
}

.emergency-phone-link {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.emergency-phone-link:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,152,0,0.4);
    color: white;
}

@media (max-width: 992px) {
    .consultation-form-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .consultation-form-container {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .consultation-request-form {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 1.9rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .benefit-highlight-card {
        padding: 25px;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .consultation-form-container {
        padding: 25px 20px;
    }
    
    .form-control-input,
    .form-control-textarea {
        padding: 14px 16px;
    }
    
    .form-submit-button {
        padding: 18px 25px;
        font-size: 1rem;
    }
}
