/* Modern Premium Hero Search UI */
    .modern-hero-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 600px;
        padding: 100px 0;
        overflow: visible;
    }

    .modern-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: var(--bg-img);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: 0;
    }

    .modern-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(10, 19, 37, 0.7) 0%, rgba(10, 19, 37, 0.4) 100%);
        z-index: 1;
    }

    .modern-hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        margin-top: 50px;
    }

    .modern-headings {
        text-align: center;
        color: #fff;
        margin-bottom: 40px;
        animation: fadeInDown 0.8s ease-out forwards;
    }

    .modern-headings h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 56px;
        font-weight: 700;
        letter-spacing: -1px;
        margin-bottom: 10px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .modern-headings p {
        font-size: 20px;
        font-weight: 300;
        opacity: 0.9;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .modern-search-container {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 24px;
        padding: 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        max-width: 1100px;
        margin: 0 auto;
        animation: fadeInUp 0.8s ease-out 0.2s forwards;
        opacity: 0;
    }

    .modern-tabs {
        display: flex;
        gap: 10px;
        padding: 0 15px 15px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        margin-bottom: 15px;
    }

    .modern-tab-btn {
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.8);
        padding: 10px 20px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .modern-tab-btn i {
        font-size: 18px;
    }

    .modern-tab-btn:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }

    .modern-tab-btn.active {
        background: #fff;
        color: #0A1325;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .modern-search-box {
        background: #fff;
        border-radius: 16px;
        display: flex;
        padding: 8px;
        gap: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
        .modern-search-box {
            flex-direction: column;
        }

        .modern-headings h1 {
            font-size: 40px;
        }
    }

    .modern-input-group {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 12px 20px;
        background: #f8f9fa;
        border-radius: 12px;
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }

    .modern-input-group:hover,
    .modern-input-group:focus-within {
        background: #fff;
        border-color: #e0e6ed;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .modern-input-icon {
        font-size: 24px;
        color: #5191fa;
        margin-right: 15px;
        width: 24px;
        text-align: center;
    }

    .modern-input-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .modern-input-content label {
        font-size: 12px;
        font-weight: 600;
        color: #5e6d77;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .modern-input-content input {
        border: none;
        background: transparent;
        font-size: 15px;
        font-weight: 500;
        color: #1a2b48;
        padding: 0;
        width: 100%;
        outline: none;
    }

    .modern-input-content input::placeholder {
        color: #a0a9b2;
        font-weight: 400;
    }

    .modern-divider {
        width: 1px;
        background: #eaeef3;
        margin: 10px 0;
    }

    @media (max-width: 768px) {
        .modern-divider {
            width: 100%;
            height: 1px;
            margin: 0;
        }
    }

    .modern-submit-btn {
        background: linear-gradient(135deg, #5191fa 0%, #2f64d6 100%);
        color: white;
        border: none;
        border-radius: 12px;
        padding: 0 40px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 60px;
    }

    .modern-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(81, 145, 250, 0.4);
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ======= ELPIS ANGEL + 3D GLOBE ======= */
    .elpis-hero-icon-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 24px;
        cursor: pointer;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInDown 1.1s ease-out;
        transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .elpis-hero-icon-wrap:hover {
        transform: scale(1.1) translateY(-5px);
    }

    .elpis-angel-img {
        width: 450px;
        height: auto;
        position: relative;
        z-index: 3;
        filter: drop-shadow(0 10px 25px rgba(212, 175, 55, 0.4));
        transition: filter 0.4s ease, transform 0.4s ease;
        pointer-events: none;
    }

    .elpis-hero-icon-wrap:hover .elpis-angel-img {
        filter: drop-shadow(0 14px 40px rgba(212, 175, 55, 0.85));
    }

    .elpis-globe-wrap {
        position: relative;
        width: 360px;
        height: 360px;
    }

    #elpisGlobeCanvas {
        display: block;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.4));
        transition: filter 0.4s ease, transform 0.4s ease;
    }

    .elpis-hero-icon-wrap:hover #elpisGlobeCanvas {
        filter: drop-shadow(0 8px 30px rgba(212, 175, 55, 0.8));
    }

    .elpis-hero-icon-label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: rgba(212, 175, 55, 0.75);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        margin-top: 10px;
        transition: color 0.3s, letter-spacing 0.3s;
    }

    .elpis-hero-icon-wrap:hover .elpis-hero-icon-label {
        color: #D4AF37;
        letter-spacing: 5px;
    }

