:root {
    --white: #FFFFFF;
    --primary-blue: #e3005c;
    --primary-dark-blue: #e3005c;
    --light-blue: #e3005c;
    --x-light-blue: #e3005c;
    --first-light-blue: #ECF5FF;
    --orange: #e3005c;
    --dark-orange: #e3005c;
    --light-gray: #F5F5F5;
    --gray-bg: #ECF1F7;
    --text-color: #000000;
    --light-text: #4F545A;
    --secondry-text-color: #232B39;
    --heading-color: #081E2A;
    --mobile-header-dark-bg: #243762;
    --mobile-header-light-bg: #3B5183;
    --mega-menu-color: #243762;
    --yellow: #ffb90b;
    --whatsapp: #038033;
    --primary-font: "Plus Jakarta Sans", serif;
    --yellowtail-font: "Yellowtail", serif
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: var(--primary-font);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6rem;
    font-size: 16px;
    color: #222
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s
}

p {
    font-size: 16px;
    line-height: 1.6rem;
    color: #222;
    text-align: justify
}

p a {
    color: var(--orange);
    text-decoration: underline
}

p a:hover {
    color: var(--primary-blue)
}

h1, .heading1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--heading-color);
}

h2, .heading2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--heading-color);
}

h3, .heading3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--heading-color);
}

h4, .heading4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--heading-color);
}

h5, .heading5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--heading-color);
}

h6, .heading6 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--heading-color);
}

@media (max-width: 767px) {
    h1, .heading1 { font-size: 28px; }
    h2, .heading2 { font-size: 24px; }
    h3, .heading3 { font-size: 22px; }
    h4, .heading4 { font-size: 18px; }
    h5, .heading5 { font-size: 16px; }
    h6, .heading6 { font-size: 14px; }
}

.pre-heading {
    font-family: var(--yellowtail-font);
    font-size: 22px;
    font-weight: 400;
    color: var(--orange)
}

.common-heading,
.common-heading-blue {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .common-heading, .common-heading-blue { font-size: 24px; }
}

.common-heading-blue span,
.heading1 .blue-text {
    color: var(--x-light-blue)
}

.para_text {
    text-align: justify;
    font-size: 15px;
    font-weight: 400;
    color: #223744;
    line-height: 1.8
}

.book-btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    background: var(--orange);
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    min-width: 120px;
    text-align: center
}

.book-btn:hover {
    background-color: var(--heading-color);
    color: white
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #25d366 0, #128c7e 100%);
    color: #fff;
    font-weight: 600;
    transition: transform .3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1)
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
    color: white
}

.btn-primary {
    background-color: var(--light-blue);
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    color: white
}

.btn-primary:hover {
    background-color: var(--primary-blue)
}

.booknow-btn,
.callus-btn,
.getdetail-btn {
    display: block;
    padding: 10px;
    width: 100%;
    max-width: 180px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: white;
    margin-bottom: 10px;
    transition: .3s
}

.booknow-btn {
    background: linear-gradient(135deg, #4caf50 0, #009688 100%)
}

.booknow-btn:hover {
    background: linear-gradient(135deg, #017569 0, #3d9f40 100%)
}

.callus-btn {
    background: linear-gradient(135deg, #ff9800 0, #ff5722 100%)
}

.callus-btn:hover {
    background: linear-gradient(135deg, #cf451a 0, #d48f10 100%)
}

.getdetail-btn {
    background: linear-gradient(135deg, #03a9f4 0, #673ab7 100%)
}

.getdetail-btn:hover {
    background: linear-gradient(135deg, #4d2b89 0, #0286c4 100%)
}

.breadcrumb-sec,
.common-breadcrumb-sec {
    padding: 10px 0;
    border-bottom: 1px solid #ecf1f7
}

.breadcrumb-content .breadcrumb-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondry-text-color)
}

.breadcrumb .breadcrumb-item a {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondry-text-color)
}

.breadcrumb .breadcrumb-item a:hover {
    color: var(--orange)
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--dark-orange);
    margin: 0 8px;
    display: inline-block
}

.faqs-section .accordion {
    gap: 12px;
    display: flex;
    flex-direction: column
}
.faqs-section .faq-heading{
    font-size: 28px;
    font-weight: 700;
    color: var(--secondry-text-color);
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .faqs-section .faq-heading { font-size: 24px; }
}

.faqs-section .accordion-item {
    border: none;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}

.faqs-section .accordion-button {
    background-color: var(--white) !important;
    padding: 18px;
    color: var(--text-color) !important;
    font-size: 16px;
    font-weight: 600;
    border: none;
    box-shadow: none
}

.faqs-section .accordion-button:not(.collapsed) {
    color: var(--light-blue) !important
}

.faqs-section .accordion-body {
    padding: 0 20px 20px;
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.6
}

.bg-gray {
    background-color: var(--light-gray)
}

.section-padding {
    padding: 60px 0
}

#whatsappa a:hover {
    color: #fff
}

.btn-whatsapp-pulse,
.btn-whatsapp-pulse i,
.btn-whatsapp-pulse-border::before {
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite
}

.btn-whatsapp-pulse {
    position: fixed;
    z-index: 99;
    color: #fff;
    background: #25d366;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    animation-name: pulse;
    text-decoration: none;
    border-radius: 50%
}

.btn-call-pulse {
    position: fixed;
    z-index: 99;
    color: #fff;
    background: var(--primary-blue);
    bottom: 90px;
    left: 20px;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    animation-name: pulse;
    text-decoration: none;
    border-radius: 50%
}

.btn-whatsapp-pulse-border,
.btn-call-pulse-border {
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite
}

.btn-whatsapp-pulse-border::before,
.btn-call-pulse-border::before {
    content: "";
    position: absolute;
    border: 5px solid #25d366;
    opacity: .75;
    animation-name: pulse-border;
    border-radius: 50%;
    width: 100%;
    height: 100%
}

.btn-call-pulse-border::before {
    border-color: var(--primary-blue)
}

.btn-whatsapp-pulse i,
.btn-call-pulse i {
    animation-name: icon_vibrate;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite
}

@keyframes icon_vibrate {

    0%,
    100%,
    50% {
        transform: rotate(0)
    }

    25% {
        transform: rotate(30deg)
    }

    75% {
        transform: rotate(-30deg)
    }
}

@media (max-width:991px) {

    .btn-whatsapp-pulse,
    .btn-call-pulse {
        width: 50px;
        height: 50px;
        right: auto;
        left: 20px
    }

    .btn-whatsapp-pulse {
        bottom: 80px;
        font-size: 30px
    }

    .btn-call-pulse {
        bottom: 150px;
        font-size: 25px
    }
}

@media (max-width:767px) {

    .btn-whatsapp-pulse,
    .btn-call-pulse {
        width: 50px;
        height: 50px;
        right: auto;
        left: 20px
    }

    .btn-whatsapp-pulse {
        bottom: 80px;
        font-size: 30px
    }

    .btn-call-pulse {
        bottom: 150px;
        font-size: 25px
    }
}

@media (max-width:576px) {

    .btn-whatsapp-pulse,
    .btn-call-pulse {
        width: 50px;
        height: 50px;
        right: auto;
        left: 20px
    }

    .btn-whatsapp-pulse {
        bottom: 80px;
        font-size: 30px
    }

    .btn-call-pulse {
        bottom: 150px;
        font-size: 25px
    }
}

.thankyou-sec {
    background-color: var(--light-gray);
    min-height: 70vh;
    display: flex;
    align-items: center
}

.thankyou-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

.thankyou-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px
}

