body {
  background-image: url("../images/Travel background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

html {
  scroll-behavior: smooth;
}

/* ================================1st  section============================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.top-contact {
  position: absolute;
  top: 15px;
  right: 80px;
  color: white;
  display: flex;
  gap: 25px;
  z-index: 10;
  font-size: 15px;
}

@media (max-width: 768px) {
  .top-contact {
    right: 50%;
    transform: translateX(50%);
    top: 5px;
    gap: 10px;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .top-contact {
    width: 100%;
    right: 0;
    transform: none;
    justify-content: center;
    font-size: 11px;
    gap: 6px;
  }
}


.navbar {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;

  z-index: 10;
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

/* DESKTOP MENU */

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  margin-right: 45px;
  padding: 0;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  color: white;
      font-weight: 600;
        /* text-shadow: 1px 1px 1px black; */
  text-decoration: none;
  font-family: "Work Sans";
  font-size: 16px;
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ================= MOBILE NAVBAR ================= */

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 20;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;

    position: absolute;
    top: 70px;
    left: 0;

    width: 100%;
    background: #0b3c5d;

    padding: 25px 0;
    gap: 20px;

    text-align: center;
  }

  .nav-menu.active {
    display: flex;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }

  .menu-toggle {
    top: 12px;
    font-size: 26px;
  }
}

.hero-center {
  max-width: 900px;
  padding: 20px;
}

