/* Pages Specific Styles */

.page-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--gold);
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.page-content {
    padding: 60px 0;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.content-box h2 {
    font-size: 32px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 10px;
}

.content-box h3 {
    font-size: 24px;
    color: var(--gold);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #4B5563;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 20px;
}

.info-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid var(--gold);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.info-box p {
    margin-bottom: 10px;
    font-size: 15px;
}

.phone-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.phone-link:hover {
    opacity: 0.8;
}

/* Contact Page Specific */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-info-card svg {
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* FAQ Page Specific */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--gold);
    font-weight: bold;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #6B7280;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .content-box {
        padding: 25px;
    }

    .content-box h2 {
        font-size: 26px;
    }

    .content-box h3 {
        font-size: 20px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
