/* =====================================================
   TOUR CSS — MASTER
   Applies to:
   1. tours/tour-index.html
   2. All individual Tour pages
   Common Header / Master CTA / Master Footer are handled
   by assets/css/common.css.
   Floating buttons are handled by floating-buttons.css.
===================================================== */

/* ================= TOUR INDEX PAGE ================= */

/* =========================================
   TOURS PAGE - MASTER CSS & LAYOUT
========================================= */


/* =========================================
   TOURS HERO
========================================= */

.tours-hero
{

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:480px;

    padding:100px 20px 70px;

    overflow:hidden;

    text-align:center;

    color:#ffffff;

    background:
        linear-gradient(
            rgba(15,15,15,.45),
            rgba(15,15,15,.65)
        ),
        url("../../images/tours/tour-page-hero.webp") center center/cover no-repeat;

}

.tours-hero-content
{

    position:relative;

    width:100%;
    max-width:760px;

    margin:0 auto;

    z-index:2;

}

.tours-eyebrow
{

    display:block;

    margin-bottom:16px;

    color:#d6ad63;

    font-size:11px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

}

.tours-hero-content h1
{

    max-width:700px;

    margin:0 auto 22px;

    color:#ffffff;

    
    font-size:52px;

    font-weight:400;

    line-height:1.15;

}

.tours-hero-content p
{

    max-width:620px;

    margin:0 auto;

    color:rgba(255,255,255,.90);

    font-size:16px;

    line-height:1.8;

}


/* =========================================
   TOURS HERO RESPONSIVE
========================================= */

@media (max-width:900px){

    .tours-hero
{

        min-height:420px;

        padding:95px 20px 60px;

    }

    .tours-hero-content h1
{

        font-size:44px;

    }

}

@media (max-width:650px){

    .tours-hero
{

        min-height:320px;

        padding:85px 20px 45px;

    }

    .tours-eyebrow
{

        font-size:10px;

        letter-spacing:3px;

    }

    .tours-hero-content h1
{

        font-size:36px;

        max-width:340px;

    }

    .tours-hero-content p
{

        max-width:320px;

        font-size:15px;

        line-height:1.75;

    }

}

@media (max-width:480px){

    .tours-hero
{

        min-height:300px;

    }

    .tours-hero-content h1
{

        font-size:32px;

    }

    .tours-hero-content p
{

        font-size:14px;

    }

}
/* =========================================
   TOURS INTRO
========================================= */

.tours-intro
{

    padding:90px 5% 80px;

    background:#ffffff;

    text-align:center;

}

.tours-container
{

    width:100%;

    max-width:1200px;

    margin:0 auto;

}

.tours-intro .tours-container
{

    max-width:820px;

}

.tours-section-label
{

    display:block;

    margin-bottom:16px;

    color:#b68b42;

    font-size:11px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}

.tours-intro h2
{

    margin-bottom:22px;

    color:#222222;

    
    font-size:44px;

    line-height:1.25;

    font-weight:400;

}

.tours-intro p
{

    max-width:720px;

    margin:0 auto;

    color:#666666;

    font-size:15px;

    line-height:1.9;

}


/* =========================================
   TOURS INTRO RESPONSIVE
========================================= */

@media (max-width:900px){

    .tours-intro
{

        padding:75px 20px 65px;

    }

    .tours-intro h2
{

        font-size:38px;

    }

}

@media (max-width:650px){

    .tours-intro h2
{

        font-size:32px;

    }

    .tours-intro p
{

        font-size:14px;

        line-height:1.8;

    }

}

@media (max-width:480px){

    .tours-intro
{

        padding:65px 20px 55px;

    }

    .tours-intro h2
{

        font-size:28px;

    }

}
/* =========================================
   TOUR CATEGORIES
========================================= */

.tours-packages
{

    padding:90px 5%;

    background:#f7f5f1;

}

.tour-feature
{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    align-items:center;

    gap:60px;

    margin-bottom:90px;

}

.tour-feature:last-child
{

    margin-bottom:0;

}

.tour-feature-reverse .tour-feature-image
{

    order:2;

}

.tour-feature-reverse .tour-feature-content
{

    order:1;

}

