@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.sectionbody {
    position: relative;
    z-index: 1; /* Lower z-index than navigation */
}

.topbar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.1);
}

.topbar-content {
    padding: 20px 20px;
    font-size: 0.9rem;
    color: white;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    background-color: #ffffff21;
    font-size: 12px;
    border-bottom: 1px solid #adadad;
}

/* Updated Header Styles */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 40px;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left section - Navigation */
.nav-content {
    flex: 1;
    display: flex !important;
    justify-content: flex-start !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    position: relative;
    z-index: 1002;
}

.nav-menu li {
    position: relative;
    z-index: 1002;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    color: #FCF7F8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: left;
}



.nav-menu li a:hover {
    opacity: 0.7;
    color: #FCF7F8;
}

/* Dropdown arrow */
.nav-menu li a::after {
    content: '▼';
    font-size: 8px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    padding-bottom: 2px;


}

/* Dropdown menu styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fcf7f8ab;
    backdrop-filter: blur(10px);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1010;
    border-radius: 4px;
    padding: 15px 0;
    margin-top: 10px;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li:hover a::after {
    transform: rotate(180deg);
}

.dropdown a {
    display: block;
    padding: 5px 20px;
    color: #333333 !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0px !important;
    transition: all 0.3s ease;
    text-transform: none !important;
}

.dropdown a::after {
    display: none;
}

.dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    color: white;
    opacity: 1;
}

/* Center section - Logo */
.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo img {
    height: auto;
}

/* Right section - Enquire button and Hamburger */
.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    position: relative;
    margin-right: 50px;
}

.enquire-button {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 14px;
    background: none;
    border: 2px solid white;
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 0px;
}

.enquire-button:hover {
    background: white;
    color: #333;
}

/* Updated Hamburger Menu - Now functions as dropdown */
.hamburger-container {
    position: relative;
    display: inline-block;
    z-index: 10003;
    margin-right: 110px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 10004;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff8c;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hamburger-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1010; 
    border-radius: 4px;
    padding: 20px 0;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hamburger-container:hover .hamburger-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hamburger-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamburger-menu > li {
    position: relative;
    border-bottom: 1px solid #e5e5e5;
}

.hamburger-menu > li:last-child {
    border-bottom: none;
}

.hamburger-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hamburger-menu > li > a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #666;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #666;
}

.hamburger-menu > li.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Hamburger submenu styles - expandable like accordion */
.hamburger-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.hamburger-submenu.active {
    max-height: 300px;
}

.hamburger-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamburger-submenu li {
    margin: 0;
}

.hamburger-submenu a {
    display: block;
    padding: 12px 30px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-align: left;
}

.hamburger-submenu a:hover {
    color: #333;
    border-left-color: #333;
    background: rgba(0, 0, 0, 0.02);
}

/* Off-Canvas Menu Styles - Keep for backward compatibility but now hidden */
.menu-overlay {
    display: none;
}

.menu-backdrop {
    display: none;
}

/* Mobile responsive adjustments */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger-dropdown {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }

    /*.logo img {
        max-height: 50px;
    }*/

    .enquire-button {
        padding: 8px 20px;
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .sticky-nav {
        padding: 10px 0;
    }

    .experience-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 1.7rem;
    }
    
    .hamburger-dropdown {
        width: 100vw;
        right: -20px;
        min-width: unset;
    }
}

@media (max-width: 480px) {

    .logo {
        left: 23%;
    }

    .experience-block {
        margin: 0 !important;
    }

    .footer-section {
        padding-left: 0px !important
    }

    .hero-content p {
        font-size: 1.5rem !important;
        margin-bottom: 40px;
    }

    .topbar-content {
        padding: 0px 20px;
    }

    .header-content {
        padding: 15px 15px;
    }

    .header-right {
        gap: 15px;
    }

    .enquire-button {
        padding: 8px 16px;
        font-size: 11px;
    }
}

.swiper-slide {
    padding-block: 0px;
    text-align: center;
    font-size: 18px;
    background: #ccc;
    padding: 0;
    text-align: center;
    height: auto;
    flex-shrink: 0;
}

/* Position arrows on the sides overlaying the cards */
.swiper-button-prev,
.swiper-button-next,
.swiper-button-prevx,
.swiper-button-nextx {
    position: absolute !important;
    top: 46% !important;
    transform: translateY(-46%) !important;
    margin: 0 !important;
    width: 30px !important;
    height: 30px !important;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100; /* Higher z-index to sit on top of cards */
}

