/* ===== CONTACT PAGE STYLES ===== */

/* Contact Section */
.contact-section {
    padding: 100px 0 80px;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Methods Grid */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-method {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    position: relative;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 #000000;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-method h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.contact-method p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    padding: 8px 16px;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    font-size: 14px;
}

.contact-link:hover {
    background: #000000;
    color: #ffffff;
}

/* Contact Form Section */
.contact-form-section {
    background: #ffffff;
    padding: 60px;
    border: 2px solid #000000;
    margin-bottom: 80px;
    box-shadow: 5px 5px 0 #000000;
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #000000;
    background: #ffffff;
    font-size: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 5px 5px 0 #000000;
    transform: translateY(-2px);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
    position: relative;
    padding-left: 35px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    background-color: #ffffff;
    border: 2px solid #000000;
}

.checkbox-label:hover input ~ .checkmark {
    background-color: #f8f8f8;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #000000;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 60px;
    border: 2px solid #000000;
    margin-bottom: 80px;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    border: 2px solid #000000;
    margin-bottom: 20px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 5px 5px 0 #000000;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Social Section */
.social-section {
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border: 2px solid #000000;
}

.social-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.social-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 40px;
    background: #ffffff;
    border: 2px solid #000000;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
    min-width: 150px;
}

.social-link-large:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 5px 5px 0 #666666;
}

.social-icon {
    font-size: 2.5rem;
}

.social-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-section {
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 40px 30px;
    }

    .faq-item {
        padding: 20px;
    }

    .social-links-large {
        flex-direction: column;
        align-items: center;
    }

    .social-link-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 80px 0 60px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

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

    .faq-section {
        padding: 30px 20px;
    }

    .social-section {
        padding: 40px 20px;
    }
}

