/* ===== Import Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ===== Apply Spartan to headings ===== */
h1, h2 {
    font-family: 'Spartan', sans-serif;
}

/* ===== Apply Poppins to body and all other text ===== */
body {
    font-family: 'Poppins', sans-serif;
}




section{
    padding: 96px 0;
}

/* Custom CSS Styles */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;*/
    line-height: 1.6;
    color: #272A34;
    /*background-color: #ADADAD;*/
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}




body.menu-open {
    overflow: hidden;
}

/* Navigation Bar */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 16px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white !important;
    position: relative;
}

/* Logo Styling */
.navbar-logo {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.navbar-logo-white {
    opacity: 1;
}

.navbar-logo-color {
    opacity: 0;
    position: absolute;
    /* top: 0; */
    left: 0;
}

/* When scrolled, show color logo and hide white logo */
.navbar.scrolled .navbar-logo-white {
    opacity: 0;
}

.navbar.scrolled .navbar-logo-color {
    opacity: 1;
}

@media (min-width: 992px) {
    .logo-icon circle,
    .logo-icon path,
    .logo-icon rect {
        fill: white;
        stroke: white;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 14px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    color: white;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 20px !important;
    transition:all 0.4s ease;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    border-radius: 12px;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
}

/* Navbar navigation links when scrolled */
.navbar.scrolled .navbar-nav .nav-link {
    color: #648CBC !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: rgba(100, 140, 188, 0.8) !important;
}

.navbar.scrolled .arabic-link {
    color: #648CBC !important;
}

.navbar-nav-right {
    display: flex;
    align-items: center;
}

.arabic-link {
    color: white !important;
    font-weight: 500;
    margin-right: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 16px;
    padding: 8px 24px;
    border-radius: 12px;
}

.arabic-link:hover{
    color: rgba(255, 255, 255, 0.8) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
}

.book-now-btn {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 159px;
    height: 40px;
    line-height: 16px;
}

.book-now-btn:hover, .book-now-btn:focus {
    background-color: white;
    color: #648cbc !important;
    border-color: white;
}

.book-now-btn:active {
    background-color: white !important;
    color: #648cbc !important;
    border-color: white !important;
}

/* Book now button when scrolled */
.navbar.scrolled .book-now-btn {
    background-color: transparent;
    color: #648CBC !important;
    border-color: #648CBC;
}

.navbar.scrolled .book-now-btn:hover {
    background-color: #648CBC;
    color: white !important;
    border-color: #648CBC;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    justify-content: space-between;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 72px 20px 0;
    border-bottom: 0;
}

.mobile-menu-header .navbar-brand {
    color: #648CBC !important;
}

.mobile-menu-header .logo-main {
    color: #648CBC;
}

.mobile-menu-header .logo-sub {
    color: #648CBC;
}

.mobile-menu-header .logo-icon circle,
.mobile-menu-header .logo-icon path,
.mobile-menu-header .logo-icon rect {
    fill: #648CBC;
    stroke: #648CBC;
}

.mobile-menu-right {
    display: flex;
    align-items: center;
}

.mobile-menu-right .arabic-link {
    color: #648CBC !important;
    margin-right: 20px;
}

.mobile-close-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #272A34;
    width: 24px;
    height: 24px;
}

.mobile-menu-content {
    padding: 40px 20px 20px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu-header .navbar-logo{
    height: 36px;
}

.mobile-nav-link {
   display: block;
    padding: 16px 0;
    color: #648CBC !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    border-radius: 12px;
    margin: 0;
    transition: all 0.3s ease;
}

.mobile-nav-link.active {
    background-color: #648CBC26;
    color: #648CBC !important;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background-color: #648CBC26;
}

.mobile-menu-footer {
    margin-top: 0;
    padding: 0 24px 50px;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
}

.mobile-book-btn {
    display: block;
    width: 100%;
    background-color: transparent;
    color: #648CBC !important;
    border: 2px solid #648CBC;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    height: 48px;
    line-height: 43px;
    padding: 0 20px;
}

.mobile-book-btn:hover {
    background-color: #648CBC;
    color: white !important;
}

.mobile-close-btn svg{
    color: #648CBC;
}

/* Experiences Section */
.experiences-section {
    background-color: white;
    /*padding: 80px 0;*/
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.experiences-title {
    font-size: 40px;
    font-weight: 600;
    color: #272A34;
    text-align: left;
    margin-bottom: 40px;
    line-height: 56px;

}

.experience-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}


.home .tab-item {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.home .tab-item img {
    width: 32px;
    height: 32px;
}

.tab-item {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tab-item img {
    width: 32px;
    height: 32px;
}


.tab-item.active {
    background-color: #648CBC;
    color: white;
}

.tab-item.active img{
    filter: brightness(0) invert(1);
}

.tab-item.active svg{
    color: white;
}

.tab-item:hover {
    background-color: #648CBC;
}

.tab-item:hover img{
    filter: brightness(0) invert(1);
}

.tab-item.active:hover {
    background-color: #648CBC;
}

.tab-icon {
    width: 32px;
    color: #272A34;
    fill: #FFFFFF;
}

.tab-item.active .tab-icon {
    color: white;
}

.icon {
  color: #648CBC;
  width: 32px;
}

.home .icon {
  color: #648CBC;
  width: 40px;
}

.tab-item:hover .icon {
  color: #fff;
}

.experience-content {
    margin-bottom: 40px;
}

.experience-info {
    /*padding: 0 20px;*/
}

.experience-name {
    font-size: 32px;
    font-weight: 400;
    color: #272A34;
    /* margin-bottom: 20px; */
    line-height: 48px;
}

.experience-description {
    font-size: 16px;
    line-height: 1.6;
    color: #272A34;
    margin-bottom: 30px;
}

.experience-btn {
    background-color: #648CBC !important;
    color: white  !important;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 300px;
    max-width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-btn:hover {
    background-color: #648CBC;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px 0 var(--shadows-btn-S, rgba(0, 0, 0, 0.08));
}



.pass-icon img {
    width: 60px;
    height: 60px;
}

/* Experience Section - Desktop and Mobile Switching */
.desktop-experience {
    display: block;
}

.mobile-experience {
    display: none;
}

/* Vertical Stack Swiper - Desktop */
.experience-swiper {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-container {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-slide {
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
.experience-slide.active {
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

.experience-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 350px;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    transform-origin: center center;
    will-change: transform, opacity;
}

/* Vertical spinning wheel positioning */


.swiper-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Scroll Indicator */
.experience-swiper::after {
    /* content: ''; */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, #648CBC, #87CEEB);
    border-radius: 2px;
    z-index: 4;
}

.experience-pagination {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
}

.experience-pagination .dot {
    height: 60px;
    width: 4px;
    border-radius: 0%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #648CBC;
    transform: scale(1.2);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-color: #ADADAD;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Optional: Add a subtle overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 72px;
    font-weight: 600;
    color: white;
    margin-bottom: 0px;
    letter-spacing: 0px;
    line-height: 88px;
    text-align: center;
}

.hero-btn {
    background-color: white;
    width: 300px;
    height: 48px;
    color: #648CBC;
    border: 2px solid white;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-top: 40px;
    line-height: 20px;
}

.hero-btn:hover {
    /*background-color: transparent;
    color: white;*/
    border-color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-section {
    background-color: #F7F7FB;
    background-image: url(../assets/images/home-balloon-section-bg.svg);
    background-repeat: no-repeat;
    background-position: center 40px;
    background-size: contain;
    padding: 80px 0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 100vh;
}

.about-content {
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #272A34;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -2px;
}

.text-blue {
    color: #648CBC;
    font-weight: 700;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #272A34;
    margin: 0;
}

.about-image {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.balloon-img {
    max-width: 100%;
    height: auto;
    width: 400px;
    transform: translateY(400px);
    opacity: 0;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .navbar {
        background-color: white;
        padding: 15px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        backdrop-filter: none;
    }
    
    

    .navbar-brand {
        color: #648CBC !important;
    }

    /* Mobile logo: always show colored logo, hide white logo */
    .navbar-logo-white {
        opacity: 0;
    }

    .navbar-logo-color {
        opacity: 1;
    }

    .logo-main {
        font-size: 12px;
        color: #648CBC;
    }

    .logo-sub {
        font-size: 9px;
        color: #648CBC;
    }

    .arabic-link {
        color: #648CBC !important;
    }

    .mobile-menu-btn span {
        background-color: #648cbc;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 60px 0;
        min-height: auto;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .about-description {
        font-size: 15px;
        text-align: left;
    }

    .balloon-img {
        width: 300px;
    }

    /* Experiences Section Mobile */
    .experiences-section {
        min-height: auto;
        display: block;
        align-items: stretch;
    }

    .experiences-section .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .experiences-section .row {
        display: block;
    }

    .experiences-section .col-lg-6 {
        width: 100%;
    }

    .experience-content .col-lg-6:first-child {
        order: 1;
    }

    .experience-content .col-lg-6:last-child {
        order: 2;
        margin-top: 0;
    }

    .experiences-title {
        display: none; /* Hide original title on mobile */
    }

    .experiences-title-mobile {
        font-size: 1.8rem;
        margin-bottom: 30px;
        text-align: center;
        line-height: 1.3;
        font-weight: 600;
        color: #272A34;
        display: block;
    }

    .experience-tabs {
        gap: 20px;
        margin-bottom: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tab-item {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .tab-item.active {
        background-color: #648CBC;
        color: white;
    }

    .tab-icon {
        width: 28px;
        height: 28px;
        stroke: currentColor;
    }

    /* Mobile Experience Switching */
    .desktop-experience {
        display: none;
    }

    .mobile-experience {
        display: block;
    }

    /* Mobile Experience Owl Carousel */
    .experience-carousel {
        margin-top: 24px;
    }

    .experience-mobile-slide {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        margin: 0 10px;
    }

    .experience-mobile-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }

    .experience-mobile-content {
        padding: 25px 20px 30px;
        text-align: center;
    }

    .experience-mobile-name {
        font-size: 22px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

    .experience-mobile-description {
        font-size: 16px;
        color: #272A34;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .experience-carousel .owl-nav {
        margin-top: 20px;
        text-align: center;
    }

    .experience-carousel .owl-nav button {
        background: white !important;
        color: #648CBC !important;
        border: 2px solid #648CBC !important;
        border-radius: 50% !important;
        width: 50px !important;
        height: 50px !important;
        margin: 0 10px !important;
        font-size: 18px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
    }

    .experience-carousel .owl-nav button:hover {
        background: #648CBC !important;
        color: white !important;
    }

    .experience-carousel .owl-nav button:disabled {
        opacity: 0.3 !important;
        cursor: not-allowed !important;
    }

    .experience-carousel .owl-dots {
        text-align: center;
        margin-top: 20px;
    }

    .experience-carousel .owl-dot {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50% !important;
        background: rgba(100, 139, 188, 0.3) !important;
        margin: 0 5px !important;
        transition: all 0.3s ease !important;
    }

    .experience-carousel .owl-dot.active {
        background: #648CBC !important;
        transform: scale(1.2) !important;
    }

    /* Mobile Swiper - Single Card Display (Desktop behavior hidden on mobile) */
    .experience-swiper {
        display: none;
    }

    .experience-swiper::after {
        display: none;
    }

    .swiper-container {
        position: relative;
        height: 500px;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        cursor: grab;
        user-select: none;
        touch-action: pan-y; /* Allow vertical scrolling but handle horizontal */
    }

    .swiper-container:active {
        cursor: grabbing;
    }

    .experience-slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100%;
        height: 100%;
        opacity: 0;
        transform: none !important;
        z-index: 1 !important;
        transition: opacity 0.3s ease;
        background: white;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .experience-slide.active {
        opacity: 1 !important;
        z-index: 2 !important;
        transform: none !important;
    }

    .swiper-img {
        height: 300px;
        width: 100%;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
        display: block;
        flex-shrink: 0;
    }

    /* Hide original content on mobile */
    .experience-info {
        display: none;
    }

    /* Style for cloned content inside slides */
    .experience-slide-content {
        padding: 20px;
        text-align: center;
        background: white;
        border-radius: 0 0 20px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .experience-slide.active .experience-slide-content {
        display: flex;
    }

    .experience-slide-content .experience-name {
        font-size: 1.5rem;
        margin-bottom: 10px;
        margin-top: 0;
        font-weight: 600;
        color: #272A34;
    }

    .experience-slide-content .experience-description {
        font-size: 14px;
        margin-bottom: 20px;
        color: #272A34;
        line-height: 1.5;
        text-align: center;
        flex: 1;
    }

    .experience-slide-content .experience-btn {
        padding: 12px 30px;
        font-size: 14px;
        background-color: #648CBC;
        color: white;
        border: none;
        border-radius: 25px;
        display: block;
        cursor: pointer;
        font-weight: 500;
        width: 100%;
        margin-top: auto;

    }

    /* Mobile Pagination - Bottom centered */
    .experience-pagination {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        gap: 8px;
        right: auto;
        top: auto;
    }

    .experience-pagination .dot {
        width: 12px;
        height: 4px;
        background-color: #e0e0e0;
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .experience-pagination .dot.active {
        background-color: #648CBC;
        width: 24px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo-main {
        font-size: 11px;
    }

    .logo-sub {
        font-size: 8px;
    }

    /* About Section Tablet */
    .about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 14px;
    }

    .balloon-img {
        width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .arabic-link {
        margin-right: 15px;
    }

    /* About Section Small Mobile */
    .about-section {
        padding: 40px 0;
    }

    .about-content {
        margin-bottom: 30px;
    }

    .about-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 14px;
    }

    .balloon-img {
        width: 250px;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        /*font-size: 4rem;*/
    }

    .container {
        /*max-width: 1140px;*/
    }
}





/* Utility Classes */
.text-center {
    text-align: center;
}

/* Why The Dubai Balloon Section */
.why-section {

}

.why-title {
    font-size: 40px;
    font-weight: 600;
    color: #272A34;
    margin-bottom: 60px;
    text-align: center;
}

.why-text {
    color: #648CBC;
    font-weight: 700;
}

.why-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid rgba(247, 247, 251, 1);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.why-icon {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.why-desktop-grid .why-card .why-icon img {
    width: 60px;
    height: 60px;
}

.why-icon svg {
    width: 60px;
    height: 45px;
}

.why-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #272A34;
    margin-bottom: 20px;
    line-height: 28px;
    text-align: left;
}

.why-card-text {
    font-size: 16px;
    color: #272A34;
    line-height: 24px;
    margin: 0;
    text-align: justify;
}

/* Desktop Grid Layout */
.why-desktop-grid {
    display: flex;
}

/* Mobile Swiper Layout */
.why-mobile-swiper {
    display: none;
}

.why-swiper-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.why-swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    width: 400%;
}

.why-swiper-slide {
    width: 25%;
    flex-shrink: 0;
    padding: 0 20px;
}

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

.why-dot {
   width: 24px;
    height: 4px;
    background-color: #e9ecef;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-dot.active {
    background-color: #648CBC;
    width: 24px;
}

/* Responsive adjustments for Why section */
@media (max-width: 768px) {
    .why-section {

    }

    .why-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* Hide desktop grid, show mobile swiper */
    .why-desktop-grid {
        display: none;
    }

    .why-mobile-swiper {
        display: block;
    }

    .why-card {
        padding: 40px 30px;
        margin: 0;
        text-align: center;
        border-radius: 16px;
    }

    .why-card-title {
        font-size: 1.3rem;
    }

    .why-card-text {
        font-size: 0.9rem;
    }

    .why-swiper-slide {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .why-title {
        font-size: 1.8rem;
    }

    .why-card {
        padding: 30px 20px;
    }

    .why-swiper-slide {
        padding: 0 10px;
    }
}

/* What Guests Say test Section */

.balloon-test {
    padding: 160px 0;
    background-position: 80px bottom;
    background-repeat: no-repeat;
    border-radius: 80px;
}

/* larg */
@media (min-width: 1480px) {
    .balloon-test {
        padding: 200px 0;
    }
}

@media (max-width: 1440px) {
    .balloon-test {
        padding: 140px 32px;
    }

    .testimonials-content {
        padding-right: 0;
        padding-left: 30px;
    }

    .testimonials-section {
        background-color: #ffffff;
        padding-left: 32px;
        padding-right: 32px;
    }
}

/*mid */
@media (max-width: 1199px) {
    .balloon-test {
        padding: 120px 0;
    }

    .testimonials-section {
        background-color: #ffffff;
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .balloon-test {
        padding: 90px 0;
        border-radius: 40px;
        background-position: center bottom;
    }

    .testimonials-section {
        background-color: #ffffff;
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* What Guests Say About Us Section */

.testimonials-section {
    background-color: #ffffff;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonials-content {
    padding-right: 40px;
}

.testimonials-title {
    font-size: 40px !important;
    font-weight: 600;
    color: #272A34;
    line-height: 1.2;
    margin-bottom: 8px;
    background-color: unset !important;
}

.testimonials-highlight {
    color: #648CBC;
    font-weight: 700;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #272A34;
    line-height: 28px;
    margin: 0;
    font-weight: 500;
}

.testimonial-card-container {
    position: relative;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 0px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    cursor: grab;
    user-select: none;
    transition: transform 0.2s ease;
}

.testimonial-card.dragging {
    cursor: grabbing;
    transform: scale(0.98);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.quote-icon svg {
    width: 36px;
    height: 32px;
}

.google-badge {
    padding: 8px 16px;
    /*background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
}

.from-google {
    font-size: 14px;
    color: #272A34;
    font-weight: 500;
}

.testimonial-text {
    font-size: 20px;
    color: #272A34;
    line-height: 28px;
    margin-bottom: 24px;
    text-align: justify;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1rem;
    color: #272A34;
    font-weight: 600;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-btn {
    background: none;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: #f0f0f0;
}

.nav-btn svg {
    width: 20px;
    height: 16px;
}

.nav-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 40px;
    height: 4px;
    background-color: #E5E7EB;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #648CBC;
}

/* Owl Carousel Custom Styles */

.owl-carousel.owl-loaded {
    display: block !important;
}

.instagram-carousel.owl-carousel {
    padding: 0 20px;
}

.instagram-carousel .owl-stage-outer {
    overflow: visible;
}

.instagram-carousel .owl-item {
    padding: 0 10px;
}

/* Hide default Owl navigation and dots */
.instagram-carousel .owl-nav,
.instagram-carousel .owl-dots {
    display: none;
}

/* Testimonials Owl Carousel Styles */
.testimonials-carousel.owl-carousel {
    padding: 0;
}

.testimonial-carousel-wrapper {
    overflow-x: clip !important;
}

.testimonials-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonials-carousel .owl-item {
    padding: 0;
}

/* Hide default Owl navigation and dots for testimonials */
.testimonials-carousel .owl-nav,
.testimonials-carousel .owl-dots {
    display: none;
}

/* Testimonials Navigation */
.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.testimonials-prev,
.testimonials-next {
    background: rgb(100 140 188 / 10%);
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background-color:rgb(100 140 188 / 10%);
    border-color:unset;
    /*color: white;
    transform: scale(1.05);*/
}

.testimonials-prev:disabled,
.testimonials-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #6c757d;
    transform: none;
}

.testimonials-prev:disabled:hover,
.testimonials-next:disabled:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #6c757d;
    transform: none;
}

.testimonials-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 20px;
}

.testimonials-dot {
    width: 24px;
    height: 4px;
    background-color: #e9ecef;
    border: 2px solid #dee2e6;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dot:hover {
    background-color: #ced4da;
    border-color: #adb5bd;
}

.testimonials-dot.active {
    background-color: #648CBC;
    border-color: #648CBC;
}

/* Responsive design for testimonials */
@media (max-width: 992px) {
    .testimonials-content {
        padding-right: 0;
        margin-bottom: 16px;
        text-align: center;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }
}

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

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .google-badge {
        align-self: flex-end;
    }
}

/* Follow us on Instagram Section */
.instagram-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.instagram-section .container {
    max-width: 100%;
    padding: 0;
    overflow: hidden;
}

.instagram-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
    color: #272A34;
    margin-bottom: 60px;
    padding: 0 20px;
}

.instagram-highlight {
    color: #648CBC;
    font-weight: 700;
}

.instagram-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0; /* Remove border radius for full width */
    padding: 0; /* Remove padding for full width */
}

.instagram-carousel {
    width: 100%; /* Full width container */
    padding: 0 20px; /* Add padding to carousel itself for edge spacing */
}

.instagram-slide {
    padding: 0 10px; /* Add padding between slides */
}

.instagram-post {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1.5; /* Make images 1.5x taller (was 1:1, now 1:1.5) */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    /*transform: translateY(-5px);*/
}

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

.instagram-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0.9;
}

.video-icon,
.instagram-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);*/
}

.instagram-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 40px;
}

.instagram-nav-btn {
    background: none;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-nav-btn:hover {
    background-color: rgba(74, 144, 226, 0.1);
    transform: scale(1.1);
}

.instagram-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.instagram-nav-btn:disabled:hover {
    background: none;
    transform: none;
}

.instagram-indicators {
    display: flex;
    gap: 8px;
}

.instagram-dot {
    width: 40px;
    height: 4px;
    background-color: #E5E7EB;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-dot.active {
    background-color: #648CBC;
}

/* Custom Instagram Navigation Buttons */
.instagram-prev,
.instagram-next {
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-prev:hover,
.instagram-next:hover {
    background-color:rgb(100 140 188 / 10%);
    border-color:unset;
    /*color: white;
    transform: scale(1.05);*/
}

.instagram-prev:disabled,
.instagram-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #6c757d;
    transform: none;
}

.instagram-prev:disabled:hover,
.instagram-next:disabled:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #6c757d;
    transform: none;
}

/* Update navigation layout */
.instagram-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 0;
}

.instagram-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 20px;
}

.instagram-dot {
    width: 24px;
    height: 4px;
    background-color: #e9ecef;
    border: 2px solid #dee2e6;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-dot:hover {
    background-color: #ced4da;
    border-color: #adb5bd;
}

.instagram-dot.active {
    background-color: #648CBC;
    border-color: #648CBC;
}

/* Responsive design for Instagram section */
@media (max-width: 1200px) {
    .instagram-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .instagram-title {
        font-size: 2.2rem;
    }
}

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

    .instagram-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .instagram-carousel {
        gap: 15px;
    }

    .instagram-navigation {
        gap: 30px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .instagram-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .instagram-carousel {
        gap: 10px;
        padding: 0 15px;
    }

    .instagram-navigation {
        gap: 20px;
    }
}



/* Navigation Wrapper */
.photo-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 0;
}

.photo-slide img{
    width: 100%;
    height: 374px;
    object-fit: contain;
    object-position: center;
}

/* Navigation Buttons */
.photo-prev,
.photo-next {
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-prev:hover,
.photo-next:hover {
    background-color: rgba(100, 140, 188, 0.1);
}

.photo-prev:disabled,
.photo-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #6c757d;
}

.photo-prev:disabled:hover,
.photo-next:disabled:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #6c757d;
    transform: none;
}

/* Dots Container */
.photo-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 20px;
}

/* Dots Style */
.photo-dot {
    width: 24px;
    height: 4px;
    background-color: #e9ecef;
    border: 2px solid #dee2e6;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-dot:hover {
    background-color: #ced4da;
    border-color: #adb5bd;
}

.photo-dot.active {
    background-color: #648CBC;
    border-color: #648CBC;
}

.memories .info-heading {
    font-size: 32px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 16px;
    letter-spacing: 0;
    line-height: 48px;
    font-family: 'Poppins';
}

.memories .info-heading .accent {
    color: var(--accent);
    font-weight: 600;
}

.memories .experience-btn {
    background-color: #648CBC;
    color: white;
    border: none;
    /*padding: 16px 32px;*/
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 300px;
    max-width: 100%;
    height: 48px;
    display: inline-block;
    text-align: center;
    /*line-height: 48px;*/
    text-decoration: none;
}


/* Power By */

.power-by {
    padding: 96px 0 48px 0;
}

.power-by .balloon-test {
    padding: 190px 0 !important;
    background-position: 102px 60px;
    background-repeat: no-repeat;
    border-radius: 80px;
    background-size: 350px;
}

.power-content{
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.power-content p font{
    font-family: 'Poppins' !important;
}

.power-content p font span{
    font-family: 'Poppins' !important;
}

.power-content .info-heading {
    font-size: 40px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 8px;
    letter-spacing: 0;
    line-height: 56px;
    background-color: unset !important;
}

.power-logo img {
    width: 310px;
    object-fit: cover;
    /* height: 180px; */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #B8B8B8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Experience Details Page Styles */

/* Experience Details Section */
.experience-details-section {
    /*background-color: #f8f9fa;*/
    min-height: 100vh;
    padding: 48px 0 96px 0 !important;
}

.experience-description {
        font-size: 18px;
    line-height: 28px;
    color: #272A34;
    margin-bottom: 48px;
    font-weight: 400;
}

.experience-description p {
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0;
    font-family: 'Spartan';
    line-height: 56px;
    text-align: center;
}

.section-subtitle .text-primary {
    color: #648CBC !important;
    font-weight: 700;
}

.text-primary {
    color: #648CBC !important;
}

/* What's Included Cards */
.whats-included {
    margin-bottom:48px;
}

.included-box {
    padding: 0 12px;
    gap: 16px;
}

.included-card {
    text-align: center;
    padding: 32px 24px 40px 24px;
    background: rgba(247, 247, 251, 1);
    border-radius: 24px;
    height: 100%;
}

.included-icon {
    width: 60px;
    height: 60px;
    /*background: rgba(100, 139, 188, 0.1);
    border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #648CBC;
}

.included-title {
    font-size: 18px;
    font-weight: 500;
    color: #272A34;
    margin: 0;
}

.included-note {
    background: rgba(112, 189, 100, 0.1);
    border-radius: 16px;
    padding: 16px 16px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.note-icon {
    color: #648CBC;
    flex-shrink: 0;
    margin-top: 2px;
}

.included-note p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #272A34;
    line-height: 24px;
}

/* Accordion Styles */
.details-accordion {
    /*background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
}

.accordion-item {
    border: 1px solid #D1D4DC !important;
    margin-bottom: 16px;
    border-radius: 16px !important;
    overflow: hidden;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
   background: transparent;
    border: none;
    border-radius: 12px !important;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #272A34 !important;
    box-shadow: none !important;
    font-family: 'Poppins';
}

.accordion-button:not(.collapsed) {
    background: transparent;
}

.accordion-button::after {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease;
}

/* + */
.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10H15M10 5V15M3 19H17C18.1046 19 19 18.1046 19 17V3C19 1.89543 18.1046 1 17 1H3C1.89543 1 1 1.89543 1 3V17C1 18.1046 1.89543 19 3 19Z' stroke='%23648CBC' stroke-width='2'/%3E%3C/svg%3E");
}

/* − */
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10H15' stroke='%23648CBC' stroke-width='2'/%3E%3Crect x='1' y='1' width='18' height='18' rx='2' stroke='%23648CBC' stroke-width='2'/%3E%3C/svg%3E");
}


.accordion-body {
    padding: 0 20px 12px 20px;
}

.accordion-body ul {
    margin: 0;
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
    color: #272A34;
}


/* Picture The Experience */
.picture-experience {
    margin-top: 48px;
}

.gallery-carousel {
    border-radius: 24px;
    /*overflow: hidden;*/
    display: block;
}



.gallery-carousel .owl-dots .owl-dot span{
    opacity: 0;
}

.gallery-carousel .owl-stage-outer{
 border-radius:24px;
}

.gallery-slide {
    border-radius:24px;
}

.gallery-image {
    height: 480px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 24px;
    object-position: center;
}

.gallery-slide:hover .gallery-image {
    /*transform: scale(1.05);*/
}

.gallery-carousel .owl-nav {
    text-align: center;
    position: absolute;
    top: calc(100% - 59%);
    width: auto;
    display: flex;
    justify-content: space-between;
    left: 24px;
    right: 24px;
}

/* لإخفاء الرموز الأصلية ‹ و › واستبدالها بالـ SVG */
.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
  font-size: 0 !important;
  background: none !important;
  border: none !important;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.3s ease;
  z-index: 10;
  position: relative;
}

/* right*/
.gallery-carousel .owl-nav button.owl-next {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12C0 5.37258 5.37258 0 12 0H28C34.6274 0 40 5.37258 40 12V28C40 34.6274 34.6274 40 28 40H12C5.37258 40 0 34.6274 0 28V12Z' fill='white' fill-opacity='0.24'/%3E%3Cpath d='M18 14L24 20L18 26' stroke='white' stroke-width='2'/%3E%3C/svg%3E") !important;
}

/* left*/
.gallery-carousel .owl-nav button.owl-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12C0 5.37258 5.37258 0 12 0H28C34.6274 0 40 5.37258 40 12V28C40 34.6274 34.6274 40 28 40H12C5.37258 40 0 34.6274 0 28V12Z' fill='white' fill-opacity='0.24'/%3E%3Cpath d='M22 14L16 20L22 26' stroke='white' stroke-width='2'/%3E%3C/svg%3E") !important;
}

.gallery-carousel .owl-nav button.disabled {
  opacity: 0.6;
  cursor: default;
}

.gallery-carousel .owl-nav button:hover:not(.disabled) {
  opacity: 0.8;
}


.gallery-carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 8px !important;
}

.gallery-carousel button.owl-dot {
    width: 24px;
    height: 4px;
    background-color: #e9ecef;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-carousel .owl-dot.active {
    background: #648CBC !important;
}

/* Booking Widget - Right Sidebar */

.booking-widget {
    position: sticky;
    top: 100px;
    height: fit-content;
}


.prices {
    gap: 12px;
}

.pass-type-header.book-title {
    background: #D1D4DC;
    padding: 20px 12px 12px;
    border-radius: 24px;
}

.pass-type-header.book-title .pass-type {
    font-size: 24px;
    font-weight: 400;
    color: #272A34;
    margin-bottom: 20px;
}

.booking-card {
    background: white;
    border-radius: 24px;
    padding: 20px 0 0;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); */
    border: 1px solid #D1D4DC;
}

.pass-type-header {
    text-align: center;
    border-bottom: 1px solid #d1d4dc;
    padding-bottom: 0px;
    margin-bottom: 16px;
}

.pass-type {
    font-size: 24px;
    font-weight: 400;
    color: #648CBC;
    margin-bottom: 16px;
}

.pass-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin-bottom: 0px;
    flex-flow: column;
    width: 50%;
    background-color: #fff;
    border-radius: 16px;
    padding: 12px;
}

.currency {
    font-size: 18px;
    font-weight: 600;
    color: #272A34;
}

.price-amount {
    font-size: 18px;
    font-weight: 500;
    color: #272A34;
    line-height: 24px;
}

.price-details {
    margin-left: 0px;
}

.price-details small {
    color: #999;
    font-size: 12px;
}

/* Ticket Counters */
.ticket-counters {
    margin-bottom: 20px;
    padding: 0 20px;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 16px 0;
}

.counter-row:last-child {
    border-bottom: none;
}

.counter-info {
    flex: 1;
}

.counter-label {
    font-size: 16px;
    font-weight: 500;
    color: #272A34;
    display: block;
    line-height: 24px;
}

.counter-sublabel {
    font-size: 13px;
    line-height: 20px;
    color: #959BAC;
    display: block;
    margin-top: 0px;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-btn {
    width: 35px;
    height: 35px;
    border: 0;
    background: white;
    /* color: #648CBC; */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 18px; */
    /* font-weight: bold; */
    cursor: pointer;
    transition: all 0.3s
ease;
}

.counter-btn:hover {
    /*background: #648CBC;
    color: white;*/
}

.counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.counter-value {
    font-size: 18px;
    font-weight: 600;
    color: #272A34;
    min-width: 20px;
    text-align: center;
}

.book-now-widget-btn {
    background: #648CBC;
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0 0 24px 24px;
    transition: all 0.3s ease;
}

.book-now-widget-btn:hover {
    background: #648CBC;
    color: white;
    /*box-shadow: 0 8px 25px rgba(100, 139, 188, 0.3);*/
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .booking-widget {
        position: relative;
        top: auto;
        margin-top: 40px;
    }

    .experience-details-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section-subtitle {
        font-size: 24px;
    }

    .whats-included,
    .details-accordion,
    .picture-experience {
        padding: 20px;
        margin-bottom: 30px;
    }

    .gallery-slide {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .included-card {
        padding: 15px 10px;
    }

    .included-icon {
        width: 50px;
        height: 50px;
    }

    .included-title {
        font-size: 14px;
    }

    .counter-row {
        padding: 12px 0;
    }

    .counter-controls {
        gap: 12px;
    }

    .counter-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .gallery-slide {
        height: 200px;
    }
}

/* Pricing Page Styles */

/* Pricing Section */
.pricing-section {
    background-color: white;
    min-height: 80vh;
    padding: 96px 0 48px 0;
}

.pricing-table-wrapper {
    max-width: 90%;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow-x: auto;
    box-shadow: none;
    border: 1px solid #e9ecef;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #648cbc transparent;
}

.pricing-comparison-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    margin: 0;
}

/* Table Header - Pass Cards */
.pass-header {
    padding: 48px 24px 16px;
    text-align: center;
    vertical-align: top;
    border-right: 1px solid #e9ecef;
    position: relative;
}

.pass-header:last-child {
    border-right: none;
}

.pass-header.featured {
    background: white;
    color: #648CBC;
    position: relative;
}

.pass-header.featured::before {
    display: none;
}

.features-header {
    width: 280px;
    /*background: #f8f9fa;*/
    border-right: 1px solid #e9ecef;
}

.pass-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pass-icon {
    width: 120px;
    height: 120px;
    background-color: #E8EEF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #648CBC;
}

.pass-header.featured .pass-icon {
    /*background: rgba(100, 139, 188, 0.1);*/
    color: #648CBC;
}

.pass-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
    color: #272A34;
    line-height: 36px;
}

.pass-header.featured .pass-title {
    color: #648CBC;
}

.pass-description {
    font-size: 14px;
    color: #6A7188;
    line-height: 20px;
    margin: 0;
    font-weight: 400;
    text-align: justify;
}

.pass-header.featured .pass-description {
    color: #6A7188;
}

/* Table Body Cells */
.feature-row.white-row:last-child .feature-status-cell {
    border-bottom: 0;
}

.feature-row.white-row:last-child .feature-label-cell {
    border-bottom: 0 !important;
}

.pricing-comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    text-align: center;
    vertical-align: middle;
}

.pricing-comparison-table td:last-child {
    border-right: none;
}

.feature-label-cell {
    background: #f8f9fa;
    font-weight: 500;
    color: #272A34;
    width: 280px;
    font-size: 16px;
    text-align: left !important;
}

.feature-label-cell.feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    color: #648CBC;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #F7F7FB;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /* border: 1px solid rgb(233 236 239 / 70%); */
    box-shadow: -1px 3px 2px 1px rgb(233 236 239 / 95%);
}

