:root {
  --button-color: #d4af37;
  --button-hover: gold;
  --heading-color: black;
  --paragraph-color: #4a4a4a;
  --primary-color: #f5f5dc;
  --secondary-color: white;
  --back-color: #c9c6c4;
  --backing-color: lightblue;
  --affiliate-color: #f4f7fb;
  --bg-2: #06243f;
  --color-blue: #003366;
  --bg-dark: #0e1117;
  --bg-panel: #141824;
  --ebook-accent: #5eead4;
  --ebook-accent-dark: #14b8a6;
  --ebook-text-main: #e5e7eb;
  --ebook-text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
}
body,
.deals-body {
  background: var(--primary-color);
  font-family: "Montserrat", sans-serif;
}

h1 {
  color: var(--secondary-color);
  font-size: 5rem;
  margin-bottom: 3.5rem;
}
h2 {
  font-size: 3rem;
}
h3 {
  font-size: 2.36rem;
}
h4 {
  font-size: 2rem;
  font-weight: lighter;
}
h5 {
  font-size: 1.8rem;
}
p,
ul li {
  color: var(--paragraph-color);
  margin: 2rem 0.5rem;
}
dl {
  margin: 1.5rem 0;
}
dl dt,
dl dd {
  color: var(--secondary-color);
}
dl dd {
  margin: 1rem 0.5rem 2rem;
}
a {
  text-decoration: none;
}
p,
a,
li,
th,
td,
.link,
dd,
dt {
  font-size: 1.7rem;
}
h3 {
  color: var(--color-blue);
  margin-top: 3.5rem;
}
h2 {
  color: var(--color-blue);
  margin-top: 6rem;
}
input,
button {
  font-family: "Montserrat", sans-serif;
}
input::placeholder {
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.6rem;
  }
  h3 {
    font-size: 2.1rem;
  }
}
table {
  border-collapse: collapse;
}
tr td,
tr th {
  border: 1px solid var(--heading-color);
  padding: 1rem;
}

.table-wrapper,
table {
  width: 100%;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.2);
}

th,
td {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}

th {
  background: #f8fafc;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
}

tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.255);
}

td a {
  white-space: nowrap;
}

@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  th,
  td {
    min-width: 140px;
  }
}

td {
  max-width: 320px;
}

td .clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

img {
  width: 80%;
  object-fit: cover;
  border-radius: 10px;
  margin: 2.4rem 0;
}
.link {
  color: blue;
}

.heros-btns {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 10px;
}
.second-btn {
  border-radius: 50px;
}
.btn4,
.btn,
.btn2,
.btn3 {
  font-weight: bold;
  transition: 0.4s ease-in-out;
  padding: 10px 15px;
}
.btn {
  background: var(--button-color);
  color: var(--secondary-color);
  border-radius: 8px;
}
.btn3 {
  background: var(--button-hover);
  color: var(--heading-color);
  border: 2px solid var(--button-hover);
}
.btn2,
.btn4,
.thai-btn {
  border: 2px solid var(--button-color);
}

.btn4 {
  display: inline-block;
}

.btn2,
.thai-btn {
  border-radius: 50px;
}
.btn2,
.btn4 {
  background: none;
  color: var(--heading-color);
}
.thai-btn {
  color: var(--secondary-color);
}
.btn:hover,
.btn2:hover,
.btn4:hover {
  background: var(--button-hover);
  color: var(--heading-color);
}
.btn3:hover {
  background: none;
  border: 2px solid var(--button-color);
}
.destination-btn {
  margin: 4rem 0;
}

/* NAVIGATION BAR */
.dropdown-sign {
  font-size: 1rem;
}
.heading {
  color: var(--button-color);
}
.blog-heading,
h4 {
  color: var(--button-color);
}
.nav-bar {
  align-items: center;
  background: var(--secondary-color);
  display: flex;
  height: 70px;
  justify-content: space-between;
  padding: 0 2.5%;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
}
.logo {
  width: 18rem;
}
.navMenu li,
.blogs li {
  display: inline-block;
  font-weight: bold;
  padding: 0 1.3rem;
  position: relative;
}
.navMenu li a {
  transition: 0.4s ease-in-out;
  color: var(--heading-color);
}
.navMenu li a:hover {
  color: var(--button-color);
}
.dropdown_menu {
  background: var(--secondary-color);
  display: block;
}

.dropdown_menu {
  display: none;
  left: 0;
  position: absolute;
  top: 100%;
  width: 400px;
  z-index: 1000;
}
.dropdown_menu li,
.blogs li {
  border-bottom: 3px solid var(--primary-color);
  display: block;
  margin: 2rem 0.5rem;
  padding: 0.5rem 0;
}
.navMenu li:hover .dropdown_menu {
  display: block;
}
.travel_dropdownmenu {
  width: 200px;
}
.icons {
  cursor: pointer;
  display: none;
  font-size: 2.8rem;
  left: 2%;
  position: absolute;
}
#check {
  display: none;
}

@media screen and (max-width: 1188px) {
  .icons {
    display: inline-flex;
  }
  #check:checked ~ .icons #menu_icon {
    display: none;
  }
  #close_icon {
    display: none;
  }
  #check:checked ~ .icons #close_icon {
    display: block;
  }
  nav {
    background: var(--secondary-color);
    box-shadow: 0 10px 5px rgb(0, 0, 0, 0.2);
    height: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    transition: 0.4s ease-in-out;
    width: 100%;
    z-index: 1000;
  }
  #check:checked ~ nav {
    height: auto;
    max-height: 100vh;
    overflow-y: auto;
  }
  .navMenu li {
    border-bottom: 3px solid var(--primary-color);
    display: block;
    padding: 1.3rem;
    text-align: center;
  }
  .dropdown_menu {
    display: none;
    position: relative;
    width: 100%;
    box-shadow: none;
    padding: 0;
    top: 0;
    left: 0;
  }

  .navMenu li.active > .dropdown_menu {
    display: block;
  }
}

/* HERO SECTION FOR ALL PAGES */
.hero .swiper-button-next,
.hero .swiper-button-prev {
  display: none !important;
}

.hero,
.deals-hero,
.luxury-hero {
  display: flex;
  position: relative;
  width: 100%;
  margin-top: 70px;
}
.hero,
.luxury-hero {
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  background: rgb(0, 0, 0, 0.55);
}
.hero {
  height: 90vh;
}

