@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@400;500;600&family=Caveat:wght@700&display=swap');

:root {
    /* Color Palette */
    --primary: #FFDE59;
    --primary-dark: #e6c850;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --bg-dark: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: var(--text-white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

h2,
h3 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600 !important;
}

h2 {
    font-size: 41.4px !important;
    line-height: 1.1;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

.italic {
    font-style: italic;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Header Styling */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 50px 40px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 30px;
    display: flex;
    gap: 25px;
}

.nav-glass a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-glass a:hover,
.nav-glass a.active {
    color: var(--primary);
}

/* Global Button Style */
.btn-enquire,
.btn-quote,
.btn-primary {
    font-family: "Urbanist", sans-serif !important;
    background: #FFDE59 !important;
    color: #000000 !important;
    border: 2px solid #FFDE59 !important;
    font-weight: 500 !important;
    box-shadow: 0 6px 20px rgba(255, 222, 89, 0.3) !important;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.btn-enquire:hover,
.btn-quote:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    margin: 20px 10px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hero Overlay Removed as per request */
.hero-overlay {
    display: none;
}

.hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 10;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.trusted-by-img {
    height: 20px;
    width: auto;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--text-white);
    margin-left: -10px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.rating {
    color: var(--primary);
    display: flex;
    gap: 2px;
}

.trusted-text {
    font-size: 14px;
    font-weight: 500;
}

.hero-title {
    font-size: 66px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    margin-bottom: 35px;
    font-weight: 500;
}

/* Honeymooners Section */
.packages-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.packages-grid {
    display: flex;
    gap: 10px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    cursor: grab;
    user-select: none;
}

.packages-grid:active {
    cursor: grabbing;
}

.package-card {
    background: transparent;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex: 0 0 calc((100% - 30px) / 4);
    box-sizing: border-box;
    cursor: pointer;
}

.card-img {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
}

.package-card-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    color: #8a8a8a;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out, transform 0.5s ease;
}

/* Fallback: show first image by default */
.card-img img:first-of-type {
    opacity: 1;
}

/* Active image state controlled by JS */
.card-img img.active {
    opacity: 1;
    z-index: 2;
}

/* Deactive images */
.card-img img:not(.active) {
    opacity: 0;
}

.package-card:hover .card-img img.active {
    transform: scale(1.05);
}

.card-img-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.img-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease;
}

.img-dot.active {
    background: #ffffff;
}

.card-body {
    padding: 15px 0 0 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-meta .duration {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.card-meta .rating {
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 3px;
}

.card-meta .rating .star {
    color: #10b981;
}

.card-meta .rating .count {
    color: #888;
    font-weight: 400;
}

.card-body h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-dark);
    font-weight: 600 !important;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: #fdfaf0;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #5c5543;
    letter-spacing: 0.2px;
}

.price-section {
    margin-bottom: 18px;
}

.old-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.save-badge {
    background: #e6f7ed;
    color: #10b981;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.new-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.current-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
}

.per-adult {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--primary);
    border-radius: 999px;
    color: var(--primary-dark);
    background: #ffffff;
    transition: all 0.3s ease;
}

.btn-phone svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.btn-phone:hover {
    background: rgba(255, 222, 89, 0.05);
    transform: translateY(-2px);
}

.btn-request {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: var(--primary) !important;
    color: #000000 !important;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-transform: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.2);
}

.btn-request:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.slider-arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #000;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.slider-arrow-prev {
    left: 10px;
}

.slider-arrow-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
}

/* Wander Section (Where would you like to wander) */
.wander-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #faf9f6;
    padding: 60px 0px;
    border-top: 1px solid #eee;
}

.wander-container {
    max-width: 1280px;
    margin: 0 auto;
}

.wander-title {
    text-align: center;
    font-size: 41.4px !important;
    line-height: 1.1;
    font-weight: 600 !important;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.wander-subtitle {
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    color: #4a4a4a;
    letter-spacing: 0.4px;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Tabs styles */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary);
    background: rgba(255, 222, 89, 0.1);
}

.tab-btn.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #000000 !important;
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.2);
}

/* Category Packages Switch */
.category-packages {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.category-packages.active {
    display: block;
    opacity: 1;
}

/* Custom styling for Wander Section cards (white background, border-radius, padding, card-shadow) */
.wander-section .package-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    flex: 0 0 calc((100% - 30px) / 4) !important;
}

.wander-section .package-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

/* Mobile Menu Button */
.mobile-toggle {
    display: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-glass {
        display: none;
    }

    .nav-glass.active {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        padding: 10px;
        border-radius: 18px;
        background: rgba(18, 34, 34, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.24);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    }

    .nav-glass.active>a,
    .nav-glass.active .nav-dropdown-trigger {
        width: 100%;
        min-height: 46px;
        padding: 0 14px;
        justify-content: space-between;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
    }

    .hero-title {
        font-size: 50px;
    }

    header {
        padding: 40px;
    }

    .header-container {
        position: relative;
    }

    .logo img {
        height: 30px;
    }

    .package-card,
    .wander-section .package-card {
        flex: 0 0 calc((100% - 10px) / 2) !important;
    }

}

