/* Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(125deg, rgba(34, 197, 94, 0.03) 0%, rgba(249, 115, 22, 0.03) 40%, rgba(192, 38, 211, 0.03) 80%);
    overflow: hidden;
    padding: 4rem 0 3rem;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
}

.blob-c1 {
    background: radial-gradient(circle, var(--green-start), var(--green-end));
    width: 300px;
    height: 300px;
    top: -60px;
    left: -60px;
}

.blob-c2 {
    background: radial-gradient(circle, var(--orange-start), var(--orange-end));
    width: 280px;
    height: 280px;
    bottom: -40px;
    right: -60px;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(126, 34, 206, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
}

/* Form Styling */
.contact-form-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.form-control,
.form-select {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--blue-start);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* Office Location Cards */
.office-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    transition: all 0.25s;
    border: 1px solid var(--border-light);
    height: 100%;
}

.office-card:hover {
    border-color: var(--blue-start);
    box-shadow: var(--shadow-soft);
}

.office-flag {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: none;
    background: white;
    margin-bottom: 1rem;
    border-radius: 20px !important;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.faq-accordion .accordion-button {
    background: white;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(95deg, rgba(29, 78, 216, 0.03), rgba(126, 34, 206, 0.03));
    color: var(--blue-start);
}

.faq-accordion .accordion-body {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--text-secondary);
}

/* Map Placeholder */
.map-placeholder {
    background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
    border-radius: 24px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .contact-hero {
        text-align: center;
    }

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