
/* HERO SECTION */
.hero {
    margin-top: -150px;
  padding: 9rem 0 7rem 0;
  background: #1A374D;
  text-align: center;
}

.hero h1 {
  color: #ffffff;
  font-size: 60px;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 45px;
  }
}

/* SECTION */
.untree_co-section {
  padding: 70px 0;
}

/* ABOUT TITLE */
.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  padding-bottom: 10px;
}



/* TEXT */
.untree_co-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* IMAGE SLIDER */
.owl-carousel img {
  width: 100%;
  display: block;
}

.rounded-20 {
  border-radius: 20px;
}

/* TWO COLUMN LIST */
.two-col {
  padding: 0;
  margin-top: 20px;
}

.two-col li {
  list-style: none;
  display: inline-block;
  width: 48%;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  color: #333;
}

.two-col li:before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid #1A374D;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* SPACING FIX */
.pl-lg-5 {
  padding-left: 3rem;
}

@media (max-width: 991px) {
  .pl-lg-5 {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* Section spacing */
.untree_co-section {
  padding: 70px 0;
}

/* Section title */
.section-title {
  font-size: 32px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}


/* Feature image block */
.frame {
  border-radius: 20px;
  overflow: hidden;
}

.feature-img-bg {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  border-radius: 20px;
}

/* Feature boxes */
.feature-1-wrap {
  gap: 20px;
}

.feature-1 {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-1:hover {
  background: #1A374D;
  color: #fff;
}

.feature-1:hover h3,
.feature-1:hover p {
  color: #fff;
}

.feature-1 h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-1 p {
  font-size: 14px;
  color: #666;
}

/* Icons */
.feature-1 i {
  margin-bottom: 15px;
  display: inline-block;
  color: #0b6f6b;
}

.feature-1:hover i{
    color: #FBC308;
}

.feature-img {
  object-fit: cover;
  border-radius: 20px;
}

/* Counter section */

/* Responsive fixes */
@media (max-width: 991px) {
  .feature-img-bg {
    min-height: 300px;
    margin-bottom: 30px;
  }
}

.service i {
  font-size: 40px;
  color: #FBC308;
  margin-bottom: 15px;
}

.about-section {
  background: #f8f9fa;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  text-align: left;
  display: inline-block;
  padding-bottom: 10px;
}

.section-titl {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  text-align: left;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  left: 0;
  width: 50px;
  height: 3px;
  background: #FBC308;
  display: block;
  position: absolute;
  margin: 10px auto 0;
}

.sub-title {
  font-size: 20px;
  font-weight: 600;
  color: #0b6f6b;
  margin-bottom: 10px;
}

.about-list {
  padding-left: 0;
}

.about-list li {
  list-style: none;
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b6f6b;
  font-weight: bold;
}


/* Mobile responsiveness */
@media (max-width: 767px) {

  .about-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .about-section .lead {
    font-size: 16px;
  }

  .about-section p {
    font-size: 14px;
    line-height: 1.7;
  }

  .sub-title {
    font-size: 18px;
    margin-top: 20px;
  }

  .about-list li {
    font-size: 14px;
  }

  .about-section .row > div {
    margin-bottom: 20px;
  }

  .about-section .fw-semibold {
    font-size: 15px;
  }
}



/* DESTINATION SECTION */
/* ===============================
   DESTINATION SECTION – PREMIUM
================================ */
/* ===============================
   PREMIUM DESTINATION SECTION
================================ */
/* ===============================
   SECTION – CLEAN WHITE
================================ */
.destinationsection{
  padding:90px 0;
  background:#ffffff;
}

.destinationsection.bg-light{
  background:#ffffff;
}

.destinationsection .section-title{
  font-size:36px;
  font-weight:700;
  color:#111;
}

/* ===============================
   CARD – PREMIUM
================================ */
.destination-card{
  position:relative;
  height:380px;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 20px 45px rgba(0,0,0,0.15);
  transition:transform 0.5s ease, box-shadow 0.5s ease;
}

.destination-card:hover{
  transform:translateY(-8px);
  box-shadow:0 35px 70px rgba(0,0,0,0.22);
}

/* ===============================
   IMAGE
================================ */
.destination-img{
  width:100%;
  height:100%;
}

.destination-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.7s ease;
}

.destination-card:hover img{
  transform:scale(1.1);
}

/* ===============================
   SOFT WHITE OVERLAY (NOT DARK)
================================ */
.destination-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.35) 40%,
    rgba(255,255,255,0.01) 100%
  );
  z-index:1;
}

/* ===============================
   CONTENT INSIDE IMAGE
================================ */
.destination-content{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:28px;
  z-index:2;
  text-align:left;
}

.destination-content h3{
  font-size:24px;
  font-weight:600;
  color:#111;
  margin-bottom:8px;
}

.destination-content p{
  font-size:14px;
  line-height:1.6;
  color:#444;
  max-width:90%;
}

/* ===============================
   SUBTLE HOVER MOVE
================================ */
.destination-card:hover .destination-content{
  transform:translateY(-5px);
  transition:0.5s ease;
}

