/* ============================================
   CONTACT PAGE - PREMIUM DESIGN
   ============================================ */

/* Hero Section */
.contact-hero {
    background: var(--gradient-hero);
    padding: var(--space-20) 0 var(--space-16);
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.contact-hero .hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Overview Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: var(--space-16);
}

.contact-info-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-soft);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.contact-info-card:hover .icon-box {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: var(--space-2);
    color: var(--secondary);
}

.contact-info-card p {
    color: var(--gray-500);
    margin-bottom: var(--space-4);
}

.contact-link {
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-dark);
}

/* Main Form Section */
.form-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
    background: white;
    border-radius: var(--radius-3xl);
    padding: var(--space-12);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
}

.form-header {
    margin-bottom: var(--space-8);
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--space-4);
    color: var(--secondary);
}

.form-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
}

.contact-form .form-group {
    margin-bottom: var(--space-6);
}

.contact-form .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9375rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--gray-50);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-soft);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Connect Image Side */
.connect-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.connect-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.connect-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-8);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.connect-overlay h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-2);
}

/* Map Section */
.map-section {
    margin-top: var(--space-20);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-section-wrapper {
        grid-template-columns: 1fr;
    }

    .connect-visual {
        min-height: 300px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .form-section-wrapper {
        padding: var(--space-6);
    }
}