@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{

    /* =========================
    FONT FAMILY
    ================================*/
    --head-font: "Merriweather", serif;
    --text-font: "Lato", sans-serif;

/* ==============
COLOR
===================*/
--secondary-color:#ef643f;
--heading-color:#454442;
--text-color:#212529;
--brand-color:#a50a08;
--white-color:#ffffff;
}
/* =========================
   4. HEADINGS
========================= */
h1, h2, h3, h4 {
  margin-bottom: 10px;
  color: var(--dark-color);
}
/* =========================
   5. LINKS
========================= */
ul li{
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  color: var(--secondary-color);
}
/* ============== nav styling=================== */
.nav-main{
  display: flex;
  flex-direction: column;
}
.nav-top{
  display: flex;
  flex-direction: row;
  padding: 20px 5%;
  justify-content: space-between;
  background: var(--heading-color);
}
.nav-top-left{
  display: flex;
  padding: 0 10px;
}
.nav-top-left .email{
  margin-left: 15px;
}
.phone a{
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--heading-color);
  font-family: var(--head-font);
}
.phone a .icon,.email a{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 4px;
}
.phone a,.nav-top-bottom a{
  color: var(--secondary-color);
  font-family: var(--head-font);
}
.email a .icon,.email a {
  margin-right: 5px;
  color: var(--secondary-color);
  font-family: var(--head-font);
}
.phone a .icon i,.email a .icon i,.social-media a i,.nav-top-bottom a i{
font-size: 20px;
color: var(--secondary-color);
}
.nav-bottom{
  background-color: var(--brand-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width:100%;
}
.logo{
  padding: 5px 0px ;
flex-basis: 12%;
flex-shrink: 0;
height: 100px;
  position: relative;
}
.nav-bottom-right{
  flex-basis: 85%;
  flex: 1;
}
.logo img{
  top: 0;
  left: 0;
  position: absolute;
  width:95%;
  height: 95%;
  object-fit: cover;
}
.nav-bottom-right{
  padding: 0 10%;
}
.nav-bottom-right ul.level-1{
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-family: var(--head-font);
  font-weight: 500;
}
.nav-bottom-right ul.level-1 > li {
  position: relative;
}
.nav-bottom-right ul.level-1 > li > a {
  padding: 15px 20px;
  display: block;
  color: var(--white-color);
}
.nav-bottom-right ul.level-2 {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  display: none;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1000;
}
.nav-bottom-right ul.level-1 > li:hover > ul.level-2 {
  display: flex;
}
.nav-bottom-right ul.level-2 li a {
  padding: 12px 15px;
  display: block;
  color: var(--text-color);
  font-size: 13px;
}

.nav-bottom-right ul.level-2 li a:hover {
  background: var(--secondary-color);
  color: #fff;
}
.nav-bottom-right ul.level-2 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.nav-bottom-right ul.level-1 > li:hover > ul.level-2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-toggle {
  display: none;
  font-size: 25px;
  color: var(--white-color);
  cursor: pointer;
}

.menu-close {
  display: none;
  font-size: 25px;
  text-align: right;
  padding: 20px;
  cursor: pointer;
}
/* ===========
nav menu responsiveness
==================*/
@media (max-width: 992px) {

  .menu-toggle {
    display: block;
  }

  .nav-bottom {
    padding: 10px 5%;
  }

  .nav-bottom-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--brand-color);
    flex-direction: column;
    padding: 20px;
    transition: 0.3s ease;
    z-index: 2000;
  }

  .nav-bottom-right.active {
    right: 0;
  }

  .menu-close {
    display: block;
    color: #fff;
  }

  .nav-bottom-right ul.level-1 {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-bottom-right ul.level-1 > li {
    width: 100%;
  }

  .nav-bottom-right ul.level-1 > li > a {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  /* Dropdown inside mobile */
  .nav-bottom-right ul.level-2 {
    position: static;
    background: transparent;
    box-shadow: none;
    display: none;
    width: 100%;
  }

  .nav-bottom-right ul.level-2 li a {
    color: #fff;
    padding-left: 30px;
  }

  /* Click dropdown (optional improvement) */
  .level-1 > li.open .level-2 {
    display: block;
  }

}
/* ============= hero section styling start================ */
/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* SLIDER */
.slider {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
   transform: scale(1);
  transition: transform 6s ease;
}
/* ACTIVE SLIDE ZOOM */
.slide.active img {
  transform: scale(1.1);
}
/* DARK OVERLAY */
.slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.5);
}

/* CENTER CONTENT */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  padding: 0 20px;
}

/* TEXT */
.content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-family: var(--head-font);
}

