:root {
    --primary-color: #c91b3f;
    --dark-bg: #070514;
    --soft-bg: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: var(--soft-bg);
}

.contact-card {
    background: white;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background-color: rgba(201, 27, 63, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(201, 27, 63, 0.1);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #a01532;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 27, 63, 0.3);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 450px;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}