.hero-video {
  bottom: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: -1;
}
.hero-container {
  text-align: center;
}
.thailand-hero {
  background: rgb(0, 0, 0, 0.8);
  margin-bottom: 1.3rem;
  height: 70vh;
}
.thailand-hero h2,
.thailand-hero p {
  color: var(--secondary-color);
}
@media (min-aspect-ratio: 16/9) {
  .hero-video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-video {
    width: auto;
    height: 100%;
  }
}
@media screen and (max-width: 425px) {
  h1 {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1099px) {
  .hero-container {
    max-width: 100rem;
  }
}
/* luxury travel deals hero  */

.deals-hero {
  background:
    linear-gradient(rgb(0, 0, 0, 0.55), rgb(0, 0, 0, 0.55)),
    url(/images/beautiful-landscapes.webp);
  height: 90vh;
  clip-path: polygon(0 0, 100% 0%, 100% 93%, 0% 100%);
}
.deals-hero h1,
.deals-hero h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
}
.deals-hero h1 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0;
  margin-top: 5rem;
}
.deals-hero h2 {
  color: white;
  margin-bottom: 4rem;
}
.deals-pagehead {
  text-align: left;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .deals-hero {
    height: 105vh;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  .deals-hero h1 {
    margin-top: 1.5rem;
  }
  .deals-hero h2 {
    margin-bottom: 1.7rem;
  }
}
@media screen and (max-width: 425px) {
  .deals-pagehead {
    padding: 0.6rem;
  }
}
@media screen and (max-width: 336px) {
  .deals-hero {
    height: 110vh;
  }
}
@media screen and (max-width: 329px) {
  .deals-hero {
    height: 125vh;
  }
}
.main-title {
  color: var(--paragraph-color);
}
.luxury-hero {
  height: 40rem;
}
/* why us section */
.why-us-section {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 3rem 1rem;
  background:
    linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0, 0.4)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648797/yosemite_bieq0y.jpg);
  background-attachment: fixed;
}

.why-us-section ul {
  max-width: 800px;
}
.why-us-section h2,
.why-us-section p {
  color: var(--secondary-color);
}
.why-us-section p {
  max-width: 950px;
}
.why-us-section ul {
  text-align: left;
}
.why-us-section ul li {
  line-height: 26px;
}
/* BLOG POST SECTION */
.blogging {
  text-align: left;
}
.blogs-section {
  background:
    linear-gradient(rgb(6, 6, 6, 0.4), rgb(6, 6, 6, 0.4)),
    url(/images/airplane.webp) no-repeat center/cover;
  width: 90%;
  height: fit-content;
  padding: 2rem 2rem;
  margin: 2rem 0 5rem 5%;
  border-radius: 7px;
}
.deals-blogs {
  height: 40vh;
}
.blogs-lists {
  text-align: left;
}
.blogs {
  background: none;
  width: 60vw;
}
.blogs li {
  padding-top: 2rem;
  border-bottom: 3px solid var(--button-color);
}
.blogs li a {
  color: var(--secondary-color);
}
.blogs li a {
  padding-left: 0.5rem;
}
.blogs-lists .blogs li {
  animation: slidez 20s infinite;
}

@keyframes slidez {
  0% {
    transform: scale(0);
  }
  20% {
    background: var(--button-color);
    color: var(--heading-color);
    transform: scale(1);
  }
  40% {
    transform: scale(1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    background: var(--button-color);
    color: var(--heading-color);
    transform: scale(1);
  }
}
@media screen and (max-width: 619px) {
  .hero {
    height: 100vh;
  }

  .blogs-section {
    height: 100vh;
  }

  .blogs {
    width: 80vw;
    margin-top: 3rem;
  }
  .blog-h3 {
    padding: 0 1.5rem;
  }
}
/* DESTINATION SECTION */

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
  z-index: 10;
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.slideshow-images {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.slideshow-images .slide {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 0;
}

.slideshow-images .slide.active {
  opacity: 1;
  z-index: 1;
}

.destination {
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 20px;
}
.featured-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  justify-content: center;
  margin: 20px 0;
}
.destination-cards {
  background: var(--secondary-color);
  width: 300px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s;
  border: 1px solid #ddd;
  padding: 0.2rem;
  border-radius: 12px;
}
.destination-cards img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-preview-section .btn2 {
  color: var(--heading-color);
}

.destination-cards p,
.destination-cards h3 {
  padding: 0 1.3rem;
}
.destination-cards:hover,
.card-daels:hover,
.card-daelz:hover,
.exp-card:hover {
  transform: scale(1.05);
}

.destine-flexlg {
  background-image:
    linear-gradient(to top, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.1)),
    url("/images/island.webp");
}
.destine-flexsm {
  background-image:
    linear-gradient(to top, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.1)),
    url("/images/thailand.webp");
}
.destine-flexsm2 {
  background-image:
    linear-gradient(to top, rgb(0, 0, 0, 0.9), rgb(0, 0, 0, 0.1)),
    url("/images/tradition.webp");
}
@media screen and (max-width: 1260px) {
  .second-last,
  .third-last {
    display: none;
  }
}
@media screen and (max-width: 939px) {
  .fourth-last {
    display: none;
  }
}

/* =========================
   EBOOK PAGE
========================= */

.ebook-hero {
  overflow: hidden;
  background: linear-gradient(135deg, #0b1d26, #122c34);
  padding: 90px 0 70px;
}

.ebook-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

.inner-two {
  background: linear-gradient(135deg, #0e242e, #122c34);
  box-shadow: 2px 2px 10px black;
}

.ebook-hero-actions {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.ebook-hero-content {
  flex: 1;
}

.pop-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: popIn 0.7s ease forwards;
  animation-delay: 0.3s;
}
@keyframes popIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ebook-hero-desc {
  max-width: 520px;
  margin-bottom: 28px;
  opacity: 0.85;
}

/* IMAGE */
.ebook-hero-media {
  flex: 1;
  display: flex;
  justify-content: center;
}
.free-ebook,
.single-cover-ebook {
  position: relative;
  animation: floatBook 4s ease-in-out infinite;
}

.free-ebook .ebook-cover-two,
.payed-ebook .ebook-cover-three {
  width: 260px;
  height: auto;
}
.single-cover-ebook img,
.free-ebook .ebook-cover-two,
.payed-ebook .ebook-cover-three {
  display: block;
  object-fit: cover;
}

@keyframes floatBook {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.ebook-page-container {
  background: var(--bg-dark);
  color: var(--ebook-text-main);
  height: 100vh;
  overflow: hidden;
}

.single-ebook-page {
  display: flex;
  height: 100vh;
}

.ebook-left-side {
  width: 40%;
  min-width: 320px;
  background: linear-gradient(160deg, #0f172a, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.ebook-wrapper {
  position: sticky;
  top: 40px;
  max-width: 320px;
  text-align: center;
}

.ebook-wrapper img {
  width: 100%;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.price-btn {
  margin-top: 24px;
  display: block;
  background: linear-gradient(
    135deg,
    var(--ebook-accent),
    var(--ebook-accent-dark)
  );
  color: #042f2e;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(94, 234, 212, 0.4);
}

.ebook-right-side {
  width: 60%;
  background: var(--bg-panel);
  position: relative;
  overflow: hidden;
}

.ebook-content {
  height: 100%;
  overflow-y: auto;
  padding: 80px 80px 120px;
  z-index: 9999;
}

.ebook-fade-top,
.ebook-fade-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  z-index: 5;
}

.ebook-fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-panel), transparent);
}

.ebook-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-panel), transparent);
}
.buy-btn {
  display: inline-block;
  margin-top: 40px;
  background: var(--ebook-accent);
  color: #022c22;
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .ebook-page-container {
    overflow: auto;
  }

  .single-ebook-page {
    flex-direction: column;
    height: auto;
  }

  .ebook-left-side,
  .ebook-right-side {
    width: 100%;
    height: auto;
  }

  .ebook-content {
    padding: 60px 24px 100px;
  }

  .ebook-wrapper {
    position: static;
  }
}