.ty-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    border: none;
    font-size: 15px;
    min-width: 190px;
    color: white !important
}

.ty-btn-home {
    background: linear-gradient(135deg, var(--primary-blue) 0, var(--light-blue) 100%)
}

.ty-btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 78, 158, .3)
}

.ty-btn-call {
    background: #764ba2
}

.ty-btn-call:hover {
    background: #5a3785;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, .3)
}

.ty-btn-whatsapp {
    background: var(--whatsapp)
}

.ty-btn-whatsapp:hover {
    background: #026b2b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 128, 51, .3)
}

.ty-btn span.arrow-box {
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px
}

#enquiryModal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .2)
}

#enquiryModal .modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0, var(--light-blue) 100%);
    color: var(--white);
    border-bottom: none;
    padding: 25px 30px
}

#enquiryModal .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: .5px
}

#enquiryModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: .8;
    transition: .3s
}

#enquiryModal .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg)
}

#enquiryModal .modal-body {
    padding: 40px;
    background-color: #fff
}

#enquiryModal .btn-submit-modal {
    background: linear-gradient(135deg, var(--primary-blue) 0, var(--light-blue) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s;
    width: 100%;
    margin-top: 10px
}

#enquiryModal .btn-submit-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 78, 158, .3)
}

#contact-page-wrapper .contact-box {
    border-radius: 24px;
    background: #fff;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .03)
}

#contact-page-wrapper .contact-main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 15px
}

#contact-page-wrapper .contact-main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--light-blue);
    border-radius: 2px
}

#contact-page-wrapper .info-box {
    background: linear-gradient(135deg, #1a1a1a 0, #2b2b2b 100%);
    color: #fff;
    border-radius: 24px;
    padding: 40px;
    height: 100%
}

#contact-page-wrapper .contact-right-heading {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px
}

#contact-page-wrapper .info-card {
    background: rgba(255, 255, 255, .05);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: .3s
}

#contact-page-wrapper .info-card:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateX(10px)
}

#contact-page-wrapper .info-icon {
    font-size: 28px;
    margin-right: 20px;
    min-width: 45px;
    height: 45px;
    background: rgba(0, 163, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px
}

#contact-page-wrapper .form-control,
#contact-page-wrapper .form-select {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 12px 20px;
    transition: .3s
}

#contact-page-wrapper .btn-main {
    background: linear-gradient(135deg, var(--primary-blue) 0, var(--light-blue) 100%);
    color: #fff;
    height: 60px;
    border-radius: 12px;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    border: none;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center
}

#contact-page-wrapper .btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 78, 158, .3)
}

.single-icon {
    width: 36px;
    height: 36px;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.single-icon:hover {
    background-color: orange;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 166, 0, 0.3)
}

.single-icon i {
    font-size: 18px
}

.enquiry-form-section {
    background: transparent;
    padding-bottom: 50px
}

.enquiry-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: -60px;
    z-index: 10
}

.contact-info-card {
    background: #4e5cc5;
    color: white;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center
}

.call-now-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px
}

.phone-box {
    display: flex;
    align-items: center;
    gap: 15px
}

.phone-icon-bg {
    background: #ffb90b;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px
}

.phone-icon-bg i {
    color: #000;
    font-size: 20px
}

.phone-number {
    color: white;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s
}

.phone-number:hover {
    color: #ffb90b
}

.quick-enquiry-card {
    padding: 30px;
    background: #2068b0
}

.enquiry-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.enquiry-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.input-group-custom {
    position: relative
}

.input-icon i {
    transition: transform 0.3s ease
}

.input-icon i.rotate {
    transform: rotate(180deg)
}

.input-group-custom input,
.input-group-custom select {
    width: 100%;
    height: 50px;
    background: #f1f3f7;
    border: none;
    border-radius: 8px;
    padding: 10px 45px 10px 15px;
    font-size: 14px;
    color: #444;
    transition: .3s
}

.input-group-custom select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer
}

.input-group-custom input:focus,
.input-group-custom select:focus {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(78, 92, 197, 0.2);
    outline: none
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button,
input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-clear-button {
    display: none;
    -webkit-appearance: none
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4e5cc5;
    font-size: 16px
}

.button-group {
    margin-top: 20px;
    text-align: center
}

.submit-btn-custom {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    display: block;
    height: 50px;
    background: #ffc107;
    color: #000;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: .3s
}

.submit-btn-custom:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3)
}

@media (max-width:991px) {
    .enquiry-form-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-info-card {
        padding: 30px
    }

    .enquiry-container {
        margin-top: -40px
    }
}

