/* Contact Page Styles */

.contact-hero {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f5f5f5, white);
}

.hero-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-warm-text);
    opacity: 0.85;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 72rem;
    margin: 0 auto;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-warm-text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(0,0,0,0.1);
    outline: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(0,0,0,0.3);
}

.form-group textarea {
    resize: none;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    border-radius: 9999px;
    background: #9ba888;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.submit-button:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Contact Info */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #9ba888;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info-content p {
    color: var(--color-warm-text);
    opacity: 0.7;
    line-height: 1.6;
}

/* Social Box */
.social-box {
    background: #f5f0e8;
    border-radius: 1.5rem;
    padding: 2rem;
}

.social-box h3 {
    margin-bottom: 1rem;
}

.social-box p {
    color: var(--color-warm-text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-buttons a {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #9ba888;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-buttons a:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.social-buttons svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
