/* Legal Entity & Business Management Page Styles */

/* Hero Banner */
.legal-hero-banner {
    position: relative;
    height: 400px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.legal-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.2;
}

/* Introduction Section */
.legal-intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.legal-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.legal-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.legal-highlight {
    color: #06b6d4;
}

.legal-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.legal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.legal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6, 182, 212, 0.4);
}

.legal-intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.legal-intro-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Quick Actions Section */
.legal-actions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.legal-actions-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.legal-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.legal-action-card {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.legal-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.4);
}

.legal-action-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.legal-action-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.legal-actions-note {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.legal-actions-section .legal-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Content Sections */
.legal-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.legal-bg-light-blue {
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
}

.legal-bg-dark-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.legal-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.legal-content-grid.legal-reverse {
    direction: rtl;
}

.legal-content-grid.legal-reverse > * {
    direction: ltr;
}

.legal-content-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.legal-content-images-multi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.legal-content-images-multi img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.legal-content-images-multi img:first-child {
    grid-column: 1 / -1;
    height: 220px;
}

.legal-section-title-center {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.legal-text-white {
    color: rgba(255, 255, 255, 0.95) !important;
}

.legal-text-white .legal-description {
    color: rgba(255, 255, 255, 0.9);
}

.legal-list-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 25px 0 15px;
}

.legal-text-white .legal-list-title {
    color: #ffffff;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.legal-list li {
    font-size: 16px;
    color: #475569;
    padding: 10px 0 10px 30px;
    position: relative;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #06b6d4;
    font-size: 24px;
    line-height: 1;
}

.legal-text-white .legal-list li {
    color: rgba(255, 255, 255, 0.9);
}

.legal-text-white .legal-list li::before {
    color: #ffffff;
}

/* Content Card */
.legal-content-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.legal-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.legal-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.legal-card-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.legal-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
}

.legal-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.legal-cta-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.legal-btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

.legal-btn-white {
    background: #ffffff;
    color: #2563eb;
}

.legal-btn-white:hover {
    background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 968px) {
    .legal-hero-banner {
        height: 350px;
        background-attachment: scroll;
    }

    .legal-hero-title {
        font-size: 48px;
    }

    .legal-intro-grid,
    .legal-content-grid,
    .legal-card-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-content-grid.legal-reverse {
        direction: ltr;
    }

    .legal-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-section-title,
    .legal-section-title-center {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .legal-hero-banner {
        height: 300px;
    }

    .legal-hero-title {
        font-size: 38px;
    }

    .legal-intro-section,
    .legal-content-section,
    .legal-actions-section,
    .legal-cta-section {
        padding: 60px 0;
    }

    .legal-section-title,
    .legal-section-title-center {
        font-size: 30px;
    }

    .legal-actions-grid {
        grid-template-columns: 1fr;
    }

    .legal-content-card {
        padding: 30px 25px;
    }

    .legal-intro-images,
    .legal-content-images-multi {
        grid-template-columns: 1fr;
    }

    .legal-content-images-multi img:first-child {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .legal-hero-banner {
        height: 250px;
    }

    .legal-hero-title {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .legal-intro-section,
    .legal-content-section,
    .legal-actions-section,
    .legal-cta-section {
        padding: 50px 0;
    }

    .legal-section-title,
    .legal-section-title-center {
        font-size: 26px;
    }

    .legal-actions-title {
        font-size: 28px;
    }

    .legal-description {
        font-size: 15px;
    }

    .legal-action-card {
        padding: 30px 20px;
    }

    .legal-action-icon {
        font-size: 40px;
    }

    .legal-content-card {
        padding: 25px 20px;
    }

    .legal-btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .legal-cta-title {
        font-size: 30px;
    }
}
