/********** Template CSS **********/
:root {
    --primary: #86B817;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
    --green: #035346;
    --green-dark: #1f5246;
    --green-light: #e8f0ee;
    --white: #ffffff;
    --text: #222222;
    --text-light: #444444;
    --border: #c8d8d4;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 16px;
    bottom: 16px;
    z-index: 99;
}

 body {
      font-family: 'Lato', sans-serif;
      background: #f4f4f2;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      min-height: 100vh;
      padding: 0px 16px;
      gap: 24px;
      flex-wrap: wrap;
    }

    /* ── TOUR CARD ── */
    .tour-card {
      background: var(--white);
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    }

    /* ── HEADER ── */
    .tour-card__header {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .tour-card__title-block {
      background: var(--green);
      padding: 14px 18px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 2px;
    }

    .tour-card__city {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: clamp(2rem, 7vw, 2.6rem);
      color: var(--white);
      letter-spacing: -0.5px;
      line-height: 1;
      text-transform: uppercase;
      text-align: center;
    }

    .tour-card__subtitle {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: clamp(0.6rem, 2.5vw, 0.72rem);
      color: rgba(255,255,255,0.88);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-top: 4px;
      text-align: center;
    }

    /* right-side: one tall image */
    .tour-card__img-side {
      overflow: hidden;
      min-height: 160px;
    }

    .tour-card__img-side img {
      width: 100%;
      height: 100%;
      max-width: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── HERO IMAGE ── */
    .tour-card__hero {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .tour-card__hero img {
      width: 100%;
      height: 100%;
      max-width: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── BODY ── */
    .tour-card__body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    

    /* LEFT: about */
    .tour-card__about {
      padding: 20px 16px 16px;
      background-color: #035346;
    }

    .tag {
      display: inline-block;
      background-color: var(--green);
      border: 1.5px solid var(--green);
      color: white;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 3px 8px;
      margin-bottom: 10px;
    }

    .tagabout{
        display: inline-block;
        background-color: white;
        border: 1.5px solid white;
        color: var(--green);
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 3px 8px;
        margin-bottom: 10px;       
    }

    .tour-card__about p {
      font-size: 0.78rem;
      line-height: 1.65;
      color: var(--text-light);
      text-align: justify;
    }

    .tour-card__contact {
      margin-top: 14px;
      padding-top: 10px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .tour-card__contact .label {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      white-space: nowrap;
    }

    .tour-card__contact a {
      font-size: 0.72rem;
      color: var(--text-light);
      text-decoration: none;
      word-break: break-all;
    }

    .tour-card__contact a:hover { text-decoration: underline; }

    /* RIGHT: details */
    .tour-card__details {
      padding: 20px 16px 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .detail-group {}

    .detail-group .tag { margin-bottom: 6px; }

    .detail-group .value {
      font-size: 0.88rem;
      color: var(--text);
      font-weight: 400;
    }

    .tour-card__cta {
      margin-top: auto;
      padding-top: 10px;
      text-align: center;
    }

    .tour-card__cta p {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: clamp(1rem, 3.5vw, 1.15rem);
      color: var(--green);
      text-transform: uppercase;
      line-height: 1.2;
    }

    /* ── DESKTOP SCALING ── */
    @media (min-width: 768px) {
      .tour-card__img-side {
        height: 380px;
      }

      .tour-card__hero {
        height: clamp(180px, 16vw, 280px);
      }

      .tour-card__about,
      .tour-card__details {
        padding: clamp(20px, 3vw, 48px) clamp(16px, 3vw, 48px);
      }

      .tour-card__title-block {
        padding: 14px 18px;
        justify-content: center;
      }

      .tour-card__city {
        font-size: clamp(2.6rem, 6vw, 5.5rem);
      }

      .tour-card__subtitle {
        font-size: clamp(0.72rem, 1.2vw, 1.1rem);
        margin-top: 8px;
      }

      .tour-card__about p {
        font-size: clamp(0.78rem, 1.1vw, 1rem);
      }

      .tour-card__contact a {
        font-size: clamp(0.72rem, 1vw, 0.95rem);
      }

      .tag {
        font-size: clamp(0.62rem, 0.9vw, 0.8rem);
        padding: 4px 10px;
        margin-bottom: 10px;
      }

      .tagabout {
        font-size: clamp(0.62rem, 0.9vw, 0.8rem);
        padding: 4px 10px;
        margin-bottom: 10px;
      }

      .detail-group .value {
        font-size: clamp(0.88rem, 1.3vw, 1.15rem);
      }

      .tour-card__cta p {
        font-size: clamp(1.1rem, 2.5vw, 2rem);
      }
    }

    @media (max-width: 991.98px) {
    #about-section {
        margin-top: -20px;
        }
    }

    @media (min-width: 992px) {
        #about-section {
            margin-top: 100px;
            }
        }

    @media (max-width: 991.98px) {
        .sticky-top.navbar-light {
            padding-left: 1.5rem !important;
            padding-right: 1.5rem !important;
        }
    }
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
    background-color: var(--green);
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    border: #035346;
}

.btn-primary:hover{
    background-color: lightseagreen;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: white !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: white;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color:lightseagreen !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: fixed;
        top:0;
        width: 100vw;
        left: 0;
        background: var(--green);
        z-index:999;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: white;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}