/* =============================================================
   David Stubbs Tours — Hero Section Clone
   Fonts   : Playfair Display (headings) / Poppins (body)
   Palette : Navy #0a1628 / Deep Navy #0d1b2e / Gold #c8a24a
   ============================================================= */

:root{
  --navy-dark:   #ffffff;
  --navy:        #0d1b2e;
  --navy-light:  #16283f;
  --gold:        #173c6b;
  --gold-light:  #d9b968;
  --white:       #ffffff;
  --gray-text:   #cfd6e0;
  --black:		 #1c1c1c;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Poppins', Arial, Helvetica, sans-serif;
}

*{
  box-sizing: border-box;
}

body{
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
}

/* ================= HEADER / NAVBAR ================= */
.site-header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background-color: transparent;
  padding: 0 0;
}

.logo-img{
  height: 110px;
  width: auto;
}

.main-nav{
  gap: 6px;
}

.main-nav .nav-link{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--white) !important;
  padding: 10px 16px !important;
  position: relative;
  transition: color .2s ease;
}

.main-nav .nav-link:hover{
  color: var(--gold-light) !important;
}

.main-nav .nav-item.dropdown > .nav-link::after{
  border-top-color: var(--white);
  vertical-align: middle;
  margin-left: 6px;
}

.main-nav .nav-link.active{
  color: var(--white) !important;
  font-weight: 600;
}

.main-nav .nav-link.active::after{
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  background-color: var(--gold);
}

.dropdown-menu{
  background-color: var(--navy-light);
  border: 1px solid rgba(200,162,74,0.25);
  border-radius: 6px;
  padding: 8px 0;
}

.dropdown-item{
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  padding: 8px 20px;
}

.dropdown-item:hover, .dropdown-item:focus{
  background-color: rgba(200,162,74,0.15);
  color: var(--gold-light);
}

.header-right{
  gap: 10px;
}

.navbar-toggler{
  border-color: rgba(255,255,255,0.6);
}

.navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px){
  .navbar-collapse{
    background-color: var(--gold);
    padding: 18px 20px;
    border-radius: 8px;
  }
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.contact-line{
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  white-space: nowrap;
}

.contact-line i{
  color: var(--gold);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.btn-book{
  background-color: var(--gold);
  color: var(--navy-dark) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 12px 26px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  white-space: nowrap;
  transition: all .25s ease;
}

.btn-book:hover{
  background-color: #ffffff;
  color: var(--gold) !important;
}

.btn-book i{
  margin-left: 8px;
}

/* ================= HERO SECTION ================= */
.hero-section{
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 0;
}

.hero-content{
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.94) 0%, rgb(69 86 108 / 58%) 30%, rgba(10, 22, 40, 0.35) 55%, rgba(10, 22, 40, 0.15) 100%);
}

.hero-section > .container-fluid{
  position: relative;
  z-index: 2;
}

.hero-text-col{
  padding: 40px 0px 0px 0px;
}

