/* Hero Section Styles - Contact Page */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero-overlay);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-breadcrumb {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    font-size: 13px;
    color: var(--color-text-white);
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-text-white);
}

.highlight-text {
    color: var(--color-primary);
    background: var(--gradient-primary-full);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text-white);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 208, 225, 0.5);
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        height: 70vh;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-breadcrumb {
        font-size: 12px;
        padding: 5px 14px;
        margin-bottom: 25px;
    }

    .hero-description {
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn-primary {
        max-width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
}

