/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: #24262b;
  --black-color-light: #24262b;
  --black-color-lighten: #24262b;
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  
  background-repeat: no-repeat;
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/* ===============================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   HEADER
================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* ===============================
   NAVBAR
================================ */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 30px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Logo */
.main-logo img {
  max-height: 80px;
}

/* ===============================
   MENU DESKTOP
================================ */
.main-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  display: block;
  padding: 12px 18px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

.main-menu a:hover {
  color: #007bff;
}

/* ===============================
   DESKTOP DROPDOWNS
================================ */
@media (min-width: 769px) {

  .main-submenu,
  .main-subsubmenu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.08);
    z-index: 999;
  }

  .main-submenu {
    top: 100%;
    left: 0;
  }

  .main-subsubmenu {
    top: 0;
    left: 100%;
  }

  .main-dropdown:hover > .main-submenu {
    display: block;
  }

  .main-subdropdown:hover > .main-subsubmenu {
    display: block;
  }
}

/* ===============================
   BURGER
================================ */
.main-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {

  .main-navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 15px 20px;
  }

  .main-toggle {
    display: block;
  }

  /* MENU MOBILE SCROLLABLE */
  .main-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    margin-top: 15px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .main-menu.main-active {
    display: flex;
  }

  .main-menu li {
    width: 100%;
  }

  .main-menu a {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  /* MOBILE DROPDOWNS */
  .main-submenu,
  .main-subsubmenu {
    display: none;
    position: static;
    border: none;
    box-shadow: none;
  }

  .main-dropdown.main-show > .main-submenu {
    display: block;
  }

  .main-subdropdown.main-show > .main-subsubmenu {
    display: block;
  }

  .main-submenu a {
    padding-left: 30px;
  }

  .main-subsubmenu a {
    padding-left: 45px;
  }
}

/* ===============================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {

  .main-logo img {
    max-height: 60px;
  }

  .main-menu a {
    font-size: 13px;
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.hero-content {
  color: white;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: white;
}


@media screen and (max-width: 768px) {
  .hero-overlay {
    padding-left: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
 
/*=============== PRODUCT HOME PURE ===============*/

.hp-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

.hp-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.hp-text {
  width: 50%;
  padding: 70px 60px;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeSlide 1.2s ease-out;
}

.hp-text h1 {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hp-text .blue {
  color: #007bff;
}

.hp-text .navy {
  color: #002f6c;
  font-weight: bold;
}

.hp-text .tagline {
  color: #007bff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hp-text p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hp-image {
  width: 50%;
}

.hp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    border-radius: 0;
  }

  .hp-text, .hp-image {
    width: 100%;
  }

  .hp-text {
    padding: 40px 20px;
    text-align: center;
  }

  .hp-text h1 {
    font-size: 2rem;
  }

}


/*=============== PRODUCT LIFEQUODE ===============*/

.B-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

.B-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  background-color: #87a55f;
}

.B-text {
  width: 50%;
  padding: 70px 60px;
  background-color: #b5c4a4;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeSlide 1.2s ease-out;
}

.B-text h1 {
  font-size: 3.8rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}

.B-text .blue {
  color: #007bff;
}

.B-text .na {
  color: #fff;
  font-weight: 900px;
}

.B-text .tagline {
  color: #007bff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.B-text p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.B-image {
  width: 50%;
}

.B-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    border-radius: 0;
  }

  .B-text, .B-image {
    width: 100%;
  }

  .B-text {
    padding: 40px 20px;
    text-align: center;
  }

  .B-text h1 {
    font-size: 2rem;
  }

}





/* ==== PRODUCT  DESC ==== */
/* ===================== BASE STYLES ===================== */
img {
  width: 100%;
  display: block;
}

.main-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fc, #e9ecf3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container_d {
  max-width: 1200px;
  padding: 0 1rem;
  margin: 0 auto;
}