.hero-heading{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 50px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-heading .text-gold{
  color: #d2b26a;
}

.hero-subtext{
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 600px;
  margin-bottom: 34px;
}

.hero-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-buttons .btn-book{
  padding: 16px 30px;
  font-size: 14px;
}

.btn-outline-custom{
  background-color: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 16px 30px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all .25s ease;
}

.btn-outline-custom:hover{
  background-color: var(--white);
  color: var(--gold) !important;
  border-color: var(--white);
}

.hero-image-col{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.hero-portrait{
  max-width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

/* ================= FEATURED TOURS SECTION ================= */
.tours-section{
  background-color: #f7f3ec;
  padding: 90px 0;
}

.tours-heading{
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-eyebrow{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.eyebrow-line{
  width: 40px;
  height: 1px;
  background-color: var(--gold);
  display: inline-block;
}

.tours-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 16px;
      color: var(--black);
}

.tours-subtext{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #5c6470;
  margin-bottom: 0;
}

/* ---- Tour Card ---- */
.tour-card{
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(22,40,63,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.tour-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(22,40,63,0.14);
}

.tour-card-img{
  position: relative;
  width: 100%;
  height: 220px;
}

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

.tour-badge{
  position: absolute;
  top: 20px;
  left: 20px;
  width: 54px;
  height: 54px;
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.tour-badge img{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tour-card-body{
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  color: var(--gold);
  margin-bottom: 12px;
}

.tour-card-desc{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.65;
  color: #5c6470;
  margin-bottom: 18px;
}

.tour-meta{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.tour-meta-line{
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #3a4250;
  line-height: 1.5;
}

.tour-meta-line i{
  color: #c8a24a;
  font-size: 13px;
  margin-top: 3px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.tour-meta-line strong{
  font-weight: 600;
  color: var(--black);
}

.tour-btn{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: 13px;
  padding: 13px 26px;
}

.tour-btn:hover{
	     background-color: transparent;
    color: var(--black);
	    border: 1px solid var(--gold);
}

@media (max-width: 767.98px){
  .tours-title{
    font-size: 32px;
  }
  .tours-section{
    padding: 60px 0;
  }
}

/* ================= MEET YOUR GUIDE ================= */
.guide-section{
  background-color: #ffffff;
  padding: 90px 0;
}

.guide-card{
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto;
}

.guide-photo-col{
  min-height: 100%;
  padding: 0;
}

.guide-photo-col img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.guide-content-col{
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
      background: #f7f3ec85;
}

.guide-eyebrow-dash{
  width: 34px;
  height: 2px;
  background-color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.guide-eyebrow{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.guide-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 46px;
  color: var(--black);
  margin-bottom: 18px;
}

.guide-divider{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.guide-divider-line{
  flex: 1;
  height: 1px;
  background-color: rgb(23 60 107 / 32%);
}

.guide-divider-icon{
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.guide-text{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: #4a5260;
  margin-bottom: 18px;
}

.guide-signature-label{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: #4a5260;
  margin-bottom: 4px;
  margin-top: 10px;
}

.guide-signature img{
      width: 180px;
    height: 120px;
}

.guide-section .hero-buttons .btn-about {
    background-color: var(--gold);
    color: var(--navy-dark) !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 12px 26px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    white-space: nowrap;
    transition: all .25s ease;
}

.guide-section .hero-buttons .btn-about:hover {
        background-color: #ffffff;
    color: var(--gold) !important;
}

.guide-section .hero-buttons .btn-whatsapp {
        background-color: transparent;
    color: var(--black);
    /* font-family: var(--font-body); */
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 12px 26px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    white-space: nowrap;
    transition: all .25s ease;
}

.guide-section .hero-buttons .btn-whatsapp:hover {
        background-color: var(--gold);;
    color: #ffffff;
}

.guide-section .hero-buttons .btn-email {
        background-color: transparent;
    color: var(--black);
    /* font-family: var(--font-body); */
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 12px 26px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    white-space: nowrap;
    transition: all .25s ease;
}

.guide-section .hero-buttons .btn-email:hover {
        background-color: var(--gold);;
    color: #ffffff;
}

.guide-section 	.hero-buttons{
	    margin: 10px 0px 0px;
}

@media (max-width: 991.98px){
  .guide-photo-col img{
    min-height: 320px;
  }
  .guide-content-col{
    padding: 40px 30px;
  }
  .guide-title{
    font-size: 36px;
  }
}

/* ================= TAILOR-MADE TOURS CTA BANNER ================= */
.cta-banner{
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.cta-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.cta-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
180deg, rgb(10 22 40 / 79%) 0%, rgb(10 22 40 / 2%) 100%);
}

.cta-content{
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.cta-banner .hero-buttons {
    display: inline-flex;
}

.cta-title-white{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-title-gold{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: #d2b26a;
  margin-bottom: 22px;
}

.cta-subtext{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 34px;
}

/* ================= RICK STEVES TESTIMONIAL ================= */

.testimonial-section {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-image: url(../images/Recommendedrick.png);
    background-position: center;
    overflow: hidden;
    /* background-color: var(--navy-dark); */
    padding: 100px 0 100px;
}

.testimonial-map-bg{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 45%;
  opacity: 0.9;
  pointer-events: none;
}

.testimonial-map-bg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.testimonial-content{
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.quote-mark{
      font-family: var(--font-heading);
    font-size: 170px;
    line-height: 1;
    color: #d2b26a;
    display: block;
    margin-bottom: -60px;
}

.testimonial-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 20px;
}

.testimonial-text{
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 30px;
}

.testimonial-author{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-photo{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-signature{
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 30px;
  color: var(--white);
}

@media (max-width: 767.98px){
  .cta-title-white{ font-size: 30px; }
  .cta-title-gold{ font-size: 24px; }
  .testimonial-title{ font-size: 26px; }
  .testimonial-map-bg{ width: 70%; opacity: 0.6; }
}

/* ================= WHERE WE TRAVEL + FAQ ================= */
.travel-faq-section{
  background-color: #ffffff;
  padding: 90px 0 90px;
}

.travel-card,
.faq-card{
  border-radius: 16px;
  padding: 48px 44px;
  height: 100%;
}

.travel-card{
  
}

.travel-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--black);
  margin-bottom: 14px;
}

.travel-subtext{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #5c6470;
  margin-bottom: 26px;
  max-width: 380px;
}

.location-list{
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
}

.location-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 16px;
}

.location-list li i{
  color: var(--gold);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.travel-more{
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  margin: 10px 0 0;
}

/* ---- FAQ card ---- */
.faq-card{
  background-color: var(--gold);
}

.faq-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}

.faq-underline{
  display: block;
  width: 46px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 30px;
}

/* Reset Bootstrap accordion defaults to match custom navy theme */
.faq-accordion .accordion-item{
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

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

.faq-accordion .accordion-header{
  margin: 0;
}

.faq-accordion .accordion-button{
  background-color: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15.5px;
  padding: 20px 4px;
  box-shadow: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-accordion .accordion-button::after{
  display: none;
  content: none;
  background-image: none;
}

.faq-accordion .accordion-button:not(.collapsed){
  background-color: transparent;
  color: var(--gold-light);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus{
  box-shadow: none;
  border: none;
}

.faq-icon{
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
}

.faq-icon .icon-minus{
  display: none;
}

.accordion-button[aria-expanded="true"] .faq-icon .icon-plus{
  display: none;
}

.accordion-button[aria-expanded="true"] .faq-icon .icon-minus{
  display: inline-block;
}

.faq-accordion .accordion-body{
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--gray-text);
  padding: 0 30px 22px 4px;
}

@media (max-width: 991.98px){
  .travel-card,
  .faq-card{
    padding: 38px 28px;
  }
}

/* ================= PHOTO GALLERY ================= */
.gallery-section{
  padding: 90px 0;
}

.gallery-heading{
  max-width: 800px;
  margin: 0 auto 40px;
}

.camera-icon{
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 10px;
}

.gallery-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: var(--black);
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.gallery-heading-icon-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.gallery-subtext{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #5c6470;
  margin-bottom: 0;
}

.gallery-item{
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(22,40,63,0.10);
}

.gallery-item img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.gallery-item::after{
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  background-color: rgba(10,22,40,0);
  opacity: 0;
  transition: all .3s ease;
}

.gallery-item:hover::after{
  opacity: 1;
  background-color: rgba(10,22,40,0.45);
}

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

.gallery-cta{
  margin-top: 44px;
}

.btn-outline-gold{
  background-color: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 15px 30px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-gold:hover{
  background-color: var(--gold);
  color: var(--navy-dark);
}

@media (max-width: 767.98px){
  .gallery-title{
    font-size: 28px;
  }
  .gallery-item img{
    height: 170px;
  }
}

/* ================= STATS BAR ================= */
.stats-bar{
     background-color: #173c6b30;
    padding: 25px 0;
    position: relative;
    z-index: 3;
    margin-top: -109px;
}

.stat-item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  text-align: left;
}

.stat-item:not(:last-child)::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 46px;
  width: 1px;
  background-color: rgba(255,255,255,0.12);
}

@media (max-width: 991.98px){
  .stat-item:nth-child(2)::after{
    display: none;
  }
}

@media (max-width: 575.98px){
  .stat-item{
    justify-content: flex-start;
    padding-left: 6px;
  }
  .stat-item::after{
    display: none !important;
  }
}

.stat-icon{
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.stat-text{
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.stat-number{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
      word-break: break-all;
}

.stat-label{
  font-family: var(--font-body);
      font-weight: 600;
    font-size: 14px;
    color: var(--white);
}

/* ================= VIDEO GALLERY ================= */
.video-gallery-section{
  background-color: #ffffff;
  padding: 0px 0 90px;
}

.video-heading{
  max-width: 560px;
  margin: 0 auto 40px;
}

.video-heading-icon-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.video-heading-icon{
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.video-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 8px;
}

.video-subtext{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: #5c6470;
  margin-bottom: 0;
}

.video-col{
  display: flex;
  flex-direction: column;
}

.video-item{
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(22,40,63,0.10);
  margin-bottom: 14px;
}

.video-item img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.video-item:hover img{
  transform: scale(1.06);
}

.video-play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(10,22,40,0.65);
  border: 2px solid rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  transition: all .25s ease;
}

.video-play-btn i{
  margin-left: 2px;
}

.video-item:hover .video-play-btn{
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.video-duration{
  position: absolute;
  right: 8px;
  bottom: 8px;
  background-color: rgba(10,22,40,0.75);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
}

.video-item-title{
      font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 4px;
}

.video-item-desc{
      font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    color: #4c4c4c;
    margin-bottom: 0;
}

.video-cta{
  margin-top: 20px;
}

.btn-navy{
  background-color: var(--gold);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 15px 20px 15px 28px;
  border-radius: 4px;
  border: 2px solid var(--navy-dark);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all .25s ease;
}

.btn-navy:hover{
        background-color: transparent;
    color: var(--gold) !important;
    /* font-family: var(--font-body); */
    /* font-weight: 700; */
    /* font-size: 13px; */
    /* letter-spacing: .5px; */
    /* padding: 15px 30px; */
    /* border-radius: 4px; */
    border: 2px solid var(--gold);
    /* transition: all .25s ease; */
    /* display: inline-flex; */
    /* align-items: center; */
    gap: 8px;
}

.btn-navy-arrow{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all .25s ease;
}

.btn-navy:hover .btn-navy-arrow{
  border-color: var(--navy-dark);
}

@media (max-width: 991.98px){
  .video-grid .video-col{
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (max-width: 767.98px){
  .video-title{
    font-size: 28px;
  }
  .video-grid .video-col{
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ================= GUEST REVIEWS SLIDER ================= */
.reviews-section{
  background-color: #f7f3ec;
  padding: 90px 0;
}

.reviews-card{
  margin: 0 auto;
  padding: 0px 70px;
  position: relative;
}

.reviews-heading-icon-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.reviews-heading{
  max-width: 800px;
  margin: 0 auto 40px;
}

.reviews-icon{
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 10px;
}

.reviews-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: var(--black);
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.reviews-subtext{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #5c6470;
  margin-bottom: 0;
}

.reviews-divider-line {
    flex: 1;
    height: 1px;
    background-color: rgb(23 60 107 / 32%);
}

.review-stars{
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.review-text{
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  font-size: 19px;
  line-height: 1.65;
  color: #333c48;
  margin-bottom: 20px;
}

.review-author{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gold);
  margin-bottom: 0;
}

.review-client-col{
  text-align: center;
  border-left: 1px solid rgba(22,40,63,0.10);
}

.review-client-photo{
      text-align: center;
    width: 92px!important;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    /* padding-bottom: 14px; */
    margin: 0 auto;
}

.review-client-name{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 2px;
      margin-top: 10px;
}

.review-client-country{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--gold);
}

/* Owl Carousel custom nav + dots for reviews slider */
.reviews-slider.owl-carousel .owl-nav{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin: 0;
}

.reviews-slider.owl-carousel .owl-nav button.owl-prev,
.reviews-slider.owl-carousel .owl-nav button.owl-next{
  pointer-events: all;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white) !important;
  box-shadow: 0 6px 16px rgba(22,40,63,0.18);
  color: #6b7280 !important;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  margin: 0;
}

.reviews-slider.owl-carousel .owl-nav button.owl-prev{
  transform: translateX(-58px);
}

.reviews-slider.owl-carousel .owl-nav button.owl-next{
  transform: translateX(58px);
}

.reviews-slider.owl-carousel .owl-nav button.owl-prev:hover,
.reviews-slider.owl-carousel .owl-nav button.owl-next:hover{
  background-color: var(--gold) !important;
  color: var(--navy-dark) !important;
}

.reviews-slider.owl-carousel .owl-dots{
  text-align: center;
  margin-top: 34px;
}

.reviews-slider.owl-carousel .owl-dot span{
  width: 9px;
  height: 9px;
  margin: 0 4px;
  background-color: rgba(22,40,63,0.18);
  border-radius: 50%;
  display: block;
  transition: all .25s ease;
}

.reviews-slider.owl-carousel .owl-dot.active span{
  background-color: var(--gold);
  width: 22px;
  border-radius: 5px;
}

@media (max-width: 767.98px){
  .reviews-card{
    padding: 40px 24px 30px;
  }
  .reviews-title{
    font-size: 24px;
  }
  .review-text{
    font-size: 16px;
  }
  .review-client-col{
    border-left: none;
    border-top: 1px solid rgba(22,40,63,0.10);
    padding-top: 24px;
    margin-top: 10px;
  }
  .reviews-slider.owl-carousel .owl-nav button.owl-prev{
    transform: translateX(-10px);
  }
  .reviews-slider.owl-carousel .owl-nav button.owl-next{
    transform: translateX(10px);
  }
}

/* ================= FOOTER ================= */
.site-footer{
  background-color: var(--gold);
  padding-top: 70px;
}

.footer-main{
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo{
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo img{
  width: auto;
      height: 125px;
}

.footer-about{
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 0;
}

.footer-heading{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}

.footer-heading::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background-color: #d2b26a;
}

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

.footer-links li{
  margin-bottom: 13px;
}

.footer-links a{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14.5px;
  color: var(--gray-text);
  transition: all .2s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover{
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-contact{
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.footer-contact li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--gray-text);
  line-height: 1.5;
}

.footer-contact li i{
  color: var(--white);
  font-size: 14px;
  width: 16px;
  margin-top: 3px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact a{
  color: var(--gray-text);
  transition: color .2s ease;
}

.footer-contact a:hover{
  color: var(--gold-light);
}

.footer-socials{
  display: flex;
  gap: 12px;
}

.footer-socials a{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d2b26a;
  font-size: 14px;
  transition: all .25s ease;
}

.footer-socials a:hover{
      background-color: var(--white);
    border-color: var(--white);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ---- Bottom Bar ---- */
.footer-bottom{
  padding: 22px 0;
}

.footer-bottom-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copyright{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.footer-legal{
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.footer-legal a{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color .2s ease;
}

.footer-legal a:hover{
  color: var(--gold-light);
}

@media (max-width: 767.98px){
  .site-footer{
    padding-top: 50px;
  }
  .footer-bottom-inner{
    flex-direction: column;
    text-align: center;
  }
}

/* ================= MOBILE STICKY CALL / CONTACT BAR ================= */
.mobile-sticky-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
      border-top: 1px solid #fff;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.18);
}

.mobile-sticky-btn{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .3px;
}

.mobile-sticky-call{
  background-color: var(--gold);
  color: var(--navy-dark) !important;
}

.mobile-sticky-contact{
  background-color: var(--black);
  color: var(--white) !important;
  border-left: 1px solid rgba(255,255,255,0.15);
}

body{
  padding-bottom: 0;
}

@media (max-width: 991.98px){
  body{
    padding-bottom: 58px;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991.98px){
  .hero-heading{
    font-size: 42px;
  }
  .hero-image-col{
    margin-top: 30px;
  }
  .hero-portrait{
    max-height: 380px;
  }
  .header-right{
    align-items: flex-start !important;
  }
  .btn-book{
	  display:none;
  }
  .stats-bar{
	      margin-top: -195px;
  }
}

@media (max-width: 767.98px){
  .hero-heading{
    font-size: 34px;
  }
  .hero-section{
    padding: 40px 0;
    min-height: auto;
  }
  .hero-buttons{
    flex-direction: column;
  }
  .hero-buttons a{
    text-align: center;
  }
}



/* =============================================================
   Tour Details Page — extends style.css (shared variables/fonts)
   ============================================================= */

/* ================= PAGE BANNER ================= */
.page-banner{
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.page-banner .hero-overlay{
  background: linear-gradient(180deg, rgb(10 22 40 / 60%) 0%, rgb(10 22 40 / 14%) 100%);
}

.banner-content{
  position: relative;
  z-index: 2;
  padding: 170px 0 60px;
  width: 100%;
}

.banner-eyebrow{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.banner-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 14px;
}

.banner-breadcrumb{
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
}

.banner-breadcrumb a{
  color: rgba(255,255,255,0.75);
  transition: color .2s ease;
}

.banner-breadcrumb a:hover{
  color: var(--gold-light);
}

.banner-breadcrumb .crumb-sep{
  color: rgba(255,255,255,0.4);
  margin: 0 8px;
}

.banner-breadcrumb .crumb-current{
  color: #959595;
  font-weight: 500;
}

/* ================= TOUR DETAILS: MAIN LAYOUT ================= */
.tour-details-section{
  background-color: #ffffff;
  padding: 80px 0;
}

/* ---- Quick meta strip ---- */
.tour-quickmeta{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background-color: #f7f3ec;
  border-radius: 12px;
  padding: 26px 28px;
  margin-bottom: 40px;
}

.quickmeta-item{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 170px;
}

.quickmeta-item img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.quickmeta-item > div{
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.quickmeta-label{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: #000000 !important;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.quickmeta-value{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gold) !important;
}

/* ---- Section titles / paragraphs ---- */
.tour-section-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--black);
  margin-bottom: 18px;
  margin-top: 44px;
}

.tour-content-col > .tour-section-title:first-of-type{
  margin-top: 0;
}

.tour-paragraph{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #4a5260;
  margin-bottom: 18px;
}

/* ---- Tour gallery grid (reuses .gallery-item styles from style.css) ---- */
.tour-gallery-grid .gallery-item img{
  height: 170px;
}

/* ---- Itinerary ---- */
.itinerary-list{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.itinerary-item{
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(22,40,63,0.08);
}

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

.itinerary-number{
      flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--navy-dark) !important;
    color: var(--gold) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.itinerary-item h4{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 6px;
}

.itinerary-item p{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.7;
  color: #5c6470;
  margin-bottom: 0;
}

/* ---- Included / Not Included ---- */
.included-row{
  margin-top: 44px;
}

.included-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--black);
  margin-bottom: 18px;
}

.included-list,
.excluded-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.included-list li,
.excluded-list li{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14.5px;
  color: #4a5260;
  margin-bottom: 14px;
}

.included-list li img,
.excluded-list li img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.excluded-list li{
  color: #8a8f98;
}

/* ================= SIDEBAR ================= */
.tour-sidebar{
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-widget{
  background-color: #f7f3ec;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(22,40,63,0.06);
}

.sidebar-widget-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  color: var(--black) !important;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 14px;
}

.sidebar-widget-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background-color: var(--white);
}

.other-tours-widget .sidebar-widget-title::after{
  background-color: var(--black);
}

/* ---- Booking widget ---- */
.booking-widget{
  background-color: var(--gold) !important;
}

.booking-widget .sidebar-widget-title{
  color: var(--white) !important;
}

.booking-price{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 22px;
}

.booking-price span{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--gold);
  margin: 0 4px;
}

.booking-form{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
}

.form-field img{
  position: absolute;
  left: 11px;
  width: 20px;
  height: 20px;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.85;
  z-index: 2;
}

.form-field input,
.form-field select{
  width: 100% !important;
  background-color: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 6px !important;
  padding: 13px 14px 13px 42px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: var(--white) !important;
  outline: none !important;
  box-shadow: none !important;
  min-height: 46px;
  transition: border-color .2s ease;
}

.form-field select{
  appearance: none;
  -webkit-appearance: none;
  color: rgba(255,255,255,0.85) !important;
}

.form-field input::placeholder{
  color: rgba(255,255,255,0.45) !important;
  opacity: 1;
}

.form-field input:focus,
.form-field select:focus{
  border-color: var(--gold) !important;
}

.form-field input[type="date"]{
  color-scheme: dark;
}

.booking-form textarea{
  width: 100% !important;
  background-color: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 6px !important;
  padding: 13px 14px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: var(--white) !important;
  outline: none !important;
  box-shadow: none !important;
  resize: vertical;
  transition: border-color .2s ease;
}

.booking-form textarea::placeholder{
  color: rgba(255,255,255,0.45) !important;
  opacity: 1;
}

.booking-form textarea:focus{
  border-color: var(--gold) !important;
}

.booking-form .btn-book{
  margin-top: 6px;
  gap: 10px;
}

/* ---- Other tours widget ---- */
.other-tour-item{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(22,40,63,0.10);
}

.other-tour-item:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.other-tour-item img{
  width: 68px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background-color: rgba(22,40,63,0.06);
}

.other-tour-item h5{
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 14px;
  color: var(--black) !important;
  margin-bottom: 4px;
  transition: color .2s ease;
}

.other-tour-item span{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12.5px;
  color: var(--gold);
}

.other-tour-item:hover h5{
  color: var(--gold) !important;
}

.tour-bookin{
	    background-color: var(--white);
    color: var(--gold) !important;
}

.tour-bookin:hover{
	    background-color: inherit;
    color: var(--white) !important;
    /* background-color: transparent; */
    border: 1px solid var(--white);
}

/* ================= TOUR FAQ WRAP ================= */
.tour-faq-section{
  background-color: #f7f3ec;
  padding: 90px 0;
}

.tour-faq-wrap{
  max-width: 780px;
  margin: 0 auto;
}

.tour-faq-wrap .faq-card{
  border-radius: 16px;
}

.david-ctn-banner .cta-content{
      position: relative;
    z-index: 2;
    max-width: 610px;
        text-align: left;
    margin: initial;
}
.david-ctn-banner .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(37deg, rgb(10 22 40 / 77%) 0%, rgb(10 22 40 / 2%) 100%);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991.98px){
  .banner-title{
    font-size: 36px;
  }
  .tour-sidebar{
    position: static;
    margin-top: 10px;
  }
  .guide-section{
          padding: 90px 0 0px;
  }
}

@media (max-width: 767.98px){
  .page-banner{
    min-height: 340px;
  }
  .banner-content{
    padding: 140px 0 40px;
  }
  .banner-title{
    font-size: 28px;
  }
  .tour-quickmeta{
    padding: 20px;
  }
  .tour-section-title{
    font-size: 22px;
    margin-top: 34px;
  }
  .sidebar-widget{
    padding: 26px 20px;
  }
  
}

/* ================= ABOUT DAVID (FULL WIDTH) ================= */
.about-full-section{
  background-color: #ffffff;
  padding: 90px 0 70px;
}

.about-full-inner{
 /* max-width: 820px;*/
  margin: 0 auto;
}

.about-eyebrow-dash{
  width: 34px;
  height: 2px;
  background-color: var(--gold);
  display: inline-block;
  margin-bottom: 10px;
}

.about-eyebrow{
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.5px;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.about-title{
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 46px;
    color: var(--black);
    margin-bottom: 18px;
}

.about-text{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.85;
  color: #5c6470;
  margin-bottom: 20px;
}

.about-highlight{
  color: var(--gold);
  font-weight: 700;
}

.about-full-inner .btn-book{
  margin-top: 14px;
}

/* ================= TRACK RECORD (4-POINT STATS) ================= */
.stats-ring-section{
  background-color: #ffffff;
  padding: 30px 0 90px;
}

.stats-ring-heading{
  max-width: 560px;
  margin: 0 auto 50px;
}

.stats-ring-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: var(--navy-dark);
  margin-bottom: 0;
}

.stat-ring-card{
  background-color: #f7f3ec;
  border-radius: 14px;
  padding: 36px 20px;
  text-align: center;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.stat-ring-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(22,40,63,0.10);
}

.stat-ring{
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--gold) var(--deg), rgba(22,40,63,0.10) 0deg);
}

.stat-ring-inner{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(22,40,63,0.05);
}

.stat-percent{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy-dark);
}

.stat-ring-label{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy-dark);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 991.98px){
  .about-title{
    font-size: 30px;
  }
}

@media (max-width: 767.98px){
  .about-title{
    font-size: 26px;
  }
  .stats-ring-title{
    font-size: 26px;
  }
}

@media (max-width: 575.98px){
  .stat-ring{
    width: 108px;
    height: 108px;
  }
  .stat-ring-inner{
    width: 84px;
    height: 84px;
  }
  .stat-percent{
    font-size: 20px;
  }
}


/* ================= ANIMATED COUNTER STATS ================= */
.counter-section{
    position: relative;
    overflow: hidden;
    background-color: var(--gold);
    padding: 65px 0;
}

.counter-glow{
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
}

.counter-glow-left{
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(200,162,74,0.14) 0%, rgba(200,162,74,0) 70%);
}

.counter-glow-right{
  bottom: -140px;
  right: -100px;
  background: radial-gradient(circle, rgba(200,162,74,0.10) 0%, rgba(200,162,74,0) 70%);
}

.counter-grid{
  position: relative;
  z-index: 2;
}

.counter-item{
  position: relative;
}

.counter-item:not(:last-child)::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 56px;
  width: 1px;
  background-color: rgba(255,255,255,0.12);
}

@media (max-width: 991.98px){
  .counter-item:nth-child(2)::after{
    display: none;
  }
}

@media (max-width: 575.98px){
  .counter-item::after{
    display: none !important;
  }
}

.counter-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: #d2b26a;
    margin-bottom: 12px;
}

.counter-suffix {
    color: #d2b26a;
}

.counter-label{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .4px;
  color: var(--gray-text);
  margin-bottom: 0;
}

@media (max-width: 767.98px){
  .counter-number{
    font-size: 34px;
  }
  .counter-section{
    padding: 60px 0;
  }
}

/* ================= SERVICES INTRO ================= */
.services-intro-section{
  background-color: #ffffff;
  padding: 90px 0 20px;
}

.services-intro {
    /* max-width: 720px; */
    margin: 0 auto;
}

.services-intro-title{
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 46px;
    color: var(--black);
    margin-bottom: 18px;
}

.services-intro-text{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #5c6470;
  margin-bottom: 0;
}

/* ================= SERVICES ZIG-ZAG ================= */
.services-zigzag-section{
  background-color: #ffffff;
  padding: 60px 0 90px;
}

.service-row {
    padding: 46px 0;
    /* border-bottom: 1px solid rgba(22, 40, 63, 0.08); */
}

.services-zigzag-section .row.service-row:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.service-image-wrap{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(22,40,63,0.12);
}

.service-image-wrap img{
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.service-image-wrap:hover img{
  transform: scale(1.04);
}

.service-eyebrow{
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.5px;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-title{
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 16px;
    color: var(--black);
}

.service-text{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #4a5260;
  margin-bottom: 24px;
}

.service-checklist{
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.service-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14.5px;
    color: var(--black);
    margin-bottom: 14px;
}

.service-checklist li img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 991.98px){
  .service-image-wrap img{
    height: 300px;
  }
  .service-title{
    font-size: 26px;
  }
  .service-row{
    padding: 34px 0;
  }
  .order-lg-1, .order-lg-2{
    order: initial;
  }
}

@media (max-width: 767.98px){
  .services-intro-title{
    font-size: 28px;
  }
}


/* ================= TOUR HIGHLIGHTS ================= */
.highlights-section{
  background-color: #f7f3ec;
  padding: 90px 0;
}

.highlights-heading{
  max-width: 620px;
  margin: 0 auto 50px;
}

.highlights-title{
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--black);
}

.highlights-subtext {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5260;
    margin-bottom: 0;
}

.highlight-card{
  background-color: var(--white);
  border-radius: 14px;
  padding: 40px 32px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(22,40,63,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.highlight-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(22,40,63,0.12);
}

.highlight-icon{
  width: 85px;
  height: 85px;
  object-fit: contain;
  margin-bottom: 22px;
}

.highlight-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 14px;
}

.highlight-text{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.75;
  color: #5c6470;
  margin-bottom: 0;
}

@media (max-width: 767.98px){
  .highlights-title{
    font-size: 28px;
  }
  .highlight-card{
    padding: 32px 26px;
  }
}


/* =====================================================
   MOBILE HERO BACKGROUND ONLY
   Applies only up to 767px
   ===================================================== */

@media (max-width: 767px) {

    .hero-section {
        min-height: 650px;
    }

    .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 65% center;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(10, 22, 40, 0.94) 0%,
            rgba(10, 22, 40, 0.75) 45%,
            rgba(10, 22, 40, 0.45) 100%
        );
    }
}

.btn-book1 {
    background-color: var(--gold);
    color: var(--navy-dark) !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 12px 26px;
    border-radius: 4px;
    border: 2px solid var(--gold);
    white-space: nowrap;
    transition: all .25s ease;
}

.about-zigzag-section .service-row ul li{
        display: block;
}
.about-zigzag-section .service-checklist li img{
        margin-right: 10px;
}
.about-zigzag-section .service-image-wrap img{
    height: auto;
}


/* ================= CONTACT PAGE: INFO CARDS ================= */
.contact-info-section{
  background-color: #ffffff;
  padding: 70px 0 20px;
}

.contact-info-card{
  background-color: #f7f3ec;
  border-radius: 14px;
  padding: 38px 15px;
  text-align: center;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.contact-info-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(22,40,63,0.10);
}

.contact-info-icon{
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 18px;
}

.contact-info-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--black);
  margin-bottom: 10px;
}

.contact-info-value{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}

.contact-info-value a{
  color: var(--black);
  transition: color .2s ease;
}

.contact-info-value a:hover{
  color: var(--gold);
}

.contact-info-note{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: #8a8f98;
  margin-bottom: 0;
}

/* ================= CONTACT PAGE: FORM + MAP ================= */
.contact-main-section{
  background-color: #ffffff;
  padding: 70px 0 90px;
}

.contact-form-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: var(--black);
  margin-bottom: 16px;
}

.contact-form-subtext{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: #5c6470;
  margin-bottom: 32px;
}

/* Light-background variant of the .form-field component (used on navy booking widget) */
.form-field-light input,
.form-field-light select{
  background-color: #f7f3ec !important;
  border: 1px solid rgba(22,40,63,0.10) !important;
  color: var(--navy-dark) !important;
}

.form-field-light input::placeholder{
  color: #9aa0a8 !important;
}

.form-field-light input:focus,
.form-field-light select:focus{
  border-color: var(--gold) !important;
}

.form-field-light img{
  opacity: 0.6;
}

.contact-page-form textarea{
  width: 100%;
  background-color: #f7f3ec;
  border: 1px solid rgba(22,40,63,0.10);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy-dark);
  outline: none;
  resize: vertical;
  transition: border-color .2s ease;
}

.contact-page-form textarea::placeholder{
  color: #9aa0a8;
}

.contact-page-form textarea:focus{
  border-color: var(--gold);
}

.contact-map-wrap{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(22,40,63,0.12);
  height: 360px;
}

.contact-map-wrap iframe{
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(15%);
}

.contact-social-strip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding: 22px 26px;
  background-color: #f7f3ec;
  border-radius: 12px;
}

.contact-social-strip span{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
}

.contact-social-strip .footer-socials a{
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.contact-social-strip .footer-socials a:hover{
  background-color: var(--white);
  border-color: var(--white);
  color: #d2b26a;
}

@media (max-width: 767.98px){
  .contact-form-title{
    font-size: 26px;
  }
  .contact-map-wrap{
    height: 280px;
  }
  .contact-social-strip{
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

.contact-page-form .btn-book:hover {
    color: #000 !important;
    background-color: #ffffff;
    border-color: var(--gold) !important;
}