@media (max-width:767px) {
    .contact-info-card {
        padding: 20px
    }

    .contact-info-card .call-now-title {
        font-size: 16px;
        margin-bottom: 0
    }

    .contact-info-card .phone-number {
        font-size: 18px
    }

    .phone-icon-bg {
        width: 36px;
        height: 36px
    }

    .phone-icon-bg i {
        font-size: 16px
    }

    .quick-enquiry-card {
        padding: 20px
    }

    .quick-enquiry-card .enquiry-title {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center
    }

    .quick-enquiry-card p {
        font-size: 14px
    }

    .quick-enquiry-card .form-control {
        font-size: 14px
    }

    .quick-enquiry-card .submit-btn-custom {
        font-size: 14px
    }
}

@media (max-width:576px) {
    .enquiry-form-grid {
        grid-template-columns: 1fr
    }

    .enquiry-container {
        border-radius: 15px;
        margin-top: 20px
    }

    .contact-info-card {
        padding: 40px 20px
    }

    .contact-info-card .call-now-title {
        font-size: 16px;
        margin-bottom: 0
    }

    .contact-info-card .phone-number {
        font-size: 18px
    }

    .phone-icon-bg {
        width: 36px;
        height: 36px
    }

    .phone-icon-bg i {
        font-size: 16px
    }

    .enquiry-form-section {
        padding-bottom: 30px
    }
}

@media (max-width:575px) {
    .quick-enquiry-card {
        padding: 20px
    }

    .contact-info-card {
        padding: 20px
    }

    .contact-info-card .call-now-title {
        font-size: 16px;
        margin-bottom: 0
    }

    .contact-info-card .phone-number {
        font-size: 18px
    }

    .phone-icon-bg {
        width: 36px;
        height: 36px
    }

    .phone-icon-bg i {
        font-size: 16px
    }

    .quick-enquiry-card .enquiry-title {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center
    }

    .quick-enquiry-card p {
        font-size: 14px
    }

    .quick-enquiry-card .form-control {
        font-size: 14px
    }

    .quick-enquiry-card .submit-btn-custom {
        font-size: 14px
    }
}

@media (max-width:480px) {
    .quick-enquiry-card {
        padding: 20px
    }

    .contact-info-card {
        padding: 20px
    }

    .contact-info-card .call-now-title {
        font-size: 16px;
        margin-bottom: 0
    }

    .contact-info-card .phone-number {
        font-size: 18px
    }

    .phone-icon-bg {
        width: 36px;
        height: 36px
    }

    .phone-icon-bg i {
        font-size: 16px
    }

    .quick-enquiry-card .enquiry-title {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center
    }

    .quick-enquiry-card p {
        font-size: 14px
    }

    .quick-enquiry-card .form-control {
        font-size: 14px
    }

    .quick-enquiry-card .submit-btn-custom {
        font-size: 14px
    }
}

.about-section {
    background-color: #f2f5f9;
    z-index: 1
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.2
}

.about-desc {
    line-height: 1.8;
    font-size: 16px
}

.staggered-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-right: 40px
}

.staggered-images .img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden
}

.staggered-images .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.staggered-images .img-box:hover img {
    transform: scale(1.05)
}

.staggered-images .top-left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    z-index: 3
}

.staggered-images .center-right {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    margin-left: -40px;
    z-index: 2
}

.staggered-images .bottom-left {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
    margin-top: -60px;
    z-index: 4
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(246, 157, 45, 0.1);
    color: #f69d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    flex-shrink: 0
}

.feature-icon.success {
    background: rgba(43, 193, 85, 0.1);
    color: #2bc155
}

.feature-icon.primary {
    background: rgba(36, 55, 98, 0.1);
    color: #243762
}

.feature-icon.danger {
    background: rgba(255, 71, 71, 0.1);
    color: #ff4747
}

.feature-label {
    font-size: 18px;
    font-weight: 700;
    color: #243762
}

.feature-subtext {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4
}

.btn-discover-more {
    background-color: #f69d2d;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none
}

.btn-discover-more:hover {
    background-color: #243762;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1)
}

@media (max-width:991px) {
    .about-title {
        font-size: 32px
    }

    .staggered-images {
        margin-bottom: 40px;
        padding-right: 0
    }
}

@media (max-width:576px) {
    .staggered-images {
        grid-template-columns: 1fr
    }

    .staggered-images .center-right,
    .staggered-images .bottom-left {
        margin-left: 0;
        margin-top: 0
    }
}

.latest-services {
    background-color: #243762;
    padding: 80px 0
}

.section-title {
    font-size: 36px;
    font-weight: 800
}

.service-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
}

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2)
}

.service-img-wrap {
    height: auto;
    overflow: hidden
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.service-card-modern:hover .service-img-wrap img {
    transform: scale(1.1)
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px
}

.service-card-text {
    font-size: 15px;
    line-height: 1.6
}

.section-title-dark {
    font-size: 28px;
    font-weight: 800;
    color: var(--heading-color);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .section-title-dark { font-size: 24px; }
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.choose-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05)
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05)
}

.choose-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.3s ease
}

.choose-card.c1 {
    background-color: rgba(36, 55, 98, 0.03)
}

.choose-card.c1 .choose-icon {
    background-color: rgba(36, 55, 98, 0.1);
    color: #243762
}

.choose-card.c2 {
    background-color: rgba(43, 193, 85, 0.03)
}

.choose-card.c2 .choose-icon {
    background-color: rgba(43, 193, 85, 0.1);
    color: #2bc155
}

.choose-card.c3 {
    background-color: rgba(246, 157, 45, 0.03)
}

.choose-card.c3 .choose-icon {
    background-color: rgba(246, 157, 45, 0.1);
    color: #f69d2d
}

.choose-card.c4 {
    background-color: rgba(255, 71, 71, 0.03)
}

.choose-card.c4 .choose-icon {
    background-color: rgba(255, 71, 71, 0.1);
    color: #ff4747
}

.choose-card.c5 {
    background-color: rgba(102, 126, 234, 0.03)
}

.choose-card.c5 .choose-icon {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea
}

.choose-card.c6 {
    background-color: rgba(118, 75, 162, 0.03)
}

.choose-card.c6 .choose-icon {
    background-color: rgba(118, 75, 162, 0.1);
    color: #764ba2
}

