/* ============================================
   ULTRA MODERN HERO SECTION 2025
   Glassmorphism | Animated Gradients | 3D Effects
   ============================================ */

/* ===== HERO MAIN CONTAINER ===== */
.hero-travel {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1428 100%);
}

/* ===== ANIMATED GRADIENT BACKGROUND ===== */
.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
    will-change: transform;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(32, 156, 119, 0.8) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(115, 225, 199, 0.6) 0%, transparent 70%);
    top: 50%;
    right: -5%;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(170, 191, 187, 0.5) 0%, transparent 70%);
    bottom: -10%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-mesh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 40px);
    opacity: 0.5;
}

/* ===== HERO CONTAINER ===== */
.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== CONTENT SECTION ===== */
.hero-content-travel {
    max-width: 650px;
}

/* Premium Badge with Glow */
.hero-badge-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    margin-bottom: 32px;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(115, 225, 199, 0.4) 50%, 
        transparent 100%);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

.hero-badge-modern .badge-icon {
    font-size: 1.25rem;
    z-index: 1;
}

.hero-badge-modern .badge-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 1;
}

/* Modern Title with Gradient */
.hero-title-modern {
    font-family: 'Wire One', var(--font-display);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.title-line-1,
.title-line-2 {
    display: block;
    margin-bottom: 8px;
}

.title-line-1 {
    color: #ffffff;
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, 
        #73e1c7 0%, 
        #209c77 50%, 
        #aabfbb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-flow 5s ease infinite;
}

@keyframes gradient-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Subtitle */
.hero-subtitle-modern {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 580px;
}

/* ===== MODERN CTA BUTTONS ===== */
.hero-cta-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
}

