body{
                                                                                                                        }
            /*----------main color------------*/
        .text-blue-1,
        .header .header-menu .menu .subnav > li > a:hover,
        .bravo_wrap .footer .menu-footer .menu__nav li .subnav > li > a:hover,
        .desktopMenu .menu a:hover,
        .desktopMenu .menu .subnav__backBtn a,
        .hotel_rooms_form .nav-enquiry .enquiry-item.active span,
        .bravo_single_book .nav-enquiry .enquiry-item.active span,
        .pricing-table .title{
            color: #f48109;
        }

        .tabs.-underline .tabs__controls .tabs__button:hover,
        .tabs.-pills-2 .tabs__controls .tabs__button:hover,
        .tabs.-bookmark-2 .tabs__button:hover,
        .sidebar.-dashboard .sidebar__button.-is-active,
        .tabs.-underline-2 .tabs__controls .tabs__button.is-tab-el-active,
        .accordion.-db-sidebar .accordion__item.is-active .sidebar__button,
        .tabs.-underline-2 .tabs__controls .tabs__button:hover{
            color: #f48109 !important;
        }

        .pagination.-dots .pagination__item.is-active,
        .button.-outline-blue-1:hover,
        .form-checkbox:hover input ~ .form-checkbox__mark,
        .pricing-tabs .tab-btns:before,
        .tabs.-underline-2 .tabs__controls .tabs__button::after{
            background-color: #f48109;
        }

        .bg-blue-1,
        .button.-blue-1:hover,
        .tabs.-pills-2 .tabs__controls .tabs__button.is-tab-el-active,
        .tourTypeCard.-type-1:hover,
        .noUi-connect,
        .accordion.-map .accordion__item.is-active .accordion__icon,
        .form-checkbox input:checked ~ .form-checkbox__mark{
            background-color: #f48109 !important;
        }

        .button.-blue-1:hover,
        .border-blue-1,
        .button.-outline-blue-1,
        .noUi-handle,
        .hotel_rooms_form .nav-enquiry .enquiry-item.active span,
        .bravo_single_book .nav-enquiry .enquiry-item.active span,
        .form-checkbox input:checked ~ .form-checkbox__mark,
        .pricing-table .inner-box:hover, .pricing-table.tagged .inner-box{
            border-color: #f48109;
        }
        /*-----------end main color------------*/
    
            
    /* ===============================
   PALETTE & VARIABLES
================================ */
:root {
  --primary: #0b5ed7;      /* Bleu voyage */
  --secondary: #f4a261;    /* Sable / désert */
  --dark: #0f172a;
  --light: #f8fafc;
  --accent: #16a34a;       /* Vert confiance */
  --radius: 14px;
  --transition: all 0.3s ease;
}

/* ===============================
   HEADER & LOGO
================================ */
.header {
  height: 110px;
  background: linear-gradient(90deg, #0b5ed7, #083c8a);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-logo img {
  width: 210px;
  padding-top: 20px;
  transition: var(--transition);
}

.header-logo img:hover {
  transform: scale(1.05);
}

/* ===============================
   TYPOGRAPHY
================================ */
body {
  font-family: "Poppins", "Lato", Arial, sans-serif;
  background-color: var(--light);
  color: #1f2937;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--dark);
}

h2 {
  border-left: 6px solid var(--secondary);
  padding-left: 14px;
}

/* ===============================
   BUTTONS (CTA)
================================ */
.btn,
button {
  background: linear-gradient(135deg, var(--secondary), #f59e0b);
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
}

.btn:hover,
button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ===============================
   HERO / SECTIONS
================================ */
.section {
  padding: 70px 20px;
}

.section-box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  padding: 40px;
  transition: var(--transition);
}

.section-box:hover {
  transform: translateY(-6px);
}

/* ===============================
   IMAGES
================================ */
img {
  border-radius: var(--radius);
  transition: var(--transition);
}

img:hover {
  transform: scale(1.03);
}

/* ===============================
   IMAGE GRID
================================ */
.image-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

/* ===============================
   TABLES (PRICING / PROGRAMMES)
================================ */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
}

thead {
  background: linear-gradient(90deg, var(--primary), #083c8a);
  color: #fff;
}

thead th {
  padding: 14px;
}

tbody td {
  padding: 14px;
  text-align: center;
}

tbody tr:nth-child(even) {
  background-color: #f1f5f9;
}

/* ===============================
   TOUR CARDS
================================ */
.morocco-tour-main-container {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.morocco-tour-main-title {
  font-size: 30px;
  text-align: center;
  color: var(--primary);
}

.morocco-tour-section-title {
  font-size: 22px;
  margin-top: 30px;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 8px;
}

/* ===============================
   HIGHLIGHT BOX
================================ */
.highlight-box {
  background: linear-gradient(135deg, #e0f2fe, #f0fdf4);
  border-left: 6px solid var(--accent);
  padding: 20px;
  border-radius: var(--radius);
  margin: 30px 0;
}

/* ===============================
   ANIMATIONS
================================ */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   MOBILE OPTIMISATION
================================ */
@media (max-width: 768px) {

  .header {
    height: auto;
    padding: 10px;
  }

  .header-logo img {
    width: 180px;
  }

  .section {
    padding: 40px 15px;
  }

  h1 {
    font-size: 24px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   TRUST ELEMENTS
================================ */
.badge-trust {
  display: inline-block;
  background: #ecfeff;
  color: #0369a1;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
    .header .header-logo img {
    width: 200px;
    /* padding: 5px; */
    padding-top: 30px;
    padding-bottom: 5px;
}

@media (max-width: 767px) {
  .header .header-logo img {
    max-width: 240px;
  }}
 
.circwi{font-size:24px}

.y-gap-40 {
  margin-top: -20px;
  margin-bottom: 20px;
}

.text-22 .fw-500{display:none;}
