:root {
    --jet-red: #eb0a1e;
    --jet-dark: #111111;
    --jet-gray: #f4f4f4;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.contact-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(235, 10, 30, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    background: linear-gradient(45deg, var(--jet-dark), var(--jet-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info-item {
    padding: 2rem;
    height: 100%;
    border-right: 1px solid rgba(0,0,0,0.05);
    transition: background-color 0.3s ease;
}

.contact-info-item:last-child {
    border-right: none;
}

.contact-info-item:hover {
    background-color: rgba(235, 10, 30, 0.03);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(235, 10, 30, 0.1);
    color: var(--jet-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
    background: var(--jet-red);
    color: white;
    transform: scale(1.1);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--jet-red);
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-control {
    border: 2px solid #eee;
    padding: 1rem 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.form-control:focus {
    border-color: var(--jet-red);
    box-shadow: 0 0 0 4px rgba(235, 10, 30, 0.1);
    background-color: #fff;
}

.btn-send {
    background: var(--jet-dark);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-send::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--jet-red);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-send:hover::before {
    width: 100%;
}

.btn-send:hover {
    color: white;
    box-shadow: 0 5px 20px rgba(235, 10, 30, 0.4);
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}
