body {
            background-color: #f6f5f1;
            font-family: "Inter", sans-serif;
            overflow-x: hidden;
        }

        a{
          text-decoration: none;
        }

        .black-color{
          color: #2a2626;
        }

        .orange-color{
          color: #f76725;
        }

        /* Navbar */
        .navbar {
            background: #ffffff;
            padding: 10px 15px;
            border-radius: 18px;
        }

        .navbar-brand .logo {
            width: 60%;
        }
        .badge-modern {
          background: white;
          border-radius: 40px;
          padding: 0.5rem 1.2rem;
          font-weight: 500;
          box-shadow: 0 2px 8px rgba(0, 20, 30, 0.04);
          border: 1px solid rgba(0, 0, 0, 0.02);
        }

        .contact-btn {
            background: #4e4eff;
            color: #fff;
            border-radius: 8px;
            padding: 8px 15px;
            font-size: 14px;
        }

        /* Hero Section */
        .hero {
            background: url('../images/hero-bg.png') no-repeat center center/cover;
            border-radius: 20px;
            padding: 120px 20px;
            color: #fff;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            /*background: url(https://img.freepik.com/free-photo/stunning-scenery-stony-rifugio-lavaredo-cadini-di-misurina-area_181624-31045.jpg?t=st=1771075400~exp=1771079000~hmac=6d8e1882033baa94195c181da7d39a56cb39d388f607c9e237d15bf5c009d878&w=1480);*/
            border-radius: 20px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-weight: 700;
            font-size: 48px;
            margin-bottom: 25px;
        }

        .search-box {
            max-width: 500px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
        }

        .search-box input {
            border-radius: 50px 0 0 50px;
            padding: 12px 20px;
            border: none;
        }

        .search-box button {
            border-radius: 0 50px 50px 0;
            background: #4e4eff;
            border: none;
            padding: 0 20px;
        }

        /* Property Cards */
        .property-card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.property-card img {
    height: 120px;
    object-fit: cover;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.owl-nav button {
        background: #f76725 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px !important;
}

.owl-nav .owl-prev{
      position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.owl-nav .owl-next{
      position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}
        .section-spacing {
            margin-top: 60px;
        }

        .form-card-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    box-shadow: 0 35px 60px -30px rgba(10, 38, 71, 0.2);
}
.input-modern {
    background-color: #f1f6f9;
    border: none;
    border-radius: 60px !important;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    transition: 0.15s;
}

.chip-pax {
    background: white;
    border: 1px solid #e2eaf0;
    color: #0a2647;
    border-radius: 60px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: 0.1s;
    cursor: default;
}

.btn-modern {
    background-color: #f76725;
    color: white;
    border-radius: 60px;
    padding: 0.9rem 2rem;
    font-weight: 600;
    border: none;
    transition: all 0.2s;
}
.country-code {
    border-radius: 12px 0 0 12px !important;
}

.input-group .form-control {
    border-radius: 0 12px 12px 0 !important;
}

/* Chip Style */
.chip-pax {
  font-size: 14px;
    padding: 8px 18px;
    border-radius: 30px;
    background: #f3f4f6;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

/* Hover */
.chip-pax:hover {
    background: #ffeee0;
}

/* Selected state */
.btn-check:checked + .chip-pax {
    background: #f76725;
    color: #fff;
    border-color: #e9672b;
}

.destination-list span {
  position: relative;
  padding: 0 12px;
  font-weight: 500;
  cursor: pointer;
}

.destination-list span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -4px;
  color: #bbb;
}
.cta-section {
    background: url(https://img.freepik.com/premium-photo/outdoor-adventure-man-traveler-top-island-joy-fun-beautiful-nature-scenic-landscape-vacation-beach-koh-nang-yuan-attraction-landmark-tourist-travel-thailand-summer-holiday-tourism-destination-asia_916189-9155.jpg?w=1480) center center / cover no-repeat;
    /* min-height: 500px; */
    position: relative;
    padding: 70px 0;
    border-radius: 20px;
    overflow: hidden;
}

/* Dark Overlay */
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75); /* Adjust darkness here */
}

/* Keep content above overlay */
.cta-section .container {
    position: relative;
    z-index: 2;
}

/* Button styling */
.cta-btn {
    border: 2px solid #ffffff;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background-color: #00e676;
    border-color: #00e676;
    color: #000;
}

/* Responsive text sizing */
.cta-section h1 {
    font-size: 40px;
}

.cta-section .lead{
    padding-inline: 130px;
}
.footer-dark {
    /*background: #fff;*/
    /*border-radius: 20px;
    margin-top: 60px;*/
    /*padding-inline: 30px;*/
    /*box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;*/
    font-weight: 500;
}

.footer-links a {
    color: #ccc;
    margin-right: 15px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-cities {
    color: #aaa;
    line-height: 1.8;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: #ff7a00;
}

.footer-middle {
        background: #fafafa;
    border-radius: 10px;
    border: 1px solid #ededed;
    padding-inline: 15px;
    padding-block: 10px;
}

.support-box {
    background: #2b2b2b;
    padding: 10px 20px;
    border-radius: 12px;
}

.support-icon {
    background: #f4e2c7;
    color: #ff7a00;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-logo{
  width: 110px;
  margin-bottom: 12px;
}

.nav-contact a i{
      margin-right: 5px !important;
    }

@media (max-width: 768px) {
    .cta-section h1 {
        font-size: 28px;
    }
    .nav-contact span{
      display: none;
    }

    .nav-contact a {
      background: #ffede5;
      padding-inline: 12px;
      padding-block: 8px;
      border-radius: 10px;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    }
    .nav-contact a i{
      margin-right: 0px !important;
    }

    .owl-nav{
      display: none;
    }

    .cta-section .lead{
    padding-inline: 0px;
}

}