:root {
    --contact-brand: #bc98e1;
    --contact-brand-dark: #a07cc8;
    --contact-dark: #1a1a2e;
    --contact-hero-bg: radial-gradient(circle at 80% 50%, #e1ccff 0%, #ecdfff 40%, #f6f0ff 100%);
}

.contact-hero-section * { box-sizing: border-box; }

.contact-hero-section {
    height: 250px;
    background: var(--contact-hero-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
        margin-top: 75px;
}

.contact-hero-section h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0;
    color: var(--contact-dark);
}

.contact-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Nunito', sans-serif;
    color: var(--contact-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-card {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
}

.contact-card i { font-size: 24px; margin-bottom: 10px; }
.contact-card b { margin: 5px 0; font-size: 0.9rem; }
.contact-card p { margin: 0; font-size: 0.85rem; word-break: break-all; }

/* Icon Colors */
.contact-card:nth-child(1) i { color: #ff9f43; }
.contact-card:nth-child(2) i { color: #2ecc71; }
.contact-card:nth-child(3) i { color: #e74c3c; }
.contact-card:nth-child(4) i { color: #3498db; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Nunito', sans-serif;
    width: 100%;
}

.contact-form button {
    background-color: var(--contact-brand);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover { background-color: var(--contact-brand-dark); }

@media (max-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info-grid { order: 2; }
}

@media (max-width: 480px) {
    .contact-hero-section { height: 180px; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-card { aspect-ratio: auto; padding: 20px; }
}