/*AAAAAAAAAAAAAAAAAAAAAAA!!! ROOT VARIABLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
:root {
    --primary: #8DD400;
    --primary-hover: #74B000;
    --secondary: #000000;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --text-dark: #111111;
    --text-light: #666666;
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 16px 50px rgba(0,0,0,0.15);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ROOT VARIABLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL RESET & BASE STARTS !!!AAAAAAAAAAAAAAAAAAA*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    padding-top: 85px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL RESET & BASE ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #000000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-sticky.scrolled {
    background: #000000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    padding: 4px 0;
}

.header-sticky.scrolled .navbar-brand img {
    height: 50px !important;
    transition: height 0.4s ease;
}

.header-sticky .navbar-brand img {
    height: 65px;
    transition: height 0.4s ease;
}

.header-sticky nav.navbar {
    background: transparent !important;
    padding: 8px 0;
}

.header-sticky .nav-link {
    color: #FFFFFF !important;
    font-weight: 500;
    padding: 10px 18px !important;
    transition: color 0.3s ease;
    position: relative;
}

.header-sticky .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #8DD400;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header-sticky .nav-link:hover::after,
.header-sticky .nav-link.active::after {
    transform: scaleX(1);
}

.header-sticky .nav-link:hover,
.header-sticky .nav-link.active {
    color: #8DD400 !important;
}

.navbar-toggler {
    border: none;
    padding: 8px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! BUTTONS STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.btn-primary-custom {
    background: #8DD400;
    color: #FFFFFF;
    padding: 10px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #74B000;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 212, 0, 0.35);
}

.btn-outline-custom {
    background: transparent;
    color: #8DD400;
    border: 2px solid #8DD400;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: #8DD400;
    color: #FFFFFF;
    transform: translateY(-2px);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! BUTTONS ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SECTION HEADINGS STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

section {
    padding: 70px 0;
}

.bg-light-section {
    background: var(--bg-light);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SECTION HEADINGS ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.hero-slider-section {
    padding: 0 !important;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.hero-content h1 .highlight {
    color: #8DD400;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
    color: #fff;
}

.hero-swiper-button-next,
.hero-swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.hero-swiper-button-next:hover,
.hero-swiper-button-prev:hover {
    background: #8DD400;
    color: #fff;
}

.hero-swiper-button-next::after,
.hero-swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! QUICK NAV STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.quick-nav-section {
    padding: 30px 0 20px;
    background: #fff;
}

.quick-nav-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.quick-nav-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    background: #fff;
    border: 2px solid rgba(141, 212, 0, 0.15);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.quick-nav-box:hover {
    border-color: #8DD400;
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(141, 212, 0, 0.18);
}

.quick-nav-box i {
    font-size: 2rem;
    color: #8DD400;
    margin-bottom: 8px;
}

.quick-nav-box span {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! QUICK NAV ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! DEAL CARDS STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.deal-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.deal-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
}

.deal-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.deal-card-content h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.deal-card-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.btn-deal {
    display: inline-block;
    background: #8DD400;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-deal:hover {
    background: #74B000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 212, 0, 0.4);
    color: #fff !important;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! DEAL CARDS ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! UMRUH DURATION - PREMIUM STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.ud-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}

.ud-timeline-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    padding: 10px 0;
}

.ud-timeline-premium::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: linear-gradient(to right, #e0e0e0, #8DD400 50%, #e0e0e0);
    border-radius: 4px;
    z-index: 0;
}

.ud-tl-point-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.ud-tl-dot-premium {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.ud-tl-point-premium:hover .ud-tl-dot-premium,
.ud-tl-point-premium.active .ud-tl-dot-premium {
    background: #8DD400;
    color: #fff;
    border-color: #8DD400;
    transform: scale(1.2);
    box-shadow: 0 6px 25px rgba(141, 212, 0, 0.35);
}

.ud-tl-point-premium.featured .ud-tl-dot-premium {
    width: 56px;
    height: 56px;
    font-size: 0.9rem;
    background: #8DD400;
    color: #fff;
    border-color: #8DD400;
    box-shadow: 0 6px 25px rgba(141, 212, 0, 0.35);
}

.ud-tl-point-premium.featured .ud-tl-label-premium {
    color: #8DD400;
    font-weight: 700;
}

.ud-tl-label-premium {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.ud-tl-point-premium:hover .ud-tl-label-premium {
    color: #8DD400;
}

.ud-card-premium {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    background: #fff;
}

.ud-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.ud-card-premium .card-img-top {
    height: 200px;
    object-fit: cover;
}

.ud-card-premium .card-body {
    padding: 24px 22px;
}

.ud-card-premium .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ud-card-premium .card-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.ud-card-premium .ud-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.ud-badge-gold {
    background: linear-gradient(135deg, #f5d97e, #e8c84a);
    color: #7a6200;
}

.ud-badge-green {
    background: linear-gradient(135deg, #8DD400, #74B000);
    color: #fff;
}

.ud-badge-blue {
    background: linear-gradient(135deg, #5b8def, #3a6fd8);
    color: #fff;
}

.ud-badge-purple {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
}

.ud-card-premium .ud-features {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
}

.ud-card-premium .ud-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 3px 0;
}

.ud-card-premium .ud-features li i {
    color: #8DD400;
    font-size: 0.7rem;
}

.ud-card-premium.featured-card {
    border: 2px solid #8DD400;
    position: relative;
    background: #fff;
}

.ud-card-premium.featured-card::before {
    content: '★ BEST VALUE';
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #8DD400, #74B000);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! UMRUH DURATION - PREMIUM ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PACKING STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.packing-container {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}

.packing-left {
    flex: 0 0 55%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.packing-right {
    flex: 0 0 45%;
    position: relative;
    min-height: 320px;
}

.packing-feature {
    text-align: center;
    padding: 16px 12px;
    background: #f8f9fa;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.packing-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(141, 212, 0, 0.1);
    border-color: rgba(141, 212, 0, 0.2);
}

.packing-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #8DD400;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: #fff;
    font-size: 1rem;
}

.packing-feature h5 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.packing-feature p {
    font-size: 0.65rem;
    color: #999;
    margin: 0;
}

.packing-collage {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    padding: 8px;
}

.packing-collage-item {
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.packing-collage-item:hover {
    transform: scale(1.03);
}

.packing-collage-item:first-child {
    grid-row: 1 / 3;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PACKING ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SEASONAL STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.seasonal-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.seasonal-tile {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.seasonal-tile:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.seasonal-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.seasonal-tile:hover .seasonal-tile-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.seasonal-tile-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    width: 100%;
}

.seasonal-tile h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.seasonal-tile-hero h3 {
    font-size: 1.7rem;
}

.seasonal-tile p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.seasonal-tile-hero {
    grid-row: 1 / 3;
    min-height: 520px;
}

.seasonal-tile-link {
    color: #8DD400;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
}

.seasonal-tile-link:hover {
    color: #8DD400;
    text-decoration: underline;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SEASONAL ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! APP SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.app-hero-banner {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5d9 100%);
    display: flex;
    align-items: stretch;
    box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}

.app-hero-left {
    flex: 0 0 50%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-hero-right {
    flex: 0 0 50%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.app-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.app-features-list li i {
    color: #8DD400;
    font-size: 1rem;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    color: #fff !important;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! APP SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT & TRUST STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.at-container {
    display: flex;
    align-items: stretch;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.at-left {
    flex: 0 0 38%;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.at-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.at-right {
    flex: 0 0 62%;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.at-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.at-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(141, 212, 0, 0.08);
    border-color: rgba(141, 212, 0, 0.15);
}

.at-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #8DD400;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.at-feature-text h6 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px;
}

.at-feature-text p {
    font-size: 0.72rem;
    color: #888;
    margin: 0;
}

.at-stat-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.at-stat-overlay h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #8DD400;
    margin: 0;
    line-height: 1;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT & TRUST ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! DESTINATIONS STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
}

.dest-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.dest-card-content h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dest-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! DESTINATIONS ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FAQ STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.faq-section {
    background: var(--bg-light);
    padding: 70px 0;
}

.faq-section .accordion-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.faq-section .accordion-button {
    background: #fff;
    color: var(--text-dark);
    font-weight: 600;
    padding: 20px 24px;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #fff;
    background: #8DD400;
    box-shadow: 0 4px 10px rgba(141, 212, 0, 0.25);
}

.faq-section .accordion-button:not(.collapsed) span {
    color: #fff;
}

.faq-section .accordion-button span {
    color: #8DD400;
    font-weight: 700;
    margin-right: 12px;
}

.faq-section .accordion-body {
    padding: 20px 24px;
    color: var(--text-light);
    line-height: 1.7;
    border-top: 1px solid #f0f0f0;
}

.faq-section .accordion-button::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #8DD400;
    transition: transform 0.3s ease;
    background-image: none !important;
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #fff;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FAQ ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STARTS !!!AAAAAAAAAAAAAAAAAAA*/
footer {
    background: #000000;
    color: #fff;
    padding: 60px 0 30px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

footer a:hover {
    color: #8DD400;
}

footer h5,
footer h6 {
    color: #8DD400;
    font-weight: 700;
    margin-bottom: 18px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.footer-social a:hover {
    background: #8DD400;
    color: #000;
    transform: translateY(-3px);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 30px 0 20px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FAB BUTTONS STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.fab-container {
    position: fixed;
    z-index: 1050;
    right: 24px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.fab-container a,
.fab-container button {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.fab-container a:hover,
.fab-container button:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background: #25D366;
}

.fab-whatsapp:hover {
    background: #1DA851;
}

.fab-chatbot-btn {
    background: #8DD400;
}

.fab-chatbot-btn:hover {
    background: #74B000;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FAB BUTTONS ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! BACK TO TOP STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.back-top {
    position: fixed;
    bottom: 30px;
    left: 24px;
    z-index: 99;
    width: 48px;
    height: 48px;
    background: #8DD400;
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(141, 212, 0, 0.3);
    cursor: pointer;
    border: none;
}

.back-top:hover {
    background: #74B000;
    transform: translateY(-3px);
    color: #fff;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! BACK TO TOP ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! UTILITY STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.gold-text {
    color: #8DD400;
}
.text-dark-custom {
    color: var(--text-dark);
}
.text-light-custom {
    color: var(--text-light);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! UTILITY ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 768px) {
    .hero-slide {
        height: 450px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .ud-timeline-premium {
        overflow-x: auto;
        gap: 0;
        padding: 10px 0;
        justify-content: flex-start;
    }
    .ud-timeline-premium::before {
        display: none;
    }
    .ud-tl-point-premium {
        flex: 0 0 auto;
        padding: 0 10px;
    }
    .ud-wrapper {
        padding: 30px 15px;
    }
    .packing-container {
        flex-direction: column;
    }
    .packing-left {
        flex: none;
        padding: 30px 24px;
    }
    .packing-right {
        flex: none;
        min-height: 240px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #000;
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        max-height: 80vh;
        overflow-y: auto;
    }
    .header-sticky .nav-link {
        padding: 10px 0 !important;
    }
    .header-sticky .nav-link::after {
        display: none;
    }
    .header-sticky .nav-link:hover {
        color: #8DD400 !important;
    }
    .seasonal-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .seasonal-tile-hero {
        grid-row: auto;
        grid-column: 1 / 3;
        min-height: 340px;
    }
    .app-hero-banner {
        flex-direction: column;
    }
    .app-hero-left {
        flex: none;
        padding: 30px 24px;
    }
    .app-hero-right {
        flex: none;
        min-height: 220px;
    }
    .at-container {
        flex-direction: column;
    }
    .at-left {
        flex: none;
        min-height: 240px;
    }
    .at-right {
        flex: none;
        padding: 30px 24px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 350px;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
    body {
        padding-top: 70px;
    }
    .quick-nav-box {
        width: 80px;
        height: 80px;
    }
    .quick-nav-box i {
        font-size: 1.4rem;
    }
    .quick-nav-box span {
        font-size: 0.55rem;
    }
    .quick-nav-row {
        gap: 10px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    section {
        padding: 50px 0;
    }
    .ud-wrapper {
        padding: 20px 12px;
    }
    .ud-card-premium .card-img-top {
        height: 160px;
    }
    .seasonal-grid {
        grid-template-columns: 1fr;
    }
    .seasonal-tile-hero {
        grid-column: auto;
        min-height: 280px;
    }
    .seasonal-tile {
        min-height: 200px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/




/* ABOUT HERO - FULL SCREEN NO GAP */
.about-hero-section {
    height: calc(100vh - 70px);
    min-height: 400px;
    background-image: url('img/bb1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 70px;
    background-color: #0a1a2b;
    padding: 0;
    display: block;
}

.about-hero-section .overlay-blur {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.about-hero-section .hero-content-center {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

/* REMOVE ANY WHITE SPACE */
body {
    margin: 0;
    padding: 0;
}

header {
    margin-bottom: 0;
}

section {
    margin: 0;
    padding: 0;
}