.product-div {
  margin: 1rem 0;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background-color: #fff;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* Show on scroll */
.product-div.show-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT SIDE */
.product-div-left {
  padding: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.product-div-left.show-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.img-container img {
  width: 390px;
  max-width: 100%;
  margin: 50px auto 0;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.img-container img.fade {
  opacity: 0;
  transform: scale(0.95);
}

/* IMAGE HOVER EFFECTS */
.hover-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.hover-container div {
  border: 2px solid rgba(252, 160, 175, 0.7);
  padding: 1rem;
  border-radius: 5px;
  margin: 0 4px 8px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.hover-container div:hover {
  border-color: rgb(255, 145, 163);
}

.hover-container div img {
  width: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hover-container div img:hover {
  transform: scale(1.2) rotate(2deg);
}

.active {
  border-color: rgb(255, 145, 163)!important;
}

/* RIGHT SIDE */
.product-right {
  max-width: 500px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  font-family: 'Segoe UI', sans-serif;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.product-right.show-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.product-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #333;
}

/* ===================== ACCORDION ===================== */
.accordion {
  border-top: 1px solid #ddd;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-title {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  color: #222;
  transition: color 0.3s;
}

.accordion-title:hover {
  color: #007bff;
}

.accordion-icon {
  font-size: 24px;
  margin-right: 15px;
  color: #007bff;
  transition: transform 0.3s;
}

.accordion-label {
  flex: 1;
  font-size: 18px;
}

.accordion-content {
  display: none;
  padding: 0 0 20px 39px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 15px;
}

.spec-table tr:nth-child(odd) {
  background-color: #f0f4f8;
}

.spec-table td {
  padding: 12px;
  border: 1px solid #ccc;
  color: #333;
}

.spec-table td:first-child {
  width: 160px;
  border-left: 4px solid #007bff;
  background-color: #f8f9fa;
}

.accordion-item.active .accordion-content {
  display: block;
  max-height: 500px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* ===================== RESPONSIVE ===================== */
@media screen and (max-width: 992px) {
  .product-div {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .product-div-left, 
  .product-right {
    max-width: 100%;
  }

  .img-container img {
    width: 100%;
    margin-top: 30px;
  }
}

@media screen and (max-width: 576px) {
  .hover-container {
    gap: 10px;
  }

  .hover-container div {
    padding: 0.5rem;
  }

  .product-right {
    padding: 20px;
  }

  .product-title {
    font-size: 22px;
  }
}

/* =========================================     Vacation  DESCRIPTION ============================================ */

.club {
    padding: 40px 20px;
    background: #fff;
}

.club-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.club-left {
    flex: 1;
    min-width: 300px;
}

.club-title {
    font-size: 2.5em;
    color: #c71585;
    font-weight: bold;
    margin-bottom: 15px;
}

.club-text {
    font-size: 1.1em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.club-main-img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.club-right {
    flex: 1;
    min-width: 300px;
}

.club-highlight {
    position: relative;
    margin-bottom: 30px;
}

.club-highlight-img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.club-highlight-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    color: #0056ff;
}

.club-arrow {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    font-size: 2em;
    color: gold;
}

.club-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.club-feature {
    flex: 1;
    min-width: 200px;
}

.club-icon {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.club-icon.pink {
    color: #ff69b4;
}

.club-icon.blue {
    color: #0056ff;
}

.club-feature h3 {
    color: #0056ff;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.club-feature p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.4;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
    .club-container {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .club-container {
        flex-direction: column;
    }

    .club-arrow {
        display: none;
    }

    .club-title {
        font-size: 2em;
        text-align: center;
    }

    .club-text {
        text-align: center;
    }

    .club-right {
        width: 100%;
    }

    .club-features {
        flex-direction: column;
        gap: 15px;
    }

    .club-feature {
        min-width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .club-title {
        font-size: 1.7em;
    }

    .club-text {
        font-size: 1em;
    }

    .club-highlight-text {
        font-size: 0.9em;
        padding: 8px 12px;
    }

    .club-icon {
        font-size: 1.5em;
    }

    .club-feature h3 {
        font-size: 1em;
    }

    .club-feature p {
        font-size: 0.9em;
    }
}


/* ===========================QVI VACAY 4 ===================================================== */

.holidays {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.holidays-text {
  background-color: #3b82f6; /* Blue */
  color: white;
  padding: 50px;
  flex: 1;
  min-width: 300px;
}

.holidays-text h4 {
  font-size: 18px;
  font-weight: bold;
}

.holidays-text h1 span {
  color: #ffeb3b; /* Yellow */
  font-size: 72px;
  font-weight: bold;
}

.holidays-text p {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.6;
}

.holiday-buttons {
  margin-top: 30px;
}

.holiday-buttons .btn {
  display: inline-block;
  background-color: #60a5fa;
  color: white;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.holiday-buttons .btn:hover {
  background-color: #2563eb;
}

.holidays-image {
  position: relative;
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.holidays-image img {
  width: 116%;
  border-radius: 10px;
}

.holidays-image .decor {
  position: absolute;
  width: 80px;
  height: 80px;
  background: none;
  border: 4px solid #ffcc00;
  border-radius: 50%;
  top: 20%;
  left: 20%;
  transform: rotate(25deg);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .holidays-text h1 span {
    font-size: 60px;
  }
  .holidays-text p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .holidays {
    flex-direction: column;
  }

  .holidays-text, 
  .holidays-image {
    width: 100%;
    text-align: center;
    padding: 30px 20px;
  }

  .holidays-text h1 span {
    font-size: 50px;
  }

  .holidays-text p {
    font-size: 15px;
  }

  .holidays-image img {
    width: 100%;
  }

  .holidays-image .decor {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 15%;
  }
}

@media (max-width: 576px) {
  .holidays-text h1 span {
    font-size: 40px;
  }

  .holidays-text p {
    font-size: 14px;
  }

  .holiday-buttons .btn {
    padding: 8px 15px;
    margin: 3px;
  }

  .holidays-image .decor {
    width: 50px;
    height: 50px;
  }
}

 /* -----------------------------------QVI BREAKS -------------------------------------------------------------------*/

 /*================ QVI BREAKS =================*/
.qvi-breaks {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
  background: white;
  align-items: flex-start;
}

/* Left column */
.qvi-left {
  flex: 1;
  min-width: 300px;
}

.qvi-left h1 {
  color: #16a34a; /* green */
  font-size: 36px;
  font-weight: bold;
}

.qvi-left p {
  font-size: 16px;
  margin: 15px 0;
  color: #444;
  line-height: 1.6;
}

.qvi-left img {
  width: 100%;
  border-radius: 12px;
}

/* Right column */
.qvi-right {
  flex: 1;
  min-width: 300px;
}

/* Top image section */
.qvi-image-container {
  position: relative;
}

.qvi-image-container img {
  width: 100%;
  border-radius: 12px;
}

.qvi-image-container .arrow {
  position: absolute;
  left: -90px;
  top: 30%;
  width: 120px;
  height: 80px;
}

/* BEST FOR box */
.best-for {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: white;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.best-for h3 {
  color: #1d4ed8; /* blue */
  font-weight: bold;
  font-size: 18px;
}

.best-for p {
  font-size: 14px;
  color: #333;
}

/* Features list */
.qvi-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.icon {
  font-size: 28px;
  background: #e5f3ff;
  padding: 10px;
  border-radius: 50%;
}

.icon.green {
  background: #e0fce5;
}

.icon.blue {
  background: #e5f3ff;
}

.feature h4 {
  color: #1d4ed8;
  font-size: 16px;
  margin-bottom: 5px;
}

.feature p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/*================ QVI VACAY =================*/
.vacay {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
  background: white;
}

/* Left column */
.vacay-left {
  flex: 1;
  min-width: 300px;
}

.vacay-left h1 {
  color: #0d9488; /* teal */
  font-size: 36px;
  font-weight: bold;
}

.vacay-left p {
  font-size: 16px;
  margin: 15px 0;
  color: #444;
  line-height: 1.6;
}

.vacay-main-img {
  margin-top: 20px;
  width: 100%;
  border-radius: 12px;
}

/* Right column */
.vacay-right {
  flex: 1;
  min-width: 300px;
}

.vacay-image-container {
  position: relative;
}

.vacay-image-container img {
  width: 100%;
  border-radius: 12px;
}

.vacay-image-container .arrow {
  position: absolute;
  left: -90px;
  top: 20%;
  width: 120px;
  height: 80px;
}

/* Features grid */
.vacay-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.icon.green {
  background: #e0fce5;
}

/*=================== RESPONSIVE ===================*/
@media (max-width: 1024px) {
  .qvi-left h1,
  .vacay-left h1 {
    font-size: 30px;
  }
  .qvi-left p,
  .vacay-left p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .qvi-breaks,
  .vacay {
    flex-direction: column;
    padding: 30px 20px;
  }

  .qvi-left,
  .qvi-right,
  .vacay-left,
  .vacay-right {
    width: 100%;
    text-align: center;
  }

  .qvi-image-container .arrow,
  .vacay-image-container .arrow {
    display: none;
  }

  .qvi-features,
  .vacay-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .qvi-left h1,
  .vacay-left h1 {
    font-size: 26px;
  }

  .qvi-left p,
  .vacay-left p {
    font-size: 14px;
  }
}

/*========================================== TRIPSAVR ==============================================*/

/*================ TRIP SECTION =================*/
.trip {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
  background: white;
  align-items: flex-start;
}

/* Left Column */
.trip-left {
  flex: 1;
  min-width: 300px;
}

.trip-left h1 {
  color: #e63946; /* red */
  font-size: 36px;
  font-weight: bold;
}

.trip-left p {
  font-size: 16px;
  margin: 15px 0;
  color: #444;
  line-height: 1.6;
}

.trip-main-img {
  margin-top: 20px;
  width: 100%;
  border-radius: 12px;
}

/* Right Column */
.trip-right {
  flex: 1;
  min-width: 300px;
}

.trip-image-container {
  position: relative;
}

.trip-image-container img {
  width: 100%;
  border-radius: 12px;
}

/* Arrow */
.trip-image-container .arrow {
  position: absolute;
  left: -90px;
  top: 15%;
  width: 120px;
  height: 80px;
}

/* BEST FOR Box */
.best-for {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: white;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.best-for h3 {
  color: #1d4ed8; /* blue */
  font-weight: bold;
  font-size: 18px;
}

.best-for p {
  font-size: 14px;
  color: #333;
}

/* Features */
.trip-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.icon {
  font-size: 24px;
  background: #fde2e2; /* light pink */
  padding: 10px;
  border-radius: 50%;
}

.icon.pink {
  background: #fde2e2;
}

.feature h4 {
  color: #1d4ed8;
  font-size: 16px;
  margin-bottom: 5px;
}

.feature p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/*=================== RESPONSIVE ===================*/
@media (max-width: 1024px) {
  .trip-left h1 {
    font-size: 30px;
  }
  .trip-left p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .trip {
    flex-direction: column;
    padding: 30px 20px;
  }

  .trip-left,
  .trip-right {
    width: 100%;
    text-align: center;
  }

  .trip-image-container .arrow {
    display: none;
  }

  .trip-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .trip-left h1 {
    font-size: 26px;
  }

  .trip-left p {
    font-size: 14px;
  }
}

/* ==== FOOTER ==== */
.container_f {
  max-width: 1170px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: #24262b;
  padding: 70px 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #4BB3F4;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #bbbbbb;
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* Tablets & small laptops */
@media (max-width: 992px) {
  .footer {
    padding: 50px 20px;
  }
  .footer-col {
    width: 50%;
    margin-bottom: 40px;
  }
  .footer-col h4 {
    font-size: 17px;
  }
  .footer-col ul li a {
    font-size: 15px;
  }
}

/* Smartphones */
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
  }
  .footer-col h4::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-col .social-links a {
    height: 35px;
    width: 35px;
    line-height: 35px;
    margin: 5px;
  }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 40px 10px;
  }
  .footer-col {
    width: 100%;
    margin-bottom: 25px;
  }
  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .footer-col ul li a {
    font-size: 14px;
  }
  .footer-col .social-links a {
    height: 32px;
    width: 32px;
    line-height: 32px;
    margin: 4px;
  }
}