.choose-card.c7 {
    background-color: rgba(255, 117, 140, 0.03)
}

.choose-card.c7 .choose-icon {
    background-color: rgba(255, 117, 140, 0.1);
    color: #ff758c
}

.choose-card.c8 {
    background-color: rgba(0, 198, 255, 0.03)
}

.choose-card.c8 .choose-icon {
    background-color: rgba(0, 198, 255, 0.1);
    color: #00c6ff
}

.choose-card.c9 {
    background-color: rgba(0, 114, 255, 0.03)
}

.choose-card.c9 .choose-icon {
    background-color: rgba(0, 114, 255, 0.1);
    color: #0072ff
}

.choose-card:hover .choose-icon {
    transform: scale(1.1) rotate(10deg)
}

.choose-title {
    font-size: 18px;
    font-weight: 700;
    color: #243762;
    margin-bottom: 12px
}

.choose-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0
}

.bg-light-blue {
    background-color: #f0f7ff
}

.testimonial-card {
    border: none;
    z-index: 2
}

.quote-icon-top {
    font-size: 40px;
    color: #f69d2d;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444
}

.customer-name {
    font-size: 18px;
    font-weight: 800;
    color: #243762
}

.customer-role {
    font-size: 14px;
    font-weight: 600
}

.circular-bus-wrap {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    padding: 20px
}

.circular-bus-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #243762;
    border-radius: 50%;
    z-index: 0
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 10px solid #fff;
    position: relative;
    z-index: 1
}

.quote-floating-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    background: #f69d2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(246, 157, 45, 0.3)
}

@media (max-width:1200px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .circular-bus-wrap {
        width: 320px;
        height: 320px
    }
}

@media (max-width:991px) {
    .latest-services {
        padding: 60px 0
    }

    .section-title,
    .section-title-dark {
        font-size: 28px
    }
}

@media (max-width:768px) {
    .why-choose-grid {
        grid-template-columns: 1fr
    }

    .testimonial-visual {
        margin-top: 50px
    }

    .circular-bus-wrap {
        width: 280px;
        height: 280px
    }
}

.pricing-section {
    background: #fff
}

.custom-pricing-table {
    border-collapse: separate;
    border-spacing: 0
}

.custom-pricing-table thead th {
    background-color: #e3005c;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none
}

.custom-pricing-table tbody td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle
}

.table-active-row {
    background-color: rgba(246, 157, 45, 0.05)
}

.btn-book {
    background-color: var(--dark-orange);
    color: #fff;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease
}

.btn-book:hover {
    background-color: #243762;
    color: #fff;
    transform: scale(1.05)
}

.pricing-table-wrapper {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05)
}

.table-hover tbody tr:hover {
    background-color: rgba(36, 55, 98, 0.02)
}

@media (max-width:768px) {
    .custom-pricing-table {
        min-width: 700px
    }
}

.recommendations-section {
    background-color: #fff
}

.recommendation-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 2.5rem
}

.recommendation-subtitle {
    font-size: 1.1rem;
    max-width: 500px
}

.btn-explore-more {
    background-color: #FF477E;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease
}

.btn-explore-more:hover {
    background-color: #243762;
    color: #fff;
    transform: translateY(-3px)
}

.rec-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff
}

.rec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important
}

.rec-img-wrap {
    height: 250px;
    overflow: hidden
}

.rec-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.rec-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a
}

.rec-rating {
    font-weight: 600;
    color: #1a1a1a
}

.rec-description {
    line-height: 1.6
}

.rec-price {
    font-size: 1.3rem;
    color: #1a1a1a
}

.btn-rec-book {
    background-color: #FF477E;
    color: #fff;
    padding: 8px 25px;
    font-weight: 600;
    font-size: 0.95rem
}

.btn-rec-book:hover {
    background-color: #243762;
    color: #fff
}

.tempo-traveller-section {
    background-color: #f8f9fa
}

.tempo-card {
    border: none;
    transition: transform 0.3s ease
}

.tempo-card:hover {
    transform: translateY(-5px)
}

.tempo-img-wrap img {
    height: auto;
    width: 100%
}

.wa-float-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #25D366;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease
}

.wa-float-icon:hover {
    transform: scale(1.1);
    color: #fff
}

.tempo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.3s ease
}

.tempo-title span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d6efd;
    transition: color 0.3s ease
}

.tempo-card:hover .tempo-title {
    color: #0d6efd
}

.tempo-features .feature-row {
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.02)
}

.feat-label {
    color: #666
}

.feat-value {
    color: #333
}

.tempo-card .btn-primary {
    background-color: #243762;
    border-color: #243762
}

.tempo-card .btn-primary:hover {
    background-color: #f69d2d;
    border-color: #f69d2d
}

@media (max-width:991px) {
    .recommendation-title {
        font-size: 2rem
    }
}

.cta-grid-section .cta-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    padding: 40px;
    background-size: cover;
    background-position: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    z-index: 1
}

.cta-grid-section .cta-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.6s ease
}

.cta-grid-section .cta-card:hover img {
    transform: scale(1.05)
}

.cta-grid-section .cta-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
    transition: background 0.3s ease
}

.cta-card.deals-card {
    background-color: #243762
}

.cta-card.cabs-card {
    background-color: #f69d2d
}

.cta-grid-section .cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2)
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 80%
}

.cta-tag {
    font-family: "Yellowtail", cursive;
    font-size: 28px;
    color: #00d2ff;
    margin-bottom: 12px;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3)
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5)
}

.cta-title span {
    display: block
}

.cta-btn {
    display: inline-block;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2)
}

.deals-card .cta-btn {
    background: linear-gradient(45deg, #f69d2d, #ffb347);
    color: #fff;
    border: none
}

.cabs-card .cta-btn {
    background: #fff;
    color: #243762;
    border: none
}

.cta-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3)
}

@media (max-width:1199px) {
    .cta-title {
        font-size: 34px
    }

    .cta-card {
        height: 350px;
        padding: 35px
    }
}

@media (max-width:991px) {
    .cta-card {
        height: 320px
    }

    .cta-title {
        font-size: 30px
    }
}

