 :root {
        --red: #b10d12;
        --blue: #005db5;
        --bg: #f6f8fc;
      }

      * {
        font-family: Poppins, sans-serif
      }
      
      .section-title{
    color:#b10d12;
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
}

.tour-description{
    line-height:1.8;
    color:#555;
    font-size:14px;
    margin-top:10px;
}

.tour-description p:last-child{
    margin-bottom:0;
}

      body {
        background: linear-gradient(180deg, #fff, #f6f8fc);
        font-size: 14px
      }

      .glass {
        background: rgba(255, 255, 255, .75);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, .5);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
        border-radius: 24px
      }

      .logo {
        max-height: 80px
      }

      .banner {
        position: relative;
        overflow: hidden;
        border-radius: 28px
      }

      .banner img {
        width: 100%;
        height: 420px;
        object-fit: cover
      }

      .overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 25px;
        background: linear-gradient(transparent, rgba(0, 0, 0, .85));
        color: #fff
      }

      .cardx {
        padding: 22px
      }

      .pkg {
        background: #fff;
        border-radius: 16px;
        padding: 15px;
        margin-bottom: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, .05)
      }

      .counter {
        display: flex;
        align-items: center;
        gap: 8px
      }

      .counter button {
        width: 36px;
        height: 36px;
        border: none;
        border-radius: 50%;
        color: #fff
      }

      .plus {
        background: var(--blue)
      }

      .minus {
        background: var(--red)
      }

      .qty {
        width: 50px;
        text-align: center;
        border: none;
        background: #f3f3f3;
        border-radius: 10px;
        height: 36px
      }

      .summary {
        position: sticky;
        top: 20px
      }

      .book-btn {
        background: linear-gradient(135deg, var(--red), #ef5a29);
        border: none;
        color: #fff;
        border-radius: 50px;
        padding: 14px;
        width: 100%;
        font-weight: 600
      }

      .form-control,
      .form-select {
        border-radius: 14px;
        min-height: 48px
      }

      .footer {
        background: #111;
        color: #fff;
        padding: 30px 0;
        margin-top: 40px
      }

      .mobile-bar {
        display: none
      }

      @media(max-width:768px) {
        .banner img {
          height: 240px
        }

        .overlay h1 {
          font-size: 22px
        }

        .summary {
          position: relative
        }

        .mobile-bar {
          display: flex;
          position: fixed;
          bottom: 0;
          left: 0;
          right: 0;
          background: #fff;
          padding: 10px 15px;
          justify-content: space-between;
          align-items: center;
          box-shadow: 0 -4px 20px rgba(0, 0, 0, .12);
          z-index: 999
        }

        body {
          padding-bottom: 80px
        }
      }
      
      .footer-modern{
    margin-top:60px;
    padding-bottom:30px;
}

.footer-card{

    background:rgba(255,255,255,.7);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:28px;

    padding:30px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}

.footer-logo{
    max-height:60px;
}

.footer-title{
    font-size:18px;
    font-weight:600;
    margin-bottom:5px;
    color:#111;
}

.footer-address{
    color:#666;
    margin:0;
    font-size:13px;
}

.footer-contact{
    color:#555;
    font-size:14px;
    line-height:1.8;
}

.footer-bottom{

    margin-top:25px;
    padding-top:20px;

    border-top:1px solid #ececec;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.policy-links{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.policy-links a{

    text-decoration:none;

    color:#666;

    font-size:13px;

    transition:.3s;
}

.policy-links a:hover{
    color:#b10d12;
}

.copyright{
    font-size:13px;
    color:#888;
}

@media(max-width:768px){

    .footer-card{
        padding:25px 20px;
    }

    .footer-bottom{

        flex-direction:column;

        gap:12px;

        text-align:center;
    }

    .policy-links{
        justify-content:center;
    }
}

.brochure-btn{
    width:100%;
    padding:10px 15px;
    border:none;
    border-radius:12px;
    font-weight:400;
    font-size:12px;
    cursor:pointer;
    transition:.3s;
    background:#fff;
    color:#0d6efd;
    border:2px solid #0d6efd;
    margin-top:10px;
}

.brochure-btn:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-2px);
}