/* ============================================================
   AM2PM ULTIMATE PREMIUM HERO STYLES
   ============================================================ */

.hero-section {
    position: relative;
    overflow: hidden;
    /* Brand gradient from Navy to Royal Blue */
    background: linear-gradient(135deg, #1e3a8a 0%, #1e81dd 100%);
    padding: 100px 24px 160px; /* Increased bottom padding for the wave */
    margin-top: -30px; /* Pulls it up to sit behind the transparent header */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* --- Hero Text Content --- */
.hero-content {
    color: white;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(42px, 5vw, 68px); /* Fluid typography */
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff !important;
    letter-spacing: -2px;
}

.hero-content h1 .highlight {
    color: #ffc107; /* Brand Gold */
    display: inline-block;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 580px;
}

/* --- Premium Buttons --- */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: #ffc107;
    color: #1e3a8a;
    padding: 18px 45px;
    border-radius: 15px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 15px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover, 
.hero-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* --- Hero Image & Animation --- */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    /* Float Animation */
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- Background Decor --- */
.hero-circle-decor {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
}

/* --- SVG Wave Divider --- */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.wave-bottom svg {
    width: 100%;
    height: 80px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 16px 100px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}