@media (max-width:767px) {
    .cta-card {
        height: 300px;
        padding: 30px;
        text-align: center;
        justify-content: center
    }

    .cta-card::after {
        background: rgba(0, 0, 0, 0.6)
    }

    .cta-content {
        max-width: 100%
    }

    .cta-tag {
        font-size: 24px
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 20px
    }

    .cta-btn {
        padding: 12px 35px;
        font-size: 14px
    }
}

@media (max-width:480px) {
    .cta-card {
        height: 280px;
        padding: 20px
    }

    .cta-title {
        font-size: 24px
    }
}

@media (max-width:991px) {
    .cta-grid-section .cta-card {
        height: 320px;
        padding: 40px
    }

    .cta-title {
        font-size: 26px
    }

    .cta-tag {
        font-size: 22px
    }
}

@media (max-width:575px) {
    .cta-grid-section .cta-card {
        padding: 30px;
        height: 280px
    }

    .cta-title {
        font-size: 22px
    }
}

.final-cta-banner {
    background: linear-gradient(135deg, #243762 0%, #3B5183 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    border-radius: 30px
}

.final-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%)
}

.cta-box-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease
}

.cta-box-wrapper:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px)
}

.cta-icon-large {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    font-size: 24px
}

.final-cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white)
}

.final-cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px
}

.cta-contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease
}

.cta-contact-link:hover {
    color: var(--orange)
}

@media (max-width:991px) {
    .final-cta-title {
        font-size: 28px
    }

    .cta-box-wrapper {
        margin-top: 20px
    }
}

@media (max-width:767px) {
    .final-cta-title {
        font-size: 24px
    }

    .final-cta-desc {
        font-size: 14px
    }

    .cta-contact-link {
        font-size: 18px
    }

    .cta-box-wrapper {
        padding: 20px
    }
}

@media (max-width:576px) {
    .final-cta-title {
        font-size: 20px
    }

    .final-cta-desc {
        font-size: 12px;
        margin-bottom: 15px
    }

    .cta-contact-link {
        font-size: 13px;
        font-weight: 500
    }

    .cta-box-wrapper {
        padding: 20px
    }

    .cta-box-wrapper .cta-icon-large {
        width: 36px;
        height: 36px;
        font-size: 13px
    }
}

.services-grid-section {
    background: #fff
}

.service-image-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.service-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image-card:hover .service-img-wrap img {
    transform: scale(1.1);
}

.badge-deal {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FF4D4D;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255, 77, 77, 0.3);
}

.service-wa-link {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    text-decoration: none !important;
}

.service-wa-link:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: #fff;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 18px rgba(18, 140, 126, 0.5);
}

.service-wa-link i {
    animation: wa-vibrate 2s ease-in-out infinite;
}

@keyframes wa-vibrate {
    0%, 100% { transform: rotate(0); }
    10%, 20% { transform: rotate(-10deg); }
    15%, 25% { transform: rotate(10deg); }
    30% { transform: rotate(0); }
}


.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

.wishlist-btn:hover {
    background: #fff;
    color: #FF4D4D;
    transform: scale(1.1);
}

.service-image-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-image-body-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: var(--primary-blue);
    font-size: 16px;
}

.card-divider {
    margin: 0 0 20px 0;
    border: 0;
    border-top: 1px solid #eee;
    opacity: 1;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-wrap {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: #888;
    margin-bottom: -2px;
}

.price-label del {
    color: #bbb;
    margin-left: 4px;
}

.price-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
}

.price-amount span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.btn-book-tour {
    padding: 10px 22px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-book-tour:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 0, 92, 0.2);
}

@media (max-width: 575px) {
    .service-footer {
        flex-direction: row;
        gap: 10px;
    }
}

.vision-mission-section {
    padding: 80px 0
}

.mission-box {
    background: var(--primary-blue);
    color: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease
}

.mission-box:hover {
    transform: translateY(-5px)
}

.mission-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px
}

.mission-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #fff
}

.testimonial-slider .carousel-indicators {
    bottom: -30px
}

.testimonial-slider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--orange);
    border: none;
    opacity: 0.5;
    margin: 0 5px;
    transition: opacity 0.3s ease
}

.testimonial-slider .carousel-indicators .active {
    opacity: 1
}

.testimonial-slider .carousel-control-prev,
.testimonial-slider .carousel-control-next {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 15
}

.testimonial-slider:hover .carousel-control-prev,
.testimonial-slider:hover .carousel-control-next {
    opacity: 1
}

.testimonial-slider .carousel-control-prev {
    left: -15px
}

.testimonial-slider .carousel-control-next {
    right: -15px
}

.testimonial-slider .carousel-control-prev-icon,
.testimonial-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(24%) sepia(85%) saturate(1637%) hue-rotate(193deg) brightness(91%) contrast(101%)
}

.testimonial-slider .carousel-control-prev:hover,
.testimonial-slider .carousel-control-next:hover {
    background-color: var(--orange)
}

.testimonial-slider .carousel-control-prev:hover .carousel-control-prev-icon,
.testimonial-slider .carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1)
}

.testimonial-slider .carousel-inner {
    cursor: grab
}

.testimonial-slider .carousel-inner:active {
    cursor: grabbing
}

.testimonial-section .section-title-dark {
    font-size: 38px;
    color: #243762
}

.testimonial-section .testimonial-card {
    margin: 10px
}

.legal-content-sec {
    background-color: #fff
}

.legal-text-box {
    max-width: 900px;
    margin: 0 auto
}

.term-item h2 {
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 10px
}

.term-item h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--orange)
}

.policy-section h2 {
    color: var(--heading-color);
    border-left: 4px solid var(--orange);
    padding-left: 15px
}

@media (max-width:768px) {
    .legal-text-box {
        padding: 0 15px
    }

    .term-item h2 {
        font-size: 1.1rem
    }
}

.breadcrumb-wrapper {
    background: linear-gradient(to right, #dc3545, #e3005c);
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden
}

.breadcrumb-wrapper .breadcrumb-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff
}

.breadcrumb-wrapper .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal
}

.breadcrumb-wrapper .breadcrumb-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8)
}

