/* Contact Page Specific Styles */

.contact-section {
    padding: 100px 0;
    background: var(--white);
}

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

/* Contact Information */
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-item-content a {
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-item-content a:hover {
    color: var(--primary-dark);
}

.office-hours {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.office-hours h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.office-hours p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.social-connect {
    margin-top: 30px;
}

.social-connect h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.social-links-large a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.social-links-large svg {
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-form-wrapper > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.map-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.map-section .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
}

.map-placeholder {
    height: 450px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.map-info {
    text-align: center;
    padding: 40px;
}

.map-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.map-info p:first-child {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

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

    .map-placeholder {
        height: 350px;
    }
}

@media (max-width: 640px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }

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

    .office-hours {
        padding: 20px;
    }

    .map-placeholder {
        height: 300px;
    }
}