/* Position prev button on left */
.swiper-button-prev,
.swiper-button-prevx {
    left: 20px !important;
}

/* Position next button on right */
.swiper-button-next,
.swiper-button-nextx {
    right: 20px !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover,
.swiper-button-prevx:hover,
.swiper-button-nextx:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1); /* Maintain centering on hover */
}

.swiper-button-prev::after,
.swiper-button-next::after,
.swiper-button-prevx::after,
.swiper-button-nextx::after {
    font-size: 12px !important; /* Slightly larger arrows */
    font-weight: bold;
    color: #fff;
}

/* Navigation container should only hold pagination bullets at the bottom */
.swiper-navigation-container, .swiper-navigation-containerx {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Update pagination container to only contain bullets */
.swiper-pagination, .swiper-paginationx {
    position: static !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Space between bullets */
}

/* Convert line pagination to bullets */
.swiper-pagination-bullet, .swiper-pagination-bulletx {
    width: 12px !important; /* Standard bullet size */
    height: 12px !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border-radius: 50% !important; /* Make them circular */
    transition: all 0.3s ease !important;
    cursor: pointer;
    opacity: 1 !important;
}

/* Active bullet styling */
.swiper-pagination-bullet-active, .swiper-pagination-bullet-activex {
    width: 12px !important; /* Keep same size */
    height: 12px !important;
    background: #fff !important;
    transform: scale(1.2) !important; /* Slightly larger when active */
}

/* Ensure carousel container has relative positioning for absolute arrows */
.swiper-container, .swiper-containerx {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 80px; /* Increased to accommodate bottom pagination */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next,
    .swiper-button-prevx,
    .swiper-button-nextx {
        width: 40px !important;
        height: 40px !important;
        display: none; /* Hide navigation arrows on mobile, use swipe gestures */
    }
    
    .swiper-button-prev,
    .swiper-button-prevx {
        left: 10px !important;
    }
    
    .swiper-button-next,
    .swiper-button-nextx {
        right: 10px !important;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after,
    .swiper-button-prevx::after,
    .swiper-button-nextx::after {
        font-size: 14px !important;
    }
    
    .swiper-pagination-bullet, .swiper-pagination-bulletx {
        width: 10px !important;
        height: 10px !important;
    }

    .container {
        padding: 0 10px;
    }
    
    .swiper-pagination {
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }
}

/* Header Styles */
.hero-section {
    position: relative;
    overflow: visible; /* Change from hidden to visible */
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.header-overlay {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0px;
    z-index: 1001;
    transition: all 0.3s ease;
} 

.hero-content-animated {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.header-content,
.hero-content {
    position: relative;
    z-index: 1002;
}

@media (max-width: 768px) {
    .hero-video {
        /* On mobile, you might want to ensure the video covers properly */
        min-width: 100%;
        min-height: 100%;
    }
}

/* For very small screens or slow connections, provide fallback */
@media (max-width: 480px) {
    .hero-section {
        /* Fallback background in case video doesn't load */
        background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                    url('../img/home-banner.webp') center/cover no-repeat;
    }
}

/* Sticky Header Styles */
.header-overlay.sticky {
    position: fixed;
    top: 0;
    background: #1A1A1A;
    backdrop-filter: blur(15px);
    z-index: 1001;
}


.hero-content {
    margin-top: 215px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 3.5rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.cta-button {
    background: #fcf7f8;
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 0.7rem;
    transition: background 0.3s ease;
    font-weight: 600;
}

.cta-button:hover {
    background: #484848;
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fcf7f8;
    padding: 30px 0;
    z-index: 1000;
    transform: translateY(0);
}

.sticky-nav.scrolled {
    background: #fcf7f8;
}

/* Position sticky nav below header when header becomes sticky */
.sticky-nav.below-header {
    top: 0px;
    bottom: auto;
}

/* Hide sticky nav when header becomes sticky */
.sticky-nav.hidden {
    transform: translateY(100%);
}

/* Scenic Flights Section */
.scenic-flights {
    padding: 50px 0;
    background: #1a1a1a;
    color: white;
    position: relative;
    
}

.section-title-cth {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: visible;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    width: max-content;
}

.flight-card {
    flex: 0 0 300px;
    height: 350px;
    margin: 0 10px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flight-card:hover {
    transform: translateY(-10px);
}

.flight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 20px 20px;
    color: white;
}

.flight-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.flight-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tour-card {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.cardheader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 3;
}

.title-section h1 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.2;
    text-align: left;

}

#winelands .title-section h1 {
    font-size: 16px;
}

#winelands .cardheader {
    padding: 12px
}

.title-section h2 {
    color: white;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

.arrow-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.arrow-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.arrow-button svg {
    width: 16px;
    height: 16px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

/* Updated Card Footer Styles - Two Row Layout */
.cardfooter {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column; /* Changed to column for stacked rows */
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3); /* Added slight background for better readability */
}

#winelands .cardfooter {
    padding: 10px;
}

/* First row - Text paragraph */
.cardfooter p {
    color: white;
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 15px 0; /* Bottom margin to separate from second row */
    text-align: left;
    opacity: 0.9;
}

/* Second row - Button and price container */
.footercontent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto; /* Push to bottom if footer expands */
}

.book-button {
    background: transparent;
    color: #FCF7F8;
    border: 1px solid #FCF7F8;
    padding: 10px 16px;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
}

.book-button a {
    text-decoration: none !important;
}

#winelands .book-button {
    font-size: 10px;
}