.breadcrumb-wrapper .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease
}

.breadcrumb-wrapper .breadcrumb-item a:hover {
    color: #fff
}

.breadcrumb-wrapper .breadcrumb-item+.breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding: 0;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    width: auto;
    height: auto
}

.breadcrumb-wrapper .breadcrumb-item.active {
    color: #fff;
    padding-left: 0
}

@media (max-width:768px) {
    .breadcrumb-wrapper {
        padding: 40px 0
    }

    .breadcrumb-wrapper .breadcrumb-title {
        font-size: 28px
    }
}

.gallery-section {
    padding: 60px 0;
    background-color: var(--white)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px
}

.gallery-item {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    background: #fff;
    aspect-ratio: 4/3
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15)
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.gallery-item:hover img {
    transform: scale(1.1)
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 78, 158, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease
}

.gallery-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-category {
    transform: translateY(0)
}

@media (max-width:767px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 15px
    }
}

.outstation-cab-list-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
    line-height: 1.2;
    padding-bottom: 15px;
    border-bottom: 2px solid #004791
}

.outstation-cab-list-title span {
    color: #0072ff
}

.outstation-list-heading {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.2;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee
}

.outstation-list-heading span {
    color: var(--orange);
    display: block
}

.horizontal-service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px
}

.horizontal-service-card {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 15px
}

.horizontal-service-card:hover {
    transform: translateX(5px)
}

.h-card-img-wrap {
    flex: 0 0 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 20px
}

.h-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out
}

.horizontal-service-card:hover .h-card-img-wrap img {
    transform: scale(1.1)
}

.h-card-content {
    flex: 1
}

.h-card-title {
    color: #000;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease-in-out
}

.h-card-title:hover {
    color: #0072ff
}

@media (max-width:576px) {
    .h-card-img-wrap {
        flex: 0 0 80px;
        height: 80px;
        margin-right: 15px
    }

    .h-card-title {
        font-size: 16px
    }
}

.cab-service-grid {
    margin-top: 30px
}

.cab-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #efefef !important
}

.cab-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 78, 158, 0.1) !important;
    border-color: var(--primary-blue) !important
}

.cab-card-img {
    height: 220px;
    overflow: hidden
}

.cab-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.cab-card:hover .cab-card-img img {
    transform: scale(1.1)
}

.cab-card-title {
    font-size: 1.25rem;
    color: var(--heading-color)
}

.transition {
    transition: all 0.3s ease
}

.cta-button-wrapper {
    gap: 15px
}

.cta-button-wrapper .call_now-btn,
.cta-button-wrapper .whatsapp-btn,
.cta-button-wrapper .book_now-btn {
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600
}

.cta-button-wrapper .call_now-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    outline: none;
    transition: all 0.3s ease
}

.cta-button-wrapper .call_now-btn:hover {
    background-color: #002d5c;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
}

.cta-button-wrapper .whatsapp-btn {
    background-color: #128c7e;
    color: var(--white);
    border: none;
    outline: none;
    transition: all 0.3s ease
}

.cta-button-wrapper .whatsapp-btn:hover {
    background-color: #25d366;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
}

.cta-button-wrapper .book_now-btn {
    background-color: var(--dark-orange);
    color: var(--white);
    border: none;
    outline: none;
    transition: all 0.3s ease
}

.cta-button-wrapper .book_now-btn:hover {
    background-color: #fc6624;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
}

@media (max-width:575px) {
    .cta-button-wrapper {
        gap: 10px
    }

    .cta-button-wrapper .call_now-btn,
    .cta-button-wrapper .whatsapp-btn,
    .cta-button-wrapper .book_now-btn {
        padding: 5px 12px;
        font-size: 14px
    }
}

@media (max-width:360px) {
    .cta-button-wrapper {
        gap: 5px
    }

    .cta-button-wrapper .call_now-btn,
    .cta-button-wrapper .whatsapp-btn,
    .cta-button-wrapper .book_now-btn {
        padding: 5px 10px;
        font-size: 12px
    }
}

.sonner-toast {
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
    font-family: 'Inter', sans-serif !important;
    color: #1e293b !important
}

.sonner-toast .swal2-title {
    color: #1e293b !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    padding: 0 10px !important
}

.swal2-timer-progress-bar {
    background: #ff6600 !important
}

.form-control.is-invalid {
    border-color: #ef4444 !important;
    background-image: none !important;
    box-shadow: 0 0 0 0.2rem rgba(239, 68, 68, 0.1) !important
}

textarea.form-control {
    resize: none
}

@media (max-width:320px) {
    .cta-button-wrapper {
        gap: 5px
    }

    .cta-button-wrapper .call_now-btn,
    .cta-button-wrapper .whatsapp-btn,
    .cta-button-wrapper .book_now-btn {
        padding: 5px 10px;
        font-size: 12px
    }
}

/* Offer Banner Section Styles */
.offer-banner-inner {
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    padding: 60px;
    position: relative;
    color: var(--white);
}

