/* ===================================
   CONTACT PAGE STYLES - PREMIUM STARTUP LOOK
   =================================== */

/* Hero Styles (Inherited structure but enhanced) */
.page-header {
    background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0EA5E9 0%, #10B981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Contact Info Side */
.contact-info {
    position: sticky;
    top: 100px;
}

.contact-info-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

.contact-info-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Styled Contact Cards */
.contact-method {
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-method:hover {
    transform: translateX(10px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 15px rgba(14, 165, 233, 0.1);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-method:hover .contact-method-icon {
    background: var(--primary-blue);
    color: white;
    /* Assumption: emoji icons might not change color but SVG/font icons would */
}

.contact-method-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.contact-method-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1.05rem;
}

/* Social Links */
.social-links {
    padding-top: 2rem;
    border-top: 1px dashed var(--gray-200);
}

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

.social-link-item {
    padding: 0.75rem 1.25rem;
    background: var(--gray-50);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s;
}

.social-link-item:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    color: inherit;
}

/* Form Container */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0EA5E9, #10B981);
}

.form-group label {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    /* Green tint focus */
    border-color: var(--primary-green);
    outline: none;
}

/* Use grid for form layout on large screens */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Success Message */
.success-message {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

/* Map Section */
.map-section {
    padding-bottom: 4rem;
}

.map-placeholder {
    height: 450px;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

    .contact-info {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

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