/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.loader-spinner {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #4ECDC4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

.loader-logo {
    font-size: 4rem;
    color: #4ECDC4;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.page-loader h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.page-loader p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Loading Bar */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
    z-index: 10000;
    width: 0%;
    transition: width 0.3s ease;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 9998;
    width: 0%;
    transition: width 0.1s ease;
}

/* Animated Background Elements */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,107,107,0.1), rgba(78,205,196,0.1));
    animation: move 25s infinite linear;
}

@keyframes move {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(100vw, 100vh) rotate(360deg);
    }
}

/* Cursor Trail Effect */

.cursor-trail,
.cursor-ring,
.hover-effect {
    will-change: transform;
    backface-visibility: hidden;
}

.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,107,0.8) 0%, rgba(78,205,196,0.4) 70%, transparent 100%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255,107,107,0.5),
                0 0 40px rgba(78,205,196,0.3),
                0 0 60px rgba(102,126,234,0.2);
    filter: blur(0.5px);
}



.trail-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    pointer-events: none;
    z-index: 9998;
    opacity: 0.7;
    animation: trailFade 1s ease-out forwards;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,107,107,0.5);
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

@keyframes trailFade {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}

@keyframes cursorPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
}

.hover-effect {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,107,0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9996;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

@media (hover: none), (max-width: 768px) {
    .cursor-trail,
    .cursor-ring,
    .hover-effect,
    .trail-dot {
        display: none !important;
    }
}


/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.scroll-top-btn.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* Floating Particles (Hero Section में) */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(0) translateX(20px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(20px) translateX(10px) rotate(270deg);
        opacity: 0.5;
    }
}



        /* Unique CSS classes for header components 
        .dgy-announcement-bar {
            background-color: #1a365d;
            color: white;
            padding: 4px 0;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            animation: slideDown 0.5s ease-out;
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .dgy-announcement-content {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-left: 20px;
            font-size: 12px;
        }
        
        .dgy-social-icons {
            display: flex;
            gap: 12px;
            margin-right: 20px;
        }
        
        .dgy-social-icons a {
            color: white;
            transition: all 0.3s ease;
            position: relative;
            font-size: 13px;
        }
        
        .dgy-social-icons a:hover {
            color: #f6ad55;
            transform: translateY(-2px);
        }
        
        .dgy-social-icons a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: #f6ad55;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .dgy-social-icons a:hover::after {
            width: 100%;
        }*/
        
