:root {
  --blue: #0f5cc0;
  --orange: #ff7b00;
  --green: #179a43;
  --dark: #1f2937;
  --light: #f5f7fb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f5f7fb;
  color: #333;
  overflow-x: hidden;
}

/* NAVBAR */
.custom-navbar {
  background: #fff;
  padding: 18px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-area img {
  height: 52px;
}

.logo-text {
  line-height: 1.1;
}

.logo-text h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
}

.logo-text span {
  color: var(--orange);
}

.nav-links a {
  margin: 0 14px;
  font-weight: 600;
  color: #444;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--blue);
}

.call-btn {
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.call-btn:hover {
  background: #08469a;
  color: #fff;
}

/* HERO */
.hero-section {
  position: relative;
  padding: 90px 0 120px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=2070");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 25px;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-content p {
  font-size: 19px;
  line-height: 1.9;
  color: #f2f2f2;
  max-width: 700px;
  margin-bottom: 35px;
}

.hero-features {
  /* display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px; */
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 16px 28px;
}
@media (max-width: 768px) {
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.hero-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.hero-features i {
  background: var(--orange);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
}

.hero-left {
  padding-right: 40px;
}

/* FORM */
.enquiry-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 35px 22px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 430px;
}

.enquiry-box h3 {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.enquiry-box p {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.custom-input {
  margin-bottom: 16px;
  position: relative;
}

.custom-input i {
  position: absolute;
  top: 17px;
  left: 16px;
  color: #999;
}

.custom-input input,
.custom-input select {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding-left: 48px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.custom-input input:focus,
.custom-input select:focus {
  border-color: var(--blue);
}

.quote-btn {
  width: 100%;
  height: 50px;
  background: var(--orange);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #e56f00;
}

.whatsapp-btn {
  width: 100%;
  height: 54px;
  border: 2px solid var(--green);
  background: #fff;
  border-radius: 12px;
  font-weight: 700;
  margin-top: 14px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
/* FORM REST PART */
/* FORM SELECT */
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 50px;
  cursor: pointer;
}

.select-wrapper::after {
  content: "\ea4e";
  font-family: remixicon;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #777;
  pointer-events: none;
}

.custom-input {
  position: relative;
}

/* FORM MESSAGE */
.form-success,
.form-error {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
}

.form-success {
  background: #e8fff1;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.form-error {
  background: #fff1f2;
  color: #dc2626;
  border: 1px solid #fecdd3;
}

/* BUTTON LOADING */
.quote-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}
/* REMOVE NUMBER SPINNER */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* HELP TEXT */

.help {
  font-size: 13px;
  color: #e53935;
  margin-top: 6px;
  padding-left: 2px;
  line-height: 1.4;
}

/* SELECT ALIGN */

.select-wrap select {
  padding-right: 45px;
}

/* BUTTON LOADER */

.btn-loader {
  display: none;
  animation: rotateLoader 1s linear infinite;
}

.quote-btn.loading .btn-text {
  display: none;
}

.quote-btn.loading .btn-loader {
  display: inline-flex;
}

.quote-btn.loading {
  opacity: 0.8;
  pointer-events: none;
}

@keyframes rotateLoader {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
/* TRUST BAR */
.trust-bar {
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.trust-wrapper {
  background: #fff;
  padding: 22px 10px;
  border-radius: 24px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
}

.trust-wrapper .columns {
  margin: 0;
}

.trust-wrapper .column {
  padding: 0;
  position: relative;
}

/* Vertical Divider */
.trust-wrapper .column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: #e8e8e8;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 22px;
  height: 100%;
}

.trust-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon i {
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.blue {
  background: var(--blue);
}

.orange {
  background: var(--orange);
}

.green {
  background: var(--green);
}

.trust-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
  color: var(--dark);
  white-space: nowrap;
}

.trust-item p {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 1024px) {
  .trust-wrapper .columns {
    display: flex;
    flex-wrap: wrap;
  }

  .trust-wrapper .column {
    width: 50%;
  }

  .trust-wrapper .column:nth-child(2)::after,
  .trust-wrapper .column:nth-child(4)::after {
    display: none;
  }
}

/* SECTION */
.section-padding {
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 55px;
}

.section-heading span {
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
}

.section-heading h2 {
  font-size: 48px;
  font-weight: 800;
  margin-top: 10px;
  color: #1f2937;
}

.section-heading p {
  max-width: 760px;
  margin: auto;
  color: #666;
  margin-top: 16px;
  line-height: 1.9;
}

/* PACKAGE CARD */
.package-card {
  background: #fff;
  border-radius: 24px;
  overflow:visible;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
  height: 100%;
  position: relative;
  border: 1px solid #f0f0f0;

  /* IMPORTANT */
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
}

/* .pack-space{
  padding-top: 10px;
  border: 1px solid yellow;
} */

.package-top {
  padding: 30px 30px 22px;
  text-align: center;
  position: relative;
  overflow:visible;
  border-radius: 24px 24px 0 0;
}

/* TOP BORDER */
.package-blue {
  border-top: 8px solid var(--blue);
}

.package-orange {
  border-top: 8px solid var(--orange);
}

.package-green {
  border-top: 8px solid var(--green);
}

/* TITLE COLORS */
.package-blue h3,
.package-blue h4,
.package-blue strong,
.package-blue .package-icon {
  color: var(--blue);
}

.package-orange h3,
.package-orange h4,
.package-orange strong,
.package-orange .package-icon {
  color: var(--orange);
}

.package-green h3,
.package-green h4,
.package-green strong,
.package-green .package-icon {
  color: var(--green);
}

/* BADGE */
.popular-badge{
  position:absolute;
  top:-27px;
  left:50%;
  transform:translateX(-50%);

  background:var(--orange);
  color:#fff;

  padding:10px 34px 14px;

  min-width:190px;
  text-align:center;

  font-size:13px;
  font-weight:800;
  line-height:1.1;
  letter-spacing:.5px;

  border-radius:0 0 28px 28px;

  z-index:30;

  box-shadow:
    0 10px 25px rgba(255,123,0,.28);
}

/* LEFT FOLD */
.popular-badge::before{
  content:"";
  position:absolute;

  top:0;
  left:-12px;

  width:12px;
  height:20px;

  background:#cc6200;

  clip-path:polygon(100% 0, 0 100%, 100% 100%);
}

/* RIGHT FOLD */
.popular-badge::after{
  content:"";
  position:absolute;

  top:0;
  right:-12px;

  width:12px;
  height:20px;

  background:#cc6200;

  clip-path:polygon(0 0, 0 100%, 100% 100%);
}

/* TITLE */
.package-card h3 {
  font-size: 31px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* DURATION */
.package-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.package-icon {
  font-size: 18px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount small {
  font-size: 13px;
  font-weight: 600;
  color: #777;
}

.starting-price-text {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  margin-bottom: 16px;
  margin-top: -6px;
  letter-spacing: 0.3px;
}

/* SEASON TABS */
.season-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}

.season-btn {
  border: none;
  background: #f2f4f8;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  color: #555;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
}

.package-blue .season-btn.active {
  background: var(--blue);
  color: #fff;
}

.package-orange .season-btn.active {
  background: var(--orange);
  color: #fff;
}

.package-green .season-btn.active {
  background: var(--green);
  color: #fff;
}

/* PRICE TABLE */
.price-table {
  background: #f7f8fb;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid #ececec;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #ececec;
  transition:.25s;
}

.price-row:hover{
  background:#fff;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span {
  font-size: 15px;
  font-weight: 600;
  color: #555;
}

.price-row strong {
  font-size: 22px;
  font-weight: 800;
}

/* FEATURES */
.package-list {
  padding: 26px 30px 20px;
  list-style: none;
  flex-grow: 1;
}

.package-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 15px;
  color: #444;

  display: flex;
  align-items: center;
  min-height: 24px;
}

/* DEFAULT */
.package-list li::before {
  content: "\EB80";
  font-family: "remixicon";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 20px;
  height: 20px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  color: #fff;
}

/* COLORWISE ICON BG */
.package-blue + .package-list li::before {
  background: var(--blue);
}

.package-orange + .package-list li::before {
  background: var(--orange);
}

.package-green + .package-list li::before {
  background: var(--green);
}

/* BUTTON FOOTER */
.package-buttons {
  display: flex;
  margin-top: auto;
  border-top: 1px solid #f0f0f0;
}

.details-btn,
.wa-package-btn {
  width: 50%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}

/* DETAILS BUTTON */
.details-btn {
  color: #fff;
  border-radius: 0 0 0 24px;
}

.blue-btn {
  background: var(--blue);
}

.orange-btn {
  background: var(--orange);
}

.green-btn {
  background: var(--green);
}

.blue-btn:hover, .green-btn:hover{
  color: #f4cb2a;
}

/* WHATSAPP */
.wa-package-btn {
  background: #fff;
  color: #25d366;
  gap: 8px;
  border-left: 1px solid #f0f0f0;
  border-radius: 0 0 24px 0;
}

.wa-package-btn i {
  font-size: 18px;
}

.wa-package-btn:hover {
  background: #25d366;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .package-card {
    margin-bottom: 24px;
  }

  .package-top {
    padding: 28px 22px 20px;
  }

  .package-card h3 {
    font-size: 26px;
  }

  .package-card h4 {
    font-size: 15px;
  }

  .season-tabs {
    gap: 8px;
  }

  .season-btn {
    font-size: 10px;
    padding: 8px 6px;
  }

  .price-row strong {
    font-size: 19px;
  }

  .package-list {
    padding: 22px 22px 18px;
  }

  .package-list li {
    font-size: 14px;
    padding-left: 30px;
  }

  .details-btn,
  .wa-package-btn {
    font-size: 13px;
    height: 54px;
  }
}

/* WHY */
.why-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.why-image img {
  width: 100%;
  display: block;
}

.why-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.why-box {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

.why-box i {
  font-size: 34px;
  margin-bottom: 14px;
  display: inline-block;
}

.why-box h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ATTRACTIONS */
/* ATTRACTIONS */
.attraction-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);

  /* IMPORTANT */
  display: block;
  text-decoration: none;

  transition: 0.3s;
  height: 100%;
}

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.attraction-image {
  overflow: hidden;
}

.attraction-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.06);
}

