/* Contact Page Styles */
.contact-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d2d2d;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-form-container {
    position: relative;
    border: 1px solid #ddd;
    padding: 40px;
    border-radius: 12px;
    background: #fff;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.contact-form-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-success-message {
    background: #e6fffa;
    border: 1px solid #b2f5ea;
    color: #2c7a7b;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

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

.contact-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Lexend', sans-serif;
    transition: border-color 0.2s;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #EA9834;
}

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

.contact-form-submit {
    width: 100%;
    background: #EA9834;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
}

.contact-form-submit:hover {
    background: #e6a800;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(234, 152, 52, 0.3);
}

.contact-form-footer {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.contact-form-footer-content {
    flex: 1;
}

.contact-form-footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.contact-form-footer-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
}

.contact-form-footer-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 12px;
}

.contact-form-footer-note-highlight {
    color: #EA9834;
    font-weight: 500;
}

.contact-form-footer-image {
    flex-shrink: 0;
}

.contact-form-footer-image img {
    width: 150px;
    height: auto;
}

.contact-info-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.contact-info-text {
    color: #2d2d2d;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-text-light {
    color: #666;
    line-height: 1.6;
}

.contact-info-link {
    color: #2d2d2d;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-link:hover {
    color: #EA9834;
}

.contact-social-links {
    display: flex;
    gap: 15px;
}

.contact-social-link {
    color: #EA9834;
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.contact-social-link:hover {
    transform: scale(1.1);
}

.contact-social-link img,
.contact-social-link svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 15px;
        margin: 40px auto;
    }

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

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

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

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

    .contact-form-footer-list {
        grid-template-columns: 1fr;
    }

    .contact-form-footer-image img {
        width: 100px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 20px 12px;
        margin: 30px auto;
    }

    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

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

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

    .contact-form-title {
        font-size: 1.2rem;
    }

    .contact-info-title {
        font-size: 1.1rem;
    }

    .contact-form-input,
    .contact-form-textarea {
        padding: 10px 12px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .contact-form-submit {
        padding: 12px;
        font-size: 0.95rem;
    }

    .contact-form-footer-image img {
        display: none;
    }

    .contact-form-footer {
        flex-direction: column;
    }
}