@media (max-width: 768px) {
    body.home-page h2 {
        font-size: 22px !important;
    }

    body.home-page main p,
    body.home-page main li {
        font-family: 'Urbanist', sans-serif !important;
        font-size: 16px !important;
    }

    .hero {
        height: 80vh;
        border-radius: 20px;
        margin: 20px 10px;
    }

    .hero-title {
        font-size: 35px;
    }

    .social-proof img {
        height: 15px;
    }

    .social-proof .trusted-by-img {
        height: 16px;
        margin-bottom: -5px;
    }

    .btn-enquire {
        display: none;
    }

    .card-actions .btn-request,
    .card-actions .btn-enquire {
        display: flex;
    }

    .card-actions {
        width: 100%;
        align-items: center;
        gap: 12px;
    }

    .card-actions .btn-phone {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
    }

    .card-actions .btn-request {
        flex: 1 1 auto;
        min-width: 0;
        height: 56px;
        font-size: 15px;
    }

    .mobile-toggle {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        line-height: 40px;
        text-align: center;
        background: rgba(0, 0, 0, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .who-we-are {
        flex-direction: column;
        padding: 40px 20px !important;
        gap: 20px !important;
    }

    .who-we-are h2 {
        font-size: 40px !important;
    }

    .honeymooners {
        padding: 40px 20px !important;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }

    .section-header h2 {
        font-size: 40px !important;
    }

    .packages-grid {
        display: flex;
        gap: 10px;
        padding-bottom: 20px;
    }

    .package-card,
    .wander-section .package-card {
        flex: 0 0 100% !important;
    }

    .wander-section .package-card {
        padding: 12px !important;
    }



    .hidden-mobile {
        display: none;
    }
}

/* Group Travel Section */
.group-travel-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #faf9f6;
    padding: 60px 0px;
    border-top: 1px solid #eee;
}

.group-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.group-image-col {
    flex: 1;
}

.group-image-col img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.group-content-col {
    flex: 1.2;
}

.group-title {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.group-title .urbanist {
    font-family: 'Urbanist', sans-serif;
}

.group-title .playfair {
    font-family: 'Playfair Display', serif;
}

.group-content-col p {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    color: #4a4a4a;
    letter-spacing: 0.4px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.group-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.group-features li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.group-features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-group-plan {
    display: inline-block;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background-color: var(--primary);
    color: #000000;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.2);
    transition: all 0.3s ease;
}

.btn-group-plan:hover {
    background-color: #f7d13b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 222, 89, 0.3);
}

@media (max-width: 992px) {
    .group-container {
        flex-direction: column;
        gap: 40px;
    }

    .group-image-col,
    .group-content-col {
        width: 100%;
        flex: none;
    }

    .group-image-col img {
        height: 380px;
    }

    .group-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .group-travel-section {
        padding: 60px 20px;
    }

    .group-image-col img {
        height: 300px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 0px;
    background: radial-gradient(circle at 90% 40%, rgba(255, 222, 89, 0.08) 0%, rgba(135, 206, 250, 0.08) 35%, #ffffff 70%);
    border-top: 1px solid #eee;
    overflow: hidden;
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.faq-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
}

.faq-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.faq-title .urbanist {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
}

.faq-title .playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.faq-subtitle {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    color: #4a4a4a;
    letter-spacing: 0.4px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.faq-content {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 24px 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #1a1a1a;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-top 0.3s ease;
}

.faq-item.active .faq-body {
    max-height: 500px;
    margin-top: 15px;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
}

.faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

.faq-action-row {
    margin-top: 10px;
}

.btn-more-faqs {
    display: inline-block;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background-color: var(--primary);
    color: #000000;
    padding: 16px 40px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.2);
    transition: all 0.3s ease;
}

.btn-more-faqs:hover {
    background-color: #f7d13b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 222, 89, 0.3);
}

/* Footer Section */
footer {
    background: linear-gradient(rgb(10 45 20 / 40%), rgb(5 30 15 / 28%)),
        url('../img/footerbg.webp?v=1.1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 80px 40px 30px 40px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand img {
    height: 40px;
    width: auto;
}

.footer-brand .brand-name {
    font-family: 'Urbanist', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.footer-col h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 750;
    color: #ffffff;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom-bar {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-bar p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.whatsapp-footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.whatsapp-footer-link img {
    width: 20px;
    height: 20px;
}

.whatsapp-footer-link:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

/* Responsive Footer & FAQ */
@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
        gap: 50px;
    }

    .faq-sidebar {
        position: static;
        width: 100%;
    }

    .faq-title {
        font-size: 38px;
    }

    .faq-content {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-item {
        padding: 20px 24px;
    }

    .faq-question {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 60px 20px 30px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        padding-bottom: 40px;
    }

    .footer-container .brand-col {
        grid-column: span 2;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.how-it-works-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.how-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.how-title .urbanist {
    font-family: 'Urbanist', sans-serif;
}

.how-title .playfair {
    font-family: 'Playfair Display', serif;
}

/* Tabs */
.how-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.how-tab-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 2px solid #ffe89c;
    border-radius: 12px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Urbanist', sans-serif;
    color: #b58900;
}

.how-tab-btn .tab-num {
    font-size: 24px;
    font-weight: 800;
}

.how-tab-btn .tab-text {
    font-size: 16px;
    font-weight: 700;
}

.how-tab-btn.active {
    background-color: var(--primary);
    border-color: #000000;
    color: #000000;
    box-shadow: 0 8px 20px rgba(255, 222, 89, 0.25);
    transform: translateY(-2px);
}

.how-tab-btn:hover:not(.active) {
    border-color: var(--primary);
    background-color: rgba(255, 222, 89, 0.05);
}

/* Panels */
.how-panels {
    width: 100%;
    position: relative;
}

.how-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.how-panel.active {
    display: block;
    opacity: 1;
}

.panel-content {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.panel-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.panel-right {
    flex: 1;
}

.panel-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.panel-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.panel-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 222, 89, 0.1);
    color: #b58900;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.panel-item:hover .panel-icon {
    background: var(--primary);
    color: #000000;
}

.panel-icon svg {
    width: 20px;
    height: 20px;
}

.panel-text {
    font-size: 18px;
    color: #4a4a4a;
    font-family: 'Urbanist', sans-serif;
    letter-spacing: 0.4px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.panel-text strong {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-craft-trip {
    display: inline-block;
    width: max-content;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background-color: #111111;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-craft-trip:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Responsive How it Works */
@media (max-width: 992px) {
    .panel-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .panel-left,
    .panel-right {
        width: 100%;
        flex: none;
    }

    .panel-right img {
        height: 320px;
    }

    .how-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 20px;
    }

    .how-tabs {
        gap: 15px;
    }

    .how-tab-btn {
        padding: 12px 20px;
        border-radius: 10px;
        flex: 1 1 calc(33.33% - 15px);
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .how-tab-btn {
        flex: 1 1 100%;
    }
}

/* Why Choose Section */
.why-choose-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #faf9f6;
    padding: 60px 0px;
    border-top: 1px solid #eee;
}

.why-choose-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-title {
    font-size: 41.4px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-dark);
}

.why-choose-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.why-choose-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
}

.why-icon-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.why-choose-card:hover .why-icon-wrapper {
    transform: scale(1.08);
}

.why-choose-card h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-choose-card p {
    font-size: 18px;
    color: #4a4a4a;
    font-family: 'Urbanist', sans-serif;
    letter-spacing: 0.4px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Why Choose */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 20px;
    }

    .why-choose-container {
        padding: 0;
    }

    .why-choose-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0px 10px !important;
        margin-top: 30px;
    }

    .why-choose-card {
        flex: 0 0 calc((100% - 10px) / 2);
        max-width: calc((100% - 10px) / 2);
        padding: 10px 0;
        box-sizing: border-box;
    }

    .why-choose-card h3 {
        font-family: 'Urbanist', sans-serif !important;
        font-size: 17px !important;
        line-height: 1.3 !important;
    }

    .why-choose-card p {
        font-size: 13px !important;
    }

    .why-choose-card:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .why-choose-title {
        font-size: 32px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0px;
    background-color: #ffffff;
    border-top: 1px solid #eee;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.testimonials-title .urbanist {
    font-family: 'Urbanist', sans-serif;
}

.testimonials-title .playfair {
    font-family: 'Playfair Display', serif;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #4a4a4a;
    font-family: 'Urbanist', sans-serif;
    letter-spacing: 0.4px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.testimonials-grid-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-grid {
    display: flex;
    gap: 10px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    padding: 35px 30px;
    flex: 0 0 calc((100% - 20px) / 3);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.user-name {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating .star {
    color: #8cd6b7;
    font-size: 20px;
}

.testimonial-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* Dots */
.testimonials-section .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonials-section .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffec99;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-section .dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

/* Testimonial slider responsive */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 10px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 20px;
    }

    .testimonials-container {
        padding: 0;
    }

    .testimonial-card {
        flex: 0 0 100%;
        padding: 25px 20px;
    }

    .testimonials-title {
        font-size: 34px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }
}

/* Package Detail Page Styles */
.detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    margin: 30px auto;
    max-width: 1280px;
    padding: 0 20px;
}

.detail-gallery-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 480px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.detail-gallery-thumb {
    height: 232px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* Dynamic gallery layouts based on image count */
@media (min-width: 1025px) {
    .detail-gallery.gallery-count-1 {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .detail-gallery.gallery-count-1 .detail-gallery-main {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        height: 480px;
    }

    .detail-gallery.gallery-count-2 {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr;
    }

    .detail-gallery.gallery-count-2 .detail-gallery-main {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        height: 480px;
    }

    .detail-gallery.gallery-count-2 .detail-gallery-thumb {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        height: 480px;
    }

    .detail-gallery.gallery-count-3 {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .detail-gallery.gallery-count-3 .detail-gallery-main {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        height: 480px;
    }

    .detail-gallery.gallery-count-3 .detail-gallery-thumb:nth-of-type(1) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        height: 232px;
    }

    .detail-gallery.gallery-count-3 .detail-gallery-thumb:nth-of-type(2) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        height: 232px;
    }

    .detail-gallery.gallery-count-4 {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .detail-gallery.gallery-count-4 .detail-gallery-main {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        height: 480px;
    }

    .detail-gallery.gallery-count-4 .detail-gallery-thumb:nth-of-type(1) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        height: 232px;
    }

    .detail-gallery.gallery-count-4 .detail-gallery-thumb:nth-of-type(2) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        height: 232px;
    }

    .detail-gallery.gallery-count-4 .detail-gallery-thumb:nth-of-type(3) {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
        height: 480px;
    }

    .detail-gallery.gallery-count-5 {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .detail-gallery.gallery-count-5 .detail-gallery-main {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        height: 480px;
    }

    .detail-gallery.gallery-count-5 .detail-gallery-thumb:nth-of-type(1) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        height: 232px;
    }

    .detail-gallery.gallery-count-5 .detail-gallery-thumb:nth-of-type(2) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        height: 232px;
    }

    .detail-gallery.gallery-count-5 .detail-gallery-thumb:nth-of-type(3) {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
        height: 232px;
    }

    .detail-gallery.gallery-count-5 .detail-gallery-thumb:nth-of-type(4) {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
        height: 232px;
    }
}

@media (max-width: 1024px) {
    .detail-gallery.gallery-count-1 {
        grid-template-columns: 1fr;
    }
}

.detail-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-gallery-img:hover {
    transform: scale(1.03);
}

.btn-view-all-images {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-view-all-images:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.desktop-only-thumb {
    display: block;
}

.desktop-btn-view-all {
    display: block;
}

.mobile-view-all-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 34, 34, 0.58);
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 750;
    cursor: pointer;
    box-shadow: none;
    border-radius: 0;
    transition: background 0.3s ease;
}

.mobile-view-all-overlay:hover {
    background: rgba(18, 34, 34, 0.72);
}

.mobile-view-all-overlay span {
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Layout */
.detail-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.detail-main-content {
    flex: 1.8;
}

.detail-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
}

/* Badges */
.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.detail-badge {
    font-family: 'Urbanist', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #4a4a4a;
    background: #f5f5f5;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Headings & Text */
.detail-title {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 60px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.detail-main-content h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 15px;
}

.detail-desc {
    font-size: 18px;
    color: #4a4a4a;
    font-family: 'Urbanist', sans-serif;
    letter-spacing: 0.4px;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.5;
}

/* Highlights */
.detail-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0 35px 0;
}

.detail-highlights li {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.detail-highlights li span {
    flex: 1;
    min-width: 0;
}

.detail-highlights li svg {
    color: #8cd6b7;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Itinerary Section */
.itinerary-tabs {
    display: flex;
    gap: 10px;
    background: #f5f5f5;
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 25px;
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.itinerary-tabs::-webkit-scrollbar {
    display: none;
}

.itinerary-tab-btn {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #555555;
    background: transparent;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.itinerary-tab-btn.active {
    background: #ffffff;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.itinerary-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.itinerary-item.active {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    cursor: pointer;
    user-select: none;
    background: #ffffff;
}

.itinerary-title-area {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.itinerary-day-badge {
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-dark);
    background: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.itinerary-title-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
    min-width: 0;
}

.itinerary-toggle-icon {
    width: 20px;
    height: 20px;
    color: #555;
    transition: transform 0.3s ease;
}

.itinerary-item.active .itinerary-toggle-icon {
    transform: rotate(180deg);
}

.itinerary-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.itinerary-body-content {
    padding: 0 25px 25px 25px;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    color: #4a4a4a;
    letter-spacing: 0.4px;
    font-weight: 500;
    line-height: 1.4;
}

.itinerary-image-grid {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.itinerary-image-grid.image-count-1 {
    grid-template-columns: 1fr;
}

.itinerary-image-grid.image-count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.itinerary-image-grid.image-count-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.itinerary-image-grid.image-count-3 .itinerary-image-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.itinerary-image-grid.image-count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.itinerary-image-item {
    margin: 0;
    min-height: 160px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 14px;
    background: #f5f5f5;
}

.itinerary-image-grid.image-count-1 .itinerary-image-item {
    aspect-ratio: 16 / 8;
    min-height: 280px;
}

.itinerary-image-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.itinerary-details-meta {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    padding-top: 15px;
    font-size: 14px;
}

.itinerary-details-meta span strong {
    color: var(--text-dark);
}

/* Inclusions & Exclusions */
.detail-inclusions-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    padding: 35px;
    margin-bottom: 40px;
}

.detail-inclusions-box h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    margin-top: 0 !important;
}

.detail-inclusions-columns {
    display: flex;
    gap: 40px;
}

.detail-inclusions-col {
    flex: 1;
}

.detail-inclusions-col h4 {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.detail-inclusions-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-inclusions-col li {
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.detail-inclusions-col li span {
    flex: 1;
    min-width: 0;
}

.detail-inclusions-col li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.detail-inclusions-col.inclusions li svg {
    color: #8cd6b7;
}

.detail-inclusions-col.exclusions li svg {
    color: #f87171;
}

/* Sidebar Enquiry Box */
.detail-sidebar-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    padding: 35px 30px;
}

.detail-sidebar-box h4.sidebar-package-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 0;
}

.detail-sidebar-box h3.sidebar-heading {
    font-family: 'Urbanist', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    margin-top: 0;
}

.sidebar-pricing-container {
    margin-top: 15px;
    margin-bottom: 20px;
}

.sidebar-pricing-container .price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sidebar-pricing-container .price-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-pricing-container .starting-from {
    font-size: 12px;
    color: #777777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-pricing-container .price-val {
    font-size: 30px;
    font-weight: 800;
    color: #111111;
    line-height: 1.1;
    font-family: 'Urbanist', sans-serif;
}

.sidebar-pricing-container .per-person {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

.sidebar-pricing-container .rating-col {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 4px;
}

.sidebar-pricing-container .star-icon {
    color: #22c55e;
    font-size: 14px;
    line-height: 1;
}

.sidebar-pricing-container .rating-num {
    font-weight: 750;
    color: #166534;
    font-size: 12px;
}

.sidebar-pricing-container .rating-count {
    color: #15803d;
    font-size: 10px;
    font-weight: 600;
}

.sidebar-pricing-container .discount-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.sidebar-pricing-container .old-price {
    font-size: 15px;
    text-decoration: line-through;
    color: #888888;
    font-weight: 500;
}

.sidebar-pricing-container .save-badge {
    font-size: 10px;
    font-weight: 750;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-pricing-container .save-badge.green-badge {
    background: #e8f7f2;
    color: #0f9f6e;
    border: 1px solid rgba(15, 159, 110, 0.15);
}

.sidebar-pricing-container .save-badge.gold-badge {
    background: #fef9c3;
    color: #a16207;
    border: 1px solid rgba(161, 98, 7, 0.15);
}

.sidebar-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 20px 0;
}

.sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 200px;
    background: #FFDE59;
    color: #111111;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 750;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 222, 89, 0.2);
    margin: 0 auto;
    display: flex;
}

.sidebar-cta-btn:hover {
    background: #fcd34d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 211, 77, 0.3);
}

/* Responsiveness overrides */
@media (max-width: 1024px) {
    .detail-gallery {
        grid-template-columns: 1.5fr 1fr;
        grid-template-rows: auto;
    }

    .detail-gallery-main {
        height: 380px;
    }

    .detail-gallery-thumb:nth-child(n+3) {
        display: none;
    }

    .detail-gallery-thumb {
        height: 182px;
    }

    .detail-layout {
        flex-direction: column;
        gap: 30px;
    }

    .detail-sidebar {
        position: static;
        width: 100%;
    }
}

.mobile-btn-view-all {
    display: none;
}

@media (max-width: 768px) {
    header {
        padding: 40px 25px 15px 25px;
    }

    .detail-hero-banner {
        margin: 20px 10px;
        border-radius: 20px;
        padding: 75px 15px 15px 15px !important;
    }

    .detail-gallery {
        display: grid !important;
        grid-template-columns: 2.2fr 1fr !important;
        grid-template-rows: repeat(3, 1fr) !important;
        gap: 5px !important;
        margin: 10px auto !important;
        padding: 0 0px !important;
        height: 210px !important;
    }

    .detail-gallery.gallery-count-1 {
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr !important;
        height: 240px !important;
    }

    .detail-gallery.gallery-count-2 {
        grid-template-rows: 1fr !important;
        height: 120px !important;
    }

    .detail-gallery.gallery-count-3 {
        grid-template-rows: repeat(2, 1fr) !important;
        height: 180px !important;
    }

    .detail-gallery-main {
        grid-column: 1 / 2 !important;
        grid-row: 1 / 4 !important;
        height: 100% !important;
        width: 100% !important;
        border-radius: 14px !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .detail-gallery.gallery-count-1 .detail-gallery-main {
        grid-row: 1 / 2 !important;
    }

    .detail-gallery.gallery-count-2 .detail-gallery-main {
        grid-row: 1 / 2 !important;
    }

    .detail-gallery.gallery-count-3 .detail-gallery-main {
        grid-row: 1 / 3 !important;
    }

    .detail-gallery-thumb {
        display: block !important;
        grid-column: 2 / 3 !important;
        height: 100% !important;
        width: 100% !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .detail-gallery-thumb.thumb-0 {
        grid-row: 1 / 2 !important;
    }

    .detail-gallery-thumb.thumb-1 {
        grid-row: 2 / 3 !important;
    }

    .detail-gallery-thumb.thumb-2 {
        grid-row: 3 / 4 !important;
    }

    .detail-gallery.gallery-count-2 .detail-gallery-thumb.thumb-0 {
        grid-row: 1 / 2 !important;
    }

    .detail-gallery.gallery-count-3 .detail-gallery-thumb.thumb-0 {
        grid-row: 1 / 2 !important;
    }

    .detail-gallery.gallery-count-3 .detail-gallery-thumb.thumb-1 {
        grid-row: 2 / 3 !important;
    }

    .desktop-only-thumb {
        display: none !important;
    }

    .desktop-btn-view-all {
        display: none !important;
    }

    .mobile-view-all-overlay {
        font-size: 12px;
        padding: 0px;
        display: flex !important;
    }

    .detail-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 14px;
    }

    .detail-desc,
    .itinerary-body-content {
        font-size: 14px;
        line-height: 1.55;
    }

    .detail-container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }

    .detail-main-content {
        width: 100%;
        max-width: 100%;
    }

    .detail-main-content h2 {
        font-size: 22px;
        line-height: 1.25;
    }

    .detail-main-content h3 {
        font-size: 20px;
        line-height: 1.3;
        margin-top: 26px;
        margin-bottom: 12px;
    }

    .detail-badges {
        gap: 8px;
        margin-top: 18px;
        margin-bottom: 14px;
    }

    .detail-badge {
        font-size: 12px;
        padding: 7px 12px;
    }

    .detail-highlights {
        margin: 14px 0 28px 0;
    }

    .detail-highlights li {
        display: block;
        position: relative;
        padding-left: 28px;
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 10px;
    }

    .detail-highlights li svg {
        position: absolute;
        left: 0;
        top: 3px;
        width: 16px;
        height: 16px;
    }

    .itinerary-tabs {
        width: 100%;
        margin-bottom: 16px;
    }

    .itinerary-tab-btn {
        font-size: 13px;
        padding: 9px 14px;
    }

    .itinerary-header {
        padding: 16px 18px;
    }

    .itinerary-day-badge {
        font-size: 12px;
        padding: 5px 10px;
    }

    .itinerary-title-text {
        font-size: 15px;
        line-height: 1.35;
    }

    .itinerary-body-content {
        padding: 0 18px 18px;
    }

    .itinerary-image-grid,
    .itinerary-image-grid.image-count-2,
    .itinerary-image-grid.image-count-3,
    .itinerary-image-grid.image-count-4 {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 18px;
    }

    .itinerary-image-grid.image-count-3 .itinerary-image-item:first-child {
        grid-column: auto;
        grid-row: auto;
    }

    .itinerary-image-item,
    .itinerary-image-grid.image-count-1 .itinerary-image-item {
        aspect-ratio: 16 / 10;
        min-height: 180px;
        border-radius: 12px;
    }

    .itinerary-details-meta {
        gap: 10px;
        font-size: 13px;
    }

    .detail-inclusions-box h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .detail-inclusions-col h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .detail-inclusions-col li {
        display: block;
        position: relative;
        padding-left: 28px;
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 12px;
    }

    .detail-inclusions-col li svg {
        position: absolute;
        left: 0;
        top: 2px;
        width: 16px;
        height: 16px;
    }

    .detail-inclusions-columns {
        flex-direction: column;
        gap: 25px;
    }

    .detail-inclusions-box {
        padding: 25px;
    }

    .mobile-btn-view-all {
        display: none;
        position: absolute;
        bottom: 15px;
        right: 15px;
        z-index: 10;
    }

    .detail-layout {
        margin-bottom: 120px;
    }

    /* Mobile Sticky CTA Bar */
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
        padding: 12px 20px;
        z-index: 999;
        box-sizing: border-box;
    }

    .btn-craft-trip {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background: var(--primary, #FFDE59) !important;
        color: #000000 !important;
        border: none !important;
        padding: 14px 0;
        border-radius: 30px;
        font-family: 'Urbanist', sans-serif;
        font-size: 16px;
        font-weight: 750;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 222, 89, 0.2) !important;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn-craft-trip:hover {
        background: var(--primary-dark, #e6c850) !important;
        transform: translateY(-2px);
    }
}

.mobile-sticky-cta {
    display: none;
}

.detail-hero-banner {
    position: relative;
    padding-top: 120px;
    padding-bottom: 30px;
    margin: 20px 10px;
    border-radius: 20px;
    overflow: hidden;
}

.detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 47%);
    z-index: -1;
}

/* Gallery Lightbox Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 46%);
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: none;
    opacity: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.4s ease;
}

.gallery-modal.show {
    display: flex;
    opacity: 1;
}

.gallery-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-modal-close:hover {
    background: #ffffff;
    color: #000000;
    transform: rotate(90deg);
}

.gallery-modal-close svg {
    width: 20px;
    height: 20px;
}

.gallery-modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    padding: 0 40px;
    gap: 30px;
    margin-top: 40px;
}

.gallery-modal-image-wrapper {
    position: relative;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-modal-img {
    max-width: 100%;
    max-height: 65vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-modal-img.active {
    opacity: 1;
    transform: scale(1);
}

.gallery-modal-counter {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.gallery-modal-arrow {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-modal-arrow:hover {
    background: #ffffff;
    color: #000000;
}

.gallery-modal-arrow svg {
    width: 24px;
    height: 24px;
}

.gallery-modal-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    max-width: 80%;
    overflow-x: auto;
    padding-bottom: 10px;
}

.gallery-modal-thumb {
    width: 72px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-modal-thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

.gallery-modal-thumb:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .gallery-modal-content {
        padding: 0 10px;
        gap: 15px;
    }

    .gallery-modal-arrow {
        width: 44px;
        height: 44px;
    }

    .gallery-modal-arrow svg {
        width: 18px;
        height: 18px;
    }

    .gallery-modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .gallery-modal-thumbs {
        max-width: 95%;
    }
}

/* Contact Us, About Us & Destination Page Custom Styling */
.contact-hero-banner,
.about-hero-banner,
.destination-hero-banner {
    position: relative;
    padding-top: 180px;
    padding-bottom: 140px;
    margin: 20px 10px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero-bg,
.about-hero-bg,
.destination-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.contact-hero-overlay,
.about-hero-overlay,
.destination-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.contact-hero-content,
.about-hero-content,
.destination-hero-content {
    z-index: 1;
    color: #ffffff;
}

.contact-breadcrumb-text,
.about-breadcrumb-text,
.destination-breadcrumb-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.contact-breadcrumb-text a,
.about-breadcrumb-text a,
.destination-breadcrumb-text a {
    color: #ffffff;
    text-decoration: none;
}

.contact-hero-title,
.about-hero-title,
.destination-hero-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
    letter-spacing: -0.5px;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 60px 20px;
}

.contact-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-header-left {
    flex: 1;
}

.contact-header-right {
    flex: 1.2;
}

.contact-section-title {
    font-size: 36px !important;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-section-desc {
    font-size: 18px;
    color: #4a4a4a;
    font-family: 'Urbanist', sans-serif;
    letter-spacing: 0.4px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-col {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form .form-group.full-width {
    margin-bottom: 30px;
}

.contact-form label {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-form label .required {
    color: #ff0000;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 222, 89, 0.15);
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 222, 89, 0.15);
}

.phone-input-wrapper .flag-prefix {
    padding: 14px 15px 14px 20px;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    background: #f1f5f9;
    border-right: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.phone-input-wrapper input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 14px 20px !important;
}

.btn-send-message {
    display: inline-block;
    width: max-content;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background-color: var(--primary);
    color: #1a1a1a;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.2);
}

.btn-send-message:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 222, 89, 0.3);
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    background-color: transparent;
    text-align: left;
    padding: 25px 30px;
    box-shadow: 3.71px 3.71px 18.55px 0px #F1F1F1;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    align-items: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFDE59;
    color: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-details h4 {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #718096;
    margin-bottom: 5px;
}

.info-details a,
.info-details p {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    text-decoration: none;
    margin: 0;
}

.info-details a:hover {
    color: var(--primary-dark);
}

.contact-map-section {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.contact-map-section iframe {
    display: block;
    filter: grayscale(1) invert(0.08) contrast(1.1);
}

/* Contact Us & About Us Page Responsive Styles */
@media (max-width: 768px) {

    .contact-hero-banner,
    .about-hero-banner,
    .destination-hero-banner {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .contact-hero-title,
    .about-hero-title,
    .destination-hero-title {
        font-size: 36px;
    }

    .contact-section-desc {
        font-size: 16px;
    }

    .contact-header-section {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-section-title {
        font-size: 28px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-col {
        padding: 30px 20px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .btn-send-message {
        width: 100%;
        text-align: center;
    }

    .info-card {
        padding: 20px;
    }
}

/* About Us Page Content Styling */
.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-header-section {
    margin-bottom: 50px;
}

.about-main-heading {
    font-size: 42px !important;
    line-height: 1.2;
    color: var(--text-dark);
}

.about-main-heading .urbanist {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
}

.about-main-heading .playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start;
}

.about-content-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content-col p {
    font-family: 'Urbanist', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 500;
}

.about-image-col img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-col img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 40px 20px;
    }

    .about-main-heading {
        font-size: 26px !important;
    }

    .about-content-col p {
        font-size: 16px !important;
    }

    .about-image-col img {
        height: 300px;
    }
}

/* Header Dropdown Menu Styling */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 100;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, margin-top 0.3s ease, visibility 0.3s ease;
}

.nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent rgba(255, 255, 255, 0.95) transparent;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.hover-active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 10px;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.hover-active .nav-dropdown-trigger {
    color: var(--primary) !important;
}

.nav-dropdown .dropdown-menu a {
    color: #333333 !important;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border-radius: 0;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: 'Urbanist', sans-serif;
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-dropdown .dropdown-menu a:hover {
    background: rgba(255, 222, 89, 0.2);
    color: #000000 !important;
}

/* Desktop Mega Menu */
@media (min-width: 1025px) {
    .nav-dropdown .dropdown-menu {
        top: calc(100% + 8px);
        left: 50%;
        width: min(560px, calc(100vw - 48px));
        min-width: 520px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 18px;
        border-radius: 26px;
        background: rgba(18, 34, 34, 0.86);
        border: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        margin-top: 18px;
    }

    .nav-dropdown .dropdown-menu::before {
        top: -13px;
        border-width: 0 12px 13px 12px;
        border-color: transparent transparent rgba(18, 34, 34, 0.86) transparent;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.hover-active .dropdown-menu {
        margin-top: 12px;
    }

    .nav-dropdown .dropdown-menu a {
        min-height: 8px !important;
        padding: 10px 11px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.86) !important;
        border: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 18px;
        font-weight: 800;
        gap: 14px;
    }

    .nav-dropdown .dropdown-menu a:hover {
        background: rgba(255, 222, 89, 0.18);
        border-color: rgba(255, 222, 89, 0.42);
        color: var(--primary) !important;
        transform: translateY(-2px);
    }

    .nav-dropdown .dropdown-menu a .dropdown-icon {
        width: 38px;
        height: 38px;
        padding: 8px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.1);
        filter: brightness(0) invert(1);
    }
}

/* Mobile Dropdown styles */
@media (max-width: 1024px) {
    .nav-dropdown {
        display: block;
        width: 100%;
        text-align: left;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        display: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        margin: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 6px 0 8px;
    }

    .nav-dropdown .dropdown-menu::before {
        display: none;
    }

    .nav-dropdown .dropdown-menu a {
        color: rgba(255, 255, 255, 0.7) !important;
        padding: 9px 10px;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-dropdown .dropdown-menu a .dropdown-icon {
        width: 16px;
        height: 16px;
        filter: brightness(0) invert(1);
    }

    .nav-dropdown .dropdown-menu a:hover {
        background: rgba(255, 222, 89, 0.16);
        color: var(--primary) !important;
    }
}

/* Destination Page Layout Styling */
.destination-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px;
}

.destination-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.destination-main-heading {
    font-size: 48px !important;
    line-height: 1.1;
    color: var(--text-dark);
}

.destination-main-heading .urbanist {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
}

.destination-main-heading .playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.destination-intro-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.destination-intro-right p {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    color: #4a4a4a;
    letter-spacing: 0.4px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

.destination-intro-right .read-more-btn {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 750 !important;
    text-decoration: none;
    display: inline-block;
    width: max-content;
    border-bottom: none !important;
    padding-bottom: 12px !important;
}

.destination-intro-right .read-more-btn:hover {
    border-color: transparent !important;
}

/* Packages Grid for Destination Page */
.destination-packages-section {
    padding: 20px 0 60px 0;
}

.destination-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.destination-package-layout {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.destination-filter-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 16px;
}

.destination-filter-group {
    background: #ffffff;
    border: 1px solid rgba(12, 22, 62, 0.12);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 16px 36px rgba(13, 24, 58, 0.06);
}

.destination-filter-toggle {
    width: 100%;
    min-height: 58px;
    border: 0;
    background: transparent;
    color: #11183e;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    padding: 0 6px;
}

.destination-filter-toggle span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.filter-icon {
    width: 26px;
    color: #11183e;
    font-size: 21px;
    line-height: 1;
}

.filter-chevron {
    transition: transform 0.2s ease;
}

.destination-filter-group.active .filter-chevron {
    transform: rotate(180deg);
}

.destination-filter-options {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 4px 4px;
}

.destination-filter-group.active .destination-filter-options {
    display: flex;
}

.destination-filter-chip {
    border: 1px solid rgba(12, 22, 62, 0.14);
    background: #ffffff;
    color: #6a6f98;
    border-radius: 12px;
    padding: 10px 14px;
    font-family: 'Urbanist', sans-serif;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.destination-filter-chip:hover,
.destination-filter-chip.active {
    border-color: var(--primary);
    background: rgba(255, 222, 89, 0.2);
    color: #11183e;
}

.destination-filter-apply {
    border: 1px solid var(--primary, #FFDE59);
    background: var(--primary, #FFDE59);
    border-radius: 999px;
    color: #11183e;
    font-family: 'Urbanist', sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 12px 18px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.2);
    transition: all 0.2s ease;
}

.destination-filter-apply:hover {
    background: var(--primary-dark, #e6c850);
    border-color: var(--primary-dark, #e6c850);
}

.destination-filter-apply:active {
    transform: scale(0.98);
}

.destination-filter-clear {
    border: 1px solid rgba(12, 22, 62, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: #11183e;
    font-family: 'Urbanist', sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 12px 18px;
    cursor: pointer;
}

.destination-filter-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

@media (min-width: 993px) {
    .destination-filter-results {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
}

.destination-no-filter-results {
    grid-column: 1 / -1;
    padding: 40px 20px;
    text-align: center;
    color: #6a6f98;
    background: #ffffff;
    border: 1px solid rgba(12, 22, 62, 0.08);
    border-radius: 18px;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.destination-packages-grid .package-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    margin-bottom: 0px !important;
    flex: none !important;
    width: 100% !important;
}

.destination-packages-grid .package-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.mobile-filter-header-nav,
.mobile-filter-footer-nav {
    display: none;
}

.mobile-filter-trigger-bar {
    display: none;
}

/* Responsive Styles for Destination Page */
@media (max-width: 992px) {
    .destination-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .destination-packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .destination-package-layout {
        grid-template-columns: 1fr;
    }

    .destination-filter-sidebar {
        display: none !important;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100vw !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 10000 !important;
        flex-direction: column !important;
        padding: 30px 20px 80px !important;
        overflow-y: auto !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        gap: 16px !important;
    }

    .destination-filter-sidebar.open {
        display: flex !important;
    }

    .mobile-filter-header-nav {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(12, 22, 62, 0.08);
        margin-bottom: 10px;
        width: 100%;
    }

    .mobile-filter-title {
        font-family: 'Urbanist', sans-serif;
        font-size: 20px;
        font-weight: 800;
        color: #11183e;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .mobile-filter-title .binoculars-icon {
        color: #11183e;
        width: 24px;
        height: 24px;
    }

    .mobile-filter-footer-nav {
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding-top: 24px;
        padding-bottom: 30px;
        width: 100%;
    }

    .btn-mobile-filter-close {
        background: #ffffff;
        border: 1px solid rgba(12, 22, 62, 0.15);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        color: #11183e;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .btn-mobile-filter-close:active {
        transform: scale(0.9);
        background: #f3f4f6;
    }

    .mobile-filter-trigger-bar {
        display: flex !important;
        position: fixed;
        bottom: 74px; /* Placed exactly above mobile-sticky-cta */
        left: 50%;
        transform: translateX(-50%);
        z-index: 998;
        pointer-events: none;
        width: auto;
        justify-content: center;
    }

    .btn-mobile-filter-trigger {
        pointer-events: auto;
        background: #ffffff;
        border: 1px solid rgba(12, 22, 62, 0.12);
        box-shadow: 0 8px 24px rgba(13, 24, 58, 0.08);
        border-radius: 30px;
        padding: 12px 24px;
        font-family: 'Urbanist', sans-serif;
        font-size: 15px;
        font-weight: 800;
        color: #11183e;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .btn-mobile-filter-trigger .binoculars-icon {
        width: 18px;
        height: 18px;
    }

    .btn-mobile-filter-trigger:active {
        transform: scale(0.97);
    }

    .destination-filter-apply,
    .destination-filter-clear {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 20px !important;
        border-radius: 30px !important;
        box-sizing: border-box !important;
        font-size: 15px !important;
    }

    .destination-filter-apply {
        margin-top: 15px !important;
    }

    .destination-filter-clear {
        margin-top: 5px !important;
    }

    .destination-filter-results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .destination-container {
        padding: 40px 20px;
    }

    .destination-main-heading {
        font-size: 32px !important;
    }

    .destination-intro-right p {
        font-size: 16px !important;
    }

    .destination-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-filter-sidebar,
    .destination-filter-results {
        grid-template-columns: 1fr;
    }

    .destination-filter-group {
        border-radius: 16px;
    }
}

/* Floating WhatsApp Widget Styling */
.whatsapp-float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: transparent;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(37, 211, 102, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 12px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-svg-icon {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

/* Pulse Animation */
.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.7;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Avoid overlapping with mobile sticky CTA */
@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 95px;
        /* Floats above the mobile sticky bar */
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-svg-icon {
        width: 26px;
        height: 26px;
    }
}

/* Premium Policy Layout with Sticky Sidebar */
.policy-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    display: flex;
    gap: 45px;
    position: relative;
}

.policy-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy-sidebar-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-tab-link {
    display: block;
    padding: 12px 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #4a5568;
    text-decoration: none !important;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.policy-tab-link:hover {
    color: var(--text-dark);
    border-color: #cbd5e1;
    transform: translateX(3px);
}

.policy-tab-link.active {
    background: var(--primary);
    /* Brand Yellow */
    border-color: var(--primary);
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.25);
}

.policy-content-wrapper {
    flex-grow: 1;
    min-width: 0;
}

.policy-updated {
    color: #777;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.policy-content-section {
    padding-bottom: 25px;
    margin-bottom: 35px;
    border-bottom: 1.5px solid #f1f5f9;
    scroll-margin-top: 120px;
    /* Offset for smooth scroll sticky header */
}

.policy-content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-content-section h2 {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 15px;
    font-family: 'Playfair Display', serif;
}

.policy-content-section p {
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    margin: 0 0 16px;
}

.policy-content-section p:last-child {
    margin-bottom: 0;
}

.policy-content-section a {
    color: #0f766e;
    font-weight: 700;
    text-decoration: underline;
}

/* Mobile & Tablet Styles */
@media (max-width: 992px) {
    .policy-layout-container {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px 50px;
    }

    .policy-sidebar {
        display: none !important;
    }

    .policy-content-section {
        scroll-margin-top: 80px;
        padding-bottom: 20px;
        margin-bottom: 25px;
    }

    .policy-content-section h2 {
        font-size: 18px !important;
        margin-bottom: 10px;
    }

    .policy-content-section p {
        font-size: 14px !important;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .policy-updated {
        font-size: 12px !important;
        margin-bottom: 20px;
    }
}

/* Mobile Sticky CTA overrides for single tour package page */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        padding: 12px 20px !important;
        background: #ffffff !important;
        border-top: 1px solid #e5e7eb !important;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05) !important;
    }

    .mobile-sticky-cta-flex {
        display: flex !important;
        gap: 12px !important;
        align-items: center !important;
        width: 100% !important;
    }

    .btn-phone-sticky {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 52px !important;
        height: 52px !important;
        border: 1.5px solid rgba(12, 22, 62, 0.15) !important;
        border-radius: 14px !important;
        background: #ffffff !important;
        color: #11183e !important;
        flex-shrink: 0 !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
        box-sizing: border-box !important;
    }

    .btn-phone-sticky svg {
        width: 20px !important;
        height: 20px !important;
    }

    .btn-phone-sticky:active {
        transform: scale(0.95) !important;
        background: #f9fafb !important;
    }

    .btn-craft-trip {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        flex-grow: 1 !important;
        height: 52px !important;
        background: #FF1A5E !important; /* Premium Pink/Red brand color from mockup screenshot */
        color: #ffffff !important;
        border: none !important;
        border-radius: 14px !important;
        font-family: 'Urbanist', sans-serif !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        text-align: center !important;
        box-shadow: 0 4px 15px rgba(255, 26, 94, 0.25) !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
        cursor: pointer !important;
        box-sizing: border-box !important;
    }

    .btn-craft-trip svg.ticket-icon {
        width: 20px !important;
        height: 20px !important;
        color: #ffffff !important;
    }

    .btn-craft-trip:active {
        transform: scale(0.98) !important;
        background: #e6104d !important;
    }
}