.book-button:hover {
    background: #FCF7F8;
    color: #000;
    transform: translateY(-1px);
}

.book-button svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.price {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}

#winelands .price {
    font-size: 12px
}

/* Expanded content adjustments */
.expanded-content {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0.2s;
    color: white;
    line-height: 1.6;
    position: absolute;
    padding: 10px;
    margin-top: 80px;
    margin-left: -10px;
}

.cardfooter:hover .expanded-content {
    opacity: 1;
    visibility: visible;
    background-color: transparent;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .cardfooter {
        padding: 15px;
    }
    
    .cardfooter p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .footercontent {
        gap: 15px;
    }
    
    .book-button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .price {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footercontent {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .book-button {
        width: 100%;
        justify-content: center;
    }
    
    .price {
        text-align: center;
    }
}

/* Carousel Navigation - positioned with dots */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-nav {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(255,255,255,0.3);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #ff6b35;
}

/* Winelands Section */
.winelands {
    padding: 80px 0;
    background: #f8f8f8;
}

.winelands .section-title {
    color: #333;
}

.wine-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.text-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
    background-color: #FCF7F8;
}

@media (max-width: 1024px) {
    .wine-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 768px) {
    .wine-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 480px) {
    .wine-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.wine-card {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.wine-card:hover {
    transform: translateY(-5px);
}

.wine-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wine-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 20px 15px;
    color: white;
}

.wine-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Experiences Section */
.experiences {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    position: relative;
}

.experiences-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.experiences-carousel-wrapper {
    overflow: visible;
    width: 100%;
}

.experiences-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    width: max-content;
    align-items: center;
    justify-content: center;
}

.experience-card {
    flex: 0 0 800px;
    margin: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.experience-card.partial {
    opacity: 0.4;
    transform: scale(0.8);
}

.experience-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.experience-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.experience-image {
    border-radius: 2px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Experiences Carousel Navigation */
.experiences-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.experiences-carousel-nav {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.experiences-carousel-nav:hover {
    background: rgba(255,255,255,0.3);
}

/* Experiences Carousel Dots */
.experiences-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.experiences-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.experiences-carousel-dot.active {
    background: #ff6b35;
}

@media (max-width: 768px) {
    .experience-card {
        flex: 0 0 90vw;
        grid-template-columns: 1fr;
        text-align: center;
        margin: 0 20px;
    }

    .experience-content h3 {
        font-size: 1.5rem;
    }
}

/* Why Fly Section */
.why-fly {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://placehold.co/1920x600/2c5aa0/ffffff?text=Ocean+Aerial+View') center/cover no-repeat;
    color: white;
    text-align: center;
}

.why-fly-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.safety-icon {
    font-size: 4rem;
    margin-bottom: 30px;
}

.safety-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.safety-description {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 60px 0 0px;
}

.footer-content {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fcf7f8;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #5c5c5c;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding: 30px 0;
    background-color: #FCF7F8;
    color: #333;
}

.footer-bottom-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.footer-left p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.footer-center {
    text-align: center;
}

.footer-center p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.payment-security {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-logo {
    height: 24px;
    width: auto;
}

.security-logo {
    height: 20px;
    width: auto;
}

.secured-text {
    font-size: 12px;
    color: #666;
    margin: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .payment-security {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .payment-security {
        gap: 6px;
    }
    
    .payment-logo {
        height: 20px;
    }
    
    .security-logo {
        height: 16px;
    }
}

/* Add this CSS to your styles.css file */
.container {
    max-width: 100%;
    overflow: hidden;
    padding: 0 15px; /* Add some padding on smaller screens */
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

/* For larger screens */
@media (min-width: 1200px) {
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0px;
    }
}

/* Experience Section Styles - Swiper Compatible */
.experiences-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.experience-block {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 440px;
    margin: 0 0px;
}

.experience-layout {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

/* Updated 70/30 split for experience content and image */
.experience-content {
    flex: 0 0 60%; /* 70% width, no grow/shrink */
    display: flex;
    align-items: center;
    padding: 40px;
}

.experience-overlay {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0px;
    padding: 40px;
    max-width: 100%;
}

.experience-icon {
    color: #8b5a3c;
    margin-bottom: 20px;
}

.experience-overlay h3 {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.experience-overlay p {
    color: white;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 16px;
    text-align: left;
}

.experience-overlay ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.experience-overlay ul li {
    color: white;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    text-align: left;
}

.experience-overlay ul li:before {
    content: "â€¢";
    color: white;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.experience-booking {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-top: 0px;
    padding-top: 0px;
    border-top: 0px solid #e9ecef;
}

.book-now-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 12px 24px;
    border-radius: 1px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.book-now-btn:hover {
    background: transparent;
    transform: translateY(-2px);
}

.experience-price {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

/* Updated 30% width for experience image */
.experience-image {
    flex: 0 0 40%; /* 30% width, no grow/shrink */
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}

/* Swiper Navigation Styles */
.swiper-navigation-containerx {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.swiper-button-prevx:after {
    content: '';
    width: 8px;
    height: 8px;
    border: 2px solid white;
    border-bottom: none;
    border-right: none;
    transform: rotate(-45deg);
        margin-left: 3px;
}

.swiper-button-nextx:after {
    content: '';
    width: 8px;
    height: 8px;
    border: 2px solid white;
    border-bottom: none;
    border-right: none;
    transform: rotate(-45deg);
        margin-left: -3px;
}

.swiper-button-nextx:after {
    transform: rotate(135deg);
}

.swiper-paginationx .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-paginationx .swiper-pagination-bullet-active {
    background: #8b5a3c;
    transform: scale(1.2);
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 1 !important;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    margin-left: -3px !important;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    margin-left: 3px !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .experience-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .experience-content {
        order: 2;
        flex: none;
        width: 100%;
    }
    
    .experience-image {
        order: 1;
        flex: none;
        width: 100%;
        padding: 40px 40px 20px 40px;
    }
    
    .experience-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .experience-content,
    .experience-image {
        padding: 20px;
    }
    
    .experience-overlay {
        padding: 30px;
        max-width: none;
    }
    
    .experience-overlay h3 {
        font-size: 28px;
    }
    
    .experience-booking {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .swiper-containerx {
        padding: 0 10px;
    }
    
    .experience-block {
        margin: 0 5px;
    }
}

/* Modern Footer Social Icons - Add this to your styles.css file */
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: left;
    align-items: left;
}

.footer-social li {
    margin: 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.footer-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.footer-social i {
    font-size: 32px;
    color: white;
}

/* Add these responsive styles to your existing media queries */
@media (max-width: 768px) {
    .footer-social {
        gap: 15px;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
    }

    .footer-social i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .footer-social {
        gap: 12px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-social i {
        font-size: 18px;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in-out;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-in-out;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

#lightboxImage {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-caption {
    padding: 20px;
    background: white;
    text-align: center;
}

.lightbox-caption h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
}

.lightbox-caption p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    #lightboxImage {
        max-height: 60vh;
    }

    .lightbox-caption {
        padding: 15px;
    }

    .lightbox-caption h3 {
        font-size: 1.2rem;
    }

    .lightbox-caption p {
        font-size: 0.9rem;
    }
}

.experience-block {
    background-size: cover;
    background-position: center;
    padding: 0px 20px;
}

.experience-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto auto;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.experience-content-wrapper {
    grid-column: 1;
    grid-row: 1 / 4; /* Spans all 3 rows */
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 0px;
}

.experience-header {
    grid-row: 1;
    display: flex;
    align-items: flex-end;
    padding-left: 20px;
}

.experience-header h3 {
    font-size: 1.5em;
    margin-bottom: 0;
    color: white;
    font-weight: bold;
    text-align: left;
}

.experience-content-area {
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: flex-start;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
}

.experience-content-left {
    grid-column: 1;
}

.experience-content-right {
    grid-column: 2;
}

.content-text {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.content-text p {
    margin-bottom: 15px;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-text li {
    margin-bottom: 8px;
}

.experience-booking {
    grid-row: 3;
    grid-column: 1 / 3; /* Spans both content columns */
    display: flex;
    align-items: flex-start;
    gap:20px;
    padding-left:0px;
    margin-top: -60px;
    z-index: 10;
}

.experience-image {
    grid-column: 2;
    grid-row: 1 / 4; /* Spans all 3 rows */
    display: flex;
    align-items: center;
}

.experience-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 2px;
}

.book-now-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.book-now-btn:hover {
    background-color: white;
    color: #333;
}

.experience-price {
    font-size: 14px;
    font-weight: bold;
    color: white;
}

@media (max-width: 768px) {
    .experience-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }
    
    .experience-content-wrapper {
        grid-column: 1;
        grid-row: 1;
    }
    
    .experience-header h3 {
        font-size: 2em;
        text-align: left;
    }
    
    .experience-content-area {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .experience-booking {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }
    
    .experience-image {
        grid-column: 1;
        grid-row: 2;
    }
    
    .experience-image img {
        height: 250px;
    }
}


/* Experiences Section - Updated for Three Column Layout with Swiper */


.experience-block h3 {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Three column grid layout for each slide */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 20px 0 0px 0;
}

/* Text column styling */
.experience-text-column {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.experience-text-column h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.experience-text-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.experience-text-column ul {
    margin: 15px 0;
    padding-left: 20px;
}

.experience-text-column li {
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.5;
    font-size: 14px;
}

.experience-booking {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.book-now-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}


.experience-price {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Image column styling */
.experience-image-column {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    height: 300px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.experience-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.experience-block {
    background-size: cover;
    background-position: center;
    padding: 40px 20px 0px 20px;
    border-radius: 0px;
    overflow: hidden;
    text-align: left;
}

/* Update the experience layout to use the new grid system */
.experience-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

/* Remove old experience content wrapper styles and replace */
.experience-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.experience-header h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.experience-content-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.content-text {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.content-text p {
    margin-bottom: 15px;
}

.content-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-text li {
    margin-bottom: 8px;
}

/* Update experience image styles */
.experience-image {
    display: flex;
    align-items: center;
}

.experience-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .experience-grid,
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .experience-image-column,
    .experience-image img {
        height: 300px;
    }
    
    #experiences .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .swiper-button-prevx,
    .swiper-button-nextx {
        display: none;
    }
}

@media (max-width: 768px) {
    #experiences {
        padding: 60px 0;
    }
    
    .experience-text-column h3,
    .experience-header h3 {
        font-size: 1.5rem;
    }
    
    .experience-booking {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    #experiences .section-title {
        font-size: 1.8rem;
    }

    .experience-block {
        padding: 20px 15px;
    }
}

section.cth_why_fly_section {
    position: relative;
    padding: 160px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
    z-index: 1; /* Create stacking context */
}

section.cth_why_fly_section .cth_why_fly_background {
    position: absolute;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
    background-image: url('../img/cape-point.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

section.cth_why_fly_section .cth_why_fly_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(16 24 35 / 75%);
    z-index: -1;
}

section.cth_why_fly_section .cth_why_fly_title {
    margin-bottom: 60px;
    position: relative;
}

section.cth_why_fly_section .cth_why_fly_title h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #fff;
}

section.cth_why_fly_section .cth_title_divider {
    width: 80px;
    height: 2px;
    background-color: #fff;
    margin: 0 auto;
}

section.cth_why_fly_section .cth_carousel_container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

section.cth_why_fly_section .cth_carousel_content {
    position: relative;
    width: 80%;
    max-width: 800px;
    height: 300px; /* Fixed height */
    overflow: visible; /* Allow content to be visible */
}

section.cth_why_fly_section .cth_carousel_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Hide all slides by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Important to override any external styles */
section.cth_why_fly_section .cth_carousel_slide.cth_active {
    display: flex !important;
}

section.cth_why_fly_section .cth_slide_icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.cth_why_fly_section .cth_slide_icon img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(0) invert(1); /* Make icons white */
}

section.cth_why_fly_section .cth_slide_heading {
    font-size: 2.2rem;
    letter-spacing: 2px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #fff;
}

section.cth_why_fly_section .cth_slide_divider {
    width: 60px;
    height: 2px;
    background-color: #fff;
    margin: 15px auto 25px;
}

section.cth_why_fly_section .cth_slide_text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

section.cth_why_fly_section .cth_nav_arrow {
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    z-index: 5;
    position: relative;
}

section.cth_why_fly_section .cth_nav_arrow:hover {
    opacity: 0.7;
}

section.cth_why_fly_section .cth_nav_arrow svg {
    width: 24px;
    height: 24px;
}

section.cth_why_fly_section .cth_dot_navigation {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 16px;
    position: relative;
}

section.cth_why_fly_section .cth_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0;
}

section.cth_why_fly_section .cth_dot.cth_active {
    background-color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section.cth_why_fly_section {
        padding: 80px 0;
    }
    
    section.cth_why_fly_section .cth_why_fly_title h2 {
        font-size: 2rem;
    }
    
    section.cth_why_fly_section .cth_carousel_content {
        width: 70%;
        height: 350px;
    }
    
    section.cth_why_fly_section .cth_slide_heading {
        font-size: 1.8rem;
    }
    
    section.cth_why_fly_section .cth_slide_text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    section.cth_why_fly_section .cth_why_fly_title h2 {
        font-size: 1.6rem;
    }
    
    section.cth_why_fly_section .cth_carousel_content {
        width: 75%;
        height: 380px;
    }
    
    section.cth_why_fly_section .cth_slide_heading {
        font-size: 1.4rem;
    }
    
    section.cth_why_fly_section .cth_nav_arrow {
        width: 40px;
        height: 40px;
    }
    
    section.cth_why_fly_section .cth_nav_arrow svg {
        width: 20px;
        height: 20px;
    }
}


.hero-section.subpage {
    height: 40vh !important;
    overflow: visible; /* Ensure subpage hero also allows dropdown overflow */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
   background-position: 0;
    background-size: cover;
}



 .hero-section.subpage::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed (0.1-0.5) */
            z-index: 1;
        }

        /* Ensure hero content stays above the overlay */
        .hero-section.subpage .topbar-overlay,
        .hero-section.subpage .hero-content {
            position: relative;
            z-index: 2;
        }


        /* NEW CORNER RIBBON STYLES */
        .corner-ribbon {
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            overflow: hidden;
            z-index: 10;
            pointer-events: none;
        }

        .corner-ribbon::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 120px 120px 0;
            border-color: transparent;
            z-index: -1;
        }

        .corner-ribbon-text {
            position: absolute;
            top: 25px;
            right: -37px;
            width: 150px;
            text-align: center;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: white;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            transform: rotate(45deg);
            padding: 8px 0;
        }

        /* Top Pick Ribbon (Gold/Orange) */
        .corner-ribbon.top-pick::before {
            background: transparent;
        }

        .corner-ribbon.top-pick .corner-ribbon-text {
            background: linear-gradient(to top, #e1be00, #DAA520, #c9930f);
        }

        /* Most Booked Ribbon (Blue) */
        .corner-ribbon.most-booked::before {
            border-color: transparent #2563eb transparent transparent;
            background: linear-gradient(45deg, #2563eb, #1d4ed8);
        }

        .corner-ribbon.most-booked .corner-ribbon-text {
            background: linear-gradient(45deg, #2563eb, #1d4ed8);
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .corner-ribbon {
                width: 100px;
                height: 100px;
            }

            .corner-ribbon::before {
                border-width: 0 100px 100px 0;
            }

            .corner-ribbon-text {
                top: 22px;
                right: -25px;
                width: 125px;
                font-size: 10px;
                padding: 6px 0;
            }
        }

        @media (max-width: 480px) {
            .corner-ribbon {
                width: 80px;
                height: 80px;
            }

            .corner-ribbon::before {
                border-width: 0 80px 80px 0;
            }

            .corner-ribbon-text {
                top: 18px;
                right: -20px;
                width: 100px;
                font-size: 9px;
                padding: 5px 0;
            }
        }



/* Popup Overlay */
.booking-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.booking-popup-overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Popup Container */
.booking-popup {
    background: white;
    border-radius: 3px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 595px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.4s ease-out;
    z-index: 99999999999999999999999;
}

/* Popup Header */
.popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.popup-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.popup-header .helicopter-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Popup Content */
.popup-content {
    padding: 30px;
}

.booking-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0px;
}

.detail-value {
    font-weight: 500;
    color: #666;
    text-align: right;
}

.detail-icon {
    font-size: 16px;
    color: #667eea;
}

/* Tour Summary */
.tour-summary {
    background: #ebebeb;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 20px;
}

.tour-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.tour-duration {
    color: #666;
    font-size: 14px;
}

/* Add-ons Section */
.addons-summary {
    margin: 20px 0;
}

.addon-item {
    background: #f8f9ff;
    border: 1px solid #e6e8ff;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addon-name {
    font-weight: 500;
}

.addon-price {
    font-weight: 600;
}



.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.price-row:last-child {
    margin-bottom: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    margin-top: 15px;
}

.price-total {
    font-size: 18px;
    font-weight: 700;
}

/* Action Buttons */
.popup-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cancel {
    background: #c4c4c4;
    color: #666;
    border: 2px solid #e2e8f0;
}

.btn-cancel:hover {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-confirm {
    background: #A70E13;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-popup {
        margin: 10px;
        width: calc(100% - 20px);
    }

    .popup-header {
        padding: 20px;
    }

    .popup-content {
        padding: 20px;
    }

    .popup-actions {
        flex-direction: column;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.confirmation-message {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #fafafa;
    border: 1px solid #a7a7a7;
    border-radius: 3px;
    color: #424242;
}


.booking-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

   .confirmation-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .success-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .success-icon {
            width: 80px;
            height: 80px;
            background: #4CAF50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .success-icon::after {
            content: '✓';
            color: white;
            font-size: 48px;
            font-weight: bold;
        }
        
        .success-title {
            color: #333;
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .success-subtitle {
            color: #666;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .booking-reference {
            background: #f5f5f5;
            padding: 15px;
            border-radius: 8px;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            display: inline-block;
        }
        
        .confirmation-details {
            background: #fafafa;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .detail-section {
            margin-bottom: 25px;
        }
        
        .detail-section:last-child {
            margin-bottom: 0;
        }
        
        .section-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ddd;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            color: #555;
        }
        
        .detail-label {
            font-weight: 500;
        }
        
        .detail-value {
            text-align: right;
            font-weight: 400;
        }
        
        .price-section {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #ddd;
        }
        
        .total-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            border-top: 2px solid #333;
            margin-top: 10px;
        }
        
        .addon-item {
            padding: 8px 0;
            color: #555;
        }
        
        .next-steps {
            background: #e8f5e9;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .next-steps h3 {
            color: #A70E13;
            margin-bottom: 15px;
        }
        
        .next-steps ul {
            list-style: none;
            padding: 0;
        }
        
        .next-steps li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #555;
            text-align: left;
        }
        
        .next-steps li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #A70E13;
            font-weight: bold;
        }
        
        .action-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .btn {
            padding: 12px 30px;
            border-radius: 3px;
            font-size: 16px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary {
            background: #333;
            color: white;
        }
        
        .btn-primary:hover {
            background: #555;
        }
        
        .btn-secondary {
            background: white;
            color: #333;
            border: 2px solid #333;
        }
        
        .btn-secondary:hover {
            background: #f5f5f5;
        }
        
        @media print {
            .action-buttons {
                display: none;
            }
        }

    .booking-popup {
    max-width: 1200px !important; /* Increased width for two columns */
    width: 90%;
}

.popup-content {
    display: flex;
    gap: 30px;
    padding: 30px 30px 0px 30px;
}

.popup-left-column {
    flex: 1;
    min-width: 300px;
}

.popup-right-column {
    flex: 1;
    min-width: 300px;
    border-left: 1px solid #e0e0e0;
    padding-left: 30px;
}

.form-section {
    margin-bottom: 20px;
}

.form-section h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.form-group-popup {
    margin-bottom: 15px;
}

.form-group-popup label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.form-group-popup input {
    width: 90%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group-popup select {
    width: 90%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group-popup input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

.form-group-popup input.error {
    border-color: #f44336;
}

.error-message {
    color: #f44336;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.popup-actions {
    margin-top: 0px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
    }
    
    .popup-right-column {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-left: 0;
        padding-top: 20px;
    }
    
    .booking-popup {
        max-width: 500px !important;
    }
}