.attraction-content {
  padding: 16px;
}

.attraction-content h3 {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  color: #222;
  line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {
  .attraction-image img {
    height: 120px;
  }

  .attraction-content {
    padding: 14px 10px;
  }

  .attraction-content h3 {
    font-size: 15px;
  }
}

/* TESTIMONIAL */
/* IMPORTANT FIX */
.review-faq-wrap {
  align-items: stretch;
}

/* Prevent Swiper expanding issue */
.reviewSlider {
  width: 100%;
  overflow: hidden;
}

.reviewSlider .swiper-wrapper {
  display: flex;
}

.reviewSlider .swiper-slide {
  flex-shrink: 0;
  width: 100% !important;
}

/* REVIEW */
.testimonial-box,
.faq-box {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-box {
  padding: 42px;
  overflow: hidden;
  position: relative;
}

.testimonial-box .ri-double-quotes-l {
  font-size: 58px;
  color: #e5e7eb;
  line-height: 1;
  display: inline-block;
  margin-bottom: 12px;
}

.testimonial-box .title {
  margin-bottom: 24px !important;
}

.review-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin: 18px 0 26px;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-stars i {
  color: #f59e0b;
}

.review-user h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}

.review-user span {
  font-size: 14px;
  color: #777;
}

/* FAQ */
.faq-box {
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #f1f1f1;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
}

.faq-question i {
  font-size: 22px;
  transition: 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  line-height: 1.9;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .review-faq-wrap {
    flex-wrap: wrap !important;
  }

  .testimonial-box {
    padding: 28px 22px;
    margin-bottom: 24px;
  }

  .faq-question {
    padding: 18px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 14px;
  }
}

/* CTA */
/* FINAL CTA */
.final-cta {
  position: relative;
  padding: 110px 20px 120px;
  text-align: center;
  overflow: hidden;

  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.68)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=2070");

  background-size: cover;
  background-position: center;
  color: #fff;
}

