/* footer quick links (moved from inline style attributes) */
.ft-link {
    color: rgb(136, 136, 136);
    text-decoration: auto;
}

/* ==================================================================
   Custom.css - enquiry-modal & customised-tour form styles
   Moved out of Default.aspx so the page keeps no inline CSS.
   ================================================================== */
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}

          .form-control {
              display: block;
              width: 100%;
              height: calc(1.5em + .75rem + 2px);
              padding: .375rem .75rem;
              font-size: 1rem;
              font-weight: 400;
              line-height: 1.5;
              color: #495057;
              background-color: #fff;
              background-clip: padding-box;
              border: 1px solid #ced4da;
              border-radius: .25rem;
              transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
          }


          /* Legacy toolbar buttons - scoped so the premium enquiry modal
             (#exampleModal .ne-modal__close) keeps its own look. */
          .modal-header button:not(.ne-modal__close) {
                  border-radius: 50%;
                    border: 2px solid #6dabec;
                    background: #2c6caf;
                    color: #fff;
                    width: 34px;
                    height: 34px;
                    font-size: 18px;
                    opacity: 1;
                    top: -5px;
                    left: 0px;
                    position: relative;
                    padding: 0px 0px;

            }



          .close {
                float: right;
                font-size: 1.5rem;
                font-weight: 700;
                line-height: 1;
                color: #000;
                text-shadow: 0 1px 0 #fff;
                opacity: .5;
            }

          label {
                    margin-top: 13px !important;
                        font-size: 11px;
                        font-weight: 700;
                        float:left;
            }

          .qury-pnl-form-btn2 {
                text-align: center;
                margin-top: 0px;
            }

          .btx{
                  border: medium none;
                    cursor: pointer;
                    background: #0b6cb4;
                    color: #fff;
                    float: left;
                    border-radius: 3px;
                    border: none;
                    font-size: 16px;
                    text-transform: uppercase;
                    text-align: center;
                    text-decoration: none;
                    font-weight: 600;
                    outline: 0 none;
                    padding: 12px 10px;
                    font-style: normal;
                    width: 100%;
                    top: 0;
                    position: relative;
          }

/* ==================================================================
   Premium services strip (Default.aspx .dp-svcwrap)
   Circular gradient icon badges, brand-blue hover lift, animated
   accent underline, label + short subtitle per tile.
   ================================================================== */
.dp-svcwrap {
    padding: 2.4rem 0 2.6rem;
    background: linear-gradient(180deg, #f4f9fd 0%, #eef6fb 60%, #fbfdff 100%);
}

.dp-svc {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    width: 100%;
    height: 100%;
    padding: 1.7rem .9rem 1.5rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 110, 185, .12);
    border-radius: 16px;
    box-shadow: 0 14px 30px -26px rgba(3, 41, 70, .9);
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

/* animated accent underline revealed on hover */
.dp-svc::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #0b6cb4, #8cc63f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.dp-svc:hover,
.dp-svc:focus-within {
    transform: translateY(-6px);
    border-color: rgba(0, 110, 185, .35);
    box-shadow: 0 26px 44px -26px rgba(3, 41, 70, .8);
}

.dp-svc:hover::before,
.dp-svc:focus-within::before {
    transform: scaleX(1);
}

.dp-svc__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #eaf5fd, #d5edf8);
    box-shadow: inset 0 0 0 1px rgba(0, 110, 185, .16);
    transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.dp-svc__icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: transform .35s ease;
}

.dp-svc:hover .dp-svc__icon,
.dp-svc:focus-within .dp-svc__icon {
    background: radial-gradient(circle at 30% 25%, #dff0fc, #bce4f6);
    transform: scale(1.08);
    box-shadow: inset 0 0 0 1px rgba(0, 110, 185, .3), 0 12px 22px -14px rgba(0, 110, 185, .85);
}

.dp-svc:hover .dp-svc__icon img {
    transform: scale(1.1);
}

.dp-svc__label {
    font-family: 'Work Sans', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: #053b63;
    letter-spacing: .01em;
}

.dp-svc__sub {
    font-family: 'Work Sans', sans-serif;
    font-size: .76rem;
    font-weight: 500;
    color: #5b7c93;
    letter-spacing: .02em;
}

@media (max-width: 575.98px) {
    .dp-svcwrap {
        padding: 1.6rem 0 1.8rem;
    }

    .dp-svc {
        padding: 1.2rem .5rem 1.1rem;
        border-radius: 14px;
    }

    .dp-svc__icon {
        width: 60px;
        height: 60px;
    }

    .dp-svc__icon img {
        width: 30px;
        height: 30px;
    }

    .dp-svc__label {
        font-size: .84rem;
    }

    .dp-svc__sub {
        display: none; /* keeps the two-per-row phone tiles tidy */
    }
}

@media (prefers-reduced-motion: reduce) {
    .dp-svc,
    .dp-svc::before,
    .dp-svc__icon,
    .dp-svc__icon img {
        transition: none;
    }

    .dp-svc:hover,
    .dp-svc:focus-within {
        transform: none;
    }

    .dp-svc:hover .dp-svc__icon,
    .dp-svc:focus-within .dp-svc__icon {
        transform: none;
    }

    .dp-svc:hover .dp-svc__icon img {
        transform: none;
    }
}
