:root {
    --r-navy: #0B0F19;
    --r-accent: #ff0008;
    --r-text-muted: #64748b;
    --r-card-bg: rgba(255, 255, 255, 0.8);
}

.header-spacer {
    height: 100px;
}

@media (max-width: 991px) {
    .header-spacer {
        height: 80px;
    }
}

.contact-hero {
    background-color: var(--r-navy);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 196, 63, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 196, 63, 0.08) 0%, transparent 40%);
    padding: 140px 0 200px;
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-weight: 800;
    letter-spacing: -0.05em;
    color: white !important;
    font-size: 4rem;
    line-height: 1;
}

.contact-hero .breadcrumb-item,
.contact-hero .breadcrumb-item a {
    color: var(--r-text-muted);
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-hero .breadcrumb-item.active {
    color: var(--r-accent);
}

.contact-card {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.12), 0 30px 60px -30px rgba(0, 0, 0, 0.15);
    margin-top: -140px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.info-item {
    padding: 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #f8fafc;
    margin-bottom: 16px;
    border: 1px solid #f1f5f9;
}

.info-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: var(--r-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--r-navy);
    color: var(--r-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 18px 24px;
    background: #ffffff;
    font-weight: 500;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--r-navy);
    box-shadow: 0 0 0 1px var(--r-navy);
}

.btn-send {
    background: var(--r-navy);
    color: white;
    padding: 22px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-send:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.map-wrapper {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.footer-minimal {
    padding: 100px 0 50px;
    background: #ffffff;
}

.social-btn {
    width: 45px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8fafc;
    color: var(--r-navy);
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--r-navy);
    color: var(--r-accent);
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .contact-hero h1 {
        font-size: 2.8rem;
    }

    .contact-card {
        margin-top: -80px;
    }
}