/* Header Image Section */
.header-image-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.header-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    max-width: 100%;
    max-height: 100%;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
}

/* Alternative: Use this class if you want to show full image without cropping */
.main-image-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: 100%;
    max-height: 100%;
    -webkit-object-fit: contain;
    -moz-object-fit: contain;
    -ms-object-fit: contain;
    background-color: #000; /* Dark background for letterboxing */
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.header-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    margin-top: 10px;
}

.breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-nav a:hover {
    opacity: 0.8;
    color: white;
    text-decoration: none;
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.breadcrumb-nav .current-page {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background-color: #f9f9fc;
}

/* Description Content */
.description-content {
    padding: 20px 0;
    height: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.key-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.key-features ul {
    list-style: none;
    padding: 0;
}

.key-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.key-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffa41d;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Pricing and Booking Content */
.pricing-booking-content {
    padding: 15px 0;
    height: 100%;
}

.pricing-summary h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.price-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.price-card {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 2px solid #ffa41d;
}

.price-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.price-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffa41d;
    margin-bottom: 3px;
}

.price-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.booking-button {
    display: block;
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffa41d 0%, #ff8c00 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 164, 29, 0.3);
}

.booking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 164, 29, 0.4);
    color: white;
    text-decoration: none;
}

/* Early Bird Booking Button Styling */
.booking-button-early-bird {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.booking-button-early-bird::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.booking-button-early-bird:hover::before {
    left: 100%;
}

.booking-button-early-bird:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
    color: white;
    text-decoration: none;
}

/* Booking Reminder */
.booking-reminder {
    margin-top: 10px;
    padding: 6px 10px;
    background: #f8f9fa;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    line-height: 1.3;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
    justify-content: center;
    opacity: 0.8;
}

.booking-reminder i {
    color: #6c757d;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.booking-reminder span {
    font-weight: 400;
}

/* Main Slider Container */
.main-slider-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.main-swiper {
    width: 100%;
    height: 56.25vw; /* This maintains 16:9 ratio at any screen width */
    max-height: 600px; /* Maximum height on large screens */
}

.main-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    max-width: 100%;
    max-height: 100%;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
}

.main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.main-content {
    color: white;
    text-align: center;
    max-width: 800px;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.main-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Main Slider Pagination */
.main-swiper .swiper-pagination {
    bottom: 30px;
}

.main-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s ease;
}

.main-swiper .swiper-pagination-bullet-active {
    background: #ffa41d;
    transform: scale(1.3);
}

