/* Contact Page Specific Styles */

/* Hero Section */
.contact-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #2b7bb2 0%, #51a85c 100%);
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Contact Section */
.contact-main {
    padding: 5rem 0;
}

.contact-main .column-content {
    padding-right: 2rem;
}

.contact-main h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-family: var(--font-family);
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border 0.3s ease;
}

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

.contact-form .btn {
    padding: 0.75rem 2rem;
}

/* Contact Sidebar */
.column-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    background: white;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    padding: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon img {
    width: 25px;
    height: 25px;
}

.info-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.info-content p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.info-content a:hover {
    color: var(--secondary-color);
}

.text-link {
    font-weight: 500;
}

.social-links-horizontal {
    display: flex;
    gap: 1rem;
}

.social-links-horizontal a {
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

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

.social-links-horizontal img {
    width: 18px;
    height: 18px;
}

.contact-faq {
    background: white;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    padding: 2rem;
}

.contact-faq h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-faq p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .contact-main .column-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 0 4rem;
    }
    
    .contact-hero h1 {
        font-size: 2.25rem;
    }
    
    .column-sidebar {
        gap: 1.5rem;
    }
}