.offer-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.offer-badge-wrapper {
    display: inline-block;
    background-color: #FF5A3D;
    color: var(--white);
    padding: 8px 18px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
    position: relative;
    clip-path: polygon(100% 0%, 95% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
}

.offer-badge-text {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-banner-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.offer-location-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
}

.offer-location-box i {
    color: var(--white);
    font-size: 20px;
}

.btn-offer-booking {
    background-color: #FF5A3D;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 90, 61, 0.3);
}

.btn-offer-booking:hover {
    background-color: #E64A30;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 90, 61, 0.4);
}

/* Mobile Responsiveness for Offer Banner */
@media (max-width: 991px) {
    .offer-banner-inner {
        padding: 50px;
        min-height: 400px;
    }
    
    .offer-banner-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .offer-banner-inner {
        padding: 40px 25px;
        min-height: 350px;
        text-align: center;
        justify-content: center;
        background-position: 70% center;
    }
    
    .offer-content {
        max-width: 100%;
    }
    
    .offer-banner-title {
        font-size: 32px;
    }
    
    .offer-location-box {
        justify-content: center;
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .offer-badge-wrapper {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .offer-banner-title {
        font-size: 28px;
    }
    
    .btn-offer-booking {
        padding: 12px 30px;
        font-size: 14px;
    }
}
/* Transport Rental Cards Section */
.transport-rental-sec {
    background: linear-gradient(rgba(1, 31, 65, 0.8), rgba(1, 31, 65, 0.8)), url('../images/parallax-bg-transport.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .transport-rental-sec {
        background-attachment: scroll; /* Smoother on mobile */
        padding: 60px 0;
    }
}

.transport-rental-sec .section-title-white {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.rental-card {
    background: #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}
.rental-card::before{
  position: absolute;
  height: 97%;
  width: 50%;
  content: '';
  background: #fff;
  top: 15px;
  left: 5px;
  z-index: -1;
  transform: rotate(-5deg);
  border-radius: 15px;
}
.rental-card::after{
  position: absolute;
  height: 50%;
  width: 90%;
  content: '';
  background: #fff;
  top: 0;
  right: 0;
  z-index: -1;
  transform: rotate(5deg);
  border-radius: 15px;
}
.rental-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.rental-img-wrap {
    position: relative;
    height: auto;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.rental-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rental-card:hover .rental-img-wrap img {
    transform: scale(1.1);
}

.rental-body {
    padding: 20px;
    text-align: center;
}

.rental-title {
    font-size: 20px;
    font-weight: 700;
    color: #243762;
    margin-bottom: 20px;
}

.rental-btn-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.rental-btn {
    flex: 1;
    padding: 10px 5px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
    color: #fff !important;
    text-decoration: none !important;
}

.btn-call {
    background: linear-gradient(135deg, #e3005c 0%, #9e0040 100%);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.rental-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Testimonials Section Redesign */
.testimonial-section {
    background-color: #f8fbff;
    background-image: radial-gradient(#d1d9e6 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    padding: 80px 0;
    position: relative;
}

.testi-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid #ff5e0033;
    color: #ff5e00;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: #fff;
}

.testi-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
    line-height: 1.2;
}

.testi-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    margin: 10px;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.testi-stars {
    color: #ff5e00;
    margin-bottom: 20px;
    font-size: 14px;
}

.testi-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.testi-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testi-avatar-wrap {
    position: relative;
    width: 60px;
    height: 60px;
}

.testi-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testi-quote-icon {
    position: absolute;
    bottom: -5px;
    left: -15px;
    width: 35px;
    height: 35px;
    background: #081E2A;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 3px solid #fff;
}

.testi-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.testi-info p {
    font-size: 14px;
    color: #888;
    margin: 0;
    text-align: left;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testi-dot {
    width: 40px;
    height: 6px;
    background: #e1e1e1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.testi-dot.active {
    background: #ff5e00;
    width: 50px;
}

@media (max-width: 991px) {
    .testi-main-title { font-size: 32px; }
    .testi-card { padding: 30px; }
}

/* Blog Section Redesign */
.blog-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

/* Featured Blog (Left) */
.featured-blog-card {
    padding: 0;
    background: none;
    border: none;
    margin-bottom: 30px;
}

.featured-img-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 16 / 9;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-img-wrap:hover img {
    transform: scale(1.05);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.category-badge {
    padding: 4px 15px;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    border: 1px solid #eee;
}

.meta-text {
    font-size: 14px;
    color: #888;
}

.featured-blog-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Small Blog Cards (Right) */
.small-blog-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.small-blog-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    align-items: start;
    text-decoration: none!important;
}

.small-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
}

.small-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.small-blog-card:hover .small-img-wrap img {
    transform: scale(1.1);
}

.small-blog-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.learn-more-link {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.learn-more-link:hover {
    gap: 10px;
    color: #000;
}

@media (max-width: 991px) {
    .small-blog-card {
        grid-template-columns: 150px 1fr;
    }
    .featured-blog-title { font-size: 22px; }
    .blog-section-title { font-size: 32px; }
}

@media (max-width: 575px) {
    .small-blog-card {
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }
    .small-blog-title { font-size: 15px; }
    .category-badge { font-size: 11px; padding: 2px 10px; }
}

/* Our Services Section Redesign */
.our-services-sec {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.services-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.view-all-btn {
    padding: 14px 34px;
    background: #FF5E00;
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 2px solid #FF5E00;
}

.view-all-btn:hover {
    background: transparent;
    color: #FF5E00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 94, 0, 0.2);
}

.sq-service-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: none;
}

.sq-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.sq-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.sq-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sq-service-card:hover .sq-img-wrap img {
    transform: scale(1.15);
}

.sq-content {
    padding: 25px 20px;
    text-align: center;
    background: #fff;
}

.sq-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.sq-service-card:hover .sq-title {
    color: #FF5E00;
}

/* Tilted/Stacked Card Design */
.tilted-card {
    position: relative;
    background: #fff;
    padding: 15px;
    z-index: 1;
    transition: transform 0.3s ease;
    margin-top: 10px;
    margin-bottom: 20px;
}

.tilted-card::before,
.tilted-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tilted-card::before {
 transform: rotate(-3deg);
}

.tilted-card::after {
 transform: rotate(3deg);
}

.tilted-card:hover::before {
 transform: rotate(-1deg);
}

.tilted-card:hover::after {
 transform: rotate(1deg);
}

.tilted-img-wrap {
 position: relative;
 overflow: hidden;
 margin-bottom: 20px;
}

.tilted-img-wrap img {
 width: 100%;
 height: auto;
 display: block;
}

.price-tag {
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translate(-50%, 50%);
 background: #FF9800;
 color: #fff;
 padding: 8px 25px;
 border-radius: 50px 50px 0 0;
 font-weight: 800;
 font-size: 18px;
 z-index: 10;
 box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tilted-body {
 text-align: center;
 padding-top: 30px;
}

.tilted-stars {
 color: #FFC107;
 margin-bottom: 15px;
 font-size: 14px;
}

.tilted-title {
 font-size: 18px;
 font-weight: 700;
 color: #333;
 margin-bottom: 20px;
 min-height: 44px;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
}

.btn-more-details {
 background: #D81B60;
 color: #fff;
 border: none;
 padding: 10px 40px;
 font-weight: 600;
 text-transform: capitalize;
 transition: all 0.3s ease;
 width: 100%;
 text-decoration: none!important;
 display: inline-block;
}

.btn-more-details:hover {
 background: #ad1457;
 color: #fff;
 box-shadow: 0 5px 15px rgba(216, 27, 96, 0.4);
}

/* Premium CTA Section Styles */
.premium-cta-sec {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff267e 0%, #ffb500 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-shape-1, .cta-shape-2 {
    position: absolute;
    background: rgb(255 233 253);
    border-radius: 50%;
    z-index: 0;
}

.cta-shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; }
.cta-shape-2 { width: 200px; height: 200px; bottom: -50px; left: -50px; }

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subline {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #fff;
    text-align: center;
}

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-main-btn {
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: none;
}

/* Call Now - Orange */
.btn-cta-call {
    background: #2a2a2a;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 94, 0, 0.3);
}
.btn-cta-call:hover {
    transform: scale(1.08);
    background: #000;
    box-shadow: 0 15px 30px rgba(255, 94, 0, 0.5);
}

/* Enquiry Now - Ghost/White */
.btn-cta-enquiry {
    background: #fff;
    color: #000;
}
.btn-cta-enquiry:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}

/* WhatsApp - Green */
.btn-cta-wa {
    background: #007e2f;
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}
.btn-cta-wa:hover {
    transform: translateY(-5px);
    background: #20bd5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Swiper Custom Pagination Styles */
.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 40px !important;
}

.swiper-pagination-bullet {
    width: 35px !important;
    height: 5px !important;
    background: #dddddd !important;
    border-radius: 10px !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: var(--orange) !important;
    width: 45px !important;
}

/* Why Choose Premium Section */
.why-choose-premium-sec {
    padding: 100px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.wcp-image-column {
    position: relative;
    padding-right: 50px;
}

.wcp-main-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* Artistic Mask Effect Simulation */
    -webkit-mask-image: radial-gradient(circle, black 60%, rgba(0,0,0,0.5) 85%, transparent 100%);
    mask-image: radial-gradient(circle, black 60%, rgba(0,0,0,0.5) 85%, transparent 100%);
}

.wcp-main-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
}

.wcp-review-floating-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    color: #fff;
    max-width: 300px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.1);
}

.wcp-review-floating-card .quote-text {
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.wcp-reviewer-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wcp-avatars-group {
    display: flex;
    margin-right: 5px;
}

.wcp-avatars-group img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(30,30,30,1);
    margin-left: -10px;
}

.wcp-avatars-group img:first-child { margin-left: 0; }

.wcp-rating-info .rating-score {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.wcp-rating-info .rating-stars {
    color: #ff9d00;
    font-size: 10px;
}

.wcp-badge {
    background: rgba(255, 69, 0, 0.1);
    color: var(--orange);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.wcp-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .wcp-title { font-size: 28px; }
}
@media(max-width:575.98px){
    .cta-headline{
        font-size: 32px;
    }
    .cta-subline{
        font-size: 14px;
    }
    .cta-shape-1 {
        width: 160px;
        height: 160px;
    }
    .cta-shape-2 {
        width: 160px;
        height: 160px;
    }
}
    
.wcp-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.wcp-features-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 45px;
    border-top: 1px solid #eee;
    padding-top: 35px;
    border-bottom: 1px solid #eee;
    padding-bottom: 35px;
}

.wcp-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wcp-feature-icon {
    width: 45px;
    height: 45px;
    flex: none;
}

.wcp-feature-text {
    font-weight: 600;
    color: #111;
    font-size: 16px;
    line-height: 1.3;
}

.wcp-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.2);
}

.wcp-btn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.3);
    color: #fff;
}