.feature-icon img {
    width: 24px;
    height: 24px;
    stroke: #6A7188;
    filter: brightness(0) saturate(100%) invert(46%) sepia(7%) saturate(463%) hue-rotate(188deg) brightness(90%) contrast(86%);
}

.feature-name {
    font-size: 16px;
    font-weight: 600;
}

.label {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.sublabel {
    font-size: 12px;
    color: #272A34;
    display: block;
    line-height: 16px;
}

.note {
    font-size: 12px;
    color: #272A34;
    display: block;
    line-height: 16px;
}

.price-cell {
    font-size: 16px;
    font-weight: 600;
    color: #272A34;
    background: white;
}

.price-cell.featured {
    background: white;
    color: #648CBC;
    font-weight: 600;
}

.button-cell {
    background: white;
    padding: 20px;
}

.button-cell.featured {
    background: white;
}

.pricing-btn {
    background: #648CBC;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    width: 300px;
    /*width: 100%;*/
}

.pricing-btn:hover {
    background: #4a6b94;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 139, 188, 0.3);
}

/* Outline Button Styles */
.pricing-btn-outline {
    background: transparent !important;
    color: #648CBC !important;
    border: 2px solid #648CBC !important;
}

.pricing-btn-outline:hover {
    background: #648CBC !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(100, 140, 188, 0.3);
}

.pricing-btn-outline-featured {
    background: transparent !important;
    color: #648CBC !important;
    border: 2px solid #648CBC !important;
}

.pricing-btn-outline-featured:hover {
    background: #648CBC !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(100, 140, 188, 0.3);
}

.price-cell p {
    margin: 0;
}

/* Alternating Row Colors */
.light-row {
    background-color: #F7F7FB !important;
}

.light-row .feature-label-cell {
    background-color: #f8f9fa !important;
}

.light-row .price-cell:not(.featured),
.light-row .button-cell:not(.featured),
.light-row .feature-status-cell:not(.featured) {
    background-color: #f8f9fa !important;
}

.white-row {
    background-color: white !important;
}

.white-row .feature-label-cell {
    background-color: white !important;
}

.white-row .price-cell:not(.featured),
.white-row .button-cell:not(.featured),
.white-row .feature-status-cell:not(.featured) {
    background-color: white !important;
}

.featured-btn {
    background: white;
    color: #648CBC;
    border: 2px solid white;
}

.featured-btn:hover {
    background: #f8f9fa;
    color: #4a6b94;
    border-color: #f8f9fa;
}

.feature-status-cell {
    background: white;
    text-align: center;
}

.feature-status-cell.featured {
    background: white;
}

.status-icon {
    margin: 0 auto;
}

.status-icon.enabled {
    color: #28a745;
}

.status-icon.disabled {
    color: #dc3545;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .pricing-table-wrapper {
        border-radius: 15px;
        overflow-x: auto;
    }

    .pricing-comparison-table {
        min-width: 800px;
    }

    .pass-header {
        padding: 20px 15px;
        min-width: 160px;
    }

    .pass-icon {
        width: 40px;
        height: 40px;
    }

    .pass-title {
        font-size: 16px;
    }

    .pass-description {
        font-size: 10px;
    }

    .feature-label-cell {
        min-width: 200px;
        padding: 15px;
    }

    .pricing-comparison-table td {
        padding: 15px 10px;
    }

    .pricing-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}





