/* ========================================
   CONTACT.CSS - Page Contact
   Full Responsive
   ======================================== */

/* Hero Section */
.hero-section {
    max-width: 1512px;
    margin: 0 auto;
    padding: 100px 100px 75px;
    text-align: center;
}

.hero-title {
    font-size: 96px;
    line-height: 1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 100px 75px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Form */
.contact-form {
    background: var(--bg-gray);
    padding: 50px;
}

.contact-form h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

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

.submit-btn {
    width: 100%;
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #000;
}

.submit-btn i {
    font-size: 18px;
}

/* Alert Messages */
.alert-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid;
}

.alert-success {
    background: #f0fdf4;
    border-color: #22c55e;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

/* Contact Info */
.contact-info {
    padding: 50px 0;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 35px;
}

.info-item {
    margin-bottom: 35px;
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.info-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

.info-content a {
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.3s;
}

.info-content a:hover {
    opacity: 0.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--text-dark);
    color: white;
}

/* FAQ Section */
.faq-section {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 100px 100px;
}

.faq-section h2 {
    font-size: 56px;
    margin-bottom: 50px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.faq-question:hover {
    opacity: 0.6;
}

.faq-icon {
    font-size: 14px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

/* ========================================
   RESPONSIVE - TABLET (1024px)
   ======================================== */

@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 40px 40px;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .contact-section {
        padding: 0 40px 50px;
        gap: 40px;
    }

    .contact-form,
    .contact-info {
        padding: 40px;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 32px;
    }

    .faq-section {
        padding: 0 40px 60px;
    }

    .faq-section h2 {
        font-size: 48px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (768px)
   ======================================== */

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px 30px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .contact-section {
        padding: 0 20px 40px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form h2 {
        font-size: 28px;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 12px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-info h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .info-item {
        margin-bottom: 25px;
        gap: 15px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .info-content p {
        font-size: 14px;
    }

    .faq-section {
        padding: 0 20px 40px;
    }

    .faq-section h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 20px 0;
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px)
   ======================================== */

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 24px;
    }

    .faq-section h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 15px;
    }
}