/* ======================================================
   REVOLUTION: CONTACT PAGE STYLES (v2.0)
====================================================== */
.contact-hero-section .contact-hero-card {
    min-height: 240px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--color-british-racing-green);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 69, 48, 0.65) 0%, rgba(6, 69, 48, 0.85) 100%);
    z-index: 1;
}
.contact-hero-content {
    z-index: 2;
}
.contact-hero-badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    background: rgba(247, 241, 217, 0.2);
    color: var(--color-sand);
    padding: 4px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.contact-hero-title {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.25 !important;
}
.contact-hero-subtitle {
    font-size: 0.92rem;
    color: var(--color-sand);
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
}
.contact-card {
    border: 1px solid rgba(6, 69, 48, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}
.contact-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(6, 69, 48, 0.08);
}
.btn-outline-green {
    color: var(--color-british-racing-green);
    border: 1.5px solid var(--color-british-racing-green);
    border-radius: 30px;
    padding: 10px 18px;
    transition: all 0.25s ease;
}
.btn-outline-green:hover {
    background-color: var(--color-british-racing-green);
    color: var(--color-warm-of-white);
}
.contact-form-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.3 !important;
}
.custom-input {
    background-color: rgba(247, 241, 217, 0.25);
    border: 1px solid rgba(6, 69, 48, 0.15);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: var(--color-black);
    transition: all 0.2s ease;
}
.custom-input:focus {
    background-color: var(--color-warm-of-white);
    border-color: var(--color-british-racing-green);
    box-shadow: 0 0 0 3px rgba(6, 69, 48, 0.1);
}
.btn-green-cta {
    background-color: var(--color-british-racing-green);
    color: var(--color-warm-of-white) !important;
    border-radius: 30px;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(6, 69, 48, 0.2);
}
.btn-green-cta:hover {
    background-color: var(--color-axolotl);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 69, 48, 0.3);
}
.map-card {
    border-color: rgba(6, 69, 48, 0.08) !important;
}
@media (max-width: 767.98px) {
    .contact-hero-section .contact-hero-card {
        min-height: 200px;
    }
    .contact-hero-title {
        font-size: 1.4rem;
    }
    .contact-form-heading {
        font-size: 1.2rem;
    }
}