@media (max-width: 767px) {

    .experience-tabs {
        gap: 16px;
        margin-bottom: 0px;
        justify-content: center;
        flex-wrap: wrap;
    }


    .pricing-section {
        /*padding: 40px 0;*/
    }

    .pricing-table-wrapper {
        margin: 0 10px;
        border-radius: 16px;
    }

    .pricing-comparison-table {
        min-width: 700px;
    }

    .pass-header {
        padding: 15px 10px;
        min-width: 140px;
    }

    .pass-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
    }

    .pass-title {
        font-size: 14px;
        margin: 8px auto;
        line-height: 20px;
    }

    .pass-description {
       /* display: none;*/
    }

    .feature-label-cell {
        width:240px;
        min-width: 240px;
        padding: 12px;
        font-size: 14px;
    }

    .pricing-comparison-table td {
        padding: 12px 8px;
        font-size: 14px;
    }

    .pricing-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .feature-icon {
        /*width: 14px;
        height: 14px;*/
    }

    .status-icon {
        width: 16px;
        height: 16px;
    }
}

/* Footer Styles */
.footer-section {
    background-color: #f7f7fb;
    padding: 40px 0 0;
    color: #648cbc;
    border-radius: 80px 80px 0 0;
}

.footer-section hr{
    border-top: 1px solid #ffffff;
    opacity: 1;
}