/* Primary Button - Vibrant Green */
.btn-primary-modern {
    background: linear-gradient(135deg, #209c77 0%, #73e1c7 100%);
    color: #ffffff;
    box-shadow: 
        0 4px 20px rgba(32, 156, 119, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(32, 156, 119, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-primary-modern:active {
    transform: translateY(0);
}

/* Secondary Button - Glass Effect */
.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(115, 225, 199, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(115, 225, 199, 0.2);
}

/* Button Shine Effect */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.btn-primary-modern:hover .btn-shine {
    left: 100%;
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.btn-icon-svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ===== FEATURE PILLS ===== */
.hero-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(115, 225, 199, 0.4);
    transform: translateY(-2px);
}

.pill-icon {
    font-size: 1.25rem;
}

.feature-pill span {
    font-size: 0.938rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== VISUAL SECTION - GLASSMORPHISM CARD ===== */
.hero-visual-modern {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.hero-glass-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.glass-card-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ===== LOGO WITH 3D EFFECT ===== */
.hero-logo-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #209c77 0deg,
        #73e1c7 90deg,
        #aabfbb 180deg,
        #73e1c7 270deg,
        #209c77 360deg
    );
    opacity: 0.4;
    filter: blur(20px);
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.logo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    animation: float-logo 6s ease-in-out infinite;
}

@keyframes float-logo {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    75% {
        transform: translateY(10px) rotate(-2deg);
    }
}

.hero-logo-modern {
    width: 100%;
    height: auto;
    border-radius: 50%;
    filter: drop-shadow(0 10px 30px rgba(32, 156, 119, 0.4));
}

/* ===== FLOATING CARDS ===== */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: float-card 4s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 15%;
    left: -15%;
    animation-delay: 3s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

.float-card-icon {
    font-size: 1.5rem;
}

.float-card-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
}

/* ===== DECORATIVE ELEMENTS ===== */
.hero-decoration-modern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #73e1c7, #209c77);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(115, 225, 199, 0.6);
    animation: pulse-dot 3s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.dot-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 2s;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.deco-ring {
    position: absolute;
    border: 2px solid rgba(115, 225, 199, 0.2);
    border-radius: 50%;
    animation: pulse-ring 4s ease-in-out infinite;
}

.ring-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.813rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablet and Below */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content-travel {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-badge-modern {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle-modern {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-modern {
        justify-content: center;
    }
    
    .hero-features-modern {
        justify-content: center;
    }
    
    .hero-visual-modern {
        max-width: 500px;
        margin: 0 auto;
        min-height: 500px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hero-travel {
        min-height: auto;
        padding: 100px 20px 60px;
    }
    
    .hero-container {
        gap: 50px;
    }
    
    .hero-title-modern {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
    
    .hero-cta-modern {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 400px;
        padding: 14px 28px;
    }
    
    .hero-visual-modern {
        max-width: 400px;
        min-height: 400px;
    }
    
    .hero-glass-card {
        max-width: 400px;
        padding: 40px;
    }
    
    .float-card {
        padding: 10px 14px;
    }
    
    .float-card-text {
        font-size: 0.813rem;
    }
    
    .orb-1, .orb-2, .orb-3 {
        filter: blur(60px);
    }
    
    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-travel {
        padding: 90px 16px 50px;
    }
    
    .hero-badge-modern {
        padding: 8px 18px;
    }
    
    .hero-badge-modern .badge-text {
        font-size: 0.813rem;
    }
    
    .hero-title-modern {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .hero-subtitle-modern {
        font-size: 0.938rem;
        line-height: 1.6;
        margin-bottom: 32px;
    }
    
    .btn-modern {
        padding: 12px 24px;
        font-size: 0.938rem;
    }
    
    .hero-features-modern {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-pill {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-visual-modern {
        max-width: 320px;
        min-height: 320px;
    }
    
    .hero-glass-card {
        max-width: 320px;
        padding: 30px;
    }
    
    .hero-logo-container {
        max-width: 240px;
    }
    
    .float-card {
        display: none;
    }
    
    .deco-ring {
        display: none;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* Reduce animations on mobile for performance */
    .orb-1, .orb-2, .orb-3 {
        animation: none;
        filter: blur(40px);
    }
    
    .logo-glow-ring {
        animation: none;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title-modern {
        font-size: 1.75rem;
    }
    
    .hero-subtitle-modern {
        font-size: 0.875rem;
    }
    
    .btn-modern {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .hero-visual-modern {
        max-width: 280px;
        min-height: 280px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: light) {
    .hero-travel {
        background: linear-gradient(135deg, 
            #e4f6ef 0%, 
            #ffffff 30%,
            #f5f1e7 70%,
            #e4f6ef 100%);
    }
    
    .hero-gradient-orb {
        opacity: 0.25;
        filter: blur(100px);
    }
    
    .orb-1 {
        background: radial-gradient(circle, rgba(32, 156, 119, 0.5) 0%, transparent 70%);
    }
    
    .orb-2 {
        background: radial-gradient(circle, rgba(115, 225, 199, 0.4) 0%, transparent 70%);
    }
    
    .orb-3 {
        background: radial-gradient(circle, rgba(170, 191, 187, 0.3) 0%, transparent 70%);
    }
    
    .hero-mesh-overlay {
        background-image: 
            repeating-linear-gradient(0deg, rgba(32, 156, 119, 0.02) 0px, transparent 1px, transparent 40px),
            repeating-linear-gradient(90deg, rgba(32, 156, 119, 0.02) 0px, transparent 1px, transparent 40px);
    }
    
    .title-line-1 {
        color: var(--text-dark);
    }
    
    .hero-subtitle-modern {
        color: var(--text-light);
    }
    
    .hero-badge-modern {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(32, 156, 119, 0.2);
        box-shadow: 0 8px 32px rgba(32, 156, 119, 0.1);
    }
    
    .hero-badge-modern .badge-text {
        color: var(--primary-color);
    }
    
    .badge-glow {
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(32, 156, 119, 0.2) 50%, 
            transparent 100%);
    }
    
    .btn-secondary-modern {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        color: var(--primary-color);
        border: 1px solid rgba(32, 156, 119, 0.3);
    }
    
    .btn-secondary-modern:hover {
        background: rgba(255, 255, 255, 0.9);
        border-color: var(--primary-color);
    }
    
    .feature-pill {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(32, 156, 119, 0.15);
    }
    
    .feature-pill:hover {
        background: rgba(255, 255, 255, 0.85);
        border-color: var(--primary-color);
    }
    
    .feature-pill span {
        color: var(--text-dark);
    }
    
    .glass-card-bg {
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(32, 156, 119, 0.15);
        box-shadow: 
            0 8px 32px rgba(32, 156, 119, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    
    .logo-wrapper {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(32, 156, 119, 0.2);
    }
    
    .float-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(32, 156, 119, 0.2);
        box-shadow: 0 8px 32px rgba(32, 156, 119, 0.15);
    }
    
    .float-card-text {
        color: var(--primary-color);
    }
    
    .scroll-mouse {
        border-color: rgba(32, 156, 119, 0.4);
    }
    
    .scroll-wheel {
        background: var(--primary-color);
    }
    
    .scroll-text {
        color: var(--text-light);
    }
}

/* ===== PERFORMANCE OPTIMIZATION ===== */
@media (prefers-reduced-motion: no-preference) {
    .hero-gradient-orb,
    .logo-glow-ring,
    .float-card,
    .logo-wrapper {
        will-change: transform;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero-travel {
        background: white !important;
        min-height: auto !important;
        padding: 40px 20px !important;
    }
    
    .hero-bg-animated,
    .hero-decoration-modern,
    .scroll-indicator,
    .floating-elements,
    .btn-modern {
        display: none !important;
    }
}


