@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
 

.hero-section {
  background: #f1f3f5;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Watermark Text */
.bg-text {
  position: absolute;
  left: 20px;
  top: 100px;
  font-size: 170px;
  font-weight: 700;
  color: #e8e8e8;
  opacity: .8;
  z-index: 0;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}


.small-title {
  font-size: 60px;
  font-weight: 700;
  color: #071c18;
}

.main-title {
  font-size: 100px;
  font-weight: 800;
  line-height: 0.95;
  color: #071c18;
  margin-bottom: 25px;
}

.hero-text {
  max-width: 500px;
  color: #555;
  line-height: 1.9;
  font-size: 17px;
}

/* Button */
.tour-btn {
  background: #fff;
  border: 1px solid #29c3d3;
  color: #29c3d3;
  padding: 14px 28px;
  border-radius: 8px;
  transition: .3s;
}

.tour-btn:hover {
  background: #29c3d3;
  color: #fff;
}

/* Video Button */
.video-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulse {
  position: absolute;
  border-radius: 50%;
  background: rgba(54, 209, 220, .18);
}

.pulse-1 {
  width: 120px;
  height: 120px;
}

.pulse-2 {
  width: 85px;
  height: 85px;
  background: rgba(54, 209, 220, .28);
}

.play-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
  z-index: 10;
  font-size: 22px;
}


/* Responsive */
@media(max-width:1200px) {

  .main-title {
    font-size: 90px;
  }

  .small-title {
    font-size: 50px;
  }
}

@media(max-width:991px) {

  .hero-content {
    text-align: center;
    margin-top: 50px;
  }

  .hero-text {
    margin: auto;
  }

  .main-title {
    font-size: 70px;
  }

  .small-title {
    font-size: 40px;
  }

  .bg-text {
    display: none;
  }

  .d-flex {
    justify-content: center;
  }
}

@media(max-width:576px) {

  .main-title {
    font-size: 55px;
  }

  .small-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 15px;
  }
}


.hero-form {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.hero-form h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0f172a;
}

.hero-form .form-control,
.hero-form .form-select {
  height: 55px;
  border-radius: 12px;
  border: 1px solid #dbe3ec;
  box-shadow: none;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
  border-color: #ff7a00;
  box-shadow: none;
}

.hero-submit-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7a00, #ff4d4d);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  transition: .3s;
}

.hero-submit-btn:hover {
  transform: translateY(-3px);
}


.about-section {
  padding: 100px 0;
  background: #f4f4f4;
  position: relative;
  overflow: hidden;
}

/* LEFT IMAGE */

.image-wrapper {
  text-align: center;
}

.traveler-img {
  max-width: 100%;
}

/* TAG */

.section-tag {
  color: #25c7d9;
  font-size: 26px;
  font-family: cursive;
  display: inline-block;
  margin-bottom: 15px;
}

/* TITLE */

.section-title {
  font-size: 60px;
  font-weight: 800;
  color: #05051a;
  line-height: 1.15;
  margin-bottom: 25px;
}

.highlight {
  position: relative;
  z-index: 1;
}

.highlight::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 18px;
  background: #11d3ea;
  z-index: -1;
}

/* DESCRIPTION */

.section-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 35px;
}

/* INFO BOX */

.info-box {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 18px;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list i {
  width: 28px;
  height: 28px;
  background: #d6f7fb;
  color: #25c7d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 14px;
}

/* VIDEO BOX */

.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.video-box img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 22px;
  backdrop-filter: blur(3px);
}

/* DECORATIVE SHAPES */

.shape {
  position: absolute;
  background: #d9f4fb;
  border-radius: 50%;
}

.shape-1 {
  width: 120px;
  height: 120px;
  left: -40px;
  bottom: 50px;
}

.shape-2 {
  width: 160px;
  height: 160px;
  right: -70px;
  bottom: 20px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

  .section-title {
    font-size: 50px;
  }
}

@media(max-width:991px) {

  .about-section {
    text-align: center;
  }

  .section-title {
    font-size: 42px;
  }

  .feature-list li {
    justify-content: center;
  }

  .video-box {
    margin-top: 20px;
  }
}

@media(max-width:576px) {

  .section-title {
    font-size: 34px;
  }

  .section-desc {
    font-size: 16px;
  }
}


.trekking-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom,
      #d9eefc 0%,
      #d9eefc 45%,
      #c8eadf 100%);
}