@media (max-width: 900px) {
  .ebook-hero-inner,
  .ai-home-hero-inner {
    flex-direction: column;
    text-align: left;
  }

  .ebook-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .ebook-hero-actions {
    justify-content: center;
  }
}

/* EBOOK SECTION */
.paradise-ebooks {
  background: linear-gradient(135deg, #0b1d26, #122c34);
  width: 100%;
}
.ebooks {
  gap: 60px;
  flex-wrap: wrap;
}
.ebook-stack,
.ebooks {
  justify-content: center;
  display: flex;
  align-items: center;
}
.ebook-stack,
.ebook-container {
  flex: 1;
  max-width: 520px;
  padding: 3rem 2rem;
  max-width: 600px;
}

.ebook-intro {
  margin: 14px 0 24px;
  line-height: 1.6;
}
.ebook-stack {
  position: relative;
  height: 460px;
  min-width: 320px;
}

.ebook-cover {
  position: absolute;
  width: 260px;
  height: auto;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease,
    z-index 0.6s ease;
  opacity: 0.6;
  z-index: 1;
}

.ebook-cover:nth-child(2) {
  transform: translateX(-90px) scale(0.85);
}

.ebook-cover:nth-child(3) {
  transform: translateX(90px) scale(0.85);
}

.ebook-cover.active {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 3;
}

@media (max-width: 768px) {
  .paradise-ebooks {
    height: 60rem;
  }
  .ebooks {
    flex-direction: column;
    gap: 40px;
  }

  .ebook-stack {
    height: 380px;
    margin-top: 8rem;
  }

  .ebook-cover {
    width: 220px;
  }
}
@media (max-width: 375px) {
  .ebook-cover {
    width: 190px;
  }
}
@media (max-width: 355px) {
  .ebook-cover {
    width: 160px;
  }
  .ebook-stack {
    margin-top: 5rem;
  }
}

/* TRAVEL DEALS SECTION */
.travel-deals {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 6rem 0 0 0;
  background-color: var(--secondary-color);
}
.deals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin: 4rem 0;
}
.card-deals-container {
  width: 300px;
}
.card-daels,
.exp-card {
  width: 300px;
  height: 220px;
  text-align: left;
  transition: 0.3s;
}
.exp-card {
  width: 100%;
}
.card-daels p,
.exp-card p {
  color: var(--secondary-color);
}
.card-daels h4,
.exp-card h4 {
  color: var(--button-hover);
}
.card1 {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7)),
    url(/images/food.webp) no-repeat center/cover;
}
.card2 {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7)),
    url(/images/pool.webp) no-repeat center/cover;
}
.card3 {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7)),
    url(/images/airplane.webp) no-repeat center/cover;
}
.card4 {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7)),
    url(/images/dome.webp) no-repeat center/cover;
}
.card5 {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7)),
    url(/images/valley.webp) no-repeat center/cover;
}
.card-daelz {
  width: 150px;
  height: 110px;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cardz1 {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648120/paris-tower_bwhktn.webp)
      no-repeat center/cover;
}
.cardz2 {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648639/thailand-elephants_hcctgp.webp)
      no-repeat center/cover;
}
.cardz3 {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648634/thailand-bangkok_bxlt3j.webp)
      no-repeat center/cover;
}
.cardz4 {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648637/thailand-helocopter_usy4p0.webp)
      no-repeat center/cover;
}
.cardz5 {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648656/thailand-yacht-adamson_l2kcmp.webp)
      no-repeat center/cover;
}
.cardz6 {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648800/zanzibar_zitzrr.webp)
      no-repeat center/cover;
}
@media screen and (min-width: 1000px) {
  .card-daelz {
    width: 210px;
  }
  .dealz {
    gap: 40px;
  }
}
/* BEST CAMPANY SECTION */
.campany-container {
  text-align: center;
  background: var(--secondary-color);
}
.campany-section {
  display: flex;
}
#best-campany {
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  margin: 4rem 0;
  flex-direction: column;
}
.campanies {
  max-width: 310px;
  padding: 1.3rem;
}
.campany-h3 {
  padding-top: 3rem;
}

/* NEWSLATER SIGNUP & SOCIAL MEDIA SECTION */
#subscribe {
  text-align: center;
  padding: 60px 20px;
  background:
    linear-gradient(rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.4)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768646330/cruise_pngztg.webp)
      no-repeat center/cover;
  border-radius: 10px;
}
#subscribe h2 {
  color: var(--secondary-color);
}
#subscribe p {
  color: var(--secondary-color);
}

.newsletter-form input {
  width: 300px;
  padding: 12px;
  font-size: 16px;
  border: 2px solid var(--secondary-color);
  border-radius: 5px;
}

.button,
.contact-btn {
  background-color: var(--button-color);
  color: var(--secondary-color);
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid var(--button-color);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.button {
  margin-left: -1rem;
}

.button:hover {
  background-color: #ffd700;
  color: #1c1c2d;
}

.socialmedia-icons {
  background: var(--secondary-color);
  box-shadow: 0 4px 10px rgb(18, 18, 18, 0.2);
  margin: 5rem 0 5rem 10%;
  text-align: center;
  width: 80%;
  border-radius: 10px;
}
.socialmedia-icons a i {
  color: var(--button-color);
  font-size: 4rem;
  padding: 3rem 1rem;
  transition: 0.2s ease-in-out;
}
.socialmedia-icons a i:hover {
  transform: scale(1.45);
  color: var(--button-hover);
}

@media screen and (max-width: 634px) {
  .socialmedia-icons a i {
    padding: 1.6rem 1rem;
  }
}

@media screen and (max-width: 470px) {
  .newsletter-form input {
    width: 250px;
  }
  #subscribe {
    padding: 60px 10px;
    border-radius: 10px;
  }
  .socialmedia-icons {
    margin-left: 5%;
    width: 90%;
  }
}

