/* Document Request Page Styles */

.page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/business-meeting-two.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

/* Intro Section */
.document-intro {
    padding: 80px 0 40px;
    background: #fff;
}

.intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.section-title-center {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}

/* Document List Section */
.document-list {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.document-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.document-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.document-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.document-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.document-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.document-cta {
    padding: 60px 0 80px;
    background: #fff;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0077b6 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 119, 182, 0.45);
}

.btn-large {
    padding: 20px 60px;
    font-size: 1.2rem;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0077b6 100%);
    color: white;
}

.contact-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.contact-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.contact-phone {
    margin-bottom: 8px;
}

.phone-label {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 12px;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.phone-number:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-hours {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-outline {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .document-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .document-card {
        padding: 30px 24px;
    }

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

    .section-title,
    .cta-title {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 16px 40px;
        font-size: 1.05rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .document-intro,
    .document-list {
        padding: 60px 0 30px;
    }

    .document-cta,
    .contact-section {
        padding: 60px 0;
    }

    .intro-text,
    .cta-text {
        font-size: 0.95rem;
    }

    .document-icon {
        font-size: 2.5rem;
    }
}