/* --- Global Premium Styles for Home --- */
    .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }

    .section-title h2 {
        font-family: 'Playfair Display', serif;
        font-size: 38px;
        font-weight: 700;
        color: #0A1325;
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 16px;
        color: #5e6d77;
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: #5191fa;
        margin: 20px auto 0;
        border-radius: 2px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .bg-light {
        background-color: #f8f9fa;
    }

    /* Premium Card System */
    .premium-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        border: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .premium-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    }

    .premium-card-img {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .premium-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .premium-card:hover .premium-card-img img {
        transform: scale(1.1);
    }

    .premium-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(10, 19, 37, 0.8);
        backdrop-filter: blur(4px);
        color: #fff;
        padding: 5px 15px;
        border-radius: 30px;
        font-size: 11px;
        font-weight: 600;
        z-index: 2;
        text-transform: uppercase;
    }

    .premium-sale-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #e74c3c;
        color: #fff;
        padding: 4px 12px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 700;
        z-index: 2;
    }

    .premium-card-body {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .card-location {
        font-size: 13px;
        color: #5191fa;
        font-weight: 600;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .card-title {
        font-size: 18px;
        font-weight: 700;
        color: #0A1325;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .card-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
    }

    .card-title a:hover {
        color: #5191fa;
    }

    .card-footer {
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .card-price {
        display: flex;
        flex-direction: column;
    }

    .card-price .label {
        font-size: 11px;
        color: #a0a6ad;
        text-transform: uppercase;
        font-weight: 700;
    }

    .card-price .value {
        font-size: 18px;
        font-weight: 800;
        color: #0A1325;
    }

    /* Destinations Styling */
    .destination-grid-item {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        margin-bottom: 30px;
        cursor: pointer;
    }

    .destination-grid-item img {
        width: 100%;
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .destination-grid-item:hover img {
        transform: scale(1.1);
    }

    .destination-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 30px;
        color: #fff;
        transition: all 0.3s;
    }

    .destination-grid-item:hover .destination-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    }

    .destination-overlay h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .destination-overlay span {
        font-size: 14px;
        opacity: 0.9;
    }

    /* Why Choose Us Icons */
    .feature-box {
        text-align: center;
        padding: 30px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: #f0f7ff;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: #5191fa;
        font-size: 32px;
        transition: all 0.3s;
    }

    .feature-box:hover .feature-icon {
        background: #5191fa;
        color: #fff;
        transform: translateY(-5px);
    }

    .feature-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .feature-box p {
        font-size: 15px;
        color: #5e6d77;
        line-height: 1.6;
    }

    /* Blog Styling */
    .blog-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        border: 1px solid #f0f0f0;
        transition: all 0.3s;
        height: 100%;
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    }

    .blog-img {
        height: 240px;
        overflow: hidden;
        position: relative;
    }

    .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .blog-card:hover .blog-img img {
        transform: scale(1.1);
    }

    .blog-cat {
        position: absolute;
        top: 20px;
        left: 20px;
        background: #fff;
        color: #0A1325;
        padding: 4px 12px;
        border-radius: 30px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-date {
        font-size: 13px;
        color: #a0a6ad;
        margin-bottom: 10px;
        display: block;
    }

    .blog-title {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .blog-title a {
        color: #0A1325;
        text-decoration: none;
        transition: color 0.2s;
    }

    .blog-title a:hover {
        color: #5191fa;
    }

/* Floating Social Media Icons */
    .floating-social {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .floating-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 8px 0 0 8px;
        box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
    }

    .floating-social a:hover {
        width: 55px;
    }

    .fs-facebook {
        background: #3b5998;
    }

    .fs-twitter {
        background: #1da1f2;
    }

    .fs-instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .fs-whatsapp {
        background: #25d366;
    }

    /* Mobile Responsive Fixes */
    @media (max-width: 768px) {
        .elpis-angel-img {
            max-width: 100%;
            width: 320px; /* Scale down on mobile */
        }
        .elpis-globe-wrap {
            width: 300px;
            height: 300px;
        }
        #elpisGlobeCanvas {
            width: 300px !important;
            height: 300px !important;
        }
        .modern-hero-wrap {
            overflow: hidden;
            padding: 60px 0;
        }
        body {
            overflow-x: hidden;
        }
    }