.tour-feature-image
{

    overflow:hidden;

    border-radius:14px;

    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

.tour-feature-image img
{

    width:100%;

    height:520px;

    object-fit:cover;

    transition:transform .45s ease;

}

.tour-feature:hover .tour-feature-image img
{

    transform:scale(1.05);

}

.tour-feature-content span
{

    display:block;

    margin-bottom:14px;

    color:#b68b42;

    font-size:11px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.tour-feature-content h2
{

    margin-bottom:22px;

    color:#222222;

    
    font-size:42px;

    font-weight:400;

    line-height:1.25;

}

.tour-feature-content p
{

    color:#666666;

    font-size:15px;

    line-height:1.9;

}


/* =========================================
   TOUR CARD LINKS
   Keeps the existing tour layout intact while making
   all eight featured tours directly accessible.
========================================= */

.tour-feature-image-link{
    display:block;
    color:inherit;
    text-decoration:none;
}

.tour-feature-content h2 a{
    color:inherit;
    text-decoration:none;
}

.tour-feature-content h2 a:focus-visible,
.tour-feature-image-link:focus-visible,
.tour-feature-link:focus-visible{
    outline:2px solid #b68b42;
    outline-offset:4px;
}

.tour-feature-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    min-height:42px;
    box-sizing:border-box;
    padding:10px 16px;
    margin-top:24px;
    color:#b68b42;
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.8px;
    text-decoration:none;
    border:1px solid rgba(182,139,66,.55);
    border-radius:5px;
    transition:color .25s ease, border-color .25s ease, background .25s ease;
}

.tour-feature-link:hover{
    color:#8f672c;
    border-color:#b68b42;
    background:rgba(182,139,66,.04);
}

.tour-feature-link span{
    margin-left:auto;
    transition:transform .25s ease;
}

.tour-feature-link:hover span{
    transform:translateX(3px);
}

/* =========================================
   TOUR CATEGORIES RESPONSIVE
========================================= */

@media (max-width:900px){

    .tour-feature
{

        grid-template-columns:1fr;

        gap:35px;

        margin-bottom:70px;

    }

    .tour-feature-reverse .tour-feature-image,
.tour-feature-reverse .tour-feature-content
{

        order:initial;

    }

    .tour-feature-image img
{

        height:380px;

    }

    .tour-feature-content h2
{

        font-size:36px;

    }

}

@media (max-width:650px){

    .tours-packages
{

        padding:70px 20px;

    }

    .tour-feature
{

        gap:25px;

        margin-bottom:55px;

    }

    .tour-feature-image
{

        border-radius:10px;

    }

    .tour-feature-image img
{

        height:250px;

    }

    .tour-feature-content h2
{

        font-size:30px;

    }

    .tour-feature-content p
{

        font-size:14px;

        line-height:1.8;

    }

}

@media (max-width:480px){

    .tour-feature-image img
{

        height:220px;

    }

    .tour-feature-content h2
{

        font-size:27px;

    }

}
/* =========================================
   PERSONALIZED JOURNEY
========================================= */

.tours-personalized
{

    padding:90px 5%;

    background:#ffffff;

    text-align:center;

}

.tours-personalized-content
{

    width:100%;

    max-width:820px;

    margin:0 auto;

}

.tours-personalized-content span
{

    display:block;

    margin-bottom:16px;

    color:#b68b42;

    font-size:11px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.tours-personalized-content h2
{

    margin-bottom:22px;

    color:#222222;

    
    font-size:44px;

    font-weight:400;

    line-height:1.25;

}

.tours-personalized-content p
{

    max-width:720px;

    margin:0 auto;

    color:#666666;

    font-size:15px;

    line-height:1.9;

}


/* =========================================
   PERSONALIZED JOURNEY RESPONSIVE
========================================= */

@media (max-width:900px){

    .tours-personalized
{

        padding:75px 20px;

    }

    .tours-personalized-content h2
{

        font-size:38px;

    }

}

@media (max-width:650px){

    .tours-personalized
{

        padding:70px 20px;

    }

    .tours-personalized-content span
{

        font-size:10px;

        letter-spacing:2.5px;

    }

    .tours-personalized-content h2
{

        font-size:32px;

    }

    .tours-personalized-content p
{

        font-size:14px;

        line-height:1.8;

    }

}

@media (max-width:480px){

    .tours-personalized-content h2
{

        font-size:28px;

    }

}


/* ================= INDIVIDUAL TOUR DETAIL PAGES ================= */


/* =========================================
   TOUR DETAIL PAGE SPECIFIC STYLES
========================================= */

.tour-detail-container
{
  width:90%;
  max-width:1250px;
  margin:0 auto;
}

.tour-detail-hero
{
  position:relative;
  width:100%;
  height:650px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
}

.tour-detail-hero-image
{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.tour-detail-hero-image img
{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.tour-detail-hero-overlay
{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(to bottom,rgba(0,0,0,0.08) 20%,rgba(0,0,0,0.18) 50%,rgba(0,0,0,0.78) 100%);
}

.tour-detail-hero-content
{
  position:relative;
  z-index:2;
  width:90%;
  max-width:1250px;
  margin:0 auto 70px;
  color:#ffffff;
}

.tour-detail-label
{
  display:block;
  margin-bottom:15px;
  color:#e0bd79;
  font-size:11px;
  font-weight:600;
  letter-spacing:3px;
  text-transform:uppercase;
}

.tour-detail-hero-content h1
{
  max-width:850px;
  margin:0 0 15px;
  color:#ffffff;
    font-size:58px;
  font-weight:400;
  line-height:1.1;
  text-shadow:0 2px 10px rgba(0,0,0,0.35);
}

.tour-detail-hero-content p
{
  margin:0;
  color:rgba(255,255,255,0.9);
  font-size:14px;
  letter-spacing:1.5px;
}

.tour-overview
{
  width:100%;
  padding:100px 0;
  background:#ffffff;
}

.tour-overview-grid
{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:90px;
  align-items:start;
}

.tour-overview-heading span
{
  display:block;
  margin-bottom:15px;
  color:#b68b42;
  font-size:11px;
  font-weight:600;
  letter-spacing:3px;
  text-transform:uppercase;
}

.tour-overview-heading h2
{
  margin:0;
  color:#222222;
    font-size:44px;
  font-weight:400;
  line-height:1.2;
}

.tour-overview-content p
{
  margin:0 0 20px;
  color:#666666;
  font-size:15px;
  line-height:1.9;
}

.tour-overview-content p:last-child
{
  margin-bottom:0;
}

.tour-facts
{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  margin-top:75px;
  border-top:1px solid #ded8cd;
  border-bottom:1px solid #ded8cd;
}

.tour-fact
{
  padding:28px 25px;
  border-right:1px solid #ded8cd;
}

.tour-fact:last-child
{
  border-right:none;
}

.tour-fact span
{
  display:block;
  margin-bottom:9px;
  color:#b68b42;
  font-size:9px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
}

.tour-fact strong
{
  color:#333333;
    font-size:16px;
  font-weight:400;
  line-height:1.5;
}

.tour-section-heading
{
  max-width:750px;
  margin:0 auto 60px;
  text-align:center;
}

.tour-section-heading>span
{
  display:block;
  margin-bottom:14px;
  color:#b68b42;
  font-size:11px;
  font-weight:600;
  letter-spacing:3px;
  text-transform:uppercase;
}

.tour-section-heading h2
{
  margin:0 0 17px;
  color:#222222;
    font-size:43px;
  font-weight:400;
  line-height:1.2;
}

.tour-section-heading p
{
  max-width:650px;
  margin:0 auto;
  color:#777777;
  font-size:14px;
  line-height:1.8;
}

.tour-highlights
{
  width:100%;
  padding:95px 0;
  background:#f7f5f0;
}

.tour-highlights-grid
{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  border-top:1px solid rgba(182,139,66,0.3);
  border-left:1px solid rgba(182,139,66,0.3);
}

.tour-highlight-item
{
  position:relative;
  padding:0 0 35px;
  background:#ffffff;
  border-right:1px solid rgba(182,139,66,0.3);
  border-bottom:1px solid rgba(182,139,66,0.3);
  overflow:hidden;
}

.tour-highlight-image
{
  width:100%;
  height:230px;
  object-fit:cover;
  object-position:center;
  display:block;
  margin-bottom:28px;
}

.tour-highlight-item::before
{
  content:"";
  display:block;
  width:35px;
  height:2px;
  margin:0 30px 22px;
  background:#b68b42;
}

.tour-highlight-item h3
{
  margin:0 30px 14px;
  color:#222222;
    font-size:23px;
  font-weight:400;
  line-height:1.3;
}

.tour-highlight-item p
{
  margin:0 30px;
  color:#777777;
  font-size:13px;
  line-height:1.8;
}

.tour-itinerary
{
  width:100%;
  padding:100px 0;
  background:#ffffff;
}

.itinerary-list
{
  max-width:1000px;
  margin:0 auto;
  border-top:1px solid #ded8cd;
}

.itinerary-day
{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:35px;
  padding:38px 0;
  border-bottom:1px solid #ded8cd;
}

.itinerary-day-number
{
  padding-top:5px;
  color:#b68b42;
  font-size:11px;
  font-weight:600;
  letter-spacing:2px;
}

.itinerary-day-content h3
{
  margin:0 0 12px;
  color:#222222;
    font-size:26px;
  font-weight:400;
  line-height:1.3;
}
.itinerary-highlights
{

    list-style:none;

    margin:16px 0 0;

    padding:0;

}

.itinerary-highlights li
{

    position:relative;

    margin-bottom:10px;

    padding-left:20px;

    color:#666666;

    font-size:14px;

    line-height:1.7;

}

.itinerary-highlights li:last-child
{

    margin-bottom:0;

}

.itinerary-highlights li::before
{

    content:"✦";

    position:absolute;

    left:0;

    top:0;

    color:#b68b42;

    font-size:12px;

}
.itinerary-summary
{

    position:relative;

    margin-top:16px;

    text-align:center;

}

.itinerary-summary::before
{

    content:"";

    position:absolute;

    left:0;

    right:0;

    top:50%;

    height:1px;

    background:#e2d5bf;

}

.itinerary-summary span
{

    position:relative;

    display:inline-block;

    padding:0 14px;

    background:#ffffff;

    color:#b68b42;

    font-size:10px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.tour-stays
{
  width:100%;
  padding:95px 0;
  background:#f7f5f0;
}

.tour-stays-grid
{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:25px;
}

.tour-stay-item
{
  padding:40px 32px;
  background:#ffffff;
  border:1px solid rgba(182,139,66,0.22);
}

.tour-stay-item>span
{
  display:block;
  margin-bottom:15px;
  color:#b68b42;
  font-size:10px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
}

.tour-stay-item h3
{
  margin:0 0 14px;
  color:#222222;
    font-size:25px;
  font-weight:400;
  line-height:1.3;
}

.tour-stay-item p
{
  margin:0;
  color:#777777;
  font-size:13px;
  line-height:1.8;
}

.tour-inclusions
{
  width:100%;
  padding:100px 0;
  background:#ffffff;
}

.tour-inclusions-grid
{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:70px;
  max-width:1000px;
  margin:0 auto;
}

.tour-inclusion-column
{
  padding:35px 0;
}

.tour-inclusion-column h3
{
  margin:0 0 25px;
  padding-bottom:15px;
  color:#222222;
    font-size:27px;
  font-weight:400;
  border-bottom:1px solid #ded8cd;
}

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

.tour-inclusion-column li
{
  position:relative;
  margin-bottom:15px;
  padding-left:22px;
  color:#666666;
  font-size:13px;
  line-height:1.7;
}

.tour-inclusion-column li:last-child
{
  margin-bottom:0;
}

.tour-inclusion-column li::before
{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#b68b42;
}


.tour-highlights-grid.tour-highlights-single
{
  grid-template-columns:minmax(0,1fr);
  max-width:850px;
  margin-left:auto;
  margin-right:auto;
}

.tour-highlights-single .tour-highlight-image
{
  height:430px;
}


/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */



@media (max-width: 1000px){
  
  
  

  
  
  
  
  
  
  
  
  

  .tour-detail-hero
{
    height:550px;
  }
  
  .tour-detail-hero-content h1
{
    font-size:48px;
  }
  
  .tour-overview-grid
{
    grid-template-columns:1fr;
    gap:35px;
  }
  
  .tour-facts
{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  
  .tour-fact:nth-child(2)
{
    border-right:none;
  }
  
  .tour-fact:nth-child(-n/**/+2)
{
    border-bottom:1px solid #ded8cd;
  }
  
  .tour-highlights-grid
{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  
  .tour-highlight-image
{
    height:250px;
  }
  
  .tour-stays-grid
{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  
  .tour-highlights-single .tour-highlight-image
{
    height:360px;
  }
}

@media (max-width: 600px){
  .tour-detail-container
{
    width:calc(100% - 40px);
  }
  
  .tour-detail-hero
{
    height:auto;
    min-height:360px;
    display:block;
  }
  
  .tour-detail-hero-image
{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
  }
  
  .tour-detail-hero-image img
{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
  }
  
  .tour-detail-hero-overlay
{
    background:linear-gradient(to bottom,rgba(0,0,0,0.05) 20%,rgba(0,0,0,0.2) 50%,rgba(0,0,0,0.82) 100%);
  }
  
  .tour-detail-hero-content
{
    position:absolute;
    left:20px;
    right:20px;
    bottom:25px;
    width:auto;
    margin:0;
  }
  
  .tour-detail-label
{
    margin-bottom:9px;
    font-size:9px;
    letter-spacing:2px;
  }
  
  .tour-detail-hero-content h1
{
    margin-bottom:8px;
    font-size:31px;
    line-height:1.15;
  }
  
  .tour-detail-hero-content p
{
    font-size:11px;
    line-height:1.5;
    letter-spacing:0.8px;
  }
  
  .tour-overview
{
    padding:65px 0;
  }
  
  .tour-overview-grid
{
    grid-template-columns:1fr;
    gap:28px;
  }
  
  .tour-overview-heading span
{
    font-size:10px;
  }
  
  .tour-overview-heading h2
{
    font-size:31px;
  }
  
  .tour-overview-content p
{
    font-size:14px;
    line-height:1.8;
  }
  
  .tour-facts
{
    grid-template-columns:1fr;
    margin-top:45px;
  }
  
  .tour-fact
{
    padding:22px 5px;
    border-right:none;
    border-bottom:1px solid #ded8cd;
  }
  
  .tour-fact:last-child
{
    border-bottom:none;
  }
  
  .tour-section-heading
{
    margin-bottom:40px;
  }
  
  .tour-section-heading>span
{
    font-size:10px;
    letter-spacing:2.5px;
  }
  
  .tour-section-heading h2
{
    font-size:31px;
  }
  
  .tour-section-heading p
{
    font-size:14px;
    line-height:1.7;
  }
  
  .tour-highlights
{
    padding:65px 0;
  }
  
  .tour-highlights-grid
{
    grid-template-columns:1fr;
    gap:20px;
    border:none;
  }
  
  .tour-highlight-item
{
    padding:0 0 28px;
    background:#ffffff;
    border:1px solid rgba(182,139,66,0.25);
  }
  
  .tour-highlight-image
{
    width:100%;
    height:220px;
    object-fit:cover;
    margin-bottom:24px;
  }
  
  .tour-highlight-item::before
{
    margin:0 24px 18px;
  }
  
  .tour-highlight-item h3
{
    margin:0 24px 12px;
    font-size:23px;
  }
  
  .tour-highlight-item p
{
    margin:0 24px;
    font-size:13px;
  }
  
  .tour-itinerary
{
    padding:65px 0;
  }
  
  .itinerary-day
{
    grid-template-columns:1fr;
    gap:12px;
    padding:28px 0;
  }
  
  .itinerary-day-number
{
    font-size:10px;
  }
  
  .itinerary-day-content h3
{
    font-size:23px;
  }
  
  .itinerary-highlights li
{

    font-size:13px;

    line-height:1.7;

}

.itinerary-summary span
{

    font-size:9px;

    letter-spacing:1.5px;

}
  .tour-stays
{
    padding:65px 0;
  }
  
  .tour-stays-grid
{
    grid-template-columns:1fr;
    gap:12px;
  }
  
  .tour-stay-item
{
    padding:30px 24px;
  }
  
  .tour-stay-item h3
{
    font-size:23px;
  }
  
  .tour-inclusions
{
    padding:65px 0;
  }
  
  .tour-inclusions-grid
{
    grid-template-columns:1fr;
    gap:15px;
  }
  
  .tour-inclusion-column
{
    padding:15px 0;
  }
  
  .tour-inclusion-column h3
{
    font-size:25px;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .tour-highlights-grid.tour-highlights-single
{
    max-width:100%;
  }
  
  .tour-highlights-single .tour-highlight-image
{
    height:220px;
  }
}

.tour-highlight-item a:focus-visible
{
  outline:2px solid #b68b42;
  outline-offset:4px;
}


.tour-highlight-points
{
    padding-left: 20px;
}
/* =========================================
   FINAL TOUR PAGE UI UPDATE
========================================= */

/* ===== JOURNEY HIGHLIGHTS ===== */

.tour-highlight-points
{
    list-style:none;
    margin:18px 30px 0;
    padding:0;
}

.tour-highlight-points li
{
    position:relative;
    padding-left:18px;
    margin-bottom:10px;
    color:#555555;
    font-size:13px;
    line-height:1.7;
}

.tour-highlight-points li:last-child
{
    margin-bottom:0;
}

.tour-highlight-points li::before
{
    content:"✦";
    position:absolute;
    left:0;
    color:#b68b42;
    font-size:11px;
}


/* ===== HOTELS & STAYS ===== */

.tour-stay-points
{
    list-style:none;
    margin:18px 0 0;
    padding:0;
}

.tour-stay-points li
{
    position:relative;
    padding-left:18px;
    margin-bottom:10px;
    color:#666666;
    font-size:13px;
    line-height:1.7;
}

.tour-stay-points li:last-child
{
    margin-bottom:0;
}

.tour-stay-points li::before
{
    content:"✦";
    position:absolute;
    left:0;
    color:#b68b42;
    font-size:11px;
}


/* ===== INCLUDED ===== */

.tour-inclusion-column:first-child li::before
{
    content:"✔";
    width:auto;
    height:auto;
    background:none;
    color:#2e8b57;
    font-size:14px;
    font-weight:700;
    top:0;
}


/* ===== NOT INCLUDED ===== */

.tour-inclusion-column:last-child li::before
{
    content:"✕";
    width:auto;
    height:auto;
    background:none;
    color:#b22222;
    font-size:13px;
    font-weight:700;
    top:0;
}


/* ===== CTA BUTTONS ===== */


/* ===== FOOTER ===== */

/* =====================================================
   9.8 PREMIUM POLISH — TOURS
   Keeps the existing tour grids, itinerary structure and
   responsive breakpoints intact.
===================================================== */

.tours-intro p,
.tour-feature-content p,
.tours-personalized-content p,
.tour-overview-content p,
.tour-section-heading p,
.tour-highlight-item p,
.itinerary-highlights li,
.tour-stay-item p,
.tour-inclusion-column li{
    text-wrap:pretty;
}

.tour-feature,
.tour-highlight-item,
.tour-stay-item,
.tour-inclusion-column,
.tour-fact{
    border-color:#e7dfd4;
}

.tour-feature,
.tour-highlight-item,
.tour-stay-item{
    box-shadow:0 8px 26px rgba(0,0,0,.045);
}

.tour-feature:hover,
.tour-highlight-item:hover,
.tour-stay-item:hover{
    box-shadow:0 14px 34px rgba(0,0,0,.075);
}

.tour-section-heading h2,
.tour-overview-heading h2,
.tour-inclusions h2,
.tour-stays h2{
    text-wrap:balance;
}

.tour-detail-hero-content h1{
    text-wrap:balance;
}

.tour-fact strong,
.tour-overview-heading span,
.tour-section-heading>span{
    letter-spacing:.08em;
}

.tour-itinerary,
.tour-stays,
.tour-inclusions{
    scroll-margin-top:105px;
}

@media (max-width:600px){
    .tour-itinerary,
    .tour-stays,
    .tour-inclusions{
        scroll-margin-top:84px;
    }
}


/* =========================================================
   FINAL IMAGE DISPLAY FIX — HERITAGE + SPIRITUAL CIRCUIT
   Preserve the complete source image; never crop/zoom.
========================================================= */
.tour-heritage-culture .tour-highlight-image,
.tour-spiritual-circuit .tour-highlight-image{
  width:100%;
  height:auto;
  aspect-ratio:auto;
  object-fit:contain;
  object-position:center;
  display:block;
  margin-bottom:28px;
}



/* FINAL AUDIT FIX — HERITAGE HERO: centered, full-frame, no aggressive crop */
.tour-heritage-culture .tour-detail-hero-image img{
  object-fit:contain;
  object-position:center center;
  background:#111;
}
@media (max-width:600px){
  .tour-heritage-culture .tour-detail-hero{
    min-height:0;
    height:auto;
    aspect-ratio:1408 / 768;
  }
  .tour-heritage-culture .tour-detail-hero-image,
  .tour-heritage-culture .tour-detail-hero-image img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
  }
}

/* Final correction: Heritage & Culture hero — give the supplied image a larger
   mobile presence while preserving its quality and using only a very slight zoom. */
@media (max-width:900px){
  .tour-heritage-culture .tour-detail-hero{
    height:520px;
    aspect-ratio:auto;
  }
  .tour-heritage-culture .tour-detail-hero-content{
    margin-bottom:28px;
  }
}
@media (max-width:600px){
  .tour-heritage-culture .tour-detail-hero{
    height:430px;
    min-height:430px;
    aspect-ratio:auto;
  }
  .tour-heritage-culture .tour-detail-hero-image img{
    object-fit:cover;
    object-position:center center;
    transform:scale(1.03);
    transform-origin:center center;
  }
  .tour-heritage-culture .tour-detail-hero-content{
    bottom:18px;
    margin:0;
    transform:translateY(0);
  }
}

/* Preserve the supplied Gatore Ki Chhatriyan image composition without zooming. */
.tour-gatore-image{object-fit:contain !important;object-position:center center !important;background:#111;}
.tour-chittorgarh-image{object-fit:contain !important;object-position:center center !important;background:#111;}


/* HERITAGE-ONLY MOBILE HERO FIX
   Keep the existing header system unchanged. Lower only this page's hero content
   slightly so the title clears the overlaid header without changing the supplied image. */
@media (max-width:600px){
  .tour-heritage-culture .tour-detail-hero-content{
    transform:translateY(-5px);
  }
}


/* ===== DESTINATION FULL SIGHTSEEING DETAIL ===== */
.tour-full-sightseeing{
    margin:26px 30px 0;
    padding:22px 0 0;
    border-top:1px solid #e7dfd4;
}
.tour-full-sightseeing strong{
    display:block;
    margin:0 0 14px;
    color:#b68b42;
    font-family:Arial,Helvetica,sans-serif;
    font-size:11px;
    font-weight:700;
    letter-spacing:2.4px;
    line-height:1.5;
}
.tour-full-sightseeing ul{
    list-style:none;
    margin:0;
    padding:0;
}
.tour-full-sightseeing li{
    position:relative;
    padding-left:18px;
    margin:0 0 9px;
    color:#555;
    font-size:13px;
    line-height:1.7;
}
.tour-full-sightseeing li::before{
    content:"✦";
    position:absolute;
    left:0;
    color:#b68b42;
    font-size:10px;
}
.itinerary-dining-note{
    max-width:850px;
    margin:20px auto 0;
    padding:15px 18px;
    border-top:1px solid #e7dfd4;
    border-bottom:1px solid #e7dfd4;
    color:#777;
    font-size:13px;
    line-height:1.8;
    text-align:center;
}
@media (max-width:650px){
    .tour-full-sightseeing{margin-left:20px;margin-right:20px;}
    .itinerary-dining-note{font-size:12px;line-height:1.75;text-align:left;}
}

/* V34 — SITE-WIDE LUXURY GOLD TOUR CTAs
   View Tour buttons use the established premium gold theme. */
.tour-feature-link{
    color:#fff !important;
    background:linear-gradient(135deg,#a77838,#d6ad63) !important;
    border:1px solid #b68b42 !important;
    box-shadow:0 7px 18px rgba(182,139,66,.16) !important;
}
.tour-feature-link:hover,
.tour-feature-link:focus-visible{
    color:#fff !important;
    background:linear-gradient(135deg,#8f652f,#b68b42) !important;
    border-color:#8f652f !important;
    box-shadow:0 9px 22px rgba(182,139,66,.22) !important;
}
.tour-feature-link span{color:#fff !important;}
