/* ===== Resources Page Styles ===== */

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #666;
}

.services-intro {
    background: var(--light-purple);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
}

.services-intro p {
    color: #666;
    font-size: 1.1rem;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-tab {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    background: #f0f0f0;
    transition: all 0.3s;
    font-weight: 500;
}

.service-tab.active, .service-tab:hover {
    background: var(--gradient-primary);
    color: white;
}

.service-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-purple);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.icon-medical {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.icon-food {
    background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
}

.icon-accommodation {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.icon-transport {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
}

.service-info h2 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.service-info p {
    color: #666;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--light-purple);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    color: #555;
}

.contact-section {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-item span {
    font-size: 0.95rem;
}

.faq-section {
    margin-top: 3rem;
}

.faq-title {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--light-purple);
    cursor: pointer;
}

.faq-question {
    font-weight: bold;
    color: var(--dark-green);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-purple);
    transition: transform 0.3s;
}

.faq-header.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-header.active + .faq-content {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
}