.footer-brand {
    margin-bottom: 32px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-title {
    font-size: 14px;
    font-weight: 400;
    color: #6A7188;
    margin-bottom: 20px;
    letter-spacing: 0;
    line-height: 20px;
}

.footer-links {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links li {
    /*margin-bottom: 12px;*/
    list-style: disc;
    color: #648CBC;
}

.footer-link {
    color: #648CBC;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: 500;
    line-height: 24px;
}

.footer-link:hover {
    color: #648CBC;
    text-decoration: underline;
}

/* Contact Information */
.contact-info {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 12px;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-size: 12px;
    color: #8e9aaf;
    margin-bottom: 0;
    line-height: 16px;
}

.contact-link {
    color: #272A34;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 24px;
}

.contact-link:hover {
    color: #648CBC;
}


/* Contact Us */

.contact{
    padding: 48px 0 !important;
}

.contact .contact-info {
    margin-top: 0px;
    display: flex;
    flex-flow: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    gap: 12px;
}

.contact .footer-title {
    font-size: 14px;
    font-weight: 400;
    color: #6A7188;
    margin-bottom: 0;
    letter-spacing: 0;
    line-height: 20px;
}

.contact .image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-2px);
}

/* FAQ */

.faq-section{
    padding: 48px 0 24px 0 !important;
}