@media screen and (max-width: 470px) {
  #subscribe {
    padding: 60px 10px;
    border-radius: 6px;
  }
  .button {
    margin-left: -11.7rem;
  }
}
/* FOOTER SECTION */
.footer-section {
  text-align: center;
}
.footer {
  width: 100%;
  bottom: 0;
  height: auto;
  background: var(--heading-color);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;

  padding-bottom: 3rem;
}
.footer-list {
  padding: 0 10px;
  left: 2rem;
  list-style: none;
}
.footer-list li {
  padding: 10px;
}

.footer-list li a {
  color: var(--secondary-color);
  padding: 10px;
}
.footer-logo {
  width: 17rem;
  color: rgb(199, 15, 15);
  top: 0;
}
.footer-container {
  text-align: left;
  margin-top: 2rem;
}
.reserved {
  height: 4px;
  width: 100%;
}
.reserved p {
  margin: 0;
  background: var(--heading-color);
}
@media screen and (max-width: 975px) {
  .footer-logo {
    display: none;
  }
}
@media screen and (max-width: 518px) {
  .footer-container {
    width: 100%;
    text-align: left;
    margin-left: 3rem;
  }
}
/* ABOUT PAGE  & CONTACT PAGE & PRIVACY POLICY & AFFILLIATE DISCLOSURE*/

.container,
.company-container-one {
  max-width: 1000px;
  margin: 7rem auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.company-container-one {
  background: white;
}
.about-list {
  padding: 30px;
}

.contact {
  max-width: 600px;
}

label {
  font-weight: bold;
}
input,
textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.privacy-head {
  margin: 3.5rem 0 0;
}
.privcy-list {
  padding: 0 1.5rem 0 3rem;
}

/* BLOGS PAGE */
.heading-blog,
.heading-blogging,
.new-blogs {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.heading-blog,
.heading-blogging {
  background: linear-gradient(to right, rgb(28, 63, 144), rgb(0, 0, 0));
}
.new-blogs {
  background: var(--bg-2);
}
.heading-blog {
  text-align: center;
  padding: 20px;
  margin: 4rem 0;
  height: 40vh;
}
.heading-blog h2 {
  color: var(--secondary-color);
}
/* .blog-container {
  width: 100%;
  margin: 20px auto;
  padding: 10px;
} */

.blog-post {
  background: white;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
}
.blog-post img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.blogpage-content {
  padding: 10px;
}
.blog-post a:hover {
  text-decoration: underline;
}
.blog-h4 {
  color: var(--heading-color);
  margin: 2rem 0 1.4rem 0;
  font-weight: bold;
}
.blog-page {
  max-width: 880px;
  margin-left: 2rem;
  padding: 4rem 0;
}
.blogpage-h3,
.blogpage-h2 {
  margin: 4.5rem auto 1.4rem;
}
.blog-page ul li {
  padding: 6px;
  list-style: none;
}
.blog-page img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* .blogspage-container, */
.vve-banners {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
/* .blogspage-container {
  gap: 20px;
} */
.vve-banners {
  gap: 11px;
}
.aside {
  width: 26%;
}
/* .mainblog-section {
  width: 68%;
} */
.posts {
  flex: 3;
}
.posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 10px;
}

.aside {
  padding: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: var(--secondary-color);
}
/* .blog-aside {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  flex: 1;
}

.blog-aside div,
.aside div {
  padding: 3rem 0;
} */

.blogs-amazon {
  margin: 3rem 0;
}
.bloglead-card {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(/images/beautiful-landscapes.webp);
}
.bloglead-card-two {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(/images/charters.webp);
}
.bloglead-card-three {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(/images/person.webp);
}
.bloglead-overlay {
  padding: 0.3px;
  text-align: center;
}
.bloglead-overlay p,
.bloglead-overlay h5 {
  color: white;
}

@media screen and (max-width: 1024px) {
  /* .blogspage-container {
    flex-direction: column;
  } */
  .aside {
    width: 100%;
  }
  .posts {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  /* .mainblog-section {
    width: 100%;
  } */
  .blog-post {
    max-width: 340px;
    gap: 8;
  }
  .heading-blog {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 994px) {
  .blog-post {
    max-width: 400px;
  }
}
@media screen and (max-width: 589px) {
  .heading-blog {
    height: 60vh;
  }
}
/* new blogposts */
.heading-blogging {
  margin: 7.3rem 0 1rem;
  height: 55vh;
}
@media screen and (max-width: 768px) {
  .secondhead-blog {
    height: 85vh;
  }
}
@media screen and (max-width: 425px) {
  .secondhead-blog {
    height: 95vh;
  }
  .secondhead-blog p {
    margin-top: -3rem;
  }
}

.secondhead-blog {
  height: 62vh;
}
.headingblogging-container {
  max-width: 700rem;
}
.headingblogging-container h1 {
  max-width: 900px;
}
.blogging-image {
  display: flex;
  gap: 10px;
}
.blogging-image p {
  line-height: 1.5px;
  padding: 5px 0;
}
.blogging-image-two {
  height: auto;
}

.blogging-image-two,
.blogging-image-three,
.blogging-image-four,
.affily-btns,
.internal-leads {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.blogging-image-two figure,
.blogging-image-three figure {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.blogging-image-two img,
.blogging-image-three img,
.blogging-image-four img {
  border-radius: 10px;
}

.blogging-image-two img,
.blogging-image-two figcaption {
  height: auto;
}
.blogging-image-two img,
.blogging-image-two figcaption,
.blogging-image-three img {
  width: 80%;
}
.blogging-image-three,
.blogging-image-four {
  margin: 1rem 0 4rem;
}
.blogging-image-three img {
  object-fit: cover;
}
.blogging-image-three figure a figcaption {
  color: var(--paragraph-color);
}
.blogging-image-four img {
  max-width: 80%;
  max-height: 700px;
  object-fit: cover;
}

.call-card {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 2rem;
  color: var(--secondary-color);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 170px;
  position: relative;
  transition: transform 0.3s ease;
}

.call-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;

  z-index: -99;
}

.call-card h4,
.call-hero h4 {
  font-weight: bold;
  color: var(--button-hover);
  z-index: 100;
}

.call-card .btn,
.call-hero .btn {
  z-index: 100;
  background-color: var(--paragraph-color);
  color: var(--secondary-color);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  width: fit-content;
  transition: all 0.2s ease;
}

.call-card .btn:hover,
.call-hero .btn:hover {
  background-color: var(--secondary-color);
  color: var(--heading-color);
}

.call-card:hover,
.call-hero:hover {
  transform: translateY(-6px);
}
.call-hero {
  height: 250px;
  padding: 6rem 1.6rem;
  border-radius: 16px;
}

.bloggingcard-one {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648646/thailand-plane_kn9pds.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bloggingcard-two {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768645842/airplane_ciogj9.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bloggingcard-three {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648637/thailand-hotels_tiznqd.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bloggingcard-four {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648635/thailand-gears_shcaxm.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bloggingcard-five {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648637/thailand-girl_wpkfia.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bloggingcard-six {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25)),
    url(https://res.cloudinary.com/dxqnpsj8k/image/upload/v1768648653/thailand-taxi_eytl9d.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bloggingcard-seven {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25)),
    url(/images/charters.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-content-blogging {
  padding: 0 2rem;
  margin: 2rem auto;
  max-width: 1000px;
}
.main-content-blogging h3 {
  font-size: 2.3rem;
}
.main-content-blogging p {
  line-height: 1.6;
}
.main-content-blogging ul {
  padding-left: 2rem;
}
.blogging-minihead {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--heading-color);
  padding: 1.5rem 0 0;
}
.real-leads {
  display: flex;
  gap: 12px;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.blogs-button,
.internal-links {
  margin: 1rem 0 4rem;
}
.affily-btns {
  gap: 10px;
  flex-wrap: wrap;
  margin: 1rem 0 4rem;
  justify-content: flex-start;
}
.affily-btns div {
  padding: 1rem 0;
}
.internal-leads {
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  margin: 1rem 0 3rem;
}
.webdeals-links {
  width: 300px;
  padding: 2rem 0.6rem;
}
.headblog-paragraph {
  margin: 4.5rem 0 0;
}
@media screen and (min-width: 1024px) {
  .blogging-image-two img,
  .blogging-image-two figcaption {
    width: 950px;
    object-fit: cover;
  }
  .blogging-image-two img {
    height: 80vh;
  }
}
@media screen and (max-width: 1024px) {
  .headingblogging-container {
    padding: 2rem;
  }
}
@media screen and (max-width: 415px) {
  .heading-blogging {
    height: 70vh;
  }
  .blogging-image p {
    line-height: normal;
    padding: 0 0;
  }
}
/* DESTINATION PAGE */
.destination-page {
  margin-top: 7rem;
}
/* maldives */
.maldives {
  width: 100%;

  height: 15rem;
  padding: 2rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)),
    url(/images/water.png) no-repeat center/cover;
}
.maldives,
.table-content,
.maldives-container,
#best-campany {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.maldives-page {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.maldives-page ul {
  margin: 2rem 0;
}
.maldives-page ul li {
  padding: 1rem 0;
  list-style: none;
}
.maldives-img {
  border-radius: 10px;
  width: 70%;
  height: 450px;
  object-fit: cover;
  margin-top: 3rem;
}
.table-content {
  background: var(--secondary-color);
  width: 90%;
  flex-direction: column;
  padding: 1.9rem 1rem;
  margin: 2rem 0;
}
.maldives-content {
  width: 100%;
}
.maldives-aside {
  background: var(--secondary-color);
}
.maldives-aside div {
  padding: 1rem 0.5rem;
}
.hotel-card ul li,
.top-rated h3 {
  color: var(--secondary-color);
}
.top-rated {
  padding: 1rem;
}
.top-rated-zero {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)),
    url(/images/couples.webp);
}
.top-rated-one {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)),
    url(/images/0verwater.webp);
}
.top-rated-two {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)),
    url(/images/hotel2.webp);
}
.top-rated-three {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)),
    url(/images/dome.webp);
}
.top-rated-four {
  background:
    linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)),
    url(/images/paris-tower.webp);
}
.experience-cta {
  width: 100%;
  margin: 4rem 0;
  text-align: center;
}
/* comparison tool section */

