/* HERO SECTION */
.dr1055herocontactus {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, sans-serif;
}

.dr1055herocontactus .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5); /* darken for better text contrast */
    transition: transform 0.5s ease;
}

.dr1055herocontactus .hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dr1055herocontactus .hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.dr1055herocontactus .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dr1055herocontactus .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.dr1055herocontactus .hero-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(90deg, #00ffd5, #00c8ff);
    color: #02141a;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.dr1055herocontactus .hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 213, 0.4);
}

/* Fade in animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .dr1055herocontactus .hero-content h1 {
        font-size: 2.8rem;
    }
    .dr1055herocontactus .hero-content p {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .dr1055herocontactus {
        height: 80vh;
    }
    .dr1055herocontactus .hero-content h1 {
        font-size: 2.2rem;
    }
    .dr1055herocontactus .hero-content p {
        font-size: 1rem;
    }
}