/* Background Decoration */

.trekking-section::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: 0;
  width: 400px;
  height: 250px;
  background: #a9d8cd;
  border-radius: 50%;
}

.trekking-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -20px;
  width: 350px;
  height: 350px;
  background: #ea6ca5;
  border-radius: 50%;
}

/* Heading */

.sub-title {
  font-family: cursive;
  color: #18c8d9;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 48px;
  font-weight: 800;
  color: #071221;
  line-height: 1.2;
}

.highlight {
  position: relative;
  z-index: 1;
}

.highlight::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 15px;
  background: #17d4e7;
  z-index: -1;
}

/* Cards */

.trek-card {
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  position: relative;
  z-index: 2;
}

.trek-card:hover {
  transform: translateY(-8px);
}

.card-image {
  position: relative;
}

.card-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.price-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1fd6ea;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
}

.trip-meta {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: #fff;
  padding: 6px 10px;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  border-radius: 3px;
}

.card-body-custom {
  padding: 18px 8px 10px;
}

.card-body-custom h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.rating {
  color: #ff9f1a;
  margin-bottom: 15px;
}

.card-body-custom p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.card-footer-custom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer-custom a {
  text-decoration: none;
  color: #071221;
  font-size: 13px;
  font-weight: 600;
}

.card-footer-custom i {
  font-size: 14px;
}

/* Dots */

/* Responsive */

@media(max-width:991px) {
  .section-heading h2 {
    font-size: 38px;
  }
}

@media(max-width:768px) {
  .section-heading h2 {
    font-size: 32px;
  }

  .trek-card {
    max-width: 350px;
    margin: auto;
  }
}


/* ==========================
   DISCOUNT SECTION
========================== */

.discount-section {
  position: relative;
  padding: 120px 0;
  /* background: url('') center center/cover no-repeat; */
  overflow: hidden;
}

.discount-section .overlay {
  position: absolute;
  inset: 0;

}

.discount-section .container {
  position: relative;
  z-index: 2;
}

/* Offer Text */

.offer-text {
  display: inline-block;
  color: #f81100;
  font-size: 32px;
  font-family: cursive;
  margin-bottom: 20px;
}

/* Heading */

.discount-section h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  color: #39d6df;
  margin-bottom: 25px;
}

/* Paragraph */

.discount-section p {
  color: rgba(41, 40, 40, 0.85);
  font-size: 20px;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 40px;
}

/* Button */

.read-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: #fff;
  color: #39d6df;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  border-radius: 6px;
  transition: .4s;
}

.read-btn:hover {
  background: #39d6df;
  color: #615f5f;
}

/* ==========================
   LOGO GRID
========================== */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, .25);
}

.logo-box {
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, .15);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

