/*
 * GOLD CENTER - Contact Page Styles
 * Dedicated CSS for contact us page
 * Version 1.0
 */

/* ========================================
   Contact Header
======================================== */
.contact-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 140px 24px 80px;
    text-align: center;
    color: white;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
    padding: 80px 24px;
    background: #f9fafb;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Contact Info Cards
======================================== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.info-card .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card .icon svg {
    width: 24px;
    height: 24px;
    color: #b45309;
}

.info-card .content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.info-card .content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.info-card .content a {
    color: #b45309;
    text-decoration: none;
    font-weight: 600;
}

.info-card .content a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: white;
}

/* ========================================
   Contact Form
======================================== */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.contact-form-wrapper .subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
    background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
    background: white;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* ========================================
   Map Section
======================================== */
.map-section {
    padding: 0 24px 80px;
    background: #f9fafb;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrapper {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.map-header {
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
}

.map-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.map-header p {
    font-size: 14px;
    color: #6b7280;
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========================================
   FAQ Section
======================================== */
.faq-section {
    padding: 80px 24px;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: right;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Cairo', sans-serif;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    display: none;
}

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

/* ========================================
   Responsive
======================================== */
@media (max-width: 768px) {
    .contact-header {
        padding: 120px 16px 60px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-section {
        padding: 60px 16px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .map-section {
        padding: 0 16px 60px;
    }
}