/* Contact Hero with Full Image Background */
.page-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 60px 20px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 102, 0, 0.2);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 .highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.hero-support-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    transition: all 0.3s ease;
}

.hero-support-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.6);
}

.hero-support-badge i {
    font-size: 22px;
}

/* Responsive */
@media (max-width: 968px) {
    .page-hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-support-badge {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-support-badge i {
        font-size: 18px;
    }
}