.logo-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1199px) {

  .discount-section h2 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {

  .discount-section {
    padding: 80px 0;
  }

  .discount-section h2 {
    font-size: 42px;
  }

  .logo-grid {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {

  .offer-text {
    font-size: 24px;
  }

  .discount-section h2 {
    font-size: 34px;
  }

  .discount-section p {
    font-size: 16px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-box {
    min-height: 140px;
  }
}

@media (max-width: 575px) {

  .logo-grid {
    grid-template-columns: 1fr;
  }

  .read-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}

.discount-section {
  position: relative;
  padding: 100px 0;
  /* background: url("image/banner-bg.jpg") center/cover no-repeat; */
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
}

.discount-section .container {
  position: relative;
  z-index: 2;
}

/* 2 x 2 Grid */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.logo-box {
  height: 220px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
  transition: .4s;
}

.logo-box:hover {
  transform: translateY(-8px);
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */

@media(max-width:991px) {

  .logo-grid {
    margin-top: 40px;
  }

  .discount-section h2 {
    font-size: 40px;
  }
}

@media(max-width:576px) {

  .logo-grid {
    grid-template-columns: 1fr;
  }

  .logo-box {
    height: 250px;
  }

  .discount-section h2 {
    font-size: 32px;
  }
}


/* ==========================
   WHY CHOOSE US
========================== */

.why-choose-section {
  padding: 100px 0;
  background: #f8f8f8;
  overflow: hidden;
}

.section-title {
  margin-bottom: 60px;
}

.sub-title {
  display: block;
  color: #34d3e6;
  font-size: 18px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: cursive;
}

.section-title h2 {
  font-size: 60px;
  font-weight: 700;
  color: #091d3e;
  margin: 0;
}

/* Feature Box */

.feature-box {
  text-align: left;
  max-width: 260px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: .4s;
}

.feature-icon i {
  font-size: 24px;
  color: #35d3e6;
}

.feature-box:hover .feature-icon {
  background: #35d3e6;
}

.feature-box:hover .feature-icon i {
  color: #fff;
}

.feature-box h4 {
  font-size: 32px;
  font-weight: 600;
  color: #091d3e;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.8;
}

/* Center Image */

.center-image {
  position: relative;
}

.center-image img {
  max-width: 100%;
  width: 500px;
}

/* Responsive */

@media (max-width: 1199px) {

  .section-title h2 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {

  .why-choose-section {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .feature-box {
    text-align: center;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .feature-icon {
    margin: 0 auto 20px;
  }
}

@media (max-width: 576px) {

  .section-title h2 {
    font-size: 30px;
  }

  .sub-title {
    letter-spacing: 3px;
    font-size: 14px;
  }

  .feature-box h4 {
    font-size: 24px;
  }
}



/*=========================
TRAVEL FAQ SECTION
=========================*/

.travel-faq-section {
  padding: 120px 0;
  background: linear-gradient(135deg,
      #f8fbff 0%,
      #eef6ff 50%,
      #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.travel-faq-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 149, 0, .08);
  top: -250px;
  right: -200px;
}

.travel-faq-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 157, 255, .08);
  bottom: -180px;
  left: -150px;
}

/* Left */

.faq-tag {
  display: inline-block;
  background: #fff3e8;
  color: #34d3e6;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-left h2 {
  font-size: 55px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.faq-left h2 span {
  color: #34d3e6;
}

.faq-left p {
  margin: 25px 0;
  color: #64748b;
  line-height: 1.8;
  font-size: 17px;
}

.faq-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.stat-card {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.stat-card h3 {
  font-size: 32px;
  color: #34d3e6;
  margin: 0;
  font-weight: 800;
}

.stat-card span {
  color: #64748b;
}

.faq-image img {
  width: 100%;
  border-radius: 30px;
  height: 350px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

/* Accordion */

.travel-faq .accordion-item {
  border: none;
  margin-bottom: 18px;
  border-radius: 22px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.travel-faq .accordion-button {
  padding: 25px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  box-shadow: none !important;
  background: #fff;
}

.travel-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg,
      #34d3e6,
      #00a8ff);
  color: #fff;
}

.travel-faq .accordion-body {
  padding: 25px;
  color: #64748b;
  line-height: 1.9;
  font-size: 15px;
}

.travel-faq .accordion-item:hover {
  transform: translateY(-4px);
  transition: .3s;
}

/* Responsive */

@media(max-width:991px) {

  .travel-faq-section {
    padding: 80px 0;
  }

  .faq-left h2 {
    font-size: 40px;
  }

  .faq-image {
    margin-bottom: 30px;
  }
}

@media(max-width:768px) {

  .faq-left h2 {
    font-size: 32px;
  }

  .faq-stats {
    flex-direction: column;
  }

  .travel-faq .accordion-button {
    font-size: 16px;
    padding: 20px;
  }
}


.page-shell1 {
  padding: 38px 34px 0;
  background:
    linear-gradient(180deg,
      rgba(217, 250, 252, 0.82),
      rgba(226, 250, 253, 0.36) 38%,
      rgba(224, 246, 250, 0.08) 62%),
    url("../image/cruis/bg.jpg") center bottom / cover no-repeat;
  ;
  position: relative;
}

.page-shell1::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(circle at 34% 40%, rgba(255, 255, 255, 0.75) 0 4%, transparent 14%),
    linear-gradient(180deg, rgba(221, 253, 255, 0.72) 0 54%, rgba(255, 255, 255, 0.06) 77%); */
  pointer-events: none;
}

.hero1 {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: start center;
  padding-top: 62px;
  text-align: center;
}

.hero1 h1 {
  color: #ec0909;
  font-size: clamp(40px, 4.1vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-copy1 {
  min-width: 0;
}

#page-title1 {
  color: #ec0909;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  padding: 10px
}

.call-btn {
  background: #34d3e6;
  border: none;
  color: #fff !important;
  font-size: 22px;
  min-width: 380px;
  padding: 16px 40px;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: #34d3e6;
  color: #fff !important;
}

/* Tablet */
@media (max-width: 768px) {
  .call-btn {
    min-width: 300px;
    font-size: 18px;
    padding: 14px 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .call-btn {
    min-width: 100%;
    width: 100%;
    font-size: 16px;
    padding: 12px 20px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .call-btn {
    font-size: 14px;
    padding: 10px 15px;
  }
}


@media (max-width: 900px) {
  .page-shell1 {
    min-height: auto;
  }

}

@media (max-width: 760px) {
  .page-shell1 {
    padding: 18px 14px 0;
  }

}


@media (max-width: 640px) {
  .page-shell1 {
    padding-inline: 12px;
  }

  .hero1 h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

}


.top-bar {
  background: #ff2b3a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  width: 100%;
}

.top-bar>span {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.top-bar a {
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.top-bar a span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.top-bar a p {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
  .top-bar {
    padding: 10px 12px;
  }

  .top-bar>span {
    font-size: 20px;
  }

  .top-bar a span {
    font-size: 16px;
  }

  .top-bar a p {
    font-size: 13px;
  }
}

/* Header Hide  */
@media(max-width:769px) {
  #my-header {
    display: none;
  }

  #mobile-header {
    display: block;
  }
}

/* Header Hide  */

/* Header  Mobile Hide  */
@media(min-width:769px) {
  #mobile-header {
    display: none;
  }
}

/* Header  Mobile Hide  */


img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: min(1180px, 90%);
  margin: auto;
}

/* =========================
AIRLINES SECTION
========================= */
.airlines-section h2,
.services-heading h2,
.destination-card h2,
.why-card h2,
.deal-banner h2,
.ready-section h2 {
  font-size: 38px;
}


/* =/* =========================
   CRUISE PARTNERS SECTION
========================= */

.airline-partners {
  padding: 100px 0;
  background: linear-gradient(135deg, #06111f, #0c1f35);
  position: relative;
  overflow: hidden;
}

.airline-partners::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0, 191, 255, .08);
  top: -250px;
  right: -250px;
}

.airline-partners::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 183, 3, .08);
  bottom: -200px;
  left: -200px;
}

/* =========================
   SECTION TITLE
========================= */

.airline-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.airline-title h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: .5px;
}

.airline-title h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #00bfff;
  display: block;
  margin: 15px auto 0;
  border-radius: 30px;
}

/* =========================
   6 CARDS IN ONE ROW
========================= */

.airline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* =========================
   CARD
========================= */

.airline-item {
  background: #fff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  margin: 0 10px 0 10px;
  transition: .4s ease;
}

.airline-item:hover {
  transform: translateY(-10px);
  background: #00bfff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

.airline-item {
  text-align: center;
}

.airline-item img {
  display: block;
  width: 120px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 15px;
  transition: .4s;
}

.airline-item:hover img {
  transform: scale(1.08);
}

.airline-item p {
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

/* =========================
   CALL BUTTON
========================= */

.airline-call {
  margin-top: 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.airline-call span {
  display: block;
  color: #dbeafe;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.airline-call a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 60px;
  background: linear-gradient(135deg, #00bfff, #0077ff);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: .4s;
}

.airline-call a:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 191, 255, .35);
}

.airline-call i {
  font-size: 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1400px) {

  .airline-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width:992px) {

  .airline-title h2 {
    font-size: 38px;
  }

  .airline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width:576px) {

  .airline-partners {
    padding: 70px 0;
  }

  .airline-title h2 {
    font-size: 30px;
  }

  .airline-grid {
    grid-template-columns: 1fr;
  }

  .airline-item img {
    width: 100px;

  }

  .airline-call a {
    padding: 15px 25px;
    font-size: 16px;
  }

}

/* =========================
DESTINATION SECTION CALL BUTTON
========================= */

.destinations-section .call-block {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.destinations-section .call-block a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  background: #34d3e6;
  color: #fff;

  padding: 18px 38px;
  border-radius: 70px;

  font-size: 24px;
  font-weight: 700;

  box-shadow: 0 15px 35px rgba(255, 98, 0, 0.35);

  transition: 0.4s ease;
  white-space: nowrap;
}

.destinations-section .call-block a:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 45px rgba(255, 98, 0, 0.45);
}

.destinations-section .call-block a i {
  font-size: 24px;
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width:769px) {

  .destinations-section .call-block {
    justify-content: center;
  
}

.destinations-section .call-block a {
  width: 100%;
  font-size: 20px;
  padding: 16px 24px;
}

.destinations-section .call-block a i {
  width: 46px;
  height: 46px;
  font-size: 20px;
}
}

/* =========================
CALL BUTTON
========================= */

.call-block {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.call-block a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #34d3e6;
  color: #fff;
  padding: 16px 34px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 98, 0, 0.35);
  white-space: nowrap;
}

.call-block a:hover {
  transform: scale(1.05);
}

/* =========================
CALL BLOCK
========================= */
.call-block {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.call-block span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.call-block a {
  display: inline-flex;
  /* ADD THIS */
  align-items: center;
  /* ADD THIS */
  justify-content: center;
  /* ADD THIS */

  background: #34d3e6;
  color: #fff;
  padding: 16px 34px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s ease;


  white-space: nowrap;
  /* ADD THIS */
}

.call-block a:hover {
  transform: scale(1.05);
}

.call-block i {
  margin-right: 10px;
}


*/ .destinations-section {
  padding: 100px 0;
  background:
    linear-gradient(135deg, #09111f, #0f172a);
}

.destination-card {
  width: min(900px, 92%);
  margin: auto;
  background: #fff;
  border-radius: 35px;
  padding: 60px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.destination-card h2 {
  font-size: 42px;
  margin-bottom: 35px;
  color: #111827;
}

.destination-card ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.destination-card li {
  font-size: 18px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1.7;
}

.destination-card i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.pink {
  background: #ff006e;
}

.orange {
  background: #fb8500;
}

.red {
  background: #ef233c;
}

.teal {
  background: #0096c7;
}

.align-left {
  align-items: flex-start;
}

/* =========================
WHY SECTION
========================= */

.why-section {
  padding: 100px 0;
  background: #f9fafb;
}

.why-card {
  width: min(850px, 92%);
  margin: auto;
  background: #111827;
  color: #fff;
  padding: 60px;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.why-card h2 {
  font-size: 42px;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.why-card ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.why-card li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  color: #d1d5db;
}

.why-card li i {
  color: #22c55e;
  font-size: 22px;
}

.why-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  background: #34d3e6;
  color: #fff;
  padding: 16px 34px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  z-index: 1;
  transition: 0.4s ease;
}

.why-card a:hover {
  transform: translateY(-5px);
}

/* =========================
DEAL BANNER
========================= */

.deal-banner {
  padding: 100px 20px;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('../image/cruiseline/deal-1.avif');
  background-size: cover;
  background-position: center;
}

.deal-banner h2 {
  color: #fff;
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
}

.deal-banner p {
  color: #f3f4f6;
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

.deal-banner a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #111827;
  padding: 18px 38px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s ease;
}

.deal-banner a:hover {
  transform: scale(1.05);
}

/* =========================
READY SECTION
========================= */

.ready-section {
  padding: 100px 20px;
  text-align: center;
  background: #fff;
}

.ready-section h2 {
  font-size: 52px;
  color: #111827;
  margin-bottom: 20px;
  font-weight: 800;
}

.ready-section p {
  color: #6b7280;
  font-size: 20px;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width:992px) {


  .services-heading h2,
  .destination-card h2,
  .why-card h2,
  .deal-banner h2,
  .ready-section h2 {
    font-size: 38px;
  }

  .destination-card,
  .why-card {
    padding: 40px 30px;
  }
}

@media (max-width:768px) {


  .destinations-section,
  .why-section {
    padding: 70px 0;
  }

  .services-heading h2,
  .destination-card h2,
  .why-card h2,
  .deal-banner h2,
  .ready-section h2 {
    font-size: 30px;
  }

  .deal-banner p,
  .ready-section p {
    font-size: 16px;
  }

  .card-title {
    font-size: 20px;
  }

  .destination-card li,
  .why-card li {
    align-items: flex-start;
  }

  .call-block a,
  .why-card a,
  .deal-banner a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width:480px) {


  .services-heading h2,
  .destination-card h2,
  .why-card h2,
  .deal-banner h2,
  .ready-section h2 {
    font-size: 26px;
  }

  .service-card img {
    height: 220px;
  }

  .destination-card,
  .why-card {
    padding: 30px 22px;
  }
}