@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Poppins:wght@400;500;600;700;800&family=Great+Vibes&display=swap');

:root {
    /* Color Palette */
    --primary: #0b1c33;
    --primary-rgb: 11, 28, 51;
    --primary-light: #162e4c;
    --accent-orange: #ff8800;
    --accent-orange-hover: #e07700;
    --accent-green: #72C24D;
    --accent-green-hover: #5cb036;
    --accent-green-light: #f1f8e9;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;

    /* Layout Details */
    --max-width: 1200px;
    --header-height: 100px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadow Styles */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-card: none;
    --glass-shadow: none;
}

/* CSS Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: transparent;
    transition: var(--transition);
}

/* Utility Layouts */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    /* Removed padding: 80px 0; to prevent double padding with sections */
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 5px;
    margin-bottom: 25px;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    gap: 8px;
}

.btn-orange {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    background-color: #F89A1C;
    color: #FFFFFF;
}

.btn-orange:hover {
    background-color: #e08316;
    transform: translateY(-2px);
}

.btn-green {
    background-color: var(--accent-green);
    color: #ffffff;
}

.btn-green:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
}

.btn-outline-white {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 1px solid var(--text-muted);
    color: var(--primary);
    background-color: var(--bg-white);
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #ffffff;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background-color: var(--primary);
    box-shadow: var(--shadow-md);
    height: 80px;
}

.header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .site-logo {
    height: 60px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: #8BC53F;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8BC53F;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    font-family: 'Poppins', sans-serif;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.header-phone svg {
    fill: #ffffff;
    width: 18px;
    height: 18px;
    background: #25d366;
    border-radius: 50%;
    padding: 3px;
}

/* Hamburger Mobile Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 95vh;
    min-height: 650px;
    background: linear-gradient(to bottom, rgba(11, 28, 51, 0.45), rgba(11, 28, 51, 0.25)), url('https://images.unsplash.com/photo-1534008897995-27a23e859048?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding-top: var(--header-height);
}

.hero-content {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    z-index: 2;
    padding-bottom: 50px;
}

.hero-subheadline {
    font-family: 'Great Vibes', cursive;
    font-size: 54px;
    font-weight: 400;
    color: #79C53D;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 74px;
    font-weight: 700;
    line-height: 82px;
    max-width: 850px;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #E6E6E6;
    max-width: 650px;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 35px;
}

.hero-feature-item {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-feature-item svg {
    width: 18px;
    height: 18px;
    fill: #72C24D;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
}

/* Floating Search Widget */
.search-widget-wrapper {
    display: none;
}

.search-widget {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.search-select-wrapper {
    position: relative;
    width: 100%;
}

.search-select-wrapper::after {
    content: '▾';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-55%);
    color: var(--text-muted);
    font-size: 0.85rem;
    pointer-events: none;
}

.search-select {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    background: transparent;
    cursor: pointer;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 20px;
    border: none;
    outline: none;
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    padding-right: 15px;
}

.search-field:last-of-type {
    border-right: none;
    padding-right: 0;
}

.search-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #8D8D8D;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-btn {
    background-color: #F89A1C;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    background-color: #e08316;
    transform: scale(1.02);
}

/* About Us Section */
.about {
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.about-video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.about-video-image {
    width: 100%;
    height: 450px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.about-video-card:hover .about-video-image {
    transform: scale(1.03);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3;
}

.video-play-btn svg {
    fill: var(--accent-green);
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.about-video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--accent-green);
}

.about-video-card:hover .video-play-btn svg {
    fill: #ffffff;
}

.about-content-right {
    display: flex;
    flex-direction: column;
}

.about-content-right .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    color: #72C24D !important;
    text-transform: uppercase;
}

.about-content-right .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 48px !important;
    color: #0E1B35 !important;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6D6D6D;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    margin-bottom: 35px;
}

.about-feature-item {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px !important;
    color: #3C3C3C !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-item svg {
    fill: #72C24D !important;
    width: 22px;
    height: 22px;
}

.about-content-right .btn-green {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px !important;
    background-color: #72C24D !important;
    color: #FFFFFF !important;
    padding: 12px 28px;
    border-radius: 8px;
    transition: var(--transition);
}

