/* ========================================
   ASYMMETRIC HERO VISUAL LAYOUT
   Premium Travel Agency Design
   ======================================== */

.hero-modern {
    padding-top: 60px !important;
    min-height: calc(100vh - 120px);
}

.container {
    max-width: var(--container-max-width) !important;
}

.hero-visual-asymmetric {
    position: relative;
    width: 100%;
    height: 600px;
}

/* Main Large Image - Top Right */
.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 480px;
    z-index: 3;
    animation: floatIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-img-main .img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 46, 93, 0.12),
        0 10px 20px rgba(0, 46, 93, 0.08);
    position: relative;
    transform: rotate(-2deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-main:hover .img-placeholder {
    transform: rotate(0deg) translateY(-8px);
    box-shadow:
        0 40px 80px rgba(0, 46, 93, 0.15),
        0 15px 30px rgba(0, 46, 93, 0.1);
}

/* Secondary Floating Image - Bottom Left */
.hero-img-secondary {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 320px;
    height: 360px;
    z-index: 4;
    animation: floatIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.hero-img-secondary .img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow:
        0 25px 50px rgba(0, 46, 93, 0.15),
        0 10px 20px rgba(0, 46, 93, 0.08);
    transform: rotate(3deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-secondary:hover .img-placeholder {
    transform: rotate(0deg) translateY(-8px);
}

/* Tertiary Small Image - Top Left */
.hero-img-tertiary {
    position: absolute;
    top: 80px;
    left: 220px;
    width: 240px;
    height: 280px;
    z-index: 2;
    animation: floatIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

.hero-img-tertiary .img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 6px solid white;
    box-shadow:
        0 20px 40px rgba(0, 46, 93, 0.12),
        0 8px 16px rgba(0, 46, 93, 0.06);
    transform: rotate(-4deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-tertiary:hover .img-placeholder {
    transform: rotate(0deg) translateY(-6px);
}

/* Image Placeholders with Gradients */
.img-placeholder {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* Gradient Variations - Vibrant Travel Themes */
.gradient-tropical {
    background: linear-gradient(135deg, #0BA360 0%, #3CBA92 50%, #30DD8A 100%);
}

.gradient-ocean {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.gradient-sunset {
    background: linear-gradient(135deg, #FA8BFF 0%, #2BD2FF 50%, #2BFF88 100%);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow:
        0 15px 35px rgba(0, 46, 93, 0.12),
        0 5px 15px rgba(0, 46, 93, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    line-height: 1.3;
    color: var(--color-secondary);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
}

/* Positioned relative to hero-visual-asymmetric (600px height) */
.badge-1 {
    top: 420px;
    /* Now bottom-left */
    left: -25px;
    right: auto;
}

.badge-2 {
    top: -10px;
    /* Now top-right */
    right: -20px;
    left: auto;
}

.floating-badge svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.floating-badge span {
    font-size: 0.8rem;
    font-weight: 700;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    pointer-events: none;
}

.deco-circle-1 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 14, 20, 0.08) 0%, transparent 70%);
    top: -40px;
    right: 100px;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

.deco-circle-2 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 46, 93, 0.06) 0%, transparent 70%);
    bottom: 100px;
    left: 50px;
    z-index: 1;
    animation: pulse 5s ease-in-out infinite 1s;
}

.deco-dots {
    width: 100px;
    height: 100px;
    top: 50%;
    right: -20px;
    background-image: radial-gradient(circle, rgba(212, 14, 20, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-visual-asymmetric {
        height: 500px;
    }

    .hero-img-main {
        width: 350px;
        height: 400px;
    }

    .hero-img-secondary {
        width: 280px;
        height: 320px;
    }

    .hero-img-tertiary {
        width: 200px;
        height: 240px;
        left: 180px;
    }
}

@media (max-width: 768px) {
    .hero-visual-asymmetric {
        height: 320px;
        margin-top: 30px;
    }

    .hero-img-main {
        width: 100%;
        height: 100%;
        right: auto;
        left: 0;
        transform: none;
    }

    .hero-img-secondary {
        display: none;
    }

    .hero-img-tertiary {
        display: none;
    }

    .floating-badge {
        display: none;
    }

    .badge-1 {
        display: flex;
        top: auto;
        bottom: -10px;
        left: 12px;
        right: auto;
        padding: 10px 14px;
        font-size: 0.7rem;
    }

    .hero-decoration {
        display: none;
    }
}
