/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 62.5%;
    --primary-color: #fbae17;
    --secondary-color: #00afef;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
}

body {
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    font-size: 1.6rem;
}

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


a {
    text-decoration: none;
    color: white;
}
/* Container */
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem 2rem;
}

/* Gallery Title */
.gallery-title {
    text-align: center;
    font-size: 3.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-title span {
    text-transform: uppercase;
}

.gallery-subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 400;
}

@media screen and (max-width: 500px) {
    .gallery-subtitle {
        margin-bottom: 1rem;
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.8rem;
    height: 100%;
}

/* Main featured image */
.gallery-item.featured {
    grid-row: span 2;
    aspect-ratio: 1/1;
}

/* Grid for smaller images */
.gallery-grid .small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.6rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1/1;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: var(--transition);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Desktop Gallery */
.desktop-gallery {
    display: block;
    max-height: 500px;
    overflow: hidden;
}

.mobile-carousel {
    display: none;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Swiper Carousel */
.swiper-container {
    width: 100%;
    height: 60vh;
    padding: 1rem 0 3rem;
    position: relative;
    overflow: visible;
}

.swiper-wrapper {
    height: 100%;
    box-sizing: border-box;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    border-radius: 0.8rem;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.swiper-slide figure {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.swiper-slide-active img {
    transform: scale(1.02);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
    z-index: 2;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 30px !important;
    height: 30px !important;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem !important;
    font-weight: bold;
    color: #fff;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .desktop-gallery {
        display: none;
    }
    
    .mobile-carousel {
        display: block;
    }
    
    /* Lightbox adjustments for mobile */
    .lightbox-content {
        width: 100%;
        height: 100%;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .lightbox-content img {
        width: 600px !important;
        height: 600px !important;
        max-width: 600px !important;
        max-height: 600px !important;
        object-fit: cover;
        border-radius: 0.8rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
        z-index: 9999;
    }
    
    .lightbox-caption {
        position: absolute;
        bottom: 2rem;
        left: 0;
        right: 0;
        text-align: center;
        color: white;
        background: rgba(0, 0, 0, 0.7);
        padding: 0.5rem;
        margin: 0 1rem;
        border-radius: 0.4rem;
    }
}


/* Trip Snapshot */
.trip-snapshot {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    color: #00afef;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.trip-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: white;
    border: 0.5px solid #00afef;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px #00afef;
}

/* Itinerary Section */
.itinerary-section {
    padding: 2rem 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.itinerary-container {
    max-width: 800px;
    margin: 0 auto;
}

.itinerary-day {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
}

.day-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: white;
    color: #00afef;
    border: 0.5px solid #00afef;
    text-align: left;
    font-size: 1.8rem;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.day-header:hover {
    background-color: #f5f5f5;
}

.day-header i {
    transition: transform 0.3s ease;
    color: #00afef;
}

.day-header.active i {
    transform: rotate(180deg);
}

.day-content {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease-out;
}

.day-content ul {
    padding: 0 1.5rem 1rem;
    margin: 0;
    list-style-type: none;
}

.day-content li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    border-bottom: 1px solid #f5f5f5;
    font-size: 1.4rem;
    line-height: 1.5;
    position: relative;
}

.day-content li::before {
    content: '•';
    color: #00afef;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.day-content li:last-child {
    border-bottom: none;
}

.nested-list {
    list-style-type: disc;
    padding-left: 2rem;
    margin: 0.5rem 0;
}

.nested-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    border: none;
    position: relative;
}

.nested-list li::before {
    content: '•';
    color: #00afef;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.meals {
    font-weight: 600;
    color: #00afef;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 2px dashed #e0e0e0 !important;
}

/* Inclusions & Exclusions Section */
.inclusions-section {
    padding: 1rem 2rem 4rem;
    background-color: #f9f9f9;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.inclusion-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inclusion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
}

.inclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-list li {
    padding: 0.6rem 0;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.inclusion-list li i {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.included .card-title {
    color: #00afef;
}

.excluded .card-title {
    color: #ff6b6b;
}

.included .inclusion-list i {
    color: #00afef;
}

.excluded .inclusion-list i {
    color: #ff6b6b;
}

/* Responsive styles */
@media (max-width: 768px) {
    .inclusions-section {
        padding: 0rem 1.5rem 3rem;
    }
    
    .inclusions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .inclusion-card {
        padding: 1.5rem;
    }
    
    .itinerary-section {
        padding: 3rem 1.5rem 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .day-header {
        padding: 1.2rem 1.5rem;
        font-size: 1.6rem;
    }
    
    .card-title {
        font-size: 1.7rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .itinerary-section {
        padding: 2rem 1.5rem 1rem;
    }
    
    .day-header {
        font-size: 1.6rem;
        padding: 1.2rem 1.5rem;
    }
    
    .day-content li {
        font-size: 1.4rem;
    }
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00afef;
    font-size: 1.25rem;
}

.feature-content {
    flex: 1;
}

.feature h3 {
    color: #00afef;
    font-size: 1.6rem;  /* 16px */
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    line-height: 1.3;
}

.feature p {
    color: #333;
    font-size: 1.4rem;  /* 14px */
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

/* Tablet & Smaller Desktop Styles */
@media (max-width: 1200px) {
    .trip-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .feature h3 {
        font-size: 1.4rem;  /* 14px */
    }
    
    .feature p {
        font-size: 1.2rem;  /* 12px */
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .trip-snapshot {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .trip-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature {
        gap: 1rem;
        padding: 1rem;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .feature h3 {
        font-size: 1.4rem;  /* 14px */
        margin-bottom: 0.4rem;
    }
    
    .feature p {
        font-size: 1.2rem;  /* 12px */
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
    box-sizing: border-box;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(90vh - 100px);
    object-fit: contain;
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3);
    background: #fff;
    padding: 1rem;
    box-sizing: border-box;
}

.close-lightbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    border: none;
    color: white;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: background 0.2s ease;
}

.close-lightbox:hover {
    background: #ff4444;
}

/* Mobile-specific lightbox and swiper styles */
@media (max-width: 767px) {
    .swiper-container {
        height: 50vh;
        padding-bottom: 4rem;
    }
    
    .swiper-slide {
        padding: 0.5rem;
        box-sizing: border-box;
    }
    
    .lightbox {
        padding: 0.5rem;
    }
    
    .lightbox-content {
        padding: 1rem;
        max-height: 100vh;
        width: 100%;
    }
    
    .lightbox-content img {
        width: 250px !important;
        height: 250px !important;
        max-width: 250px !important;
        max-height: 250px !important;
        object-fit: cover;
        padding: 0.5rem;
        background: #fff;
        border-radius: 0.4rem;
    }
    
    .lightbox-caption {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: 90%;
        margin: 0;
        padding: 0.8rem 1.2rem;
        background: rgba(0, 0, 0, 0.9);
        border-radius: 0.4rem;
        font-size: 1.4rem;
        text-align: center;
        color: white;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1rem;
    }
    
    .close-lightbox {
        top: 0.5rem;
        right: 0.5rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3);
    background-color: #fff;
    object-position: center;
}

/* Mobile styles */
@media (max-width: 767px) {
    .lightbox-content {
        width: 90vw;
        height: 60vh;
        padding: 1rem;
    }
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 3.5rem;
    cursor: pointer;
    transition: var(--transition);
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover {
    background-color: var(--primary-color);
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        display: none;
    }
    
    .swiper-container {
        display: block;
    }
    
    .gallery-title {
        font-size: 2.8rem;
    }
    
    .gallery-subtitle {
        font-size: 1.6rem;
    }
}


.download-pdf {
    text-align: center;
    margin-top: 1rem;
}

.download-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0.8rem;
}

@media (max-width: 768px) {
    .download-pdf {
        margin-top: -2rem;
    }
}


/* Form and Map Section */
.tour-request {
    margin-top: 4rem;
}

.form-map-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tour-form {
    flex: 1;
    min-width: 300px;
    max-width: 480px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tour-form:hover {
    transform: translateY(-5px);
}

.tour-map {
    flex: 1;
    min-width: 300px;
    max-width: 480px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tour-map:hover {
    transform: translateY(-5px);
}

.map-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-map:hover .map-img {
    transform: scale(1.05);
}

	 .exit-dashboard {
  text-align: center;
  margin: 30px 0;
}

.exit-button {
  display: inline-block;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: #00afef;
}

.exit-button:hover {
  background-color: #0092c7;
  border-color: #ccc;
}	
	