.hero-center h1 {
  color: #fff;
  text-align: center;
  font-family: "Abril Fatface";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero-center p {
  margin-top: 10px;

  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-family: "Grape Nuts";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.tabs {
  margin-top: 40px;
  background: #0099a3;
  display: inline-flex;
  padding: 10px 30px;
  gap: 30px;
  border-radius: 4px;
}

.tabs span {
  cursor: pointer;

  color: #fff;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #fff;
  font-family: "Work Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.tabs .active {
  border-bottom: 2px solid white;
}

.search-box {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  border-radius: 6px;
  border-radius: 10px;
  display: inline-block;
}

.tagline2 a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.tagline2 a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-center h1 {
    font-size: 40px;
  }

  .search-box {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 120px 20px 60px;
  }

  .hero-center h1 {
    font-size: 28px;
  }

  .hero-center p {
    font-size: 18px;
  }

  .tabs {
    gap: 15px;
    padding: 8px 15px;
  }

  .search-box {
    flex-direction: column;
    width: 100%;
  }

  .search-box select {
    width: 100%;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .hero {
    min-height: 320px;
    padding: 80px 15px 40px;
    position: relative;
    overflow: hidden;
  }

  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-center h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-center p {
    font-size: 16px;
  }

  .tabs {
    margin-top: 20px;
    padding: 6px 12px;
    gap: 10px;
  }

  .search-box {
    flex-direction: column;
    width: 95%;
    padding: 10px;
    gap: 8px;
  }

  .search-box select {
    width: 100%;
    min-width: 100%;
    font-size: 13px;
  }
}

/* ================================2nd section============================ */
.pd2-card {
  flex: 0 0 calc((100% - 90px) / 4);
}

.pd2-section {
  padding: 80px 0;
  text-align: center;
}

.pd2-title {
  font-family: "Grape Nuts", cursive;
  font-size: 40px;
  color: #000;
  margin-bottom: 50px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.pd2-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd2-viewport {
  width: 1200px;
  overflow: hidden;
}

.pd2-cards {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
}

.pd2-card {
  min-width: 270px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
}

.pd2-image {
  width: 100%;
  height: 212px;
  object-fit: cover;
}

.pd2-content {
  padding: 18px;
}

.pd2-city {
  font-family: "Grape Nuts", cursive;
  font-size: 24px;
  color: #000;
  margin-bottom: 6px;
}

.pd2-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd2-desc {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  color: #777;
  width: 130px;
  line-height: 1.4;
}

.pd2-divider {
  width: 1px;
  height: 40px;
  background: #ddd;
  margin: 0 10px;
}

.pd2-price-box {
  text-align: right;
}

.pd2-price {
  font-family: "Work Sans", sans-serif;
  font-size: 26px;
  font-weight: 300;
  display: block;
  line-height: 1;
}

.pd2-person {
  font-size: 11px;
  color: #999;
}

.pd2-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #000;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 20;
  transition: 0.3s;
}

.pd2-left {
  left: 100px;
}

.pd2-right {
  right: 100px;
}

.pd2-arrow:hover {
  background: #0099a3;
  color: #fff;
}

@media (min-width: 1920px) {
  .pd2-slider {
    width: 1200px;
    margin: auto;
  }

  .pd2-left {
    left: -60px;
  }

  .pd2-right {
    right: -10px;
  }
}

@media (max-width: 1024px) {
  .pd2-card {
    flex: 0 0 calc((100% - 60px) / 3);
  }

  .pd2-left {
    left: 8px;
  }

  .pd2-right {
    right: 10px;
  }
}

@media (max-width: 500px) {
  .pd2-card {
    flex: 0 0 100%;
  }
}

/* ===============================3rd section========================== */
.gallery-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.gallery-slider {
  position: relative;
  width: 1100px;
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-slide {
  min-width: 100%;
}

.gallery-slide img {
  width: 100%;
  /* height: 500px; */
  height: auto !important;
  object-fit: cover;
  border-radius: 6px;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 26px;
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  z-index: 10;
}

.gallery-left {
  left: 2px;
}

.gallery-right {
  right: 2px;
}

.gallery-arrow:hover {
  background: #0099a3;
  color: white;
}

/* =====================4rth section-====================== */
.fd-section {
  padding: 80px 0;
  text-align: center;
}

.fd-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #0b3c5d;
}

.fd-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #4a5565;
  margin-bottom: 40px;
}

.fd-container {
  width: 1128px;
  margin: auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.fd-image {
  position: relative;
  height: 380px;
}

.fd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fd-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 32px;
  color: white;
  background: linear-gradient(transparent, #0b3c5d);
  width: 100%;
  text-align: left;
}

.fd-overlay h3 {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 30px;
}

.fd-overlay p {
  font-size: 18px;
}

.fd-itinerary {
  padding: 40px;
  text-align: left;
}

.fd-itinerary h4 {
  font-size: 24px;
  font-weight: 600;
  color: #0b3c5d;
  margin-bottom: 20px;
}

.fd-accordion {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.fd-header {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
}

.fd-content {
  padding: 0 24px 16px;
  display: none;
  font-size: 14px;
  color: #4a5565;
  display: none;
}

.fd-content p {
  font-size: 16px;
}

.fd-features {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.fd-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #0b3c5d;
}

.fd-feature-item img,
.fd-feature-item svg {
  width: 20px;
  height: 20px;
  display: block;
}

.fd-features span {
  font-size: 14px;
  color: #0b3c5d;
}

.fd-btn {
  text-align: center;
  margin-top: 30px;
}

.fd-btn button {
  background: #0099a3;
  border: none;
  padding: 14px 28px;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.fd-accordion.active .fd-arrow {
  transform: rotate(180deg);
}

.fd-accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.fd-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  cursor: pointer;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.fd-arrow {
  transition: 0.3s;
}

.fd-accordion-item.active .fd-arrow {
  transform: rotate(180deg);
}

.fd-accordion-content {
  display: none;
  padding: 20px 24px;
}

.fd-accordion-item.active .fd-accordion-content {
  display: block;
}

.fd-description {
  font-family: "Poppins";
  font-size: 14px;
  color: #4a5565;
  line-height: 20px;
  margin-bottom: 16px;
}

.fd-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.fd-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins";
  font-size: 14px;
  color: #0b3c5d;
}

.fd-feature img {
  width: 20px;
  height: 20px;
}

/* =====================5th section======================= */
.tg-section {
  width: 1128px;
  margin: auto;
  padding: 60px 0;
  text-align: center;
}

.tg-title {
  font-family: "Poppins";
  font-size: 48px;
  font-weight: 700;
  color: #0b3c5d;
}

.tg-subtitle {
  font-family: "Poppins";
  font-size: 20px;
  color: #4a5565;
  margin-bottom: 40px;
}

.tg-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.tg-image {
  width: 548px;
  height: 700px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tg-image-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #fff;
  text-align: left;
}

.tg-image-text h3 {
  font-family: "Poppins";
  font-size: 30px;
  font-weight: 700;
}

.tg-image-text p {
  font-family: "Poppins";
  font-size: 18px;
}

.tg-days {
  width: 548px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tg-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.tg-header {
  display: flex;
  align-items: center;
  gap: 12px;

  height: 70px;
}

.tg-header h4 {
  font-family: "Poppins";
  font-size: 28px;
  font-weight: 600;
  color: #0b3c5d;
}

.tg-badge {
  background: #0099a3;
  color: #fff;
  width: 100px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  font-size: 18px;
  font-family: "Poppins";
  font-weight: 600;
}

.tg-desc {
  color: #4a5565;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.75px;
}

.tg-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.tg-feature {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-family: "Poppins";
  color: #0b3c5d;
  padding-top: 10px;
}

.tg-feature img {
  width: 16px;
  height: 16px;
}

.tg-button {
  display: block;
  margin-top: 20px;
  background: #0099a3;
  color: #fff;
  padding: 14px;
  border-radius: 16px;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

/* =================================5th section======================= */
.why-choose {
  padding: 80px 0;
  background-image: url("../images/why-bg.png");
  background-size: cover;
  background-position: center;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.section-title {
  font-family: Poppins;
  font-size: 48px;
  font-weight: 700;
  color: #0b3c5d;
  text-align: center;
  line-height: 48px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: Poppins;
  font-size: 20px;
  color: #4a5565;
  text-align: center;
  max-width: 672px;
  margin: 0 auto 60px;
  line-height: 28px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon img {
  width: 28px;
}

.feature-card h3 {
  color: #0b3c5d;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.feature-card p {
  color: #4a5565;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================6 section================================ */
.how-works {
  padding: 100px 0;
  background-image: url("../images/how-bg.png");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.section-title {
  font-family: Poppins;
  font-size: 48px;
  font-weight: 700;
  color: #0b3c5d;
  margin-bottom: 10px;
}

.section-subtitle {
  font-family: Poppins;
  font-size: 20px;
  color: #4a5565;
  margin-bottom: 60px;
}

.steps-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}

.step-card {
  width: 258px;
  position: relative;
  z-index: 1;
}

.icon-circle {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid #0b3c5d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #0099a3;
  color: #fff;
  font-size: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-card h3 {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  color: #0b3c5d;
  margin-top: 20px;
}

.step-card p {
  font-family: Poppins;
  font-size: 15px;
  color: #4a5565;
  margin-top: 10px;
}

/* ===========================plan trip====================== */

.plan-trip {
  padding: 120px 0;
  background-image: url("../images/plan-bg.png");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.plan-heading h2 {
  font-family: Poppins;
  font-size: 48px;
  font-weight: 700;
  color: #0b3c5d;
  margin-bottom: 10px;
}

.plan-heading p {
  font-family: Poppins;
  font-size: 20px;
  color: #4a5565;
  margin-bottom: 60px;
}

.plan-form-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-family: Poppins;
  font-size: 15px;
  font-weight: 500;
  color: #0b3c5d;
  margin-bottom: 8px;
}

.form-group input {
  height: 50px;
  border-radius: 12px;
  border: 1px solid #d1d5dc;
  padding: 0 16px;
  font-family: Poppins;
  font-size: 15px;
  background: #f3f3f5;
}

.plan-btn {
  margin-top: 30px;
  width: 100%;
  height: 56px;
  background: #0099a3;
  border: none;
  border-radius: 16px;
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.form-note {
  margin-top: 12px;
  font-family: Poppins;
  font-size: 15px;
  color: #6a7282;
}

.error {
  color: red;
  font-size: 12px;
  margin-top: 3px;
}

/* ================= FLOATING BUTTONS ================= */

.float-btn {
  position: fixed;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  cursor: pointer;
  transition: 0.3s;
}

.whatsapp-float {
  bottom: 20px;
  background: #25d366;
}

.scroll-top-btn {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 40px;
  height: 45px;
  background: #0b3c5d;
  color: white;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.float-btn img {
  width: 35px;
  height: 35px;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* =======================footer===================== */
.site-footer {
  background: #0b3c5d;
  color: #fff;
  padding: 50px 0 20px;
  font-family: Poppins;
  width: 100%;
  margin: 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  color: #ddd;
}

.footer-contact h3,
.footer-links h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #25d366;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom span {
  font-size: 14px;
  color: #ffd700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1400px) {
  .pd2-viewport {
    width: 90%;
  }

  .fd-container {
    width: 90%;
  }

  .tg-section {
    width: 90%;
  }

  .tg-layout {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tg-image,
  .tg-days {
    width: 100%;
  }

  .tg-image {
    height: 500px;
  }
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
  .field {
    flex: 1;
    padding: 0 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
  }

  .field:last-child {
    border-right: none;
  }

  .tabs {
    bottom: 130px;
  }

  .pd2-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .gallery-slide img {
    height: 350px;
  }

  .fd-image {
    height: 300px;
  }

  .fd-overlay h3 {
    font-size: 24px;
  }

  .fd-overlay p {
    font-size: 16px;
  }

  .tg-title {
    font-size: 36px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .field {
    width: 100%;
    border: none;
  }

  .pd2-title {
    font-size: 30px;
  }

  .pd2-cards {
    gap: 15px;
  }

  .gallery-slide img {
    height: 250px;
  }

  .fd-title {
    font-size: 32px;
  }

  .fd-subtitle {
    font-size: 16px;
  }

  .fd-container {
    width: 95%;
  }

  .fd-image {
    height: 220px;
  }

  .fd-overlay h3 {
    font-size: 20px;
  }

  .fd-overlay p {
    font-size: 14px;
  }

  .tg-title {
    font-size: 28px;
  }

  .tg-subtitle {
    font-size: 16px;
  }

  .tg-image {
    height: 300px;
  }

  .tg-header h4 {
    font-size: 22px;
  }

  .tg-desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    height: 300px !important;
  }

  .hero-img {
    height: 300px !important;
  }

  .hero-content {
    top: 30%;
  }

  .tabs {
    bottom: 90px;
  }

  .search-box {
    bottom: 10px;
    height: 50px;
  }
}

/* ===================================form======================== */
.proposal-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.proposal-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 900px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 40px;
  background: #0f8f94;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
}

.form-note {
  text-align: center;
  margin-top: 10px;
  color: #666;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.phone {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
}

.icon {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

.phone a {
  color: #fff;
  text-decoration: none;
}

.phone a:hover {
  color: #25d366;
}

@media (min-width: 1920px) {
  /* keep sections centered */
  .pd2-viewport {
    width: 1200px;
    margin: auto;
  }

  .gallery-slider {
    width: 1200px;
    margin: auto;
  }

  .fd-container {
    width: 1200px;
  }

  .tg-section {
    width: 1200px;
  }

  /* fix arrows position */
  .pd2-left {
    left: -40px;
  }

  .pd2-right {
    right: -40px;
  }

  .gallery-left {
    left: -40px;
  }

  .gallery-right {
    right: -40px;
  }
}

/* ================= GLOBAL RESPONSIVE FIX ================= */

.container,
.pd2-viewport,
.gallery-slider,
.fd-container,
.tg-section,
.plan-form-box {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= GALLERY FIX ================= */

.gallery-slider {
  width: 100%;
  max-width: 100vw !important;
  margin: auto;
}

/* ================= FEATURED DESTINATION ================= */

.fd-container {
  width: 100%;
  max-width: 1128px;
}

/* ================= TRIP GUIDE ================= */

.tg-section {
  width: 100%;
  max-width: 1128px;
}

/* Fix image scaling */

.tg-image {
  width: 100%;
  max-width: 548px;
  height: 500px;
}

.tg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= PLAN TRIP FORM ================= */

.plan-form-box {
  width: 100%;
  max-width: 900px;
}

/* ================= LARGE SCREEN FIX ================= */

@media (min-width: 1920px) {
  .pd2-viewport,
  .gallery-slider,
  .fd-container,
  .tg-section {
    max-width: 1200px;
  }
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
  .tg-layout {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tg-image,
  .tg-days {
    width: 100%;
  }

  .tg-image {
    height: 400px;
  }

  .gallery-slide img {
    height: 350px;
  }

  .fd-image {
    height: 300px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .tg-layout {
    flex-direction: column;
    gap: 30px;
  }

  .tg-image,
  .tg-days {
    width: 100%;
  }

  .tg-image {
    height: 300px;
  }

  .steps-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .steps-wrapper::before {
    display: none;
  }

  .step-card {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .pd2-cards {
    gap: 15px;
  }

  .gallery-slide img {
    height: 250px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .hero {
    height: auto;
    padding: 80px 15px 40px;
  }

  .hero-center h1 {
    font-size: 22px;
  }

  .hero-center p {
    font-size: 16px;
  }

  .tg-title,
  .fd-title,
  .section-title {
    font-size: 26px;
  }

  .tg-desc {
    font-size: 14px;
  }

  .plan-heading h2 {
    font-size: 28px;
  }
}
.text{
  text-decoration: none;
  color: white;
}