/* Modern Hero Section Styles */

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4a5bb8 0%, #5c3c7a 50%, #764ba2 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Typography */
.hero-highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Benefit Icons */
.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon i {
    font-size: 1.2rem;
    color: #FFD700;
}

/* CTA Button */
.btn-hero {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

.btn-hero:active {
    transform: translateY(0);
}

/* Hero Image Container */
.hero-image-container {
    height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem 1rem 0 1rem;
    margin-left: -1rem;
}

.hero-image-wrapper {
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 2;
}

.hero-image {
    height: 75vh;
    width: auto;
    min-height: 450px;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Signature Overlay */
.signature-overlay {
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.signature-name {
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.signature-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 400;
}

/* Floating Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(8px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-image-container {
        height: 70vh;
        padding: 1rem;
        margin-bottom: 2rem;
        margin-left: 0;
    }
    
    .hero-image {
        height: 70vh;
        min-height: 400px;
    }
    
    .signature-overlay {
        bottom: 15px;
        left: 15px;
        padding: 12px 16px;
    }
    
    .signature-name {
        font-size: 0.9rem;
    }
    
    .signature-title {
        font-size: 0.8rem;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-image-container {
        height: 50vh;
    }
    
    .hero-image {
        height: 50vh;
        min-height: 550px;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-guarantee {
        text-align: center;
    }
}

/* Animation for elements on scroll */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}