/* Modern Header Overrides */
.header {
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.header.transparent {
    background-color: transparent !important;
    box-shadow: none !important;
    padding-top: 15px;
    padding-bottom: 5px;
}

.header.transparent .desktop-nav a {
    color: rgba(255, 255, 255, 0.9);
}

.header.transparent .desktop-nav a:hover:not(.btn) {
    color: var(--secondary-color);
}

.header.transparent .mobile-menu-btn {
    color: #ffffff;
}

.header.transparent .logo img {
    filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.4));
}

/* Modern Hero Section */
.hero.modern-hero {
    position: relative;
    background: url('images/hero-bg.png') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 0;
}

.hero.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 28, 60, 0.85) 0%, rgba(11, 28, 60, 0.6) 100%);
    z-index: 1;
}

.hero-modern-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    padding: 100px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-graphic-top {
    margin-bottom: 30px;
}

.floating-nano-banana {
    width: 120px;
    height: auto;
    animation: floatSmooth 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(247, 208, 2, 0.4));
}

.hero-text-modern {
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.trust-bar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-icon {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.trust-bar p {
    margin: 0;
    color: #e0e5f2;
    font-size: 1.15rem;
    font-weight: 500;
}

.hero-ctas-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: var(--primary-color);
}

.custom-glow {
    box-shadow: 0 0 20px rgba(247, 208, 2, 0.4);
}

.custom-glow:hover {
    box-shadow: 0 0 30px rgba(247, 208, 2, 0.7);
}

.hero-badges-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    width: 100%;
}

.badge-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-yellow {
    color: var(--secondary-color);
}

/* Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1.0s;
}

.delay-6 {
    animation-delay: 1.2s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes floatSmooth {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Mobile Responsiveness for Hero */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .trust-bar {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 20px;
    }

    .hero-ctas-modern {
        flex-direction: column;
        gap: 15px;
    }

    .hero-ctas-modern .btn {
        width: 100%;
        text-align: center;
    }
}