/* ===============================
   MOBILE
================================ */
@media(max-width:767px){
  .destinationsection{
    padding:60px 0;
  }

  .destinationsection .section-title{
    font-size:26px;
  }

  .destination-card{
    height:300px;
  }

  .destination-content{
    padding:20px;
  }

  .destination-content h3{
    font-size:20px;
  }
}
.trip-section{
  padding:90px 20px;
  background:#ffffff;
}

.trip-section h2{
  text-align:center;
  font-size:38px;
  font-weight:700;
  margin-bottom:12px;
}

.trip-section p.sub{
  text-align:center;
  max-width:720px;
  margin:0 auto 60px;
  font-size:16px;
  color:#555;
}

.trip-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  max-width:1200px;
  margin:auto;
}

.trip-card{
  background:#ffffff;
  border-radius:22px;
  padding:35px 30px;
  text-align:center;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(0,0,0,0.04);
  transition:0.45s ease;
}

.trip-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 65px rgba(0,0,0,0.18);
}

.trip-card i{
  font-size:46px;
  margin-bottom:18px;
}

.trip-card h3{
  font-size:22px;
  font-weight:600;
  margin-bottom:10px;
}

.trip-card p{
  font-size:14px;
  color:#666;
  line-height:1.7;
  margin:0;
}

/* Icon Colors */
.honeymoon i{color:#ff4e7a;}
.adventure i{color:#ff9800;}
.family i{color:#00bcd4;}
.luxury i{color:#b89b2e;}
.culture i{color:#4caf50;}

/* =========================
   OFFER SECTION
========================= */
.offer-section{
  padding:90px 20px;
  background:#f9fafc;
}

.offer-section h2{
  text-align:center;
  font-size:36px;
  font-weight:700;
  margin-bottom:50px;
}

.offer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  max-width:1100px;
  margin:auto;
}

.offer-box{
  background:#ffffff;
  padding:30px 25px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
  transition:0.4s ease;
}

.offer-box:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 55px rgba(0,0,0,0.18);
}

.offer-box i{
  font-size:36px;
  color:#007bff;
  margin-bottom:15px;
}

.offer-box span{
  display:block;
  font-size:16px;
  font-weight:500;
}

/* =========================
   WHY US
========================= */
/* =========================
   WHY US (CARD GRID)
========================= */
.why-us{
  padding:90px 20px;
  background:#ffffff;
}

.why-us h2{
  text-align:center;
  font-size:36px;
  font-weight:700;
  margin-bottom:60px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  max-width:1200px;
  margin:auto;
}

.why-card{
  background:#ffffff;
  border-radius:20px;
  padding:40px 28px;
  text-align:center;
  box-shadow:
    0 15px 35px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(0,0,0,0.05);
  transition:0.45s ease;
}

.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 65px rgba(0,0,0,0.18);
}

.why-card i{
  font-size:42px;
  color:#007bff;
  margin-bottom:18px;
}

.why-card h4{
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
}

.why-card p{
  font-size:14px;
  color:#666;
  line-height:1.7;
  margin:0;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:992px){
  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .why-grid{
    grid-template-columns:1fr;
  }

  .why-us h2{
    font-size:28px;
  }
}



.contact-section{
  padding:90px 20px;
  background:#ffffff;
}

.section-title{
  font-size:38px;
  font-weight:700;
  margin-bottom:10px;
}

.section-sub{
  font-size:16px;
  color:#555;
}

/* INFO CARD */
.contact-info-card{
  background:#fff;
  border-radius:20px;
  padding:40px 30px;
  height:100%;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.info-box{
  display:flex;
  gap:18px;
  margin-bottom:28px;
}

.info-box i{
  font-size:26px;
  color:#FBC308;
}

.info-box h5{
  font-size:18px;
  font-weight:600;
  margin-bottom:4px;
}

.info-box p{
  font-size:14px;
  color:#666;
  margin:0;
}

/* FORM */
.contact-form-card{
  background:#fff;
  border-radius:20px;
  padding:45px 40px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.contact-form-card .form-control{
  border-radius:12px;
  padding:12px 14px;
  font-size:14px;
  border:1px solid #ddd;
}

.contact-form-card .form-control:focus{
  box-shadow:none;
  border-color:#007bff;
}

.contact-btn{
  background:#FBC308;
  color:#fff;
  padding:12px 34px;
  border-radius:30px;
  border:none;
  font-size:15px;
  transition:0.3s;
}

.contact-btn:hover{
  background:#0056b3;
}

/* MAP */
.map-section iframe{
  width:100%;
  height:420px;
  border:0;
}

/* MOBILE */
@media(max-width:768px){
  .section-title{font-size:28px;}
  .contact-form-card,
  .contact-info-card{padding:30px 25px;}
}







/* ===============================
   RESPONSIVE & TOUCH FRIENDLY
   =============================== */

/* Tablet (≤ 991px) */
/* =====================================
   3D ANIMATED PLACES – NEW DESIGN
   ===================================== */