/* Main Slider Navigation */
.main-swiper .swiper-button-next,
.main-swiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.main-swiper .swiper-button-next:hover,
.main-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.main-swiper .swiper-button-next::after,
.main-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Cafe and Mangrove Sections */
.cafe-section, .mangrove-section {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cafe-section {
    margin-bottom: 20px;
}

/* Video Section */
.video-section {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.video-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.video-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
}

/* Pricing Table Section */
.pricing-table-section {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    margin-top: 30px;
}

.pricing-table-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-table-container {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-table th {
    background: linear-gradient(135deg, #ffa41d 0%, #ff8c00 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.pricing-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.pricing-table tr:hover {
    background-color: #f8f9fa;
}

.pricing-table .section-header {
    background: #f8f9fa;
    font-weight: 700;
    color: #333;
    text-align: center;
    font-size: 1.1rem;
}

.pricing-table .section-header td {
    padding: 15px;
    border-bottom: 2px solid #ffa41d;
}

.footnotes {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ffa41d;
}

.footnotes p {
    margin: 5px 0;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* Footnote references in pricing table */
.pricing-table sup {
    font-size: 0.7rem;
    color: #ffa41d;
    font-weight: 600;
}

.pricing-table span sup {
    font-size: 0.7rem;
    color: #ffa41d;
    font-weight: 600;
}

/* Information Section */
.information-header {
    text-align: center;
    margin-bottom: 40px;
}

.information-header .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    font-weight: 400;
}

.information-section {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.2s ease;
}

.information-section:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-column {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-column:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-header {
    margin-bottom: 20px;
}

.info-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.required-badge {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.info-content {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.info-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffa41d;
    font-weight: bold;
    font-size: 1.1rem;
    background: #fff5e6;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Handle malformed HTML - orphaned li tags without proper ul structure */
.info-content > li {
    display: block;
    margin-bottom: 8px;
}

/* Handle nested lists properly */
.info-content ul ul {
    margin-left: 20px;
    margin-top: 5px;
}

.info-content ul ul li {
    padding-left: 20px;
    font-size: 0.95rem;
}

.info-content ul ul li:before {
    width: 16px;
    height: 16px;
    font-size: 0.7rem;
}

/* Handle orphaned content that might appear after li tags */
.info-content p {
    margin: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-content p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffa41d;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Note styling */
.info-note {
    margin-top: 15px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 8px;
    border-left: 4px solid #ffa41d;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #856404;
    position: relative;
}

.info-note strong {
    color: #ffa41d;
    font-weight: 600;
}

.info-content li i.icon {
    color: #ffa41d;
    margin-right: 8px;
}

.info-content table {
    width: 100%;
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-content table th {
    background: linear-gradient(135deg, #ffa41d 0%, #ff8c00 100%);
    padding: 15px 12px;
    font-weight: 600;
    color: white;
    border: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content table td {
    padding: 12px;
    border: 1px solid #f0f0f0;
    vertical-align: top;
    background: white;
    transition: background-color 0.2s ease;
}

.info-content table tr:hover td {
    background-color: #fff9f0;
}

.info-content table tr:nth-child(even) td {
    background-color: #fafafa;
}

.info-content table tr:nth-child(even):hover td {
    background-color: #fff9f0;
}

/* Special styling for cancellation policy */
.info-content li:has(i.fa-times) {
    border-left-color: #ff4757;
}

.info-content li:has(i.fa-times):before {
    content: "✗";
    color: #ff4757;
    background: #ffe6e6;
}

/* Accordion Section */
.accordion-section {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.accordion {
    margin-top: 30px;
}

.accordion .option {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion .option .toggle {
    display: none;
}

.accordion .option .title {
    display: block;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid #ffa41d;
}

.accordion .option .title:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.accordion .option .title .icon {
    margin-right: 10px;
    color: #ffa41d;
}

.accordion .option .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.accordion .option .toggle:checked + .title + .content {
    padding: 12px;
}

.accordion .option .content {
    padding: 0 20px;
}

.accordion .option .toggle:checked + .title + .content {
    padding: 20px;
}

.accordion .option .content ul {
    list-style: none;
    padding: 0;
}

.accordion .option .content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.accordion .option .content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffa41d;
    font-weight: bold;
    font-size: 1.1rem;
}

.accordion .option .content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.accordion .option .content table th,
.accordion .option .content table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.accordion .option .content table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price-cards {
        flex-direction: column;
        gap: 12px;
    }
    
    .price-card {
        padding: 12px 8px;
    }
    
    .price-card h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .price-card .price {
        font-size: 1.6rem;
        margin-bottom: 2px;
    }
    
    .price-card p {
        font-size: 0.8rem;
    }
    
    .booking-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .booking-button-early-bird {
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    }
    
    .booking-button-early-bird:hover {
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
    }
    
    .booking-reminder {
        margin-top: 8px;
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .main-swiper {
        height: 400px;
    }
    
    .main-image {
        object-fit: cover;
        object-position: center 25%;
        -webkit-object-fit: cover;
        -moz-object-fit: cover;
        -ms-object-fit: cover;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .main-subtitle {
        font-size: 1rem;
    }
    
    .gallery-swiper {
        height: 250px;
    }
    
    .gallery-title {
        font-size: 1.3rem;
    }
    
    .gallery-subtitle {
        font-size: 0.9rem;
    }
    
    .second-slider-container h2 {
        font-size: 2rem;
    }
    
    .video-section h2,
    .pricing-table-section h2,
    .accordion-section h2 {
        font-size: 1.8rem;
    }
    
    .description-content,
    .pricing-booking-content {
        margin-bottom: 20px;
    }
    
    .pricing-table {
        font-size: 0.8rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 6px 8px;
    }
    
    .accordion .option .title {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .accordion .option .content {
        padding: 0 12px;
    }
    
    .accordion .option .toggle:checked + .title + .content {
        padding: 12px;
    }
    
    /* Information section mobile improvements */
    .information-section {
        padding: 15px 12px;
        margin-bottom: 15px;
    }
    
    .info-header {
        margin-bottom: 12px;
    }
    
    .info-subtitle {
        font-size: 1.1rem;
    }
    
    .info-content {
        font-size: 0.9rem;
    }
    
    .info-content li {
        padding: 6px 0;
        padding-left: 22px;
    }
    
    .info-content table {
        font-size: 0.8rem;
    }
    
    .info-content table th,
    .info-content table td {
        padding: 8px 10px;
    }
    
    .info-note {
        margin-top: 12px;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .header-title {
        font-size: 2.5rem;
    }
    
    .breadcrumb-nav {
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .breadcrumb-nav .separator {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .header-title {
        font-size: 2rem;
    }
    
    .main-swiper {
        height: 300px;
    }
    
    .main-image {
        object-fit: cover;
        object-position: center 30%;
        -webkit-object-fit: cover;
        -moz-object-fit: cover;
        -ms-object-fit: cover;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .main-subtitle {
        font-size: 0.9rem;
    }
    
    .gallery-swiper {
        height: 200px;
    }
    
    .gallery-title {
        font-size: 1.1rem;
    }
    
    .gallery-subtitle {
        font-size: 0.8rem;
    }
    
    .second-slider-container h2 {
        font-size: 1.8rem;
    }
    
    .video-section h2,
    .pricing-table-section h2,
    .accordion-section h2 {
        font-size: 1.8rem;
    }
    
    .pricing-summary h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .price-cards {
        gap: 10px;
        margin-bottom: 1.2rem;
    }
    
    .price-card {
        padding: 10px 6px;
    }
    
    .price-card h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .price-card .price {
        font-size: 1.5rem;
        margin-bottom: 2px;
    }
    
    .price-card p {
        font-size: 0.75rem;
    }
    
    .booking-button {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
    
    .booking-button-early-bird {
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    }
    
    .booking-button-early-bird:hover {
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
    }
    
    .booking-reminder {
        margin-top: 6px;
        padding: 4px 6px;
        font-size: 0.7rem;
    }
    
    .required-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .timeline::before {
        left: 60px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-item::before {
        left: 55px;
    }
    
    .timeline-time {
        width: 50px;
        font-size: 0.8rem;
        padding-right: 10px;
    }
    
    .timeline-content {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .breadcrumb-nav {
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .breadcrumb-nav .separator {
        font-size: 0.7rem;
    }
}

/* Second Gallery Slider */
.second-slider-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 30px 20px;
}

.second-slider-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.gallery-swiper {
    width: 100%;
    height: 350px;
}

.gallery-slide {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-slide:hover {
    transform: scale(1.02);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-slide:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: white;
    text-align: left;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gallery Slider Pagination */
.gallery-swiper .swiper-pagination {
    bottom: 15px;
}

.gallery-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: #ffa41d;
    transform: scale(1.3);
}

/* Gallery Slider Navigation */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* Gallery slider CSS removed - using main slider only */

/* Timeline Component */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #ffa41d 0%, #ff8c00 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 110px;
    display: flex;
    align-items: flex-start;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 75px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #ffa41d;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #ffa41d;
    z-index: 2;
}

.timeline-time {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    text-align: right;
    font-weight: 700;
    color: #ffa41d;
    font-size: 0.9rem;
    padding-right: 15px;
    line-height: 1.4;
}

.timeline-content {
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ffa41d;
    flex: 1;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.timeline-content small {
    color: #666;
    font-style: italic;
}

/* Tabbed Terms & Conditions */
.terms-tabs {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.terms-tab-nav {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.terms-tab-nav::-webkit-scrollbar {
    display: none;
}

.terms-tab-button {
    flex: 1;
    min-width: 150px;
    padding: 15px 20px;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.terms-tab-button:hover {
    background: #e9ecef;
    color: #495057;
}

.terms-tab-button.active {
    background: white;
    color: #ffa41d;
    border-bottom-color: #ffa41d;
}

.terms-tab-content {
    display: none;
    padding: 30px;
    max-height: 500px;
    overflow-y: auto;
}

.terms-tab-content.active {
    display: block;
}

.terms-tab-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffa41d;
    padding-bottom: 10px;
}

.terms-tab-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    margin: 20px 0 10px 0;
}

.terms-tab-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.terms-tab-content ol,
.terms-tab-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-tab-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.terms-tab-content ol ol {
    margin: 10px 0;
    padding-left: 20px;
}

.terms-tab-content ol ol li {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.terms-tab-content strong {
    color: #333;
    font-weight: 600;
}

.terms-tab-content .note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #ffa41d;
}

.terms-tab-content .note strong {
    color: #856404;
}

/* Mobile responsive for tabs */
@media (max-width: 768px) {
    .terms-tab-nav {
        flex-wrap: wrap;
        gap: 2px;
        padding: 5px;
    }
    
    .terms-tab-button {
        min-width: calc(50% - 2px);
        padding: 15px 10px;
        font-size: 0.85rem;
        border-radius: 8px;
        margin-bottom: 5px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.2;
    }
    
    .terms-tab-content {
        padding: 20px 15px;
        max-height: 400px;
    }
    
    .terms-tab-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .terms-tab-content h4 {
        font-size: 1.1rem;
        margin: 15px 0 8px 0;
    }
    
    .terms-tab-content ol,
    .terms-tab-content ul {
        margin: 12px 0;
        padding-left: 18px;
    }
    
    .terms-tab-content li {
        margin-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .terms-tab-nav {
        flex-direction: column;
        gap: 3px;
        padding: 8px;
    }
    
    .terms-tab-button {
        min-width: 100%;
        padding: 12px 15px;
        font-size: 0.9rem;
        height: 45px;
        border-radius: 6px;
        margin-bottom: 3px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .terms-tab-content {
        padding: 15px 12px;
        max-height: 350px;
    }
    
    .terms-tab-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .terms-tab-content h4 {
        font-size: 1rem;
        margin: 12px 0 6px 0;
    }
    
    .terms-tab-content p,
    .terms-tab-content li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .terms-tab-content ol ol {
        margin: 8px 0;
        padding-left: 15px;
    }
    
    .terms-tab-content ol ol li {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .terms-tab-content .note {
        padding: 12px;
        margin: 12px 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .terms-tabs {
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .terms-tab-nav {
        padding: 6px;
    }
    
    .terms-tab-button {
        padding: 10px 12px;
        font-size: 0.85rem;
        height: 40px;
        border-radius: 5px;
    }
    
    .terms-tab-content {
        padding: 12px 10px;
        max-height: 300px;
    }
    
    .terms-tab-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .terms-tab-content h4 {
        font-size: 0.95rem;
        margin: 10px 0 5px 0;
    }
    
    .terms-tab-content p,
    .terms-tab-content li {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .terms-tab-content ol,
    .terms-tab-content ul {
        margin: 10px 0;
        padding-left: 15px;
    }
    
    .terms-tab-content ol ol {
        padding-left: 12px;
    }
    
    .terms-tab-content ol ol li {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
    
    .terms-tab-content .note {
        padding: 10px;
        margin: 10px 0;
        font-size: 0.85rem;
    }
}