.about-content-right .btn-green:hover {
    background-color: #5AAE34 !important;
    transform: translateY(-2px);
}

/* Photo Gallery Mosaic Layout */
.gallery {
    background-color: var(--bg-white);
    padding: 60px 0;
}

.mosaic-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    margin-top: 30px;
}

.mosaic-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mosaic-large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.mosaic-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.mosaic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mosaic-item:hover .mosaic-img {
    transform: scale(1.08);
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 28, 51, 0.9) 0%, rgba(11, 28, 51, 0.3) 50%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 20px;
    transition: opacity 0.4s ease;
}

.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
}

.mosaic-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.mosaic-icon svg {
    width: 20px;
    height: 20px;
}

.mosaic-item:hover .mosaic-icon {
    transform: translateY(0);
    background: var(--accent-orange);
}

.mosaic-title {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.1s;
}

.mosaic-large .mosaic-title {
    font-size: 1.6rem;
}

.mosaic-item:hover .mosaic-title {
    transform: translateY(0);
}

/* Holiday Packages Section */
.packages {
    background-color: var(--bg-light);
    padding: 40px 0;
}

.packages-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(114, 194, 77, 0.45);
}

.package-image-wrapper {
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    height: 220px;
    margin-bottom: -1px;
    z-index: 2;
    background-color: var(--bg-white);
}

.package-image {
    width: 100%;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    object-fit: cover;
}



/* Card Badges */
.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 6px;
    color: #ffffff;
    letter-spacing: 0.5px;
    z-index: 10;
}

.package-badge.badge-orange {
    background-color: #F89A1C;
}

.package-badge.badge-green {
    background-color: var(--accent-green);
}

.package-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 10;
}

.package-duration.badge-green {
    background-color: var(--accent-green);
    color: #ffffff;
}

.package-duration.badge-outline {
    background-color: #ffffff;
    color: var(--accent-green);
    border: 1.5px solid var(--accent-green);
}

/* Wavy SVG Border */
.package-wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 52px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.package-wave-container svg {
    width: calc(100% + 2px);
    margin-left: -1px;
    height: 100%;
    display: block;
    transform: translateY(2px) scale(1.02);
    transform-origin: bottom center;
}

.package-wave-container svg path:last-child {
    transform: translateY(1.5px);
}

/* Package Details Area */
.package-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.package-cursive-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    font-weight: 400;
    color: var(--accent-green);
    line-height: 1.1;
    margin-bottom: 4px;
    display: block;
}

.package-bold-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 8px;
}

/* Package Rating Row */
.package-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.package-rating-stars {
    color: #ff9c1a;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.package-rating-value {
    font-weight: 700;
    color: var(--text-dark);
}

.package-rating-count {
    color: var(--text-muted);
    font-weight: 400;
}

/* Description text under title */
.package-short-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 15px;
}

/* Horizontal Features Strip */
.package-features-strip {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none;
}

.package-features-strip .feature-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-dark);
}

.package-features-strip .feature-item svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-green);
    flex-shrink: 0;
}

