/* ===== CONTACT PAGE ===== */
.contact-hero {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}

.contact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
}

.contact-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color, #fa9d9d);
    top: -100px;
    left: -100px;
}

.contact-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-light, #fef2f2);
    bottom: -50px;
    right: -50px;
}

.contact-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light, #fef2f2);
    color: var(--primary-dark, #f87171);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-badge svg {
    width: 16px;
    height: 16px;
}

.contact-hero-inner h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark-color, #1a1a2e);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-hero-inner h1 span {
    color: var(--primary-dark, #f87171);
}

.contact-lead {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    padding: 48px;
    width: 100%;
    max-width: 680px;
    box-shadow: 0 10px 40px rgba(250, 157, 157, 0.08);
}

.contact-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-color, #1a1a2e);
    margin-bottom: 8px;
}

.contact-section-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.contact-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-alert-success {
    background: #d1fae5;
    color: #065f46;
}

.contact-alert-error {
    background: #fee2e2;
    color: #991b1b;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-field { display: flex; flex-direction: column; gap: 6px; }

.contact-field label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #1a1a2e;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    background: #fff;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--primary-dark, #f87171);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

.contact-field textarea { resize: vertical; }

.contact-check-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-check-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-dark, #f87171);
    flex-shrink: 0;
}

.contact-check-field label {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}

.contact-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-dark, #f87171);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-btn-submit svg { width: 18px; height: 18px; }

.contact-btn-submit:hover {
    background: var(--primary-color, #fa9d9d);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(248, 113, 113, 0.3);
}

@media (max-width: 600px) {
    .contact-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 28px 20px; }
}