.content p {
  font-size: 18px;
  margin-bottom: 15px;
  font-family: var(--text-font);
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-primary {
  background: var(--secondary-color);
  color: #fff;
}

.btn-primary:hover {
  background: #d94e2c;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}
/* ============= hero section styling end================ */
/* ==================================
welcome styling
========================================*/
.timber-cont,.tour-package{
  position: relative;
  z-index: 1;
  padding: 50px 5%;
  max-width: 100%;
  align-items: center;
  margin: 0 auto;
}
.timber-cont::before,.why-travel::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-deco.jpg);
  opacity: .1;
  z-index: -1;
}

.intr-wrapper{
  align-items: center;
  justify-content: center;
}
.timber-head{
  align-items: center;
}
.timber-head h2,.package-wrapper h2{
  font-family: var(--head-font);
  padding: 20px 0;
  text-transform: uppercase;
  color: var(--heading-color);
  font-size: 40px;
  font-style: italic;
  line-height: 60px;
  text-align: center;
  font-weight: 400;
}
.timber-head h3{
  font-size: 20px;
  font-family: var(--text-font);
  font-style: italic;
  text-align: justify;
  font-weight: 400;
  line-height: 30px;
}
.timber-head h3 span{
  color: var(--secondary-color);
}
.wel-cont p,.package-wrapper p{
  font-family: var(--text-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
  text-align: center;
}
.row-cont{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  gap: 20px;
  margin: 0 auto;
  padding-top: 30px;
}
.row-item{
  padding: 20px;
}
.row-item h4{
  font-style: italic;
  font-family: var(--head-font);
  text-align: center;
  font-size: 20px;
  color: var(--secondary-color);
  line-height: 40px;

}
.img-icon{
 
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: var(--secondary-color);
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 20px;
}
.img-icon.ic1::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% ,-50%);
  background: url(../images/tvicon1.1.png);
  background-size: cover;
  z-index: 1;
  width: 80px;
  height: 80px;
}
.img-icon.ic2::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% ,-50%);
  background: url(../images/tvicon2.1.png);
  background-size: cover;
  z-index: 1;
  width: 80px;
  height: 80px;
}
.img-icon.ic3::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% ,-50%);
  background: url(../images/tvicon3.png);
  background-size: cover;
  z-index: 1;
  width: 80px;
  height: 80px;
}
.tour-wrapper{
  width: 100%;
  padding:20px 5%;
}
.tour-item-wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-template-rows:1fr 1fr;
  height: 800px;

}
.tour-item-wrapper .tour-item:nth-child(1) {
  grid-column: span 2;
}
.tour-item-wrapper .tour-item:nth-child(2) {
  grid-row: span 2;
}
.tour-item{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tour-item::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0,0,0,0.5);
}

.image-main{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tour-wrapper h2,.why-travel-wrapper h2{
  font-family: var(--head-font);
  padding: 20px 0;
  text-transform: uppercase;
  color: var(--heading-color);
  font-size: 40px;
  font-style: italic;
  line-height: 60px;
  text-align: center;
  font-weight: 400;
}
.item-inner{
  position: relative;
  z-index: 2; /* FIX: bring text on top */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px 40px;
  color: #fff; /* important */
}
.tour-wrapper .item-inner h2{
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.5;
  font-style: italic;
  color: #ffffff;
}
.item-inner p{
  padding-top: 30px;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}
.item-inner span{
  display: inline-flex;
  position: absolute;
  bottom: 10px;
  right: 20px;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--secondary-color);
}
.row-cont-wrapper{
  display: flex;
  flex-wrap: wrap;
  padding: 30px 2%;
  gap: 20px;
}
.travel-item{
  flex-basis: 30.3%;
  gap: 20px;
} 
.travel-item h3{
  color: var(--heading-color);
  font-family: var(--head-font);
  font-style: italic;
  text-align: center;
  font-size: 40px;
  line-height: 40px;
}
.travel-item p{
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--text-font);
  text-align: center;
}
.why-travel{
  position: relative;
}
.package-item-wrapper{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  padding: 30px 0;
}
.pack-item{
  /* overflow: hidden; */
}
.pack-wrapper{
  position: relative;
}
.img-box{
  position: relative;
  width: 100%;
  height: 400px;
}
.img-box img{
  position: absolute;
  top: 0;left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-type{
  position: absolute;
  top: 10px; left: 10px;
  z-index: 4;
  background: var(--secondary-color);
  color: #ffffff;
  padding:5px;
  font-family: var(--head-font);
  font-size: 10px;
  text-transform: uppercase;
  font-style: italic;
  border-radius: 20px;
  border: 2px solid #fff;
}
.pack-cont{
 padding: 20px;
  background: #fff; /* VERY IMPORTANT */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-top: -40px; /* pulls card up over image (nice effect) */
  position: relative;
  z-index: 2;
}
.pack-cont h4{
  text-align: center;
  padding: 20px 0;
  font-size: 25px;
  text-transform: uppercase;
  color: var(--heading-color);
  font-family: var(--head-font);
  line-height: 40px;
}
.pack-acc{
  display:block;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 20px;
}
.acc-style{
  font-size: 16px;
  font-family: var(--head-font);
  text-transform: capitalize;
}
.acc-range{
  background: var(--secondary-color);
  color: #ffffff;
  text-transform: capitalize;
  font-size: 14px;
  padding: 5px;
  border-radius: 5px;
  font-family: var(--text-font);
  margin-left: 10px;
}
.visit{
  padding-bottom: 15px;
  
}
.visit .p-title{
font-family: var(--head-font);
  font-style: italic;
  text-transform: capitalize;
  color: var(--secondary-color);
  font-size: 14px;
}
.visit .park{
  text-transform: capitalize;
  font-size: 12px;
  color: var(--text-color);
  font-family: var(--text-font);
}
.pack-cont a{
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  text-transform: capitalize;
  font-size: 18px;
  font-family: var(--head-font);
  font-weight: 500;
  border: 2px solid var(--secondary-color);
  transition: .3s ease-in-out;
}
.pack-cont a:hover{
  background-color: var(--secondary-color);
  color: #ffffff;
}
.more-tour{
 display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 12px 25px;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  font-family: var(--head-font);
  text-transform: uppercase;
  transition: 0.3s;
}
.more-tour:hover{
  background-color: var(--secondary-color);
  color: #ffffff;
}
/* =======================
NATIONAL PARK SLIDER
==========================*/

.np-section {
    padding: 40px;
    text-align: center;
}
.np-section h2{
      font-family: var(--head-font);
    padding: 20px 0;
    text-transform: uppercase;
    color: var(--heading-color);
    font-size: 40px;
    font-style: italic;
    line-height: 60px;
    text-align: center;
    font-weight: 400;
}


/* SLIDER WRAPPER */
.np-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

/* TRACK */
.np-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

/* CARD */
.np-card {
   min-width: calc(100% / 3); /* SHOW 3 CARDS */
  box-sizing: border-box;
    padding: 10px;
    box-sizing: border-box;
}

.np-card a {
    text-decoration: none;
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

/* IMAGE */
.np-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* OVERLAY */
.np-card a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.05)
    );
    z-index: 1;
}