.custom-faq .accordion-item {
    border: 0px solid #D1D4DC !important;
    margin-bottom: 16px;
    border-radius: 16px !important;
    overflow: hidden;
    background-color: #F7F7FB;
}

.custom-faq .accordion-button {
    background: transparent;
    border: none;
    border-radius: 16px !important;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #272A34 !important;
    box-shadow: none !important;
    font-family: 'Poppins';
}


/* Footer Bottom */
.footer-bottom {
    padding: 16px 0;
}

.copyright {
    color: #959BAC;
    font-size: 16px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 42px;
    justify-content: flex-end;
    margin-bottom:0;
}

.footer-bottom-link {
    color: #648CBC;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: rgba(100, 140, 188, 1);
    text-decoration: underline;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .contact-item {
        margin-bottom: 25px;
    }

    .contact-label,
    .contact-link {
        font-size: 0.9rem;
    }

    .social-media {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 30px 0 0;
    }

    /* Mobile Footer Structure - Stack everything vertically */
    .footer-section .row:first-child {
        margin-bottom: 40px;
    }

    .footer-section .row:first-child .col-lg-6:first-child {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-section .row:first-child .col-lg-6:last-child {
        text-align: center;
    }

    .social-media {
        justify-content: center;
        margin-top: 0;
    }

    /* Quick Links Section on Mobile */
    .footer-section .row:nth-child(2) .col-lg-6:first-child {
        margin-bottom: 40px;
    }

    /* Make Quick Links single column on mobile */
    .footer-section .row:nth-child(2) .col-lg-6:first-child .row .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .footer-section .row:nth-child(2) .col-lg-6:first-child .row .col-6:first-child {
        margin-bottom: 20px;
    }

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

    /* Get in Touch Section on Mobile */
    .footer-section .row:nth-child(2) .col-lg-6:last-child .row .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-label {
        font-size: 0.85rem;
        color: #8e9aaf;
        margin-bottom: 4px;
    }

    .contact-link {
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Footer Bottom */
    .footer-bottom {
        margin-top: 40px;
        padding: 20px 0;
    }

    .footer-bottom .row .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer-bottom .row .col-md-6:first-child {
        order: 2;
        margin-top: 15px;
    }

    .footer-bottom .row .col-md-6:last-child {
        order: 1;
    }

    .footer-bottom-links {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .copyright {
        text-align: center;
        margin-top: 15px;
    }
}

/* =================================
   WEATHER TRACKER SECTION STYLES
================================= */
.weather-tracker-section {
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: start;
    transition: background-image 0.5s ease;
}

/* Updated by dev */
/* Desktop Background Images */
/* Sunrise Period */
/* .weather-tracker-section.period-sunrise.status-yes {
    background-image: url('../assets/images/awf-sunrise-desktop-yes.jpg');
} */

/* .weather-tracker-section.period-sunrise.status-no {
    background-image: url('../assets/images/awf-sunrise-desktop-no.jpg');
} */

/* Morning Period */
/* .weather-tracker-section.period-morning.status-yes {
    background-image: url('../assets/images/awf-morning-desktop-yes.jpg');
} */

/* .weather-tracker-section.period-morning.status-no {
    background-image: url('../assets/images/awf-morning-desktop-no.jpg');
} */

/* Evening Period */
/* .weather-tracker-section.period-evening.status-yes {
    background-image: url('../assets/images/awf-evening-desktop-yes.jpg');
} */

/* .weather-tracker-section.period-evening.status-no {
    background-image: url('../assets/images/awf-evening-desktop-no.jpg');
} */

/* Default fallback for desktop */
/* .weather-tracker-section.status-no {
    background-image: url('../assets/images/awf-morning-desktop-no.jpg');
} */

/* .weather-tracker-section.status-yes {
    background-image: url('../assets/images/awf-morning-desktop-yes.jpg');
} */

/* Date Selector */
.date-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 24px;
}

.date-card {
    background: white;
    border-radius: 16px;
    padding: 16px 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 147px;
    color: #6A7188;
}

.date-card:hover {
    /*transform: translateY(-5px);*/
    box-shadow: 0 8px 20px rgba(100, 140, 188, 0.3);
}

.date-card.active {
    background: #648CBC;
    color: white;
    /*transform: translateY(-5px);*/
    box-shadow: 0 8px 20px rgba(100, 140, 188, 0.4);
}

.date-month {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    opacity: 1;
    margin-bottom: 0px;
}

.date-day {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 48px;
}

.date-weekday {
    font-size: 10px;
    font-weight: 500;
    opacity: 1;
}

/* Time Slots */
.time-slots {
    display: flex;
    justify-content: center;
    gap: 0px;
    margin-top: 24px;
    margin: auto;
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: fit-content;
    border-radius:16px;
}

.time-slot {
    background: rgba(255, 255, 255, 1);
    /* backdrop-filter: blur(10px); */
    padding: 12px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 157px;
    position: relative;
    color: #6A7188;
}

.time-slots .sunrise{
    border-radius: 16px 0 0 16px;
}

.time-slots .morning{
    border-radius: 0 0 0 0;
    border-right: 1px solid #D1D4DC;
    border-left: 1px solid #D1D4DC;
}

.time-slots .evening{
    border-radius: 0px 16px 16px 0px;
}

.time-slot:hover {
    background: rgb(100 140 188);
    /* transform: translateY(-5px); */
    color: #fff;
}

.time-slot.active {
    background: #648CBC;
    border-color: #648CBC;
    /* transform: translateY(-5px); */
    box-shadow: none;

}

.time-slot.active .slot-time{
    color: #fff;
}

.time-slot.active .slot-name{
    color: #fff;
}

.time-slot:hover .slot-time{
    color: #fff;
}

.time-slot:hover .slot-name{
    color: #fff;
}

.slot-name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    /* color: #6A7188; */
    margin-bottom: 0;
}

.slot-time {
    font-size: 10px;
    font-weight: 500;
    opacity: 1;
    color: #959BAC;
}



/* Global Status */
.global-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    border-radius: 16px;
    padding: 12px 24px;
    max-width: fit-content;
    margin: 24px auto auto;
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2) ;
}

.status-balloon-icon {
    width: 27px;
    height: fit-content;
}

.global-status .status-text {
    font-size: 1rem;
    font-weight: 600;
    color: #28a745;
    transition: color 0.3s ease;
}

.global-status .status-text.status-yes {
    color: #28a745;
}

.global-status .status-text.status-no {
    color: #ff8c00;
}



/* Responsive Design */
@media (max-width: 991px) {


    .date-selector {
        gap: 10px;
    }

    .date-card {
        padding: 15px 20px;
        min-width: 100px;
    }

    .date-day {
        font-size: 1.75rem;
    }

    .time-slots {
        gap: 10px;
    }

    .time-slot {
        padding: 15px 30px;
        min-width: 150px;
    }
}



@media (max-width: 767px) {
    .weather-tracker-section {
        padding: 40px 0 60px;
        align-items: center;
    }

    /* Mobile Background Images */
    /* Sunrise Period - Mobile */
    .weather-tracker-section.period-sunrise.status-yes {
        background-image: url('../assets/images/awf-sunrise-mobile-yes.jpg');
    }

    .weather-tracker-section.period-sunrise.status-no {
        background-image: url('../assets/images/awf-sunrise-mobile-no.jpg');
    }

    /* Morning Period - Mobile */
    .weather-tracker-section.period-morning.status-yes {
        background-image: url('../assets/images/awf-morning-mobile-yes.jpg');
    }

    .weather-tracker-section.period-morning.status-no {
        background-image: url('../assets/images/awf-morning-mobile-no.jpg');
    }

    /* Evening Period - Mobile */
    .weather-tracker-section.period-evening.status-yes {
        background-image: url('../assets/images/awf-evening-mobile-yes.jpg');
    }

    .weather-tracker-section.period-evening.status-no {
        background-image: url('../assets/images/awf-evening-mobile-no.jpg');
    }

    /* Default fallback for mobile */
    .weather-tracker-section.status-no {
        background-image: url('../assets/images/awf-morning-mobile-no.jpg');
    }

    .weather-tracker-section.status-yes {
        background-image: url('../assets/images/awf-morning-mobile-yes.jpg');
    }

    .date-selector {
        flex-wrap: wrap;
        gap: 8px;
    }

    .date-card {
        padding: 12px 18px;
        min-width: 90px;
    }

    .date-month {
        font-size: 0.75rem;
    }

    .date-day {
        font-size: 1.5rem;
    }

    .date-weekday {
        font-size: 0.75rem;
    }

    .time-slots {
        flex-wrap: wrap;
        gap: 8px;
    }

    .time-slot {
        padding: 12px 20px;
        min-width: 130px;
        flex: 1;
    }

    .slot-name {
        font-size: 1rem;
    }

    .slot-time {
        font-size: 0.75rem;
    }

    .global-status {
        padding: 12px 24px;
    }


}

/* =================================
   ARE WE FLYING SECTION STYLES
================================= */
.are-we-flying-section {
    background-color: white;
    padding: 96px 0 48px 0;
}

.are-we-flying-section .section-title {
    font-size: 32px;
    font-weight: 600;
    color: #272A34;
    margin-bottom: 48px;
    text-align: center;
}

.are-we-flying-section .text-brand {
    color: #648CBC;
    font-weight: 700;
}

.are-we-flying-section .section-description {
    font-size: 16px;
    line-height: 24px;
    color: #272A34;
    text-align: justify;
    font-weight: 400;
}

