.dr1056herocontactus {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", system-ui, sans-serif;
    background: #000;
}

/* =========================
   BACKGROUND IMAGE
========================= */
.dr1056herocontactus .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;

    transform: scale(1.05);

    /* 🔥 Adjusted instead of overlay */
    filter: brightness(0.75) contrast(1.05);

    transition: transform 0.6s ease;
}

/* =========================
   CONTENT WRAPPER
========================= */
.dr1056herocontactus .hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
   CONTENT BOX (CLEAN)
========================= */
.dr1056herocontactus .hero-content {
    text-align: center;
    max-width: 850px;
    padding: 40px 25px;

    color: #fff;

    opacity: 0;
    transform: translateY(40px);
    animation: heroFade 1s ease forwards;
}

/* =========================
   TITLE (CLEAN PREMIUM)
========================= */
.dr1056herocontactus .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;

    /* 🔥 clean white with subtle shadow */
    color: #ffffff;

    text-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

/* =========================
   SUBTEXT
========================= */
.dr1056herocontactus .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;

    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* =========================
   CTA BUTTON (CLEAN)
========================= */
.dr1056herocontactus .hero-btn {
    display: inline-block;
    padding: 14px 42px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;

    background: #ffffff;
    color: #000;

    transition: all 0.3s ease;
}

/* hover */
.dr1056herocontactus .hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* =========================
   ANIMATION
========================= */
@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {

    .dr1056herocontactus {
        height: 85vh;
    }

    .dr1056herocontactus .hero-content {
        padding: 25px 20px;
    }

    .dr1056herocontactus .hero-content h1 {
        font-size: 2.2rem;
    }

    .dr1056herocontactus .hero-content p {
        font-size: 1rem;
    }

    .dr1056herocontactus .hero-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}