/**
 * Hero Section Styles
 * Component: hero.php
 * Updated: Unified Design System
 */

.hero-one {
    padding: 170px 0 50px 0;
    background-image: url(../img/hero/hero-bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--off-white);
}

.hero-one-title {
    font-size: 72px;
    color: var(--dark-300);
}

.hero-one-title span {
    color: var(--primary-500);
}

.hero-form-wrapper {
    padding: 16px;
    border-radius: 50px;
    box-shadow: 0px 25px 63px 0px rgba(0, 0, 0, 0.1);
    background: var(--white);
    max-width: 600px;
    border: 1px solid var(--border-color);
}

.hero-form-wrapper .form-select {
    border: 0;
    color: var(--dark-200);
}

.hero-form-wrapper .form-control {
    border: 0;
    border-left: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--dark-200);
}

.hero-form-btn {
    background-color: var(--primary-500);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 16px 30px;
    color: var(--white);
    top: 0;
    right: 0;
    margin: 6px;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero-form-btn:hover {
    background-color: transparent;
    color: var(--primary-500);
    border-color: var(--primary-500);
}

.hero-group-img-wrapper .hero-group-img {
    margin-left: -20px;
    border: 3px solid var(--white);
    border-radius: 50%;
}

.hero-group-img-wrapper .hero-group-img:first-of-type {
    margin-left: 0;
}

.hero-counter-title {
    font-size: 30px;
    color: var(--dark-300);
}

.hero-rating {
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
}

/* Hero Two */
.hero-two {
    padding: 300px 0 170px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-two::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 19, 28, 0.8);
}

.hero-two-title {
    font-size: 60px;
    line-height: 70px;
    color: var(--white);
}

.hero-two-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.tag-item {
    padding: 10px 14px;
    border-radius: 30px;
    color: var(--white);
    border-radius: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 20px 20px 45px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    text-align: center;
    display: inline-block;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Premium Badge Style */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px; 
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4); /* Blue glow */
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
}