/* Status Indicators */
.status-indicators {
    padding-left: 20px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.status-icon {
    flex-shrink: 0;
    /*width: 24px;
    height: 24px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.balloon-icon {
    width: 40px;
    height: 40px;
}

.clock-icon {
    width: 40px;
    height: 40px;
}

.status-content {
    flex: 1;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
}

.status-title {
    font-size: 18px;
    font-weight: 500;
    color: #272A34;
    margin-bottom: 0;
    line-height: 28px;
}

.status-text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    /* color: #272A34; */
    margin: 0;
}

.status-highlight {
    font-weight: 600;
}

.status-highlight.green {
    color: #28a745;
}

.status-highlight.orange {
    color: #ff8c00;
}


/* Responsive Design */
@media (max-width: 991px) {
    .are-we-flying-section {
        padding: 60px 0;
    }

    .are-we-flying-section .section-title {
        font-size: 2rem;
    }

    .status-indicators {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .are-we-flying-section {
        padding: 40px 0;
    }

    .are-we-flying-section .section-title {
        font-size: 1.75rem;
    }

    .are-we-flying-section .section-description {
        font-size: 0.95rem;
    }

    .status-item {
        gap: 15px;
    }

    .status-icon {
        width: 50px;
        height: 50px;
    }

    .balloon-icon {
        width: 40px;
    }

    .clock-icon {
        width: 35px;
        height: 35px;
    }

    .status-title {
        font-size: 1.1rem;
        margin-bottom:2px !important;
    }

    .status-text {
        font-size: 0.9rem;
    }
}

/***********************************Plan Your Flight*********************************************/
:root{
      --accent: #5e8fb6;
      --muted-bg: #f6f7fb;
      --card-radius: 24px;
    }

    /* Section wrapper */
    .info-section {
      background: white;
    }

    .info-section.alt-bg {
      background: var(--muted-bg);
    }

    .info-section:last-of-type{
        padding-bottom: 48px !important;
    }

    .info-heading {
      font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 0.2px;
    line-height: 56px;
    }

    .info-heading .accent {
      color: var(--accent);
      font-weight: 700;
    }

    /* card image look */
    .image-card {
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(20,30,40,0.06);
      background: #fff;
      display: block;
    }

    .image-card img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
          border-radius: 24px;
    }

    /* text column */
    .info-text {
      color: #272A34;
    line-height: 24px;
    font-size: 16px;
    text-align: justify;
    }

    .info-text p + p {
      margin-top: 16px;
    }

    .info-text strong {
      font-weight: 600;
    }


    /* responsive tweaks */
    @media (max-width: 991.98px) {
      .image-card img {
        height: 220px;
      }
      .info-heading {
        font-size: 1.5rem;
      }
      .info-section {
        padding: 3.25rem 0;
      }
    }

    @media (max-width: 575.98px) {
      .image-card img {
        height: 200px;
      }
      .info-text {
        font-size: 0.95rem;
      }
    }





.scroll-icon {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    text-align: center;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 17px;
    color: #fff;
    background-color: transparent;
}


.scroll-icon {
  text-align: center;
  margin: 0 auto;
  padding-top: 10px;
}

#scroll-lottie svg {
  animation: scrollBounce 1.8s ease-in-out infinite;
  opacity: 1;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.6;
  }
}

.scroll-icon.scroll-footer {
  position: relative;
  bottom: 7px;
}

.scroll-icon.scroll-footer svg{
    cursor: pointer;
}

div#backToTop {
    width: fit-content;
    padding: 0;
}




/* Popup main wrapper */

/* البوب أب الأساسي */
#main-popup {
    position: fixed;
    inset: 0;
    display: none; /* JS بيخليه flex */
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: .3s ease;
}

#main-popup.show {
    opacity: 1;
}


.main-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
    cursor: pointer;
}

.main-popup-container {
    position: relative;
    z-index: 2;
    background: #fff;
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);

    transform: translateY(40px);
    transition: .3s ease;
}

.main-popup.show .main-popup-container {
    transform: translateY(0);
    border: 2px solid rgb(0 0 0 / 10%);
}

.main-popup .leftimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-popup-container .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-popup-container h4{
    font-size:20px;
}

.btn-close-main-popup {
    background: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    margin: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    right: 15px;
}

@media (max-width: 768px) {
    .main-popup-container {
        flex-direction: column;
        max-width: 95%;
    }

    .main-popup .leftimg {
        width: 100%;
    }

    .main-popup-container .col-md-6 .info-text {
        padding: 16px 24px;
    }
}





/* Floating bubble button */


/* Floating Button */
.flight-status-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #648CBC;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
    z-index: 9999;
    transition: 0.25s;
    width: 240px;
    height: 48px;
}
.flight-status-btn svg {
    width: 40px;
    height: 68px;
    position: absolute;
    right: 16px;
    bottom: 0;
    /*animation: scrollBounce 1.8s ease-in-out infinite;*/
    opacity:1 !important;
}
.flight-status-btn:hover {
    /*transform: translateY(-3px);*/
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
}

/* Popup box fixed in bottom right */
.status-popup {
    position: fixed;
    bottom: 85px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -1;
}

.status-popup.active{
    z-index: 9999;
}

.status-popup-box .status-icon {
    width: 40px;
    height: 40px;
    margin: 0;
}

/* Popup box style */
.status-popup-box {
    width: 320px;
    background: white;
    border-radius: 24px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Close button */
.status-close-btn {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Title */
.status-title {
    font-size: 18px;
    font-weight: 500;
    color: #272A34;
    margin-bottom: 2px;
}

.status-popup-box .status-title{
    margin-bottom: 24px;
}

/* Items */
.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.status-item h3 {
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 500;
    color: #272A34;
}
.status {
    font-size: 14px;
    font-weight: 600;
}
.status.standby { color: #FF9A1B; }
.status.flying { color: #70BD64; }
.status-icon { width: 36px; height: 36px; }

/* Learn more button */
.status-learn-btn {
    display: block;
    margin-top: 12px;
    padding: 10px 0;
    border: 2px solid #648CBC;
    border-radius: 12px;
    font-size: 14px;
    color: #648CBC;
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease;
}
.status-learn-btn:hover { background: #648CBC;  color:#fff;}

/* Show popup */
.status-popup.active .status-popup-box {
    opacity: 1;
    transform: translateY(0);
}






/* Form Wrapper */
#event_form {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    max-width: 550px;
    margin: auto;
}

/* Title above each input */
.single-widget-search-input-title {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 15px;
    color: #2e3a4a;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Input container */
.single-widget-search-input {
    margin-bottom: 18px;
}

/* Input style */
.single-widget-search-input input,
.single-widget-search-input textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e6e9ee;
    background: #f9fafc;
    border-radius: 12px;
    transition: 0.25s ease;
    font-size: 15px;
    color: #333;
}

/* Textarea */
.single-widget-search-input textarea {
    height: 120px;
    resize: none;
}

/* Focus effect */
.single-widget-search-input input:focus,
.single-widget-search-input textarea:focus {
    border-color: #4a90e2;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.15);
}

/* Placeholder */
.single-widget-search-input input::placeholder,
.single-widget-search-input textarea::placeholder {
    color: #9da8b6;
}

/* Icon inside title */
.single-widget-search-input-title i {
    color: #4a90e2;
    font-size: 16px;
}

/* Button */
#event_form .btn-yellow {
    background: #648cbc;
    color: #fff;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    transition: 0.25s ease;
    width: 100%;
    height: 48px;
}

#event_form .btn-yellow:hover {
    background: #648cbc;
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(255,255,255,0.35);
}

/* Responsive */
@media (max-width: 480px) {
    #event_form {
        padding: 20px;
    }
}


.included-box .col {
    width: 31%;
    flex: auto;
    max-width: 32%;
}


.px-lg-32{
    padding-left: 32px;
    padding-right: 32px;
}


/*****************************About Us*************************/


.partner-row{
    display: flex;
    align-items: center;
    padding-bottom: 72px;
}

.partner-row:last-of-type {
    padding-bottom: 48px !important;
}

.partner-row.reverse{
    flex-direction: row-reverse;
}


.partner-text h4 {
    font-size: 24px;
    font-weight: 500;
    /* margin-bottom: 14px; */
    line-height: 36px;
}

.partner-text p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #272A34;
    text-align: justify;
    margin-bottom: 12px;
}

.partner-btn{
    display: inline-block;
    padding: 10px 26px;
    border-radius: 16px;
    border: 2px solid #648CBC;
    color: #648CBC;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    width: 184px;
    height: 48px;
    transition: .3s;
}

.partner-btn:hover{
    background: #648CBC;
    color: #fff;
}