/* TEXT */
.np-card h3 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    margin: 0;
    color: white;
    z-index: 2;
    font-size: 18px;
}

/* HOVER */
.np-card a:hover img {
    transform: scale(1.08);
}

/* BUTTONS */
.np-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
}

.np-prev { left: 10px; }
.np-next { right: 10px; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .np-card { min-width: 50%; }
}

@media (max-width: 600px) {
    .np-card { min-width: 100%; }
}
/* =========================
FOOTER DESIGNS
===========================*/
/* Footer */
.site-footer {
  position: relative;
}
.site-footer::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/trees.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: .3;
    z-index: -1;
}
/* ===================================
ITINARIES CSS START
=====================================*/
/* ================= ITINERARY ================= */
.itinerary-section {
  padding: 60px 5%;
  background: #f9f9f9;
}

.itinerary-wrapper h2 {
  text-align: center;
  font-family: var(--head-font);
  margin-bottom: 30px;
}

/* TABS */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 20px;
  border: none;
  background: #ddd;
  cursor: pointer;
  flex-wrap: wrap;
  flex-shrink: 0;
  font-size: 14px;
  font-family: var(--head-font);
}

.tab-btn.active {
  background: var(--secondary-color);
  color: #fff;
}

/* CONTENT */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* INCLUSION */
.inc-exc {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.inc, .exc {
  flex: 1;
}

.inc h3 {
  color: green;
}
.exc h3 {
  color: red;
}

/* ACCORDION */
.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  padding: 16px;
  cursor: pointer;
  background: #fff;
  display: flex;
  justify-content: space-between;
  font-style: italic;
  font-family: var(--head-font);
  font-weight: bold;
}
.accordion-item.active .accordion-header{
  color: #a50a08;
}

.accordion-body {
  display: none;
  padding: 15px;
  background: #fafafa;
}
.accordion-body p{
  font-size: 14px;
  font-family: var(--text-font);
  line-height: 1.5;
}

.accordion-item.active .accordion-body {
  display: block;
}
/* ===================================
ITINARIES CSS END
======================================*/
/* Container */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Columns */
.footer-col h3 {
    margin-bottom: 15px;
}
.footer-col img{
  width: 150px;
  height: 100px;
  object-fit: cover;
}

.footer-col p {
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    width: 100%;
    display: block;
}

