/* tour-style.css */

/* General Body and Typography */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050 !important;
    background-color: transparent !important;
    transition: background-color 0.3s ease;
    border: none !important;
}

.navbar.scrolled {
    background-color: #091a2d !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

/* .text-26 { font-size: 26px; }
.fw-600 { font-weight: 600; }
.pt-10 { padding-top: 10px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-100 { padding-top: 100px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-40 { padding-bottom: 40px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.y-gap-10 > * { margin-bottom: 10px; }
.y-gap-20 > * { margin-bottom: 20px; }
.y-gap-30 > * { margin-bottom: 30px; }
.x-gap-5 > * { margin-right: 5px; }
.x-gap-10 > * { margin-right: 10px; }
.x-gap-20 > * { margin-right: 20px; } */

/* Utility classes for consistency */
/* .text-dark-1 { color: #051036; } Dark text color from index.html */
/* .text-light-1 { color: #697488; } Light text color from index.html */
/* .bg-white { background-color: #fff; }
.rounded-4 { border-radius: 4px; }
.border-light { border: 1px solid #e0e0e0; }
.border-top-light { border-top: 1px solid #e0e0e0; }
.d-flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.relative { position: relative; }
.absolute { position: absolute; }
.h-full { height: 100%; }
.col-12 { width: 100%; }
.px-20 { padding-left: 20px; padding-right: 20px; }
.py-20 { padding-top: 20px; padding-bottom: 20px; }
.px-24 { padding-left: 24px; padding-right: 24px; }
.py-15 { padding-top: 15px; padding-bottom: 15px; } */
/* .w-360 { width: 360px; } Specific width for pricing card */

/* Tour Header Section */
.tour-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tour-header .location {
    font-size: 1rem;
    color: #697488;
    display: flex;
    align-items: center;
}

.tour-header .location i {
    margin-right: 5px;
    color: #f0870d; /* Orange color from style.css */
}

.tour-header .button {
    border: 1px solid #e0e0e0;
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tour-header .button:hover {
    background-color: #f0870d;
    color: #fff;
    border-color: #f0870d;
}

/* Tour Detail CSS */
.tour-info-strip {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.tour-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.tour-info-item i {
    font-size: 1.2rem;
}
.itinerary-day {
    margin-bottom: 30px;
    padding: 20px;
    border-left: 3px solid #e67e00;
}
.pricing-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.price-box {
    background: #000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.price-box h4 {
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.price-box .price {
    font-size: 2.8rem;
    line-height: 1;
    margin: 10px 0;
}

.slot-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.slot-status.filling { color: #dc3545; }
.slot-status.available { color: #28a745; }
.btn-book-now:hover {
  background: var(--sukoon-dark);
  color: #fff;
}
.btn-book-now:disabled {
  background: var(--sukoon-orange) !important;
  opacity: 0.8 !important;
  cursor: not-allowed;
}
.btn-slot-query {
    background: #091a2d;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}
.list-columns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.list-column ul {
    list-style: none;
    padding: 0;
}
.list-column ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.list-column ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}
.not-included .list-column ul li::before {
    content: '\f00d';
    color: #dc3545;
}
.gallery-thumbs-strip {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.thumb-item img {
    height: 85px;
    width: 130px;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.thumb-item img:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: #e67e00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .thumb-item img { height: 60px; width: 90px; }
}
/* Gallery Grid */
.galleryGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px); /* Adjust height as needed */
    gap: 10px;
    margin-bottom: 40px;
}

.galleryGrid__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

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

.galleryGrid .button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.galleryGrid .button:hover {
    background-color: #f0870d;
    color: #fff;
}
.folder-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
  background: #fff;
}
.folder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.folder-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.folder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.folder-card:hover .folder-img {
  transform: scale(1.1);
}
.folder-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(240, 135, 13, 0.9);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}
/*.gallery-img-wrapper {*/
/*  position: relative;*/
/*  border-radius: 12px;*/
/*  overflow: hidden;*/
/*  box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
/*  cursor: pointer;*/
/*  height: 250px;*/
/*}*/
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.gallery-img-wrapper:hover .gallery-img {
  transform: scale(1.05);
}
.overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}
.gallery-img-wrapper:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.gallery-img-wrapper:hover .overlay-icon {
  opacity: 1;
}

/* Galler Single Page CSS */
.gallery-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  cursor: pointer;
  /*height: 250px;*/
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.gallery-img-wrapper:hover .gallery-img {
  transform: scale(1.05);
}
.overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}
.gallery-img-wrapper:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.gallery-img-wrapper:hover .overlay-icon {
  opacity: 1;
}

/* Main Content Sections (Overview, Itinerary, Inclusions, Exclusions) */
.main-content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1e2d58; /* Dark blue from index.html */
}