/* Price Box */
.package-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 5px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.price-value {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-subtext {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Buttons at Bottom */
.package-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-outline-green {
    background-color: transparent;
    border: 1.5px solid var(--accent-green);
    color: var(--accent-green) !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline-green:hover {
    background-color: var(--accent-green-light);
}

.btn-solid-green {
    background-color: var(--accent-green);
    border: 1.5px solid var(--accent-green);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
}

.btn-solid-green:hover {
    background-color: var(--accent-green-hover);
    border-color: var(--accent-green-hover);
}

.package-view-details:hover {
    color: var(--accent-green-hover);
}

/* Why Choose Us Section */
.why-choose {
    background-color: #071324;
    color: #ffffff;
    padding: 35px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: center;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 20px;
}

.why-item.clone {
    display: none;
}

.why-item:first-of-type {
    border-left: none;
    padding-left: 0;
}

.why-icon-box {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon-svg {
    width: 36px;
    height: 36px;
    stroke: var(--accent-green);
    fill: none;
}

.why-text-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #ffffff;
}

.why-text-box p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.35;
    margin: 0;
}

/* Popular Destinations Section (Magazine Masonry Layout) */
.destinations {
    background-color: var(--bg-white);
    padding: 60px 0;
}

.destinations-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    margin-top: 30px;
}

.dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dest-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.dest-full {
    grid-column: 1 / -1;
}

.dest-half {
    grid-column: span 2;
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dest-card:hover .dest-img {
    transform: scale(1.05);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 28, 51, 0.9) 0%, rgba(11, 28, 51, 0.4) 40%, transparent 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.dest-badge {
    background-color: var(--accent-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.dest-name {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dest-featured .dest-name {
    font-size: 2.2rem;
}

.dest-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 80%;
    line-height: 1.4;
    display: none;
}

.dest-featured .dest-desc {
    display: block;
}

.btn-explore {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.btn-explore svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dest-card:hover .btn-explore {
    opacity: 1;
    transform: translateY(0);
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.dest-card:hover .btn-explore svg {
    transform: translateX(4px);
}

/* Top Activities Section (Flexbox Accordion) */
.activities {
    background-color: var(--bg-light);
    padding: 40px 0;
}

.activities-accordion {
    display: flex;
    height: 450px;
    gap: 15px;
    margin-top: 30px;
}

.accordion-panel {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-panel:hover {
    flex: 3;
}

.accordion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: filter 0.4s ease;
}

.accordion-panel:not(:hover) .accordion-img {
    filter: grayscale(40%) brightness(0.7);
}

.accordion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 28, 51, 0.95) 0%, rgba(11, 28, 51, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 20px;
}

.accordion-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.accordion-icon svg {
    width: 24px;
    height: 24px;
}

.accordion-panel:hover .accordion-icon {
    background: var(--accent-orange);
    transform: scale(1.1);
}

.accordion-title {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}

.accordion-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    pointer-events: none;
    max-height: 0;
}

.accordion-panel:hover .accordion-content {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
    pointer-events: auto;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    white-space: normal;
    min-width: 200px;
}

.btn-book-activity {
    display: inline-block;
    padding: 8px 24px;
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Luxury Stays Section */
.stays {
    background-color: var(--bg-white);
    position: relative;
}

.stays-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.stays-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    transition: var(--transition);
}

.stay-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.stay-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stay-image-wrapper {
    height: 200px;
    position: relative;
}

.stay-image {
    width: 100%;
    height: 100%;
}

.stay-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.stay-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.stay-stars svg {
    width: 14px;
    height: 14px;
    fill: #ffcc00;
}

.stay-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stay-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 15px;
}

.stay-location svg {
    width: 12px;
    height: 12px;
    fill: var(--text-muted);
}

.stay-amenities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
}

.amenity-item svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
}

.stay-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.stay-price-box {
    display: flex;
    flex-direction: column;
}

.stay-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.stay-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Stay Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 10;
    border: 2px solid var(--accent-green);
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--accent-green);
}

.slider-arrow:hover svg {
    fill: var(--white);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-green);
    transition: var(--transition);
}

.arrow-left {
    left: -20px;
}

.arrow-right {
    right: -20px;
}

/* Testimonials Section */
.testimonials {
    background: var(--primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Make header text visible on dark background */
.testimonials .section-title {
    color: #ffffff;
}

.testimonials .section-subtitle {
    color: var(--accent-orange);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 136, 0, 0.12), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(114, 194, 77, 0.08), transparent 40%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.quote-icon {
    width: 120px;
    height: 120px;
    fill: #ffffff;
    opacity: 0.03;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: -1;
    transition: var(--transition);
}

.testimonial-card:hover .quote-icon {
    opacity: 0.08;
    fill: var(--accent-orange);
    transform: scale(1.1) rotate(5deg);
}

.stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 35px;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
}

.testimonial-author h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.testimonial-author span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Bar Section */
.stats-bar {
    padding: 40px 0;
    color: white;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-bar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* How It Works Section */
.how-works {
    background-color: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
}

/* Curved Flight Path */
.flight-path-curve {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 1;
    pointer-events: none;
}

.flight-path-curve svg.curve-line {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.flight-plane {
    position: absolute;
    top: 90%;
    left: 50%;
    width: 32px;
    height: 32px;
    fill: var(--accent-orange);
    transform: translate(-50%, -50%) rotate(90deg);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
    animation: flightFloat 3s ease-in-out infinite;
}

@keyframes flightFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    50% {
        transform: translate(-50%, -80%) rotate(90deg);
    }
}

.step-card {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover .step-icon-wrapper {
    transform: translateY(-10px);
}

.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 2px dashed var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.step-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--accent-green);
    transition: var(--transition);
}

.step-card:hover .step-icon svg {
    stroke: white;
}

.step-number {
    position: absolute;
    top: 0;
    right: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid var(--bg-white);
    box-shadow: 0 4px 10px rgba(239, 118, 39, 0.3);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 220px;
    line-height: 1.6;
}

/* Ready to Explore CTA Banner */
.cta-banner {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary);
    overflow: hidden;
    color: white;
}