/* Links */
.footer-col a {
  display: block;
  width: 100%;
  font-family: var(--text-font);
  font-size: 18px;
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 0.7;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.social-media-i{
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-media-i a{
      margin: 0;
    padding: 0;
    display: block;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 9999;
    margin-left: 20px;
}
/* =========================
tour banner designiibg
==============================*/
.tour-banner{
  display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.tour-banner h1{
  font-style: italic;
font-family: var(--head-font);
color: var(--white-color);
font-size: 50px;
text-transform: uppercase;
}

/* Day trips designs */
.day-trip-image{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.day-trip-image .img-1{
  position: relative;
  width: 100%;
  height: 100%;
}
.day-trip-image .img-1 img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.daytrip-list{
  max-width: 800px;
  margin: 30px auto;
}
.daytrip-list li{
  font-size: 17px;
  line-height: 1.5;
  padding: 10px 0;
  font-family: var(--text-font);
}
.daytrip-list li span{
  font-size: 14px;
  color: var(--brand-color);
  font-family: var(--head-font);
  text-transform: uppercase;
  padding-right: 15px;
}

/* zanzibar beach designation */
.zanzi-wrapper{
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}
.zanzi-wrapper .zanzibar-detail{
  display: flex;
  gap: 0 20px;
  justify-content: center;
  align-items:top;
}
.zanzi-wrapper .zanzibar-detail .zanzibar-left{
  flex-basis: 50%;
  flex-shrink: 0;
}
.zanzi-wrapper .zanzibar-detail .zanzibar-left h2{
  font-size: 30px;
  font-family: var(--head-font);
  font-style: italic;
  color: var(--brand-color);
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.8;
}
.zanzi-wrapper .zanzibar-detail .zanzibar-left.about-us p{
  font-size: 18px;
  line-height: 1.5;
}
.zanzi-wrapper .zanzibar-detail .zanzibar-left.about-us p span{
  font-style: italic;
  color: var(--brand-color);
  text-transform: uppercase;
  font-family: var(--head-font);
}
.zanzi-wrapper .zanzibar-detail .zanzibar-right{
  position: relative;
  flex-basis: 40%;
    flex-shrink: 0;
}
.zanzi-wrapper .zanzibar-detail .zanzibar-right .zanzibar-img{
  position: relative;
  width: 100%;
  height: 300px;
}
.zanzi-wrapper .zanzibar-detail .zanzibar-right .zanzibar-img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-position: center;
  object-fit: cover;
}
.zanzi-wrapper .zanzibar-detail .zanzibar-left li{
  font-family: var(--text-font);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  list-style: none;
}
.zanzi-wrapper .zanzibar-detail .zanzibar-left li span{
  color: var(--brand-color);
  font-size: 18px;
  margin-right: 10px;
  font-weight: bold;
  font-family: var(--head-font);
}

.zanzi-wrapper .zanzibar-detail:nth-child(even) {
  flex-direction: row-reverse;
}
.zanzi-wrapper .zanzibar-detail{
  margin-top: 20px;
}

/* ============== Contact form styling===================== */

/* CONTAINER */
.contact-wrapper{
  background-color:#E9E3D2;
}
.contact-container {
   max-width: 1200px; 
  padding:60px auto;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 20px;
  background-color: #E9E3D2;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  text-align: center;
  text-transform: uppercase;
  color: var(--brand-color);
  margin-bottom: 20px;
  font-size: 28px;
}
.contact-info strong{
  color: var(--brand-color);
}

.contact-info p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.social-icons {
  margin-top: 20px;
}

.social-icons i {
  margin-right: 15px;
  font-size: 18px;
  cursor: pointer;
}

/* RIGHT SIDE (FORM) */
.contact-form {
  flex: 1;
  background:#E9E3D2;;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: var(--brand-color);
  font-family: var(--head-font);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

textarea {
  resize: none;
  height: 100px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin: 15px 0;
}

.form-btn {
  background: var(--brand-color);
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.form-btn:hover {
  background: #a8834e;
}
.contact-wrapper h2{
  text-align: center;
  padding: 20px 0;
  color: var(--brand-color);
  text-transform: uppercase;
  font-family: var(--head-font);
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}
/* ================== clickabe button styling================= */
.xw-contact-root{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    font-family: Arial, sans-serif;
}

/* BUTTON */
.xw-launch-btn{
    background: #ff7f50;
    color: #fff;
    padding: 12px 16px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    user-select: none;
}

.xw-launch-btn i{
    font-size: 16px;
}

/* PANEL */
.xw-panel{
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 290px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: 0.25s ease;
}

/* ACTIVE STATE */
.xw-panel.xw-active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* HEADER */
.xw-header{
    padding: 14px;
    border-bottom: 1px solid #eee;
}

.xw-header h3{
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}

.xw-header p{
    margin: 4px 0 0;
    font-size: 12px;
    color: #777;
}

/* LIST */
.xw-list{
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 8px;
    background-color: var(--secondary-color);
}

/* ITEMS */
.xw-item{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: 0.2s;
}

.xw-item i{
    width: 18px;
}