.destination-experiences {
  padding: 4rem 2rem;
  background-color: #fafafa;
}

.destination-experiences .container {
  max-width: 1100px;
  margin: auto;
}
.destination-comparison table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin-top: 2rem;
}

.destination-comparison thead,
.destination-comparison table,
.hidden-gems {
  background-color: var(--secondary-color);
}

.destination-comparison th,
.destination-comparison td {
  padding: 1rem;
  border: 1px solid var(--back-color);
}

/* hidden gems  */

.gem-cta {
  text-align: center;
  margin: 2rem 0 4rem;
}

/* plan vip gateaway */
.vip-trip-planner {
  padding: 4rem 2rem;
  color: var(--secondary-color);
}

.vip-trip-planner .trip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.vip-trip-planner .trip-card {
  flex: 1 1 300px;
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 10px;
}

.vip-trip-planner .trip-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #00ae98;
}

.vip-trip-planner .trip-card p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.vip-trip-planner .btn {
  background-color: #00ae98;
  color: #fff;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.vip-trip-planner .btn:hover {
  background-color: #008e7e;
}

.responsive-table table tr td,
tr th {
  border: 1px solid rgb(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
  .responsive-table {
    overflow-x: auto;
  }

  .destination-comparison table {
    min-width: 700px;
  }
}

.comparison-cta {
  margin-top: 4rem;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .maldives {
    height: 35rem;
    padding: 1rem;
  }
  .maldives-img {
    height: 30rem;
    width: 90%;
  }
  .table-content {
    width: 100%;
  }
  .maldives-aside {
    display: none;
  }
}
@media screen and (max-width: 970px) {
  .villiers {
    display: none;
  }
}
/* pignation */
.pagination {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}

.pagination button.page-btn,
.pagination button {
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.pagination button:hover {
  background-color: #00ae98;
  color: white;
}

.pagination button.active {
  background-color: #00ae98;
  color: white;
  font-weight: bold;
  border-color: #00ae98;
}
/* LUXURY TRAVEL DEALS PAGE */
.first-dealstext {
  padding: 2rem;
  text-align: center;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.first-dealstext p {
  max-width: 800px;
}
.deals-quote a {
  color: var(--button-color);
}
.deals-quote a:hover {
  color: gold;
}

.deals-categories {
  width: 15rem;
  height: 7rem;
  background-color: var(--button-color);
  margin: 1rem 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(0, 0, 0, 0.5);
  gap: 1px;
  justify-content: center;
  transition: 0.3s ease;
}
.deals-categories:hover {
  background: var(--button-hover);
}

.categories-swiper {
  width: 100%;
  padding: 1.5rem 0;
}

.deals-categories {
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-flights h2,
.real-tours h2 {
  padding: 2rem 0 0.5rem 2rem;
}
.featured-flights p,
.real-tours p {
  max-width: 700px;
  padding-left: 2rem;
}
/* slides */

.swiper {
  padding-bottom: 40px;
}

.deal-card {
  background: var(--secondary-color);
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.deal-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.deal-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.deal-card a,
.hidden-gemz a {
  align-self: start;
  padding: 10px 16px;
  background: #00ae98;
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}

.deal-card a:hover {
  background: #008b7a;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--button-color);
}
/* google icons */
.material-symbols-outlined {
  color: var(--paragraph-color);
}

.hotel-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hotel-card:hover {
  transform: scale(1.02);
}

.hotel-location {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 20px;
  font-weight: bold;
  color: var(--secondary-color);
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
  border-radius: 4px;
}

.hotel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  color: var(--secondary-color);
  flex-direction: column;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}
.hotel-overlay,
.partners-grid,
.partner-features,
.quote-quotes,
.hotellook-container,
.amazon-gadgets,
.amazon-gadgettwo,
.private-charters,
.jetsgrid-firsttextcontainer,
.thai-container {
  display: flex;
  justify-content: center;
}

.hotel-card:hover .hotel-overlay {
  opacity: 1;
}

.hotel-overlay h {
  margin-bottom: 10px;
  font-weight: 600;
}

.hotel-overlay p {
  line-height: 1.4;
  color: var(--secondary-color);
}
.trusted-partners {
  background: #f8f9fa;
  text-align: center;
  padding: 60px 20px;
}
.partner-description {
  max-width: 600px;
  margin: 0 auto 40px;
}
.partners-grid {
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.partner .material-symbols-outlined,
.partner p {
  color: var(--button-color);
}
.partner .material-symbols-outlined {
  font-size: 45px;
}
.partner p {
  font-size: 2rem;
}

.partner-features {
  flex-wrap: wrap;
  gap: 20px;
}
.feature {
  background: white;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
@media screen and (min-width: 1220px) {
  .partners-grid {
    gap: 70px;
  }
}
blockquote {
  border-left: 6px solid var(--button-color);
  border-radius: 5px;
  /* border-right: 6px solid var(--button-color); */
  text-align: left;
}
blockquote p {
  max-width: 650px;
}
.jet-card {
  padding: 0;
}
.jet-card img {
  height: 25rem;
}
.quote-quotes {
  width: 100%;
  padding: 1rem;
}
.hotellook {
  width: 80%;
}
.hotellook-container,
.amazon-gadgets {
  width: 100%;
}
.amazon-gadgets {
  margin-bottom: 3rem;
}
.amazongadgets-container {
  width: 90%;
  background: var(--affiliate-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template: auto / 1fr 1fr;
}
.amazon-gadgetone {
  max-width: 500px;
  height: auto;
  clip-path: polygon(0 0, 100% 0, 71% 100%, 0% 100%);
}
.amazon-gadgetone img {
  object-fit: cover;
  width: 100%;
}

.amazon-gadgettwo {
  max-width: 400px;
  flex-direction: column;
  align-items: center;
}
.amazon-gadgettwo a {
  align-self: flex-start;
  background: #ff9900;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.amazon-gadgettwo a:hover {
  background: #e08500;
}
@media screen and (max-width: 684px) {
  .amazongadgets-container {
    grid-template: 1fr 1fr / auto;
  }
  .amazon-gadgetone {
    height: 25rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .amazon-gadgettwo {
    padding: 1rem;
  }
  .amazon-gadgettwo img {
    width: 100%;
    height: auto;
  }
  .amazon-gadgettwo p {
    padding: 2rem;
  }
}
/* amazon book affiliate */
.travel-books-section {
  padding: 60px 20px 30px 20px;
  /* background: #f5f7fa; */
  text-align: center;
}

.travel-books-section h2,
.tools h2 {
  padding-bottom: 40px;
}

.book-card-grid {
  display: flex;
  justify-content: space-evenly;
  gap: 30px;
}

.book-card {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.book-card-one {
  background-image: url("/images/deals/read-booktwo.webp");
}
.book-card-two {
  background-image: url("/images/deals/read-bookthree.webp");
}
.book-card-three {
  background-image: url("/images/deals/read-bookone.jpg");
}
.book-card-one,
.book-card-two,
.book-card-three {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.book-card:hover {
  transform: translateY(-5px);
}

.book-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  color: #fff;
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.book-overlay h5 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.book-overlay p {
  margin-bottom: 20px;
  color: rgb(201, 198, 198);
}

.book-overlay a {
  background: #ff9900;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.book-overlay a:hover {
  background: #e08500;
}
@media screen and (max-width: 754px) {
  .book-card-grid {
    flex-wrap: wrap;
  }
}
/* fixed buttons */

.floating-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* main button */
.float-btn.main-btn,
.float-blue-btn.main-blue-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--secondary-color);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.5s;
}
.float-btn.main-btn {
  background: var(--button-color);
}
.float-blue-btn.main-blue-btn {
  background: var(--bg-2);
}

.float-btn.main-btn:hover {
  background: var(--button-hover);
}
.float-btn.main-btn,
.sub-buttons,
.sub-buttons .float-btn {
  display: flex;
}

.sub-buttons {
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.sub-buttons .float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--paragraph-color);
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
}
.sub-buttons .float-btn:hover {
  background: #0077ff;
  color: var(--secondary-color);
  transform: scale(1.1);
}
.sub-buttons.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    gap: 10px;
  }
}
.quick-sammary-container,
.quick-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.quick-summary {
  padding: 2rem;
  width: 90%;
  margin: 2rem 1rem;
  background-color: var(--back-color);
}
.quick-sammary-container {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .quick-summary {
    padding: 0 4rem;
    max-width: 600px;
  }
}

/* private jets homepage section */
.private-charters {
  width: 100%;
  margin: 3rem 0;
  height: fit-content;
}
.privatejets-container {
  width: 90%;
  padding: 2rem;
}
.jets-grid {
  display: grid;
  grid-template: 60rem/1fr 1fr;
  height: fit-content;
}

.jetsgrid-firsttextcontainer,
.thai-container {
  padding: 2rem;
  margin: 1rem 0;
  align-items: start;
  flex-direction: column;
}
.thai-container ul {
  padding: 1rem 0 0 0.4rem;
}
.thai-container ul li {
  padding: 1rem 0 0;
}

.thai-container ul li {
  list-style: disc;
}
.jetsgrid-firsttextcontainer ul li {
  list-style: none;
}
.jets-container {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.jet-firsttext {
  text-align: center;
  width: 100%;
}
.jets-image {
  height: 100%;
  display: flex;
}
.jets-image img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .jets-grid {
    display: grid;
    grid-template: 50rem 45rem / auto;
  }
}
@media screen and (max-width: 425px) {
  .jetsgrid-firsttextcontainer,
  .thai-container {
    padding: 1rem;
    margin: 0.5rem 0;
    align-items: start;
    flex-direction: column;
  }
  .privatejets-container {
    width: 95%;
  }
}
@media screen and (max-width: 425px) {
  .jetsgrid-firsttextcontainer,
  .thai-container {
    padding: 1rem;
    margin: 0.5rem 0;
    align-items: start;
    flex-direction: column;
  }
  .privatejets-container {
    width: 95%;
    padding: 1rem;
  }
  .jets-grid {
    display: grid;
    grid-template: 53.5rem 35rem / auto;
  }
}
@media screen and (max-width: 490px) {
  .jets-grid {
    display: grid;
    grid-template: 55rem 35rem / auto;
  }
}
@media screen and (max-width: 375px) {
  .jets-grid {
    display: grid;
    grid-template: 60rem 35rem / auto;
  }
}
/* youtube video embeded */
.custom-video-container {
  position: relative;
  width: 90%;
  height: 0;
  padding-bottom: 50%;
  margin: 0 auto;
  overflow: hidden;
  max-width: 100%;
}

.custom-video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  border: none;
}

@media (min-width: 768px) {
  .custom-video-container {
    width: 70%;
    padding-bottom: 45%;
  }
}

@media (min-width: 1024px) {
  .custom-video-container {
    width: 50%;
    padding-bottom: 40%;
  }
}

.video-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 5rem 0;
}
/* search bar */
#search-container,
.ai-search-container {
  text-align: center;
  position: relative;
}
#search-container {
  background: #f9f9f9;
  padding: 5rem 1rem;
}

.ai-search-container {
  background: #020617;
  padding: 1rem 1rem;
}
.auther-information {
  border-left: 2px solid var(--button-color);
}
/* blog post's faqs section */
.faqs-width {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-section {
  padding: 60px 20px;
  max-width: 1000px;
}

.faq-section h2 {
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--paragraph-color);
}

.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 1.9rem;
  font-weight: bold;
  text-align: left;

  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-answer {
  max-height: 0;
  overflow: auto;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 15px;
  background-color: var(--secondary-color);
}

.faq-item.active .faq-answer {
  padding: 15px;
  max-height: 700px;
}
/* thailand page  */

/* Card Styling */
.luxury-card {
  flex: 0 0 auto;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.luxury-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.luxury-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.luxury-card-content {
  padding: 1rem;
}

.luxury-card-content h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #111;
}

.luxury-card-content p {
  line-height: 1.5;
}
.thailuxury-destinations {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}
.intro {
  margin-bottom: 50px;
}
.thailand-destination {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  gap: 20px;
}
.reverse {
  flex-direction: row-reverse;
}
.thailand-destination .image,
.thailand-destination .content {
  flex: 1;
}
.thailand-destination .image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 700px) {
  .thailand-destination {
    flex-direction: column;
  }
  .reverse {
    flex-direction: column;
  }
}

.luxury-itineraries {
  width: 100%;
  margin: auto;
  padding: 60px 20px;
  background:
    linear-gradient(rgb(0, 0, 0, 0.9), rgb(0, 0, 0, 0.8)),
    url(/images/zanzibar.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.luxury-itineraries h2,
.luxury-itineraries p,
.luxury-itineraries h3,
.itinerary-item ul li,
.itinerary-item p {
  color: var(--secondary-color);
}
.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.itinerary-item h3 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.itinerary-item p {
  margin-bottom: 15px;
}
.itinerary-item ul {
  margin-left: 20px;
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.5;
}
.itinerary-item ul li {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .itinerary-list {
    flex-direction: row;
    gap: 40px;
  }
  .itinerary-item {
    flex: 1;
  }
}
.thai-linking {
  width: 100%;
  margin: 0.6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
/* image slider */
.travel-essentials-slider {
  max-width: 1300px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
  text-align: center;
}

.tes-slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.tes-slide {
  display: none;
  position: relative;
}

.tes-slide.active {
  display: block;
}

.tes-slide img {
  width: 100%;
  border-radius: 10px;
  max-height: 500px;
  object-fit: cover;
}

.tes-caption {
  background: rgba(0, 0, 0, 0.6);
  color: var(--secondary-color);
  padding: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: left;
}

.tes-caption p {
  margin: 0 0 2rem;
  color: var(--secondary-color);
  /* font-size: 1.6rem; */
}

.tes-btn {
  background: var(--button-color);
  color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.tes-btn:hover {
  background: var(--button-hover);
}

.tes-controls {
  margin-top: 15px;
}

.tes-controls span {
  cursor: pointer;
  font-size: 2rem;
  margin: 0 10px;
  user-select: none;
}

.tes-dots {
  text-align: center;
  margin-top: 10px;
}

.tes-dots span {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.tes-dots span.active {
  background-color: #717171;
}
/* pop up */
.popup-destination {
  width: 100%;

  background: var(--secondary-color);
  padding: 3rem 0;
}

.popup-destination,
.destination-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}
.destination-grid {
  flex-wrap: wrap;
  gap: 25px;
}
.destination-card {
  width: 150px;
  height: 100px;
  background: var(--button-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2rem;
  color: var(--secondary-color);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px rgb(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}
.destination-card:hover {
  transform: scale(1.05);
  background: var(--button-hover);
}

/* Pop-Up Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-content {
  background: var(--secondary-color);
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
.popup-links a {
  display: block;
  margin: 10px 0;
  padding: 12px;
  background: #f5f5f5;
  text-decoration: none;
  color: var(--paragraph-color);
  border-radius: 8px;
  transition: background 0.2s;
}
.popup-links a:hover {
  background: #ddd;
}

/* Comparison Table */
.comparison-table {
  margin: 2.5rem 0;
  text-align: left;
}

.comparison-table h3 {
  margin-bottom: 1rem;
  color: #1a202c;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #2563eb;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background: #f9fafb;
}

/* hotels home section */
/* ===== Hotel Categories Grid ===== */
.hotel-grid {
  display: grid;
  grid-template-areas:
    "large large wide"
    "small1 small2 wide";
  grid-template-columns: 1fr 1fr 2.3fr;
  grid-template-rows: 50vh 40vh;
  gap: 2rem;
  max-width: 90%;
  margin: 0 auto;
}

.hotel-card-three {
  position: relative;
  overflow: hidden;
}

.hotel-card-large {
  grid-area: large;
}

.hotel-card-wide {
  grid-area: wide;
}

.hotel-card-three:nth-child(2) {
  grid-area: small1;
}
.hotel-card-three:nth-child(3) {
  grid-area: small2;
}

.hotel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hotel-card-three:hover .hotel-img {
  transform: scale(1.05);
}

.hotel-overlay-three {
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  width: 100%;
}

.hotel-title {
  color: var(--secondary-color);
}

.hotel-link {
  display: block;
  margin-bottom: 2rem;
}

/* Responsive behavior */
@media (max-width: 1024px) {
  .hotel-grid {
    grid-template-areas:
      "wide wide"
      "small1 small2"
      "large large";
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 630px) {
  .hotel-grid {
    grid-template-areas:
      "large"
      "small1"
      "small2"
      "wide";
    grid-template-columns: 1fr;
  }
}

/* ===== Popup Styles ===== */
.newsletter-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.newsletter-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.newsletter-popup .popup-content {
  background: #0f172a;
  color: #f8fafc;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  border-radius: 14px;
  text-align: center;
  position: relative;
  animation: popIn 0.4s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.newsletter-popup .popup-content h2 {
  margin-top: 0;
  font-size: 2.1rem;
  color: #38bdf8;
}

.newsletter-popup .popup-content p {
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

.newsletter-popup input[type="email"] {
  width: 100%;
  padding: 1.3rem;
  border-radius: 6px;
  border: 1px solid #334155;
  margin-bottom: 1.3rem;
}

.newsletter-popup button[type="submit"] {
  background: #38bdf8;
  border: none;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 2rem;
  transition: background 0.2s;
  width: 100%;
}
.newsletter-popup button[type="submit"]:hover {
  background: #0284c7;
}

.newsletter-popup .popup-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 3.5rem;
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  cursor: pointer;
}

.popup-optout {
  display: flex;
  margin-top: -5rem;
  gap: 6px;
  font-size: 1.5rem;
  color: #cbd5e1;
}
.popup-optout input {
  accent-color: #38bdf8;
}

.popups-checkbox {
  width: 1rem;
}

.popup-message {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #22c55e;
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* LEAD MAGNET MODAL */
.lead-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
}

.lead-modal.hidden {
  display: none;
}

.lead-modal-inner {
  background: #0b1b3a;
  padding: 24px;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  position: relative;
}

.lead-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Travel AI button */
.button-container {
  text-align: center;
  border-radius: 100%;
}

/* Make anchor look like button */
.travel-ai-link {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(270deg, #ff0080, #7928ca, #2af598, #fecfef);
  background-size: 400% 400%;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s ease;
  animation: gradientMove 6s ease infinite;
  overflow: hidden;
  z-index: 1;
}

.travel-ai-link::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    90deg,
    #ff0080,
    #7928ca,
    #2af598,
    #fecfef,
    #ff0080
  );
  background-size: 300% 300%;
  border-radius: 50px;
  z-index: -1;
  animation: borderFlow 4s linear infinite;
  filter: blur(6px);
}

.travel-ai-link:hover {
  transform: scale(1.08);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* =======================
   Travel Ad Card Styles
======================= */
.travel-ad-card {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  margin: 20px auto;
  cursor: pointer;
}

.travel-ad-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.travel-ad-img {
  position: relative;
  overflow: hidden;
}

.travel-ad-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.travel-ad-card:hover img {
  transform: scale(1.08);
}

.travel-ad-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.85),
    rgba(0, 0, 0, 0.1)
  );
}

.travel-ad-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #fff;
  z-index: 2;
  text-align: left;
  animation: fadeUp 1s ease both;
}

.travel-ad-text h3 {
  font-size: 2.5rem;
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.3em;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal; /* allow wrapping */
  display: block;
  text-align: left;
  min-height: 3em; /* reserve space to prevent jump */
  position: relative;
}

.travel-ad-text p {
  font-size: 1.6rem;
  margin: 0 0 12px;
  color: #e2e8f0;
  font-weight: bold;
}

.travel-ad-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.6);
  animation: pulseBtn 2.5s infinite;
  font-size: 1.7rem;
}

.travel-ad-btn:hover {
  background: #4338ca;
  transform: scale(1.06);
}

/* ===============================
   COMMENTS SECTION
================================ */

.comments-section {
  max-width: 900px;
  margin: 5rem auto;
  padding: 1.4rem;
  border-top: 1px solid var(--secondary-color);
}

.comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.comments-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
}

.comments-subtext {
  margin-top: 0.5rem;
  color: #6b7280;
}

.comments-toggle {
  padding: 0.6rem 1.2rem;
  color: var(--secondary-color);
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.comments-toggle:hover {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.comments-body {
  margin-top: 2rem;
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .comments-section {
    padding: 1.5rem 1rem;
  }

  .comments-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =======================
   COOKIES
======================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0b1220;
  color: #fff;
  padding: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  max-width: 700px;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

/* =======================
   Animations
======================= */
@keyframes pulseBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(79, 70, 229, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

@keyframes fadeUpPhrase {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* continent styles */
.continent-hero {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ROTATOR CORE */
.content-rotator {
  position: relative;
  min-height: 360px;
}

.rotator-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
}

.rotator-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* IMAGE ROTATOR */
.image-rotator {
  position: relative;
  width: 100%;
  min-height: 400px;
}

.image-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.image-rotator img.active {
  opacity: 1;
}

.cta-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  width: 60%;
}

/* MOBILE SAFETY */
@media (max-width: 768px) {
  .content-rotator {
    min-height: 360px;
  }

  .image-rotator {
    min-height: 260px;
  }
}

.ai-hero {
  max-width: 720px;
  margin: 4rem auto;
  text-align: center;
}

.ai-input-box {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.ai-input-box input {
  flex: 1;
  padding: 12px;
  font-size: 16px;
}

.ai-input-box button {
  padding: 12px 18px;
  cursor: pointer;
}

.ai-video {
  margin: 2rem 0;
}

.ai-answer {
  line-height: 1.7;
}

.ai-guides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 1rem;
}

.guide-card {
  text-decoration: none;
  color: inherit;
}

.guide-card img {
  width: 100%;
  border-radius: 8px;
}

/* Netlify CMS safety */
[data-slate-editor] .btn,
[data-slate-editor] .btn2,
[data-slate-editor] .btn3,
[data-slate-editor] .btn4 {
  display: inline-block;
  margin: 0.5rem 0;
}
.btn,
.btn2,
.btn3,
.btn4 {
  margin: 1rem 0.5rem 1rem 0;
}