/* The Background Image with Gradient Mask */
.cta-banner-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?q=80&w=1200&auto=format&fit=crop') no-repeat center center/cover;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
    mask-image: linear-gradient(to right, transparent 0%, black 40%);
}

.cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.cta-content {
    max-width: 600px;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-title .highlight {
    color: var(--accent-orange);
    display: block;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
    border-left: 3px solid var(--accent-green);
    padding-left: 20px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-or {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 5px;
}

.cta-phone {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    transition: var(--transition);
}

.cta-phone:hover {
    color: var(--accent-orange);
}

.phone-icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    transition: var(--transition);
}

.cta-phone:hover .phone-icon-circle {
    background: var(--accent-orange);
    color: white;
}

.cta-pulse-btn {
    padding: 16px 45px;
    font-size: 1.1rem;
    box-shadow: 0 0 0 0 rgba(239, 118, 39, 0.7);
    animation: ctaPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes ctaPulse {
    to {
        box-shadow: 0 0 0 25px rgba(239, 118, 39, 0);
    }
}

/* Footer Section */
footer {
    background-color: var(--primary);
    color: #ffffff;
    padding: 70px 0 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-brand p {
    opacity: 0.8;
    margin-top: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

.social-icon svg {
    fill: #ffffff;
    width: 14px;
    height: 14px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background-color: var(--accent-orange);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.footer-contact-item svg {
    fill: var(--accent-orange);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-text {
    opacity: 0.8;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.7;
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}

/* Modals Overlay Base */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 28, 51, 0.75);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background-color: #fee2e2;
}

.modal-close-btn svg {
    fill: var(--text-dark);
    width: 14px;
    height: 14px;
}

.modal-close-btn:hover svg {
    fill: #ef4444;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Modals Forms */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: var(--bg-light);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-green);
    background-color: var(--bg-white);
    outline: none;
}

.form-textarea {
    resize: none;
    height: 80px;
}

/* Package Details Modal specifics */
.package-modal-box {
    max-width: 650px;
}

.package-modal-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.package-modal-img {
    width: 180px;
    height: 120px;
    border-radius: 10px;
    flex-shrink: 0;
}

.package-modal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-modal-itinerary {
    max-height: 200px;
    overflow-y: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 15px 0;
    margin-bottom: 20px;
}

.itinerary-day {
    margin-bottom: 12px;
}

.itinerary-day:last-child {
    margin-bottom: 0;
}

.itinerary-day-num {
    font-weight: 700;
    color: var(--accent-green);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.itinerary-day-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.itinerary-day-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Video Lightbox Modal */
.video-modal-box {
    max-width: 800px;
    padding: 0;
    background-color: #000000;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal-box .modal-close-btn {
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.2);
}

.video-modal-box .modal-close-btn svg {
    fill: #ffffff;
}

.video-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
    display: none !important;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-btn svg {
    fill: #ffffff;
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 250px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-tooltip.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-tooltip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.whatsapp-tooltip-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.whatsapp-tooltip-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

.whatsapp-tooltip-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin-bottom: 8px;
}

.whatsapp-tooltip-btn {
    background-color: #25d366;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    text-align: center;
}

/* Success Toast Notification */
.toast-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background-color: var(--accent-green);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(-100px);
    opacity: 0;
    transition: var(--transition);
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification svg {
    fill: #ffffff;
    width: 20px;
    height: 20px;
}

/* Confetti style effects */
.confetti {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--accent-orange);
    opacity: 0;
    pointer-events: none;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .site-logo {
        height: 60px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .header-actions {
        gap: 12px;
    }

    .header-phone {
        font-size: 13px;
    }

    .header-phone svg {
        width: 16px;
        height: 16px;
    }

    .btn-orange {
        padding: 8px 18px;
        font-size: 13px;
    }

    .stay-card:last-child {
        display: none;
        /* Hide 4th stay in stays carousel to fit tablet */
    }

    .stays-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-item {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 992px) {
    .phone-text {
        display: none;
        /* Hide phone text, show only icon on tablet */
    }

    .site-logo {
        height: 55px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-link {
        font-size: 13px;
    }

    .grid-3,
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .mosaic-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .mosaic-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .mosaic-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .mosaic-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .destinations-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-video-image {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .testimonials-grid,
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-bar-item:nth-child(2)::after {
        display: none;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .search-widget {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .search-field {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-right: 0;
        padding-bottom: 12px;
    }

    .search-field:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px;
        gap: 20px;
        z-index: 1000;
        transition: var(--transition);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .header-actions .btn {
        display: none;
        /* Hide main book now in header on mobile to fit */
    }

    .header-phone {
        display: none;
    }

    .steps-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px 15px !important;
    }

    .flight-path-curve {
        display: none !important;
    }

    .step-card {
        width: 100% !important;
        padding: 0 !important;
    }

    .step-icon-wrapper {
        margin-bottom: 15px !important;
    }

    .step-icon {
        width: 70px !important;
        height: 70px !important;
        border-width: 2px !important;
    }

    .step-icon svg {
        width: 28px !important;
        height: 28px !important;
    }

    .step-number {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.75rem !important;
        border: 2.5px solid var(--bg-white) !important;
        right: -8px !important;
        top: -2px !important;
    }

    .step-title {
        font-size: 0.95rem !important;
        margin-bottom: 6px !important;
    }

    .step-text {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
    }

    .stats-bar-grid .stat-number {
        font-size: 1.3rem !important;
        margin-bottom: 4px !important;
    }

    .stats-bar-grid .stat-title {
        font-size: 0.6rem !important;
        letter-spacing: 0.2px !important;
        line-height: 1.1 !important;
    }

    .stat-bar-item:not(:last-child)::after {
        display: block !important;
        top: 20% !important;
        height: 60% !important;
    }

    .hero {
        height: auto;
        padding: 100px 0 90px 0 !important;
        background: linear-gradient(to bottom, rgba(11, 28, 51, 0.4) 0%, rgba(11, 28, 51, 0.95) 100%), url('https://images.unsplash.com/photo-1534008897995-27a23e859048?q=80&w=1920&auto=format&fit=crop') no-repeat 60% center/cover !important;
        text-align: center;
    }

    .hero-content {
        padding-bottom: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subheadline {
        font-size: 2.2rem !important;
        margin-bottom: 6px !important;
        text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    }

    .hero-headline {
        font-size: 2.15rem !important;
        line-height: 1.25 !important;
        margin-bottom: 15px !important;
        text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    }

    .hero-text {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
        margin-bottom: 25px !important;
        color: rgba(255, 255, 255, 0.95) !important;
        text-shadow: 0 1px 5px rgba(0,0,0,0.6);
    }

    .hero-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px 15px !important;
        margin-bottom: 30px !important;
        max-width: 320px;
        width: 100%;
    }

    .hero-feature-item {
        font-size: 0.8rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        display: flex;
        align-items: center;
        gap: 6px !important;
        justify-content: flex-start !important;
    }

    .hero-feature-item svg {
        width: 15px !important;
        height: 15px !important;
        fill: var(--accent-green) !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 300px;
    }

    .hero-buttons .btn {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }

    .cta-banner {
        padding: 50px 0;
    }

    footer {
        padding: 45px 0 20px 0 !important;
    }

    .footer-grid {
        margin-bottom: 25px !important;
        gap: 20px !important;
    }

    .cta-banner-bg {
        width: 100%;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
        opacity: 0.2;
    }

    .cta-content {
        width: 100%;
        text-align: center;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        border-left: none;
        padding-left: 0;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cta-contact-wrapper {
        align-items: center;
    }

    /* Adjust Destinations Masonry for Tablets/Mobile */
    .destinations-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 110px;
        gap: 10px;
    }

    .dest-card {
        border-radius: 8px;
    }

    .dest-featured {
        grid-column: span 1;
        grid-row: span 2;
    }

    .dest-half {
        grid-column: span 1;
        grid-row: span 2;
    }

    .dest-overlay {
        padding: 15px;
    }

    .dest-name {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .dest-featured .dest-name {
        font-size: 1.2rem;
    }

    .dest-desc {
        font-size: 0.7rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.3;
    }

    .dest-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        margin-bottom: 6px;
    }

    /* Adjust Gallery Mosaic for Mobile */
    .mosaic-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 80px;
        gap: 4px;
    }

    .mosaic-item {
        border-radius: 6px !important;
    }

    .mosaic-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .mosaic-tall {
        grid-column: span 1;
        grid-row: span 2;
    }

    .mosaic-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Adjust Activities Accordion for Tablets/Mobile */
    .activities-accordion {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        height: 380px;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        /* Space for scrollbar */
        -webkit-overflow-scrolling: touch;
    }

    .activities-accordion::-webkit-scrollbar {
        height: 6px;
    }

    .activities-accordion::-webkit-scrollbar-thumb {
        background: var(--accent-orange);
        border-radius: 10px;
    }

    .accordion-panel {
        flex: 0 0 260px;
        height: 100%;
        scroll-snap-align: start;
        margin-bottom: 0;
        border-radius: 10px !important;
    }

    .accordion-panel:hover {
        flex: 0 0 260px;
    }

    .accordion-panel:not(:hover) .accordion-img {
        filter: none;
    }

    .accordion-overlay {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 20px;
        background: linear-gradient(to top, rgba(11, 28, 51, 0.95) 0%, rgba(11, 28, 51, 0.2) 100%);
    }

    .accordion-icon {
        margin-bottom: 15px;
        width: 48px;
        height: 48px;
    }

    .accordion-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .accordion-content {
        display: block !important;
        opacity: 1;
        max-height: none;
        transform: none;
    }

    .accordion-content p {
        display: none;
    }

    /* Horizontal scrolling for packages and stays on mobile */
    .package-grid,
    .stays-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 5px 25px 5px;
        -webkit-overflow-scrolling: touch;
        margin-left: -5%;
        margin-right: -5%;
        padding-left: 5%;
        padding-right: 5%;
        scroll-padding-left: 5%;
    }

    .package-grid::-webkit-scrollbar,
    .stays-grid::-webkit-scrollbar {
        height: 5px;
    }

    .package-grid::-webkit-scrollbar-thumb,
    .stays-grid::-webkit-scrollbar-thumb {
        background: rgba(114, 194, 77, 0.4);
        border-radius: 10px;
    }

    .package-card,
    .stay-card {
        flex: 0 0 370px;
        scroll-snap-align: start;
    }

    /* Why Choose Us infinite scroll carousel */
    .why-choose {
        overflow: hidden;
        width: 100%;
        padding: 30px 0;
    }

    .why-grid {
        display: flex;
        width: max-content;
        animation: whyTicker 25s linear infinite;
        grid-template-columns: none;
        gap: 0;
    }

    .why-grid:hover {
        animation-play-state: paused;
    }

    .why-item {
        flex: 0 0 280px;
        padding: 0 20px;
        border-left: none !important;
        box-sizing: border-box;
    }

    .why-item.clone {
        display: flex;
    }

    @keyframes whyTicker {
        0% {
            transform: translate3d(0, 0, 0);
        }

        100% {
            transform: translate3d(-50%, 0, 0);
        }
    }
}

@media (max-width: 576px) {

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-6 {
        grid-template-columns: 1fr;
    }

    .packages-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }



    .about-features {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        display: none;
    }
}


.package-short-desc {
    display: none !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom > div {
        flex: auto !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

/* Hide all price boxes globally per user request */
.package-price-box,
.pkg-price-box {
    display: none !important;
}