.partner-logo{
    width: 100%;
    height: 300px;
    background: #F7F7FB;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img{
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

@media (max-width: 992px){

    .partner-row{
        flex-direction: column !important;
        text-align: center;
        padding-bottom: 48px;
    }

    .partner-text h4 {
        font-size: 24px;
        font-weight: 500;
        /* margin-bottom: 14px; */
        text-align: center;
        line-height: 36px;
    }

    .partner-logo{
        width: 100%;
        max-width: 420px;
        aspect-ratio: 3 / 2;
        background: #f6f7fb;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-inline: auto;
    }

    .partner-logo{
        order: 1;
        width: 100%;
        height: 240px
    }

    .partner-logo img{
        max-width: 50%;
        max-height: 50%;
        object-fit: contain;
    }

    .partner-text p{
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: #272A34;
        text-align: justify;
        margin-bottom: 4px;
    }

    .partner-text{
        order: 2;
        max-width: 100%;
        margin-top: 16px;
    }

    .partner-btn{
        width: 100%;
        height: 48px;
        margin-top: 24px;
        transition: .3s;
    }
}


.woot-widget-bubble.woot-elements--right {
    left: 20px;
    right: unset !important;
}

.woot-widget-holder.woot-elements--right {
    left: 20px;
    right: unset !important;
}

/********************************************Mobile Style*************************************************************/
@media screen
and (max-device-width: 1440px)
and (orientation: landscape){
    .navbar-nav .nav-link {
        color: white !important;
        font-weight: 500;
        margin: 0;
        padding: 8px 20px !important;
        transition: all 0.4s ease;
        text-decoration: none;
        font-size: 14px;
        line-height: 18px;
        border-radius: 12px;
        white-space: nowrap;
    }
}


@media screen
and (max-device-width: 768px)
and (orientation: portrait){
    .time-slots {
        gap: 0;
    }
}


@media (min-width: 992px) and (max-width: 1365px) and (orientation: landscape) {

    .navbar-nav .nav-link {
        color: white !important;
        font-weight: 500;
        margin: 0;
        padding: 8px !important;
        transition:all 0.4s ease;
        text-decoration: none;
        font-size: 14px;
        line-height: 18px;
        border-radius: 12px;
        white-space: nowrap;
    }


    .book-now-btn {
        background-color: transparent;
        color: white !important;
        border: 2px solid white;
        padding: 10px 20px;
        border-radius: 12px;
        font-weight: 500;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        width: 120px;
        height: 40px;
        line-height: 16px;
    }

}



@media screen
and (max-device-width: 932px)
and (orientation: landscape) {

    .weather-tracker-section {
        padding: 110px 0 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        transition: background-image 0.5s ease;
    }

    .time-slots {
        gap: 0;
    }

    .date-card {
        padding: 12px 20px;
        min-width: 120px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .mobile-menu-footer {
        margin-top: 0;
        padding: 24px;
        position: relative;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .pass-icon img {
        width: 64px;
        height: 64px;
    }

    .status-popup {
        position: fixed;
        bottom: 16px;
        right: 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: -1;
    }

    .status-item{
        margin-bottom:0;
    }

    .status-popup-box{
        padding:16px;
    }

}


@media (max-width: 767.98px) {

.experience-tabs {
display: flex;
overflow-x: auto;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
}

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

.status-popup {
    width: 100%;
    bottom: 0;
    right: 0;
}

.status-popup-box {
    width: 100%;
    background: white;
    border-radius: 32px 32px 0 0;
    padding: 20px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.status-popup-box .status-icon {
    width: 40px;
    height: 40px;
    margin: 0;
}

.woot-widget-bubble{
    z-index: 9998 !important;
}


.woot-widget-holder.woot-elements--right {
    left: 0px;
    right: unset !important;
}

.px-16{
    padding-left: 16px;
    padding-right: 16px;
}

.px-20{
    padding-left: 20px;
    padding-right: 20px;
}

.px-24{
    padding-left: 24px;
    padding-right: 24px;
}

section {
    padding: 48px 0;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 1.5rem;
    line-height: 64px;
    font-weight: 600;
    margin: 0;
}

.hero-head{
    padding: 0 24px;
}

.hero-btn {
    /* padding: 12px 20px; */
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    height: 56px;
    width: 100%;
    margin-top: 48px;
}

.about-section {
    padding: 32px 0;
}

.about-title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 32px;
    font-weight: 700;
}

.about-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: justify;
}

.info-padd{
    padding: 0 16px;
}

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

.experience-mobile-slide {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    margin: 0 2px;
}

.experience-mobile-slide img{
    height: 260px;
    width: 100%;
    border-radius: 24px;
}

.experience-btn {
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    height: 56px;
    padding: 12px;
    line-height: 28px;
    text-decoration: none;
}

.experience-mobile-content {
    padding: 0;
    text-align: center;
    display: flex;
    flex-flow: column;
    gap: 0px;
}

.experience-mobile-name {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    color: #1a1a1a;
    margin-top: 16px;
    margin-bottom: 0;
}

.experience-mobile-description {
    font-size: 16px;
    color: #272A34;
    line-height: 24px;
    margin-bottom: 24px;
    margin-top:8px;
    text-align: justify;
}

.experiences-title {
    font-size: 24px;
    font-weight: 600;
    color: #272A34;
    text-align: center;
    margin-bottom: 24px;
    line-height: 32px;
}

.experiences-title span{
    display: block;
}

.home .tab-item {
    width: 56px;
    height: 56px;
}

.home .tab-item img{
    width: 24px;
    height: 24px;
}

.home .icon {
    color: #648CBC;
    width: 24px;
}

.experience-carousel.mobile-experience .owl-nav{
    display: none;
}

.experience-carousel.mobile-experience .owl-dot span{
    width: 24px;
    height: 4px;
    background-color: #e9ecef;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}
.experience-carousel.mobile-experience .owl-dot{
    width: 24px !important;
    height: 4px !important;
    border-radius: 0 !important;
    background:none !important;
    margin: 0 5px !important;
    transition: all 0.3s
    ease !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #648cbc;
}
.experience-carousel.mobile-experience .owl-dot.owl-dot.active {
    background: #648CBC !important;
    transform: none !important;
}

.experience-content {
    margin-bottom: 0;
}

.experience-carousel.mobile-experience .owl-dots {
    margin-top: 24px;
}

.mobile-experience .owl-stage {
    display: flex;
    align-items: start;
    justify-content: center;
}

.why-swiper-slide {
    padding: 0;
}

.why-card:hover {
    transform: none;
    box-shadow: none;
}

.why-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    width: 63%;
    text-align: center !important;
    margin: 0 auto 0 auto;
    margin-bottom: 24px !important;
}

.why-icon {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card {
    padding: 48px 20px 32px 20px;
    display: flex;
    flex-flow: column;
    gap: 16px;
}

.why-card-title {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
}

.why-card-text {
    font-size: 16px;
}


.balloon-test {
    padding: 48px 0 !important;
    border-radius: 0;
    background-image: none !important;
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.testimonials-prev{
    display: none;
}

.testimonials-next{
    display: none;
}

.testimonials-title {
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    text-align: center !important;
    letter-spacing: -1.30px !important;
}

.testimonials-subtitle {
    font-size: 16px !important;
    color: #272A34;
    line-height: 24px !important;
    margin: 0;
    font-weight: 500 !important;
}

.testimonial-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}

.testimonial-card {
    padding: 24px 20px;
}

.testimonial-text {
    font-size: 16px !important;
    text-align: justify;
    line-height: 24px !important;
    margin-bottom: 16px;
}

.testimonials-section {
    padding: 0;
}

.instagram-title {
    padding: 0;
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    width: 50%;
    text-align: center !important;
    margin: 0 auto 0 auto;
    margin-bottom: 24px !important;
}

.instagram-section {
    padding: 48px 0 24px 0;
}

.instagram-carousel .owl-item {
    padding: 0;
}

.instagram-carousel.owl-carousel {
    padding: 0;
}

.instagram-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.instagram-navigation {
    margin-top: 24px;
}

.instagram-prev{
    display: none;
}

.instagram-next{
    display: none;
}



.footer-section {
    background-color: #f7f7fb;
    padding: 40px 0 0;
    color: #648cbc;
    border-radius: 24px 24px 0 0;
}


.footer-brand {
    margin-bottom: 0;
    text-align: left;
    width: fit-content;
}

.footer-section .row:first-child .col-lg-6:first-child {
    text-align: center;
    margin-bottom: 0;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-section .row:first-child {
    margin-bottom: 24px;
}

.footer-title {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 20px;
    font-weight: 400;
}


.footer-links {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin-bottom: 0;
}

.contact-info {
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.footer-section hr {
    display: none;
}

.footer-bottom {
    margin-top: 0;
    padding: 16px 0;
}

.footer-bottom .row .col-md-6:first-child {
    order: 2;
    margin-top: 0;
}

.footer-bottom-links {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0;
}

.copyright {
    text-align: center;
    margin-top: 0;
    line-height: 24px;
}

.contact-label {
    font-size: 12px;
    color: #8e9aaf;
    margin-bottom: 0;
    line-height: 16px;
}

.pricing-section {
    padding: 48px 0;
}

.pricing-table-wrapper {
    margin: auto;
    border-radius: 10px;
}

.pricing-table-wrapper {
    margin: auto;
    border-radius: 16px;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: #648cbc transparent;
    padding-bottom: 5px;
}

.pass-icon{
    width: 80px;
    height: 80px;
}

.pass-icon img{
    width: 40px;
    height: 40px;
}

.status-icon {
    width: 24px;
    height: 24px;
}

.pass-header {
    padding: 24px 16px;
    min-width: 140px;
}

.label {
    font-size: 14px;
    font-weight: 500;
    display: block;
     margin-bottom: 0px;
}

.experience-description {
    font-size: 16px;
    line-height: 24px;
    color: #272A34;
    margin-bottom: 48px;
    font-weight: 400;
}

.section-subtitle {
    font-size: 24px;
    line-height: 32px;
}

.whats-included, .details-accordion, .picture-experience {
    padding: 0;
    margin-bottom: 48px;
}

.included-box {
    padding: 0 10px;
    gap: 12px;
    margin-top: 16px;
}

.included-box .col {
    width: 31%;
    flex: auto;
    max-width: 33%;
}

.included-card {
    padding: 16px 12px;
    height:100%;
}

.included-icon {
    width: 40px;
    height: 40px;
    margin: 8px auto 16px auto;
}

.included-icon img {
    width: 40px;
    height: 40px;
}

.included-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 7px;
}

.included-note {
    background: rgba(112, 189, 100, 0.1);
    border-radius: 16px;
    padding: 24px 16px 16px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.accordion-button {
    background: transparent;
    border: none;
    border-radius: 12px !important;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #272A34 !important;
    box-shadow: none !important;
    font-family: 'Poppins';
    line-height: 24px;
}

.gallery-slide {
    height: 585px;
}

.gallery-image {
    height: 585px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 24px;
    object-position: center;
}

.gallery-carousel .owl-nav{
    display: none;
}

.experience-details-section {
    padding: 24px 0 0 !important;
}

.picture-experience {
    margin-bottom: 24px !important;
}

.experience-gallery{
    margin-top:16px !important;
}

.date-month {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.date-card {
    padding: 12px 20px;
    min-width: 31%;
}

.date-selector {
    flex-wrap: wrap;
    gap: 12px;
}

.date-day {
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
}

.time-slots {
    /* flex-wrap: wrap; */
    gap: 0;
}

.time-slot {
    padding: 8px 12px;
    min-width: fit-content;
    flex: 1;
}

.are-we-flying-section {
    padding: 48px 0;
}

.are-we-flying-section .section-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0px;
}

.info-section {
    padding: 48px 0;
}

.info-heading {
    font-size: 24px !important;
        margin-bottom: 24px !important;
        line-height: 32px !important;
}

.info-text p + p {
    margin-top: 0;
    margin-bottom: 0;
}

.image-card img {
    height: 260px;
}

.info-section:last-of-type {
    padding-bottom: 16px !important;
}

.contact {
    padding: 24px 0 !important;
}

.custom-faq .accordion-item {
    border: 0px solid #D1D4DC !important;
    margin-bottom: 16px;
    border-radius: 12px !important;
    overflow: hidden;
    background-color: #F7F7FB;
}

.custom-faq .accordion-button {
    background: transparent;
    border: none;
    border-radius: 12px !important;
    padding: 16px 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #272A34 !important;
    box-shadow: none !important;
    font-family: 'Poppins';
}

.faq-section {
    padding: 24px 0 24px 0 !important;
}

.faq-section .details-accordion{
    margin-bottom: 0px !important;
}

.photo-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    gap: 0;
}

.photo-prev{
    display: none;
}

.photo-next{
    display: none;
}

.memories .info-heading {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0;
    line-height: 32px;
    font-family: 'Poppins';
}

.memories{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: justify;
}

.memories .experience-btn {
    width: 100%;
    max-width: 100%;
    height: 56px;
    display: inline-block;
    text-align: center;
    line-height: 56px;
    text-decoration: none;
    padding:0;
}

.power-by {
    padding: 48px 0 24px 0;
}

.power-by .balloon-test {
    padding: 0 !important;
    background-repeat: no-repeat;
    border-radius: 0;
    background: unset !important;
}

.power-logo {
    background-color: #f7f7fb;
    padding: 48px 20px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.power-logo img{
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.power-content .info-heading {
    font-size: 24px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 8px !important;
    letter-spacing: 0;
    line-height: 32px !important;
}

.power-content {
    font-size: 16px !important;
        line-height: 24px !important;
        font-weight: 500 !important;
        text-align: justify;
}

.experience-mobile-slide.info-section {
    padding: 48px 20px;
}

.experiences-section.inner {
    min-height: auto;
    display: block;
    align-items: stretch;
    padding: 0;
    padding-bottom: 24px;
}

 .status-popup-box .status-title{
        margin-bottom: 16px !important;
    }

}



@media (max-width: 389.98px) {
    .included-box .col {
        width: 48%;
        flex: auto;
        max-width: 48%;
    }
}

.instagram-area{
    padding-left: 60px;
    padding-right: 60px;
}

.eapps-instagram-feed-posts-item-template-tile{
    border-radius: 24px;
}

.eapps-instagram-feed-posts-item-image-wrapper{
    height: 360px;
}



@media (max-width: 767.98px) {
  .instagram-area{
    padding-left: 16px;
    padding-right: 16px;
}
.eapps-instagram-feed-posts-item-image-wrapper{
    height: 100%;
}
#eapps-instagram-feed-1 .eapps-instagram-feed-posts-item-image-icon{
    top: 16px !important;
    right: 16px !important;
}

.flight-status-btn {
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .flight-status-btn.show-on-scroll{
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .woot-widget-bubble.woot-widget--expanded svg {
        height: 20px;
        margin: 14px !important;
        width: 20px;
    }

    div#woot-widget--expanded__text {
        display: none;
    }

    .navbar-logo {
        height: 40px;
    }

    .mobile-menu-header .navbar-brand {
        display: none;
    }

    .mobile-menu-right .arabic-link{
        display:none;
    }

    .mobile-close-btn {
        right: 24px;
        position: absolute;
        top: 24px;
    }

    .navbar-brand {
        z-index: 99999;
    }

    .arabic-link {
        z-index: 99999;
    }

    .experience-description{
        margin-bottom: 24px;
    }

    .whats-included {
        margin-bottom: 24px !important;
    }

    .picture-experience {
        margin-top: 24px;
    }

    .details-accordion {
        margin-bottom: 24px;
    }
    
    .why-swiper-slide .why-icon img{
        width:60px;
    }
}


#eapps-instagram-feed-1 .eapps-instagram-feed-posts-item {
    width: 100%;
    position: relative;
    /* border-radius: 16px; */
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.eapps-instagram-feed-posts-item-image-ratio-1-1 .eapps-instagram-feed-posts-item-image-wrapper {
    padding-top: unset !important;
}

.eapps-instagram-feed-posts-item-template-tile .eapps-instagram-feed-posts-item-image {
    transition: transform .3s ease, filter .3s;
    left: 50%;
    transform: unset;
    transform-origin: 0 0;
    backface-visibility: hidden;
    position: unset !important;
    transform: unset !important;
}

.eapps-instagram-feed-posts-item-image {
    top: 24% !important;
}

#eapps-instagram-feed-1 .eapps-instagram-feed-posts-item-image-icon{
    right: 24px !important;
    top: 24px !important;
}

#backToTop #scroll-lottie svg {
     animation:unset;
    opacity: 1;
}




/*****************************About Us*************************/


.partner-row{
    display: flex;
    align-items: center;
    padding-bottom: 72px;
}

.partner-row:last-of-type {
    padding-bottom: 48px !important;
}

.partner-row.reverse{
    flex-direction: row-reverse;
}


.partner-text h4 {
    font-size: 24px;
    font-weight: 500;
    /* margin-bottom: 14px; */
    line-height: 36px;
}

.partner-text p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #272A34;
    text-align: justify;
    margin-bottom: 12px;
}

.partner-btn{
    display: inline-block;
    padding: 10px 26px;
    border-radius: 16px;
    border: 2px solid #648CBC;
    color: #648CBC;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    width: 184px;
    height: 48px;
    transition: .3s;
}

.partner-btn:hover{
    background: #648CBC;
    color: #fff;
}

.partner-logo{
    width: 100%;
    height: 300px;
    background: #F7F7FB;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img{
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

@media (max-width: 992px){

    .partner-row{
        flex-direction: column !important;
        text-align: center;
        padding-bottom: 48px;
    }

    .partner-text h4 {
        font-size: 24px;
        font-weight: 500;
        /* margin-bottom: 14px; */
        text-align: center;
        line-height: 36px;
    }

    .partner-logo{
        width: 100%;
        max-width: 420px;
        aspect-ratio: 3 / 2;
        background: #f6f7fb;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-inline: auto;
    }

    .partner-logo{
        order: 1;
        width: 100%;
        height: 240px
    }

    .partner-logo img{
        max-width: 50%;
        max-height: 50%;
        object-fit: contain;
    }

    .partner-text p{
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: #272A34;
        text-align: justify;
        margin-bottom: 4px;
    }

    .partner-text{
        order: 2;
        max-width: 100%;
        margin-top: 16px;
    }

    .partner-btn{
        width: 100%;
        height: 48px;
        margin-top: 24px;
        transition: .3s;
    }
}


@media (max-width: 499.98px) {
    .included-box {
        padding: 0 10px;
        gap: 12px;
        margin-top: 16px;
        flex-flow: column;
    }

    .included-box .col {
        width: 100%;
        flex: auto;
        max-width: 100%;
    }

    .included-card {
        padding: 16px 12px;
        height: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-radius: 16px;
    }

    .included-icon {
        width: 40px;
        height: 40px;
        margin: 0;
    }
    
    #event_form {
        margin-bottom: 48px;
    }
    
    .ramadan .info-text p {
        margin-bottom: 12px !important;
        letter-spacing: -0.5px !important;
    }
}


.experience-tabs.home .tab-item.active {
    background-color: #648CBC !important;
    border-color: #648CBC !important;
}

.experience-tabs.home .tab-item.active img {
    filter: brightness(0) invert(1);
}

#eapps-instagram-feed-1 .eapps-instagram-feed-posts-slider-nav{
    font-size: 0 !important;
    border-radius: 0px!important;
    background: none !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    transition: opacity 0.3s ease !important;
    z-index: 10 !important;
    box-shadow: none!important;
}

.eapps-instagram-feed-posts-slider-next .eapps-instagram-feed-posts-slider-nav-icon,
.eapps-instagram-feed-posts-slider-prev .eapps-instagram-feed-posts-slider-nav-icon{
    opacity: 0px!important;
    display: none;
}

#eapps-instagram-feed-1 .eapps-instagram-feed-posts-slider-nav.eapps-instagram-feed-posts-slider-next{
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12C0 5.37258 5.37258 0 12 0H28C34.6274 0 40 5.37258 40 12V28C40 34.6274 34.6274 40 28 40H12C5.37258 40 0 34.6274 0 28V12Z' fill='white' fill-opacity='0.24'/%3E%3Cpath d='M18 14L24 20L18 26' stroke='white' stroke-width='2'/%3E%3C/svg%3E") !important;
    right: 30px!important;
}

#eapps-instagram-feed-1 .eapps-instagram-feed-posts-slider-nav.eapps-instagram-feed-posts-slider-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12C0 5.37258 5.37258 0 12 0H28C34.6274 0 40 5.37258 40 12V28C40 34.6274 34.6274 40 28 40H12C5.37258 40 0 34.6274 0 28V12Z' fill='white' fill-opacity='0.24'/%3E%3Cpath d='M22 14L16 20L22 26' stroke='white' stroke-width='2'/%3E%3C/svg%3E") !important;
  left: 30px!important;
}




