/* ========== CONTACT PAGE STYLE ========== */
.contact-page {
    padding: 100px 0 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Contact Info */
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-info > p {
    color: #aaa;
    margin-bottom: 2rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: 0.3s;
}

.info-card:hover {
    background: rgba(255, 68, 68, 0.1);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 68, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.5rem;
    color: #ff4444;
}

.info-text h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.info-text p,
.info-text a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.info-text a:hover {
    color: #ff4444;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-link i {
    font-size: 1.3rem;
    color: white;
}

.social-link:hover {
    background: #ff4444;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 1.5rem;
}

.faq-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-section h3 i {
    color: #ff4444;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 0.95rem;
}

.faq-question i {
    color: #ff4444;
    transition: 0.3s;
}

.faq-answer {
    display: none;
    padding-top: 0.8rem;
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Map Section */
.map-section {
    margin-top: 3rem;
}

.map-section h3 {
    margin-bottom: 1rem;
}

.map-placeholder {
    background: #1a1a2e;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-placeholder i {
    font-size: 3rem;
    color: #ff4444;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 80px 0 2rem;
    }
    .contact-info h2 {
        font-size: 1.5rem;
    }
    .info-card {
        padding: 0.8rem;
    }
    .info-icon {
        width: 40px;
        height: 40px;
    }
    .info-icon i {
        font-size: 1.2rem;
    }
}
