/* Premium Hero Section Styles */
.home_hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.home_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Animated background elements */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 165, 116, 0.2);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(30, 58, 138, 0.3);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(10deg);
    }
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-visual {
    flex: 0 0 45%;
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.5), transparent);
}

/* Floating Badges */
.hero-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: badgeFloat 4s infinite alternate ease-in-out;
}

.badge-top {
    top: 10%;
    left: -10%;
}

.badge-bottom {
    bottom: 15%;
    right: -5%;
    animation-delay: -2s;
}

@keyframes badgeFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 20px;
}

.badge-text span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.hero-pretitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #d4a574;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-pretitle::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #d4a574;
}

.home_hero h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
}

.home_hero h2 span {
    background: linear-gradient(135deg, #d4a574 0%, #f3d2b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    color: #0f172a !important;
    border: none;
    padding: 20px 45px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(212, 165, 116, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-hero-primary:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 45px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-5px);
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-value {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    line-height: 1;
    margin-bottom: 5px;
}

.trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .home_hero h2 {
        font-size: 54px;
    }

    .hero-visual {
        flex: 0 0 40%;
    }
}

@media (max-width: 991px) {
    .home_hero {
        padding: 80px 0;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust-row {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 500px;
        margin-top: 60px;
    }

    .badge-top {
        left: 0;
    }

    .badge-bottom {
        right: 0;
    }
}

@media (max-width: 768px) {
    .home_hero {
        padding: 60px 0;
    }

    .home_hero h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-pretitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 16px 30px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .hero-trust-row {
        flex-wrap: wrap;
        gap: 15px;
        padding-top: 25px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        width: 45%;
        text-align: center;
    }

    .trust-value {
        font-size: 22px;
    }

    .trust-label {
        font-size: 11px;
    }

    .hero-visual {
        margin-top: 40px;
        max-width: 350px;
    }

    .hero-floating-badge {
        padding: 10px 15px;
        border-radius: 12px;
    }

    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .badge-text strong {
        font-size: 14px;
    }

    .badge-text span {
        font-size: 10px;
    }
}