.dgy-main-header {
    background: #21252973;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 10px;
    z-index: 1000;
    animation: fadeIn 0.6s ease-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .dgy-header-container {
            display: flex;
            background: #21252973;
            justify-content: space-between;
            align-items: center;
            padding: 5px 2%;
            max-width: 100%;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }
        
        .dgy-logo-section {
            display: flex;
            align-items: center;
            min-width: 200px;
            flex-shrink: 0;
            animation: logoPulse 2s infinite ease-in-out;
        }
        
        @keyframes logoPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
        }
        
        .dgy-logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 8px;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }
        
        .dgy-logo-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(246, 173, 85, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
        }
        
        .dgy-logo-link:hover::before {
            width: 150px;
            height: 150px;
        }
        
        .dgy-brand-logo {
            height: 45px;
            width: auto;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
        }
        
        .dgy-logo-link:hover .dgy-brand-logo {
            transform: rotate(5deg) scale(1.05);
        }
        
        .dgy-brand-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: transparent;
            border-radius: 20%;
        }
        
        .dgy-brand-title-container {
            display: flex;
            flex-wrap: nowrap;
            line-height: 1;
            margin: 0;
            align-items: center;
            position: relative;
        }
        
        .dgy-brand-title-container::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #1587b4, #f6ad55);
            transition: width 0.5s ease;
        }
        
        .dgy-logo-link:hover .dgy-brand-title-container::after {
            width: 100%;
        }
        
        .dgy-brand-title {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 700;
            margin: 0;
            line-height: 1;
            color: #1a365d;
            white-space: nowrap;
        }
        
        .dgy-dd-part {
            color: #1587b4;
            font-size: 22px;
            font-weight: 900;
            text-align: center;
            text-shadow: 0 2px 4px rgba(21, 135, 180, 0.2);
        }
        
        .dgy-gy-part {
            color: #f6ad55;
            font-size: 22px;
            font-weight: 900;
            text-align: center;
            text-shadow: 0 2px 4px rgba(246, 173, 85, 0.2);
        }
        
        .dgy-brand-tagline {
            font-family: 'Poppins', sans-serif;
            font-size: 10px;
            color: #ffff;
            margin: 3px 0 0;
            font-style: italic;
            white-space: nowrap;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .dgy-logo-link:hover .dgy-brand-tagline {
            opacity: 1;
            transform: translateX(5px);
        }
        
        .dgy-main-nav {
            display: flex;
            align-items: center;
            white-space: nowrap;
            flex-grow: 1;
            justify-content: center;
            margin: 0 10px;
        }
        
        .dgy-nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 6px;
            flex-wrap: nowrap;
            justify-content: center;
        }
        
        .dgy-nav-item {
            position: relative;
            flex-shrink: 0;
        }
        
        .dgy-nav-link {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 10px;
            text-decoration: none;
            color: white;
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: 13px;
            white-space: nowrap;
        }
        
        .dgy-nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(246, 173, 85, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .dgy-nav-link:hover::before {
            left: 100%;
        }
        
        .dgy-nav-link:hover, 
        .dgy-nav-link.dgy-active,
        .dgy-nav-item:hover .dgy-nav-link,
        .dgy-nav-item.dgy-active-parent .dgy-nav-link {
            background-color: rgba(246, 173, 85, 0.1);
            color: #0d6efd;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(246, 173, 85, 0.15);
        }
        
        .dgy-nav-link.dgy-active::after,
        .dgy-nav-item.dgy-active-parent .dgy-nav-link::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 3px;
            background: linear-gradient(90deg, #1587b4, #f6ad55);
            border-radius: 3px;
            animation: underlineSlide 0.3s ease;
        }
        
        @keyframes underlineSlide {
            from {
                width: 0;
            }
            to {
                width: 50%;
            }
        }
        
        .dgy-nav-link i {
            font-size: 12px;
            transition: all 0.3s ease;
        }
        
        .dgy-nav-link:hover i {
            transform: scale(1.2) rotate(10deg);
        }
        
        .dgy-dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 600px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-radius: 12px;
            padding: 15px;
            z-index: 100;
            left: 0;
            top: calc(100% + 1px);
            animation: dropdownFade 0.3s ease;
            border: 1px solid rgba(246, 173, 85, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        @keyframes dropdownFade {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .dgy-dropdown-columns {
            display: flex;
            gap: 20px;
        }
        
        .dgy-continents-column {
            flex: 1;
            border-right: 1px solid rgba(226, 232, 240, 0.5);
            padding-right: 15px;
        }
        
        .dgy-countries-column {
            flex: 2;
            max-height: 350px;
            overflow-y: auto;
            padding-right: 8px;
        }
        
        .dgy-column-title {
            font-weight: 600;
            color: #1a365d;
            margin-bottom: 12px;
            font-size: 14px;
            position: relative;
            padding-bottom: 6px;
        }
        
        .dgy-column-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #1587b4, #f6ad55);
        }
        
        .dgy-dropdown-submenu {
            padding: 6px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 6px;
            padding-left: 8px;
            font-size: 13px;
        }
        
        .dgy-dropdown-submenu:hover {
            background-color: rgba(246, 173, 85, 0.05);
            transform: translateX(5px);
        }
        
        .dgy-dropdown-submenu a {
            color: #4a5568;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            position: relative;
            font-size: 13px;
        }
        
        .dgy-dropdown-submenu a:hover {
            color: #1a365d;
        }
        
        .dgy-dropdown-submenu.dgy-active a {
            color: #1a365d;
            font-weight: 500;
        }
        
        .dgy-dropdown-submenu.dgy-active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 18px;
            background: #f6ad55;
            border-radius: 3px;
        }
        
        .dgy-countries-list {
            display: none;
            flex-direction: column;
            gap: 4px;
        }
        
        .dgy-countries-list.dgy-active {
            display: flex;
            animation: fadeInUp 0.4s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .dgy-countries-list a {
            display: block;
            padding: 6px 10px;
            color: #4a5568;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 6px;
            position: relative;
            overflow: hidden;
            font-size: 12px;
        }
        
        .dgy-countries-list a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 0;
            background: #f6ad55;
            transition: height 0.3s ease;
        }
        
        .dgy-countries-list a:hover {
            background-color: rgba(246, 173, 85, 0.05);
            color: #1a365d;
            transform: translateX(5px);
        }
        
        .dgy-countries-list a:hover::before {
            height: 100%;
        }
        
        .dgy-top-destinations-title {
            color: #f6ad55 !important;
            font-weight: 600 !important;
        }
        
        /* Holiday Packages Custom Dropdown */
        .dgy-holiday-nav {
            position: relative;
        }
        
        .dgy-holiday-dropdown {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 180px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-radius: 12px;
            z-index: 1;
            top: calc(100% + 1px);
            left: 0;
            animation: dropdownFade 0.3s ease;
            border: 1px solid rgba(246, 173, 85, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .dgy-holiday-dropdown a {
            display: block;
            padding: 10px 12px;
            text-decoration: none;
            color: #4a5568;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            font-size: 13px;
        }
        
        .dgy-holiday-dropdown a:hover,
        .dgy-holiday-dropdown a.dgy-active-dropdown-item {
            background-color: rgba(246, 173, 85, 0.05);
            color: #1a365d;
            transform: translateX(5px);
        }
        
        .dgy-holiday-dropdown a.dgy-active-dropdown-item {
            font-weight: 500;
            border-left: 3px solid #f6ad55;
            padding-left: 9px;
        }
        
        .dgy-holiday-nav:hover .dgy-holiday-dropdown {
            display: block;
        }
        
        /* CTA Buttons and Search */
        .dgy-cta-buttons {
            display: flex;
            gap: 6px;
            margin-left: 10px;
            white-space: nowrap;
            align-items: center;
            flex-shrink: 0;
        }
        
        .dgy-btn-custom {
            padding: 8px 12px;
            border-radius: 20px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 4px;
            border: none;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            font-size: 12px;
        }
        
        .dgy-btn-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }
        
        .dgy-btn-custom:hover::before {
            left: 100%;
        }
        
        .dgy-btn-enquiry {
            background: linear-gradient(135deg, #f6ad55, #e69c3f);
            color: white;
            box-shadow: 0 4px 12px rgba(246, 173, 85, 0.3);
        }
        
        .dgy-btn-enquiry:hover {
            background: linear-gradient(135deg, #e69c3f, #d68a2e);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(246, 173, 85, 0.4);
        }
        
        .dgy-btn-call {
            background: linear-gradient(135deg, #4299e1, #3182ce);
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
        }
        
        .dgy-btn-call:hover {
            background: linear-gradient(135deg, #3182ce, #2c5282);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(66, 153, 225, 0.4);
        }
        
        /* Search Icon Styles */
        .dgy-search-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a365d, #2d3748);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 4px 10px rgba(26, 54, 93, 0.2);
            margin-left: 6px;
            flex-shrink: 0;
        }
        
        .dgy-search-icon:hover {
            transform: scale(1.1) rotate(10deg);
            background: linear-gradient(135deg, #f6ad55, #e69c3f);
            box-shadow: 0 6px 15px rgba(246, 173, 85, 0.3);
        }
        
        .dgy-search-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            background: rgba(246, 173, 85, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .dgy-search-icon:hover::after {
            opacity: 1;
        }
        
        /* Search Modal */
.dgy-search-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}
        
       /* Modal Content – CENTER FIXED */
.dgy-search-modal-content {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.35s ease forwards;
    will-change: transform, opacity;
}

/* Smooth CENTER animation */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Close Button */
.dgy-search-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #718096;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dgy-search-modal-close:hover {
    color: #1a365d;
    background-color: rgba(246, 173, 85, 0.1);
    transform: rotate(90deg);
}

    
        
        .dgy-search-modal-title {
            color: #1a365d;
            margin-bottom: 30px;
            font-size: 24px;
            text-align: center;
            font-weight: 600;
        }
        
        .dgy-search-box {
            position: relative;
            margin-bottom: 30px;
        }
        
        .dgy-search-input {
            width: 100%;
            padding: 18px 50px 18px 25px;
            font-size: 16px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            outline: none;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }
        
        .dgy-search-input:focus {
            border-color: #f6ad55;
            box-shadow: 0 0 0 3px rgba(246, 173, 85, 0.2);
            background: white;
        }
        
        .dgy-search-button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #f6ad55, #e69c3f);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .dgy-search-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 15px rgba(246, 173, 85, 0.4);
        }
        
        .dgy-search-suggestions {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
        }
        
        .dgy-search-suggestions h3 {
            color: #1a365d;
            margin-bottom: 15px;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .dgy-search-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .dgy-search-tag {
            padding: 6px 12px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            color: #4a5568;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
        }
        
        .dgy-search-tag:hover {
            background: linear-gradient(135deg, #f6ad55, #e69c3f);
            color: white;
            border-color: #f6ad55;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(246, 173, 85, 0.2);
        }
        
        /* Mobile Menu Toggle - FIXED */
        .dgy-mobile-menu-toggle {
            display: none; /* Initially hidden */
            font-size: 22px;
            cursor: pointer;
            color: #1a365d;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
            margin-left: 10px;
            flex-shrink: 0;
            border: none;
            background: linear-gradient(135deg, #f8f9fa, #e2e8f0);
        }
        
        .dgy-mobile-menu-toggle:hover {
            background: linear-gradient(135deg, #f6ad55, #e69c3f);
            color: white;
            transform: rotate(90deg);
        }
        
        /* Mobile Navigation */
        .dgy-mobile-nav {
            display: none;
            background-color: white;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            animation: slideUp 0.3s ease;
            border-radius: 0 0 20px 20px;
            width: 100%;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 1000;
        }
        
        .dgy-mobile-nav.active {
            display: block;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .dgy-mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .dgy-mobile-nav-list li {
            margin-bottom: 8px;
        }
        
        .dgy-mobile-nav-list a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            text-decoration: none;
            color: #2d3748;
            border-radius: 8px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            font-size: 14px;
        }
        
        .dgy-mobile-nav-list a:hover,
        .dgy-mobile-nav-list a.dgy-active {
            color: #1a365d;
            font-weight: 500;
            background-color: rgba(246, 173, 85, 0.1);
            border-left: 3px solid #f6ad55;
            transform: translateX(5px);
        }
        
        .dgy-mobile-dropdown-content {
            display: none;
            padding-left: 15px;
            margin-top: 5px;
            animation: slideDown 0.3s ease;
        }
        
        .dgy-mobile-dropdown.active .dgy-mobile-dropdown-content {
            display: block;
        }
        
        .dgy-mobile-dropdown-content a.dgy-active {
            color: #1a365d;
            font-weight: 500;
            background-color: rgba(246, 173, 85, 0.05);
        }
        
        .dgy-mobile-enquiry-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #f6ad55, #e69c3f);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
            box-shadow: 0 4px 12px rgba(246, 173, 85, 0.2);
            font-size: 14px;
        }
        
        .dgy-mobile-enquiry-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(246, 173, 85, 0.3);
        }
        
        /* Modal Styles */
        .dgy-enquiry-modal {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            overflow: auto;
            animation: fadeIn 0.3s ease;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        
        .dgy-enquiry-modal-content {
            background: white;
            margin: 5% auto;
            padding: 25px;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            box-sizing: border-box;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            animation: modalSlideIn 0.4s ease;
        }
        
        .dgy-close-modal {
            position: absolute;
            right: 20px;
            top: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #718096;
            transition: all 0.3s ease;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .dgy-close-modal:hover {
            color: #1a365d;
            background-color: rgba(246, 173, 85, 0.1);
            transform: rotate(90deg);
        }
        
        .dgy-form-group {
            margin-bottom: 15px;
        }
        
        .dgy-form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #2d3748;
            font-size: 14px;
        }
        
        .dgy-form-group input,
        .dgy-form-group select,
        .dgy-form-group textarea {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: #f8f9fa;
            font-size: 14px;
        }
        
        .dgy-form-group input:focus,
        .dgy-form-group select:focus,
        .dgy-form-group textarea:focus {
            border-color: #f6ad55;
            box-shadow: 0 0 0 3px rgba(246, 173, 85, 0.2);
            background: white;
            outline: none;
        }
        
        .dgy-btn-submit {
            background: linear-gradient(135deg, #1a365d, #2d3748);
            color: white;
            padding: 12px 16px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            width: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: 14px;
        }
        
        .dgy-btn-submit:hover {
            background: linear-gradient(135deg, #2d3748, #1a365d);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(26, 54, 93, 0.3);
        }
        
        .dgy-btn-submit.loading {
            position: relative;
            pointer-events: none;
        }
        
        .dgy-btn-submit.loading::after {
            content: "";
            position: absolute;
            width: 18px;
            height: 18px;
            top: 50%;
            left: 50%;
            margin: -9px 0 0 -9px;
            border: 3px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: dgy-spin 1s linear infinite;
        }
        
        @keyframes dgy-spin {
            to { transform: rotate(360deg); }
        }
        
        .dgy-form-message {
            padding: 12px;
            margin-top: 15px;
            border-radius: 8px;
            text-align: center;
            animation: fadeIn 0.3s ease;
            font-size: 14px;
        }
        
        .dgy-form-message.success {
            background: linear-gradient(135deg, rgba(56, 161, 105, 0.1), rgba(72, 187, 120, 0.1));
            color: #2f855a;
            border: 1px solid rgba(56, 161, 105, 0.2);
        }
        
        .dgy-form-message.error {
            background: linear-gradient(135deg, rgba(245, 101, 101, 0.1), rgba(229, 62, 62, 0.1));
            color: #c53030;
            border: 1px solid rgba(245, 101, 101, 0.2);
        }
        
        /* Scrollbar styling */
        .dgy-countries-column::-webkit-scrollbar {
            width: 4px;
        }
        
        .dgy-countries-column::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 2px;
        }
        
        .dgy-countries-column::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #1587b4, #f6ad55);
            border-radius: 2px;
        }
        
        .dgy-countries-column::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #f6ad55, #e69c3f);
        }
        
        /* ================= RESPONSIVE STYLES ================= */
        
        /* Desktop dropdown hover effects */
        .dgy-nav-item:hover .dgy-dropdown-content {
            display: block;
            z-index: 99999;
        }
        
        .dgy-nav-item:hover .dgy-holiday-dropdown {
            display: block;
            z-index: 99999;
        }
        
        /* Tablet and Mobile Responsive */
        @media (max-width: 1200px) {
            .dgy-header-container {
                padding: 5px 1%;
            }
            
            .dgy-nav-link {
                padding: 12px 8px;
                font-size: 12px;
            }
            
            .dgy-btn-custom {
                padding: 6px 10px;
                font-size: 11px;
            }
            
            .dgy-search-icon {
                width: 32px;
                height: 32px;
            }
        }
        
        @media (max-width: 1100px) {
            .dgy-brand-title {
                font-size: 16px;
            }
            
            .dgy-dd-part, .dgy-gy-part {
                font-size: 20px;
            }
            
            .dgy-brand-tagline {
                font-size: 9px;
            }
            
            .dgy-brand-logo {
                height: 40px;
            }
        }
        
        @media (max-width: 1024px) {
            .dgy-announcement-content {
                font-size: 11px;
                margin-left: 15px;
            }
            
            .dgy-social-icons {
                gap: 8px;
                margin-right: 15px;
            }
            
            .dgy-social-icons a {
                font-size: 12px;
            }
        }
        
        /* Tablet: Show mobile menu, hide desktop navigation */
        @media (max-width: 992px) {
            .dgy-main-nav, .dgy-cta-buttons {
                display: none;
            }
            
            .dgy-mobile-menu-toggle {
                display: flex; /* Show mobile menu button */
            }
            
            .dgy-dropdown-content {
                min-width: 400px;
                left: -50px;
            }
            
            .dgy-header-container {
                padding: 5px 2%;
                justify-content: space-between;
            }
            
            /* Show mobile navigation when active */
            .dgy-mobile-nav.active {
                display: block;
            }
        }
        
        /* Mobile: Adjust layouts */
        @media (max-width: 768px) {
            .dgy-announcement-bar {
                justify-content: center;
                text-align: center;
                padding: 6px 8px;
            }
            
            .dgy-announcement-content {
                width: 100%;
                justify-content: center;
                margin-bottom: 5px;
                margin-left: 0;
                font-size: 10px;
            }
            
            .dgy-social-icons {
                width: 100%;
                justify-content: center;
                margin-right: 0;
                gap: 10px;
            }
            
            .dgy-brand-title {
                font-size: 14px;
            }
            
            .dgy-dd-part, .dgy-gy-part {
                font-size: 18px;
            }
            
            .dgy-brand-tagline {
                font-size: 8px;
            }
            
            .dgy-brand-logo {
                height: 35px;
            }
            
            .dgy-dropdown-content {
                min-width: 300px;
                left: -80px;
                padding: 12px;
            }
            
            .dgy-dropdown-columns {
                flex-direction: column;
                gap: 12px;
            }
            
            .dgy-continents-column {
                border-right: none;
                border-bottom: 1px solid #e2e8f0;
                padding-right: 0;
                padding-bottom: 12px;
            }
            
            .dgy-search-modal-content {
                padding: 20px;
                top: 15%;
            }
            
            .dgy-search-input {
                padding: 15px 40px 15px 20px;
                font-size: 14px;
            }
            
            .dgy-search-button {
                width: 40px;
                height: 40px;
            }
            
            .dgy-search-modal-title {
                font-size: 20px;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .dgy-brand-logo {
                height: 30px;
            }
            
            .dgy-brand-title {
                font-size: 12px;
            }
            
            .dgy-dd-part, .dgy-gy-part {
                font-size: 16px;
            }
            
            .dgy-brand-tagline {
                font-size: 7px;
            }
            
            .dgy-logo-section {
                min-width: 160px;
            }
            
            .dgy-enquiry-modal-content {
                margin: 10% auto;
                padding: 20px;
            }
            
            .dgy-search-modal-content {
                padding: 15px;
                top: 10%;
            }
            
            .dgy-search-modal-title {
                font-size: 18px;
                margin-bottom: 15px;
            }
            
            .dgy-search-suggestions {
                padding: 15px;
            }
            
            .dgy-search-tag {
                padding: 5px 10px;
                font-size: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .dgy-announcement-content p {
                font-size: 9px;
            }
            
            .dgy-social-icons a {
                font-size: 11px;
            }
            
            .dgy-brand-title-container {
                flex-direction: row;
                align-items: flex-start;
            }
            
            .dgy-brand-tagline {
                display: flex;
            }
        }
        
        @media (max-height: 600px) {
            .dgy-enquiry-modal-content {
                margin: 10px auto;
                max-height: calc(100vh - 20px);
            }
            
            .dgy-search-modal-content {
                top: 5%;
                padding: 15px;
            }
        }