/******************things to do***************************/

.things-section .partner-row{
    padding-bottom: 48px;
    }

.things-section .partner-row .partner-btn{
    width: 184px;
    min-width: max-content;
}

@media (max-width: 992px){
    .things-section .partner-row{
    padding-bottom: 24px;
    }
    .partner-row:last-of-type {
        padding-bottom: 24px !important;
    }
    .things-section .partner-text h4{
        font-size: 20px;
        line-height: 32px;
    }
    
    .things-section .partner-row .partner-btn {
        width: 100% !important;
    }
    
   
}


.ramadan .info-text p{
    margin-bottom:12px;
}

.ramadan .info-text p:last-of-type{
    margin-bottom:0px;
    margin-top: 0;
}

.tnc-area.terms .sus-paragraph-left h2, .sus-paragraph-left p, .sus-paragraph-left ul li{
        text-align: left!important;
    }
    
    
.flatpickr-input {
    height: 56px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
}

.experiences-sup {
    font-size: 16px;
    line-height: 24px;
    color: #6A7188;
}



/* ===== FIX MOBILE INPUT ACTIVE / FOCUS COLOR ===== */

:root {
    --tdb-blue: #648CBC;
}

/* focus & active */
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    border-color: var(--tdb-blue) !important;
    box-shadow: 0 0 0 2px rgba(100, 140, 188, 0.25) !important;
    background-color: #fff !important;
}

/* iOS & Chrome yellow autofill FIX */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
    border-color: var(--tdb-blue) !important;
}

/* Bootstrap override */
.form-control:focus {
    border-color: var(--tdb-blue) !important;
    box-shadow: 0 0 0 0.25rem rgba(100, 140, 188, 0.25) !important;
}