.final-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
}

.final-cta p {
  max-width: 860px;
  margin: auto;
  font-size: 20px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

/* CTA BUTTONS */
.cta-buttons {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-btn {
  min-width: 210px;
  height: 58px;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  transition: 0.3s;
}

.call-cta-btn {
  background: #fff;
  color: var(--blue);
}

.call-cta-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

.whatsapp-cta-btn {
  background: #25d366;
  color: #fff;
}

.whatsapp-cta-btn:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-3px);
}

/* FOOTER */
.site-footer {
  background: #fff;
  border-top: 1px solid #ececec;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left {
  font-size: 15px;
  color: #555;
}

.footer-left strong {
  color: var(--dark);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--orange);
}

/* FLOAT WHATSAPP */
.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 30px;

  z-index: 999;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);

  transition: 0.3s;
}

.float-whatsapp:hover {
  transform: scale(1.08);
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .final-cta {
    padding: 80px 18px 90px;
  }

  .final-cta h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .final-cta p {
    font-size: 16px;
    line-height: 1.8;
  }

  .cta-buttons {
    gap: 14px;
  }

  .cta-btn {
    width: 100%;
    min-width: auto;
    height: 54px;
    font-size: 15px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-left {
    font-size: 14px;
  }

  .float-whatsapp {
    width: 56px;
    height: 56px;
    font-size: 28px;
    right: 16px;
    bottom: 16px;
  }
}

/* Other */
.mini-trust {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mini-trust i {
  color: var(--green);
  font-size: 16px;
}
.price-row small {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}
/* MOBILE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .enquiry-box {
    margin-top: 40px;
  }

  .why-boxes {
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    font-size: 36px;
  }

  .logo-text h2 {
    font-size: 20px;
  }

  .hero-features {
    gap: 12px;
  }

  .hero-features div {
    font-size: 13px;
  }

  .package-card h3 {
    font-size: 26px;
  }
  .custom-navbar{
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero-section,
  .section-padding{
    padding: 30px 15px 90px;
  }
  .trust-wrapper {
    padding: 14px;
    border-radius: 20px;
  }

  .trust-wrapper .columns {
    display: flex;
    flex-wrap: wrap;
  }

  .trust-wrapper .column {
    width: 50%;
    border-bottom: 1px solid #f0f0f0;
  }
  .trust-wrapper .column:nth-child(3),
  .trust-wrapper .column:nth-child(4) {
    border-bottom: none;
  }

  .trust-wrapper .column:nth-child(odd) {
    border-right: 1px solid #f0f0f0;
  }

  .trust-wrapper .column::after {
    display: none;
  }

  .trust-item {
    padding: 16px 12px;
    gap: 10px;
    align-items: flex-start;
  }

  .trust-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
  }

  .trust-icon i {
    font-size: 18px;
  }

  .trust-item h3 {
    font-size: 13px;
    line-height: 1.4;
    white-space: normal;
    margin-bottom: 2px;
  }

  .trust-item p {
    font-size: 11px;
    line-height: 1.4;
  }
}