.main-content-section h4 {
    font-size: 1.4rem;
    color: #1e2d58; /* Dark blue from index.html */
}

.main-content-section p {
    margin-bottom: 15px;
    color: #333;
}

.main-content-section ul {
    list-style: none;
    padding-left: 0;
}

.main-content-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #333;
}

.main-content-section ul li::before {
    content: "\f00c"; /* FontAwesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745; /* Green for included items */
}

.main-content-section .not-included ul li::before {
    content: "\f00d"; /* FontAwesome times icon */
    color: #dc3545; /* Red for not included items */
}

/* Itinerary specific styling */
.itinerary-day {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.itinerary-day:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.itinerary-day h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.itinerary-day ul {
    list-style: disc;
    padding-left: 20px;
}

.itinerary-day ul li {
    padding-left: 0;
}

.itinerary-day ul li::before {
    content: none;
}

/* Pricing Card and Form */
.pricing-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-card .price-box {
    background: #000;
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    text-align: left;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.pricing-card .price-box .price {
    font-size: 1.4rem;
    margin: 0;
    color: #fff;
}

.booking-form .form-group {
    margin-bottom: 15px;
}

.booking-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #1e2d58;
}

.booking-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.booking-form .form-control:focus {
    border-color: #f0870d;
    outline: none;
}

.btn-book-now {
    background-color: #f0870d;
    color: #fff;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-book-now:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-share-tour {
    background: #fff;
    color: #f0870d;
    width: 100%;
    padding: 12px;
    border: 1px solid #f0870d;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-share-tour:hover {
    background: #fff3e6;
    color: #e67e00;
}

/* Tour Info Strip (Duration & Date) */
.tour-info-strip {
    padding: 25px 0;
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.tour-info-item i {
    font-size: 1.3rem;
}

/* Columned Inclusions/Exclusions */
.list-columns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Max 4 columns */
@media (min-width: 1200px) {
    .list-columns {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list-column {
    min-width: 0; /* Prevents overflow in grid */
}

/* Adaptive Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 400px; /* Default height */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-banner-content {
    padding: 20px 40px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.hero-banner.gallery-mode {
    height: auto;
    background: none;
    display: block;
}

/* Available Slots Grid */
.slot-grid-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Available Slots List (Horizontal) */
.slots-list {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.slot-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.slot-item:last-child {
    border-bottom: none;
}

.slot-item:hover {
    background: #fcf9f4;
}

.slot-date {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.slot-date i {
    color: #f0870d;
    font-size: 1rem;
}

.slot-date-text {
    font-weight: 600;
    color: #1e2d58;
    font-size: 1rem;
    /*margin-right: 15px;*/
}

.slot-status {
    font-size: 0.6rem;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.slot-status.filling {
    background: #fff3e6;
    color: #f0870d;
}

.slot-status.available {
    background: #e6f7ed;
    color: #28a745;
}

.slot-actions {
    display: flex;
    gap: 15px;
}

.btn-slot-query {
    background: #fff;
    color: #1e2d58;
    border: 1.5px solid #1e2d58;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-slot-query:hover {
    background: #1e2d58;
    color: #fff;
}

.btn-slot-book {
    background: #f0870d;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-slot-book:hover {
    background: #e67e00;
    color: #fff;
    box-shadow: 0 4px 12px rgba(240, 135, 13, 0.3);
}

@media (max-width: 991px) {
    .slot-item {
        padding: 15px 20px;
    }
    .slot-date-text {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .slot-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .slot-date {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .slot-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .btn-slot-query, .btn-slot-book {
        padding: 10px 10px;
        text-align: center;
        width: 100%;
    }
}

.slot-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.slot-grid-date {
    margin-bottom: 15px;
}

.slot-grid-date i {
    color: #f0870d;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.slot-grid-date-text {
    font-weight: 700;
    color: #1e2d58;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* .slot-grid-status {
    margin-bottom: 20px;
} */

.slot-grid-status .slot-status {
    display: inline-block;
    font-size: 0.8rem;
    padding: 4px 12px;
}

.btn-slot-enquire {
    background: #f0870d;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    transition: background 0.3s;
    letter-spacing: 0.5px;
    margin: auto 0;
    height: fit-content;
    font-size: 15px;
}

.btn-slot-enquire:hover {
    background: #e67e00;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .pricing-card {
        margin-top: 40px;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .galleryGrid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    .galleryGrid__item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .tour-header h1 {
        font-size: 2rem;
    }
    .main-content-section h3 {
        font-size: 1.5rem;
    }
    .itinerary-day h4 {
        font-size: 1.2rem;
    }
    .pricing-card .price {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .galleryGrid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 5px;
    }
    .galleryGrid__item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .galleryGrid__item img {
        height: 200px;
    }
    .tour-header h1 {
        font-size: 1.8rem;
    }
    .tour-header .location {
        font-size: 0.9rem;
    }
    .main-content-section h3 {
        font-size: 1.3rem;
    }
    .itinerary-day h4 {
        font-size: 1.1rem;
    }
    .pricing-card .price {
        font-size: 1.8rem;
    }
    .w-360 { width: 100%; }
}

/*About Us CSS*/

/* JOURNEY SECTION */
.journey-wrapper {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.journey-container {
    max-width: 100%;
    margin: auto;
    display: flex;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 5px;
}

.founder-image {
    width: 45%;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    border-radius: 5px 0 0 5px;
}

.journey-content {
    width: 55%;
    padding: 5%;
    text-align: justify;
}

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

.content-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.content-block p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* QUOTE */
.quote-section {
    text-align: center;
    padding: 80px 20px;
    background: #f6f2e8;
}

.quote {
    font-style: italic;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.author {
    font-size: 16px;
    color: #666;
    letter-spacing: 1px;
}


/* RESPONSIVE */
@media(max-width:900px) {
    .journey-container {
        flex-direction: column;
    }
    .founder-image,
    .journey-content {
        width: 100%;
    }
    .founder-image img {
        border-radius: 5px 5px 0 0;
    }
    .journey-wrapper {
        margin-top: 0;
        padding: 40px 15px;
    }
}

@media(max-width:768px) {
    .polaroid-wrapper {
        gap: 20px;
    }
    .polaroid {
        width: 160px;
    }
    .polaroid img {
        height: 150px;
    }
}

/* Contact Us CSS*/
.contact-card {
  border: none;
  box-shadow: 0 15px 45px rgba(0,0,0,0.05);
  border-radius: 15px;
  overflow: hidden;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: #fdfaf6;
  color: #ee860d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.submit-btn{
    background-color: #ee860d;
}
.submit-btn:hover{background-color:#0f0f26;}
.submit-btn:disabled {
  background-color: #ee860d !important;
  opacity: 0.8 !important;
  cursor: not-allowed;
}
/* Blog CSS */
.cat-filter-btn {
  transition: 0.3s;
  border: 1px solid #ddd;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: inline-block;
  margin: 5px;
}
.cat-filter-btn:hover, .cat-filter-btn.active {
  background: #ffc107;
  border-color: #ffc107;
  color: #fff;
}
/* Blog Detail Page CSS */
.blog-header-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
}
.blog-body-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}
.blog-body-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.author-box {
  background: #fdfaf6;
  border-left: 5px solid rgb(240 135 13);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}
.comment-card {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.comment-card:last-child {
  border-bottom: none;
}
.reply-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}