.wcp-bg-palm {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 250px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 991px) {
    .why-choose-premium-sec { padding: 60px 0; }
    .wcp-image-column { margin-bottom: 60px; padding-right: 0; }
    .wcp-title { font-size: 32px; }
    .wcp-review-floating-card { left: 10px; bottom: -30px; }
}

/* Modern Enquiry Form Styles */
.input-group-custom {
    position: relative;
    margin-bottom: 25px; /* Increased to accommodate label */
}

.form-label-custom {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 8px;
    margin-left: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.input-group-custom .form-icon {
    position: absolute;
    left: 18px;
    top: calc(50% + 14px); /* Adjusted for label */
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Ensure phone input (iti) also has consistent icon layout */
.input-group-custom.phone-group .form-icon {
    left: 18px;
    right: auto;
    z-index: 15; /* Higher than iti to appear over flag background if needed */
}

.input-group-custom .form-control,
.input-group-custom .form-select {
    padding-left: 50px;
    height: 55px;
    border-radius: 12px;
    border: 1px solid #e1e5ee;
    background-color: #f9fbff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.input-group-custom.phone-group .form-control {
    padding-left: 50px;
}

.input-group-custom textarea.form-control {
    height: auto;
    padding-top: 15px;
    padding-left: 50px;
}

.input-group-custom .form-control:focus {
    background-color: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(227, 0, 92, 0.1);
    outline: none;
}

.input-group-custom .form-control:focus ~ .form-label-custom {
    color: var(--primary-blue);
}

.input-group-custom .form-control:focus + .form-icon,
.input-group-custom .form-control:focus + .iti + .form-icon {
    color: var(--primary-dark-blue);
    transform: translateY(-50%) scale(1.1);
}

/* intl-tel-input Overrides */
.iti {
    width: 100%;
    display: block !important;
}

.iti__selected-flag {
    padding-left: 18px !important;
    background: transparent !important;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.iti input {
    width: 100% !important;
    /* intl-tel-input will add dynamic padding-left for flags */
}

/* Modal Title Polish */
#enquiryModal .modal-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark-blue));
    padding: 24px 30px;
    border: none;
}

#enquiryModal .modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
}

#enquiryModal .modal-body {
    padding: 35px 40px;
}

#enquiryModal .btn-submit-modal {
    height: 55px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 12px;
    margin-top: 10px;
}
.custom-list li a{
    font-weight: 600;
    color: var(--dark-orange);
}