@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap");


* {
    font-family: 'Sora', sans-serif;
}


a {
    text-decoration: none !important;
}


* {
    list-style: none;
}



:root {

    --primary: #0F3D56;
    --secondary: #FF7A00;
    --white: #ffffff;
    --black: #111111;
    --text: #666666;
    --border: #EAEAEA;
    --bg: #F7F9FC;

}




.asm-topbar {
    background: var(--primary);
    padding: 10px 0;
    font-size: 14px;
}

.asm-topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.asm-topbar-left a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.asm-topbar-left a:hover {
    color: var(--secondary);
}

.asm-topbar-left span {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .3);
}

.asm-topbar-left i {
    color: var(--secondary);
}




.asm-topbar-right {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 14px;
}

.asm-topbar-right a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: .35s;
}

.asm-topbar-right a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}





.asm-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}



.asm-navbar {
    background: #fff;
    min-height: 90px;
    border-bottom: 1px solid var(--border);
    transition: .4s;
    padding: 0;
}

.asm-navbar.scrolled {
    min-height: 75px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}



.asm-logo {
    display: flex;
    align-items: center;
}

.asm-logo img {
    width: 130px;
    transition: .4s;
}

.asm-navbar.scrolled .asm-logo img {
    width: 160px;
}


.asm-menu {
    gap: 14px;
}

.asm-menu .nav-item {
    position: relative;
}

.asm-menu .nav-link {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    transition: .35s;
    position: relative;
}

.asm-menu .nav-link:hover {
    color: var(--secondary);
}

.asm-menu .nav-link.active {
    color: var(--secondary);
}



.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}



.asm-navbar,
.asm-navbar * {
    transition: .35s;
}


a.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
}


.asm-dropdown {
    min-width: 290px;
    padding: 0px 0;
    border: none;
    border-radius: 0px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
    margin-top: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease;
    overflow: hidden;
}

.asm-dropdown li {
    border-bottom: 1px solid #f2f2f2;
}

.asm-dropdown li:last-child {
    border-bottom: none;
}




@media (min-width:992px) {

    .nav-item.dropdown:hover>.asm-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}



.asm-dropdown .dropdown-item {
    position: relative;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    transition: .35s;
    background: transparent;
}

.asm-dropdown .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
    transform: scaleY(0);
    transition: .35s;
}

.asm-dropdown .dropdown-item:hover {
    background: #F7F9FC;
    color: var(--secondary);
    padding-left: 34px;
}

.asm-dropdown .dropdown-item:hover::before {
    transform: scaleY(1);
}


.asm-menu .dropdown-toggle::after {
    border: none;
    font-family: "bootstrap-icons";
    content: "\F282";
    font-size: 12px;
    margin-left: 8px;
    transition: .35s;
}


.nav-item.dropdown:hover>.dropdown-toggle::after {
    transform: rotate(180deg);
    color: var(--secondary);
}



.asm-right {
    display: flex;
    align-items: center;
    gap: 14px;
}



.asm-search {
    width: 48px;
    height: 48px;
    border: none;
    background: #F7F9FC;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--primary);
    font-size: 18px;
    transition: .35s;
    overflow: hidden;
    position: relative;
}

.asm-search:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.asm-search::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .2);
    left: -100%;
    top: 0;
    transition: .45s;
}

.asm-search:hover::before {
    left: 100%;
}



.asm-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(15, 61, 86, .18);

}

.asm-call:hover {
    background: #08293d;
    color: #fff;
    transform: translateY(-3px);

}

.asm-call i {
    font-size: 17px;
}


.asm-book {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 50px;
    background: var(--secondary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(255, 122, 0, .30);
}


.asm-book::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .20);
    left: -100%;
    top: 0;
    transition: .45s;
}

.asm-book:hover::before {
    left: 100%;
}

.asm-book:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(255, 122, 0, .40);
}




.asm-menu .nav-link:hover {
    text-shadow: 0 0 8px rgba(255, 122, 0, .18);
}



.asm-dropdown {
    transform-origin: top center;
}



.asm-navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}



.asm-logo img:hover {
    transform: scale(1.05);
}



.asm-call i,
.asm-search i {
    transition: .3s;
}

.asm-call:hover i {
    transform: rotate(-15deg);
}

.asm-search:hover i {
    transform: scale(1.15);
}




@media (max-width:1199px) {

    .asm-logo img {
        width: 150px;
    }

    .asm-menu .nav-link {
        padding: 30px 12px;
        font-size: 15px;
    }

    .asm-call {
        padding: 12px 18px;
        font-size: 14px;
    }

    .asm-book {
        padding: 12px 20px;
        font-size: 14px;
    }

}



@media (max-width:991px) {

    .asm-topbar {
        display: none;
    }

    .asm-navbar {
        min-height: 80px;
        padding: 10px 0;
    }

    .asm-logo img {
        width: 140px;
    }

    .navbar-toggler {
        border: none;
        padding: 8px;
        background: #F7F9FC;
        border-radius: 10px;
    }

    .navbar-toggler:hover {
        background: var(--secondary);
    }

    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }

    .navbar-collapse {
        margin-top: 20px;
        background: #ffffff;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    }

    .asm-menu {
        width: 100%;
        margin-bottom: 20px;
    }

    .asm-menu .nav-item {
        width: 100%;
    }

    .asm-menu .nav-link {
        padding: 14px 18px;
        border-radius: 8px;
    }

    .asm-menu .nav-link::after {
        display: none;
    }

    .asm-menu .nav-link:hover {
        background: #F7F9FC;
    }

    .asm-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        background: #F7F9FC;
        border-radius: 8px;
        padding: 8px 0;
        min-width: 100%;
    }

    .dropdown-menu.show {
        display: block;
    }

    .asm-dropdown .dropdown-item {
        padding: 12px 18px;
    }

    .asm-right {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .asm-search,
    .asm-call,
    .asm-book {
        width: 100%;
        justify-content: center;
    }

}



@media (max-width:768px) {

    .asm-navbar {
        min-height: 72px;
    }

    .asm-logo img {
        width: 125px;
    }

    .navbar-collapse {
        padding: 18px;
    }

    .asm-menu .nav-link {
        font-size: 15px;
    }

    .asm-call {
        font-size: 15px;
    }

    .asm-book {
        font-size: 15px;
    }

}



@media (max-width:576px) {

    .asm-navbar {
        min-height: 68px;
    }

    .asm-logo img {
        width: 110px;
    }

    .navbar-collapse {
        padding: 15px;
    }

    .asm-menu .nav-link {

        font-size: 14px;
        padding: 12px 14px;

    }

    .asm-dropdown .dropdown-item {
        font-size: 14px;
        padding: 11px 15px;
    }

    .asm-call,
    .asm-book {
        padding: 12px 18px;
        font-size: 14px;

    }


    .asm-menu .nav-link {
        font-size: 16px;
        padding: 5px 0;
    }

    .asm-menu {
        gap: 0px;
    }

}



@media (max-width:400px) {

    .asm-logo img {
        width: 95px;
    }

    .navbar-collapse {
        padding: 12px;
    }

    .asm-menu .nav-link {
        font-size: 16px;
        padding: 5px 0;
    }

    .asm-dropdown .dropdown-item {
        font-size: 13px;
    }

    .asm-call,
    .asm-book {
        font-size: 13px;
    }

    .asm-menu {
        gap: 0px;
    }

}



.asm-dropdown {
    max-height: 400px;
    overflow-y: auto;
}

.asm-dropdown::-webkit-scrollbar {
    width: 5px;
}

.asm-dropdown::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 20px;
}



html {
    scroll-behavior: smooth;
}



.asm-navbar,
.asm-navbar *,
.asm-topbar,
.asm-topbar * {
    transition: all .35s ease;
}



@media (max-width: 991px) {

    .asm-navbar .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }


    .asm-navbar .dropdown-toggle::after {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        margin-left: auto;
        margin-right: 5px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        border-top: 0;
        border-left: 0;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }


    .asm-navbar .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(225deg);
    }


    .nav-item.dropdown:hover>.dropdown-toggle::after {
        transform: rotate(225deg);
        color: var(--secondary);
    }

}






.hero {
    position: relative;
    width: 100%;
    height: 700px;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: Poppins, sans-serif;
    background: rgb(0, 0, 0);
}



.hero .container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}



.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}


.hero-slide.active {
    opacity: 1;
}


.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroZoom 8s linear infinite;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .70) 40%, rgba(0, 0, 0, .45) 70%, rgba(0, 0, 0, .25) 100%);
    z-index: 2;
}



.hero-content {
    max-width: 1130px;
    color: #fff;
    position: relative;
    z-index: 20;
}


.hero-tag {
    display: inline-block;
    padding: 10px 22px;
    margin-bottom: 18px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .20);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}


.hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.11;
    margin-bottom: 20px;
    color: #fff;
}


.hero-content h1 span {
    color: rgb(246 120 35);
}


.hero-content p {
    max-width: 738px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .90);
    margin-bottom: 25px;
}




.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}


.hero-buttons a {
    text-decoration: none;
}


.btn-book,
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    transition: .35s ease;
    cursor: pointer;
}


.btn-book {
    background: #f67823;
    color: #ffffff;
    border: 1px solid #f67823;
}


.btn-book:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
    transform: translateY(-4px);
}


.btn-call {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}


.btn-call:hover {
    background: #fff;
    color: #111;
    transform: translateY(-4px);
}



@keyframes heroZoom {

    0% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1.18);
    }

}



@media(max-width:1200px) {

    .hero-content h1 {
        font-size: 56px;
    }

}


@media(max-width:992px) {

    .hero {
        min-height: 700px;
    }

    .hero-content {
        max-width: 650px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 17px;
    }

}


@media(max-width:768px) {

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 60px 0 0px;
}

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-buttons {
        justify-content: center;
    }


    .hero-slide img {
        width: 100%;
        height: 489px;
        object-fit: contain;
        transform: scale(1.08);
        animation: heroZoom 8s linear infinite;
        object-position: 50% 6%;
    }


    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 0%) 40%, rgb(0 0 0 / 3%) 70%, rgb(0 0 0 / 0%) 100%);
        z-index: 2;
    }

}


@media(max-width:576px) {

    .hero .container {
        padding: 0 10px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 8px 18px;
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .btn-book,
    .btn-call {
        width: fit-content;
        padding: 12px 20px;
        font-size: 15px;
    }

}


@media(max-width:400px) {

    .hero-content h1 {
        font-size: 25px;
        display: none;
    }

    .hero-content p {
        line-height: 1.5;
        font-size: 14px;
        display: none;
    }

}



.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 10;
}


.hero-content {
    flex: 1;
}


.hero-form {
    width: 470px;
}


.booking-card {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    border-top: 5px solid #f66e0b;
    border-bottom: 5px solid #f66e0b;
}



.booking-card h3 {
    font-size: 24px;
    margin-bottom: 28px;
    color: rgb(255, 255, 255);
    text-align: center;
}


.booking-card p {
    color: rgba(255, 255, 255, 0.89);
    margin-bottom: 18px;
    font-size: 15px;
}


.booking-card form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.booking-card input,
.booking-card select,
.booking-card textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: .3s;
    color: #333333e0;
}


.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
    border-color: #ffb400;
}

.booking-card textarea {
    resize: none;
}

.form-btn {
    background: #f67823;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.form-btn:hover {
    background: #00365c;
    color: #fff;
}



@media(max-width:991px) {

    .hero-wrapper {
        flex-direction: column;
        gap: 45px;
    }

    .hero-content {
        text-align: left;
        display: none;
    }

    .hero-buttons {
        justify-content: left;
        display: none;
    }

    .hero-form {
        width: 100%;
        max-width: 500px;
        margin-top: 150px;
    }


    .booking-card {
        padding: 25px 15px;
        margin-top: 70px;
    }


    .booking-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: left;
    }

}



@media(max-width:375px) {

    .booking-card {
        padding: 25px 15px;
        margin-top: 30px;
    }

}





.services {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f8fafc 100%);
    overflow: hidden;
}


.services .container {
    max-width: 1320px;
}


.services-heading {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.premium-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.premium-tag span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #f67823;
    text-transform: uppercase;
}

.premium-tag .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f67823;
    box-shadow: 0 0 12px #f6782399;
}

.services-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #00365c;
    line-height: 1.2;
    margin: 15px 0;
}


.services-heading p {
    font-size: 17px;
    line-height: 1.5;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}



.service-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .12);
    transition: .45s ease;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-card:hover img {
    transform: scale(1.12);
}



.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .10) 100%);
    transition: .5s;
}


.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .65) 45%, rgba(0, 0, 0, .20) 100%);
}



.service-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
    transition: .45s ease;
}


.service-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    transition: .45s;
}


.service-card:hover .service-number {
    background: #f67823;
    color: #ffff;
    transform: rotate(360deg) scale(1.08);
}


.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.1;
    transition: .4s;
    color: #f67823;
}


.service-card:hover .service-content h3 {
    color: #f67823;
}

.service-content p {
    font-size: 15px;
    line-height: 1.5;
    color: rgb(255 255 255);
    margin-bottom: 16px;
    opacity: 1;
    transform: translateY(0px);
    transition: .45s;
}


.service-card:hover .service-content p {
    opacity: 1;
    transform: translateY(0);
}



.service-content .service-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
}


.service-content .service-button i {
    transition: .35s;
}


.service-card:hover .service-content .service-button {
    color: #f67823;
}


.service-card:hover .service-content .service-button i {
    transform: translateX(8px);
}


.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f67823, #00365c, #f67823);
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s;
    z-index: 5;
}


.service-card:hover::before {
    transform: scaleX(1);
}






@media(max-width:1200px) {

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:992px) {

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-heading h2 {
        font-size: 40px;
    }


    .services-heading {
        margin: 0 auto 30px;
        text-align: left;
    }

}

@media(max-width:768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 380px;
    }

    .services-heading h2 {
        font-size: 21px;
        margin: 0 0 20px;
    }

    .services-heading p {
        font-size: 14px;
    }

}

@media(max-width:576px) {

    .service-card {
        height: 340px;
    }

    .service-content {
        left: 10px;
        right: 10px;
        bottom: 0px;
    }


    .service-content p {
        font-size: 14px;
        margin-bottom: 13px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-number {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

}


.service-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform .25s ease;
}

.service-image img {
    transform: translateZ(0);
}









.about {
    padding: 90px 0;
    background: #ffff;
    position: relative;
    overflow: hidden;
}



.about .container {
    position: relative;
    z-index: 2;
}


.about-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
}

.about-heading {
    text-align: center;
}

.about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #f67823;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subtitle::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #f67823;
}

.about-heading h2 {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 800;
    color: #00365c;
    margin: 0;
}



.about-heading p {
    font-size: 17px;
    margin-top: 20px;
    line-height: 1.5;
    color: #959595;
    text-align: center;
}




.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr;
    gap: 35px;
    align-items: stretch;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 1s;
}

.about-image:hover img {
    transform: scale(1.08);
}


.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


.about-card {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 15px;
    padding: 10px 20px;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
}


.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f67823, #00365c, #f67823);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}


.about-card:hover::before {
    transform: scaleX(1);
}


.about-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}


.card-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #eef1ff;
    color: #f67823;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    transition: .4s;
}

.about-card:hover .card-icon {
    background: #f67823;
    color: #fff;
    transform: rotate(360deg);
}

.card-top h3 {
    font-size: 34px;
    color: #00365c;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}


.card-top p {
    margin-top: 8px;
    color: #777;
    font-size: 16px;
    margin-bottom: 0px;
}



.about-card hr {
    border: none;
    height: 1px;
    background: #9d9999;
    margin: 0 0 20px;
}

.about-card h4 {
    font-size: 22px;
    color: #00365c;
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 700;
}

.about-card>p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}



.about-card:hover h4 {
    color: #f67823;
}

.about-card:hover .card-top h3 {
    transform: scale(1.05);
    transition: .3s;
}


@media(max-width:1200px) {

    .about-heading h2 {
        font-size: 44px;
    }

}

@media(max-width:991px) {

    .about {
        padding: 80px 0;
    }

    .about-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 500px;
    }

}

@media(max-width:768px) {

    .about-heading h2 {
        font-size: 22px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-subtitle::before {
        content: "";
        width: 30px;
        height: 2px;
        background: #f67823;
    }

    .about-image {
        min-height: 198px;
    }

    .about-card {
        padding: 25px 15px;
    }

    .card-top h3 {
        font-size: 34px;
    }

    .about-card h4 {
        font-size: 24px;
    }


    .about-heading p {
        font-size: 14px;
        text-align: left;
    }

}

@media(max-width:576px) {

    .about {
        padding: 60px 0;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

    .about-heading {
        text-align: left;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 24px;
    }

    .card-top {
        gap: 15px;
    }

    .card-top h3 {
        font-size: 28px;
    }

    .card-top p {
        font-size: 15px;
    }

    .about-card h4 {
        font-size: 20px;
    }

    .about-card>p {
        font-size: 14px;
        line-height: 1.5;
    }

}




.about-card {
    opacity: 0;
    transform: translateY(60px);
}

.about-card.show-card {
    opacity: 1;
    transform: translateY(0);
}

.about-card {
    transition: transform .5s ease, opacity .6s ease, box-shadow .4s ease;

}

.about-image {
    overflow: hidden;
}

.about-image img {
    transition: transform .3s linear;
}








.why-us {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: #ffffff;
}


.why-us .container {
    position: relative;
    z-index: 2;
}


.why-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
}


.why-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.why-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f67823;
    text-transform: uppercase;
    margin: 0 auto 25px;
}


.why-tag::before {
    content: "";
    width: 45px;
    height: 3px;
    background: #f67823;
    border-radius: 20px;
}


.why-content h2 {
    font-size: 35px;
    line-height: 1.1;
    font-weight: 800;
    color: #00365c;
    margin-bottom: 20px;
}



.why-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 45px;
    text-align: center;
    margin: 0 auto 40px;
}


.why-features {
    position: relative;
    display: grid;
    gap: 15px;
    padding-top: 0px;
    grid-template-columns: 2fr 2fr;
}


.feature-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 20px 22px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
    transition: .45s ease;
    cursor: pointer;
}


.feature-box:nth-child(odd) {
    margin-left: -55px;
}

.feature-box:nth-child(even) {
    margin-left: 0;
}


.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f67823, #00365c, #f67823);
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s;
}


.feature-box:hover::before {
    transform: scaleX(1);
}


.feature-box::after {
    content: "";
    position: absolute;
    top: -150%;
    left: -45%;
    width: 45%;
    height: 300%;
    background: rgba(255, 255, 255, .35);
    transform: rotate(25deg);
    transition: .8s;
}


.feature-box:hover::after {
    left: 140%;
}



.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff4f4;
    color: #f67823;
    font-size: 24px;
    transition: .45s;
}


.feature-box:hover .feature-icon {
    background: #f67823;
    color: #fff;
    transform: rotateY(180deg);
}



.feature-text {
    flex: 1;
}


.feature-text h4 {
    font-size: 21px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 8px;
    transition: .35s;
}


.feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.feature-box:hover .feature-text h4 {
    color: #f67823;
}



.feature-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafafa;
    color: #999;
    font-size: 15px;
    transition: .35s;
}

.feature-box:hover .feature-arrow {
    background: #f67823;
    color: #fff;
    transform: rotate(135deg);
}



.feature-box:hover {
    transform: translateX(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .14);
}

.feature-box:first-child {
    padding-top: 20px;
    padding-bottom: 20px;
}

.feature-box:first-child .feature-text p {
    display: block;
}

.feature-box:not(:first-child) .feature-text p {
    display: none;
}

.feature-box:hover .feature-text p {
    display: block;
}



@keyframes floatingCard {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }

}

.feature-box:nth-child(2) {
    animation: floatingCard 5s infinite;
}

.feature-box:nth-child(4) {
    animation: floatingCard 6s infinite;
}

.feature-box:nth-child(6) {
    animation: floatingCard 5.5s infinite;
}

.feature-box:nth-child(8) {
    animation: floatingCard 6.5s infinite;
}



.why-content,
.feature-box {
    opacity: 0;
    visibility: hidden;
    transition: all .8s ease;
}

.why-content {
    transform: translateX(-70px);
}

.feature-box {
    transform: translateX(80px);
}

.why-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    text-align: center;
}

.feature-box.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


.feature-box:nth-child(1) {
    transition-delay: .10s;
}

.feature-box:nth-child(2) {
    transition-delay: .20s;
}

.feature-box:nth-child(3) {
    transition-delay: .30s;
}

.feature-box:nth-child(4) {
    transition-delay: .40s;
}

.feature-box:nth-child(5) {
    transition-delay: .50s;
}

.feature-box:nth-child(6) {
    transition-delay: .60s;
}

.feature-box:nth-child(7) {
    transition-delay: .70s;
}

.feature-box:nth-child(8) {
    transition-delay: .80s;
}



.feature-box:hover {
    border-color: #f67823;
    box-shadow: 0 25px 60px rgba(229, 57, 53, .15), 0 15px 35px rgba(0, 0, 0, .08);

}

.feature-box:hover .feature-text p {
    color: #444;
}





@media(max-width:1200px) {

    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px;
    }

    .why-content h2 {
        font-size: 48px;
    }

    .why-features {
        max-width: 700px;
        margin: auto;
    }

    .feature-box:nth-child(odd) {
        margin-left: 0;
    }

}

@media(max-width:992px) {

    .why-us {
        padding: 90px 0;
    }

    .why-wrapper {
        border-radius: 30px;
        padding: 45px;
    }



    .why-tag::before {
        display: none;
    }

    .why-content h2 {
        font-size: 40px;
    }

    .why-content p {
        max-width: 100%;
    }

    .why-counter {
        width: 100%;
        max-width: 100%;
    }

    .why-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .why-features {
        width: 100%;
        grid-template-columns: 1fr;
    }


    .feature-box {
        margin-left: 0 !important;
    }

}



.why-us .about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #f67823;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: auto;
    margin-bottom: 20px;
}

@media(max-width:768px) {

    .why-us {
        padding: 60px 0;
    }

    .why-wrapper {
        padding: 30px;
        border-radius: 24px;
    }

    .why-content h2 {
        font-size: 32px;
    }

    .why-content {
        text-align: left !important;
        align-items: flex-start;
    }

    .why-content p {
        font-size: 14px;
        text-align: left;
    }

    .why-counter {
        flex-direction: column;
        gap: 20px;
    }


    .why-us .about-subtitle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        color: #f67823;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: initial;
        margin-bottom: 20px;
    }

    .counter-divider {
        width: 100%;
        height: 1px;
    }


    .feature-box {
        padding: 18px 14px;
        gap: 10px;
    }


    .feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
        border-radius: 14px;
    }

    .feature-text h4 {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .feature-text p {
        font-size: 14px;
    }

}

@media(max-width:480px) {

    .why-wrapper {
        padding: 0px 0px;
        gap: 0px;
    }

    .why-tag {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .why-content h2 {
        font-size: 22px;
        line-height: 1.1;
    }


    .feature-arrow {
        display: none;
    }

}









.work-process {
    position: relative;
    padding: 90px 0;
    background: #f8fafc;
    overflow: hidden;
}



.work-process .container {
    position: relative;
    z-index: 2;
}


.work-process .section-heading {
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}


.work-process .section-heading h2 {
    font-size: 35px;
    font-weight: 800;
    color: #00365c;
    line-height: 1.1;
    margin: 0 0 15px;
}


.work-process .section-heading p {
    font-size: 17px;
    color: #666;
    line-height: 1.5;
}


.work-process .process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


.work-process .process-card {
    position: relative;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    overflow: hidden;
    z-index: 2;
    transition: 0.45s;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 20px 45px;
    border: 1px solid rgb(237, 241, 247);
}


.work-process .process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}


.work-process .step-number {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 58px;
    font-weight: 800;
    color: #f3f3f3;
    line-height: 1;
    transition: .35s;
}


.work-process .process-card:hover .step-number {
    color: #ffe6dd;
}


.work-process .step-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: #fff;
    background: linear-gradient(135deg, #f67823, #f67823);
    box-shadow: 0 18px 35px rgba(255, 87, 34, .35);
    position: relative;
    z-index: 3;
    transition: .4s;
}


.work-process .process-card:hover .step-icon {
    transform: rotateY(180deg) scale(1.08);
}


.work-process .process-card h3 {
    font-size: 22px;
    color: #1d1d1d;
    margin-bottom: 10px;
    font-weight: 700;
    transition: .3s;
}


.work-process .process-card:hover h3 {
    color: #f67823;
}

.work-process .process-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}



.work-process .process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f67823, #ff9800);
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s;
}

.work-process .process-card:hover::before {
    transform: scaleX(1);
}



.work-process .process-card::after {
    content: "";
    position: absolute;
    top: -150%;
    left: -50%;
    width: 45%;
    height: 300%;
    background: rgba(255, 255, 255, .4);
    transform: rotate(25deg);
    transition: .8s;
}


.work-process .process-card:hover::after {
    left: 130%;
}


.work-process .step-icon::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 87, 34, .25);
    animation: pulseRing 3s infinite;
}


@keyframes pulseRing {

    0% {
        transform: scale(.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }

}


@keyframes floatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

.work-process .process-card:nth-child(1) {
    animation: floatCard 5s infinite;
}

.work-process .process-card:nth-child(2) {
    animation: floatCard 6s infinite;
}

.work-process .process-card:nth-child(3) {
    animation: floatCard 7s infinite;
}

.work-process .process-card:nth-child(4) {
    animation: floatCard 5.5s infinite;
}


.work-process .process-card:hover {
    border-color: #f67823;
    box-shadow: 0 25px 60px rgba(255, 87, 34, .18), 0 12px 30px rgba(0, 0, 0, .08);
}


.work-process .step-icon {
    position: relative;
}


.work-process .step-icon span {
    display: none;
}



.work-process .process-card:nth-child(2) {
    margin-top: 40px;
}

.work-process .process-card:nth-child(4) {
    margin-top: 40px;
}


.work-process .process-card {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .8s ease, transform .8s ease, box-shadow .4s ease;
}



.work-process .process-card.show {
    opacity: 1;
    transform: translateY(0);
}


.work-process .process-card:nth-child(1) {
    transition-delay: .1s;
}


.work-process .process-card:nth-child(2) {
    transition-delay: .2s;
}


.work-process .process-card:nth-child(3) {
    transition-delay: .3s;
}


.work-process .process-card:nth-child(4) {
    transition-delay: .4s;
}



@media(max-width:1200px) {

    .work-process .process-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-process .process-wrapper::before {
        display: none;
    }

    .work-process .process-card {
        margin-top: 0 !important;
    }

    .work-process .step-icon::after {
        display: none;
    }

}


@media(max-width:768px) {

    .work-process {
        padding: 60px 0;
    }

    .work-process .section-heading {
        margin-bottom: 40px;
    }

    .work-process .section-heading h2 {
        font-size: 34px;
    }

    .work-process .process-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-process .process-card {
        padding: 30px 25px;
    }

    .work-process .step-icon {
        width: 65px;
        height: 65px;
        font-size: 25px;
    }

    .work-process .step-number {
        font-size: 42px;
    }

    .work-process .process-card h3 {
        font-size: 22px;
    }

    .work-process .process-card p {
        font-size: 14px;
    }

}



@media(max-width:576px) {

    .work-process .section-subtitle {
        font-size: 12px;
        padding: 10px 20px;
    }

    .work-process .section-heading h2 {
        font-size: 21px;
    }

    .work-process .section-heading p {
        font-size: 15px;
    }

    .work-process .process-card {
        padding: 25px 20px;
    }

}











.emergency-service {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}




.emergency-service .container {
    position: relative;
    z-index: 2;
}


.emergency-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}


.emergency-content {
    position: relative;
    z-index: 2;
}


.emergency-content h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #00365c;
    font-weight: 800;
    margin-bottom: 25px;
}


.emergency-content h2 span {
    color: #f67823;
}


.emergency-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}


.emergency-info {
    display: flex;
    gap: 20px;
}


.info-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 15px;
    padding: 20px;
    transition: .35s;
}


.info-box i {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f67823, #ff9800);
    color: #fff;
    font-size: 26px;
}


.info-box h4 {
    font-size: 19px;
    color: #222;
    margin-bottom: 5px;
    font-weight: 700;
}


.info-box span {
    color: #777;
    font-size: 15px;
}



.emergency-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}


.emergency-buttons .btn-book {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 34px;
    border-radius: 14px;
    background: #f67823;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}


.emergency-buttons .btn-book:hover {
    background: #111;
}


.emergency-buttons .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #222;
    font-size: 17px;
    font-weight: 700;
}


.emergency-buttons .btn-call i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff2ee;
    color: #f67823;
    font-size: 20px;
}



.emergency-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


.emergency-image::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f67823, #ff9800);
    opacity: .08;
    z-index: 0;
}

.emergency-image img {
    position: relative;
    width: 100%;
    z-index: 2;
    transition: .5s ease;
    height: 570px;
    object-fit: cover;
}

.emergency-image:hover img {
    transform: translateY(-10px) scale(1.03);
}



.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fff;
    border-radius: 15px;
    padding: 20px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
}


.floating-badge i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f67823, #ff9800);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.floating-badge h3 {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin: 0;
}

.floating-badge span {
    font-size: 15px;
    color: #666;
}


@keyframes floatBadge {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}



.info-box {
    transition: .4s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    border-color: #f67823;
    box-shadow: 0 20px 40px rgba(255, 87, 34, .15);
}

.info-box:hover i {
    transform: rotateY(180deg);
    transition: .5s;
}



.emergency-buttons .btn-book {
    position: relative;
    overflow: hidden;
}

.emergency-buttons .btn-book::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    transform: skewX(-25deg);
    transition: .6s;
}

.emergency-buttons .btn-book:hover::before {
    left: 130%;
}

.emergency-buttons .btn-book i {
    transition: .3s;
}

.emergency-buttons .btn-book:hover i {
    transform: translateX(6px);
}

.emergency-buttons .btn-call {
    transition: .3s;
}

.emergency-buttons .btn-call:hover {
    color: #f67823;
}

.emergency-buttons .btn-call:hover i {
    background: #f67823;
    color: #fff;
    transform: rotate(-15deg);
}


.emergency-content {
    opacity: 0;
    transform: translateX(-60px);
    transition: .8s ease;
}

.emergency-image {
    opacity: 0;
    transform: translateX(60px);
    transition: .8s ease;
}

.emergency-content.show {
    opacity: 1;
    transform: translateX(0);
}

.emergency-image.show {
    opacity: 1;
    transform: translateX(0);
}



@media(max-width:1200px) {

    .emergency-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px;
    }

    .emergency-content {
        text-align: center;
    }

    .emergency-info {
        justify-content: center;
    }

    .emergency-buttons {
        justify-content: center;
    }

    .floating-badge {
        left: 20px;
    }

}

@media(max-width:992px) {

    .emergency-service {
        padding: 90px 0;
    }

    .emergency-content h2 {
        font-size: 42px;
    }

    .emergency-wrapper {
        padding: 45px;
        border-radius: 28px;
    }

}

@media(max-width:768px) {

    .emergency-wrapper {
        padding: 30px;
    }

    .emergency-content h2 {
        font-size: 32px;
    }

    .emergency-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .emergency-info {
        flex-direction: column;
    }

    .emergency-buttons {
        flex-direction: column;
        width: 100%;
    }

    .emergency-buttons .btn-book,
    .emergency-buttons .btn-call {
        width: 100%;
        justify-content: center;
    }

    .floating-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }

}

@media(max-width:576px) {

    .emergency-service {
        padding: 60px 0;
    }

    .emergency-wrapper {
        padding: 0px 0px;
    }

    .emergency-content h2 {
        font-size: 24px;
    }

    .emergency-wrapper {
        gap: 48px;
    }

    .emergency-tag {
        font-size: 12px;
        padding: 10px 18px;
    }

    .emergency-content {
        text-align: left;
    }

    .info-box {
        padding: 16px;
    }

    .info-box i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .floating-badge {
        width: 100%;
        display: none;
    }


    .emergency-image img {
        height: 100%;
        border-radius: 20px;
    }


    .emergency-image::before {
        width: 0px;
        height: 0px;
        display: none;
    }

}











.premium-testimonial {
    padding: 90px 0;
    background: #f7f9fc;
    overflow: hidden;
}



.premium-testimonial .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


.premium-testimonial-heading {
    text-align: center;
    margin-bottom: 40px;
}


.premium-testimonial-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #00365c;
    margin-bottom: 15px;
}


.premium-testimonial-heading p {
    margin: auto;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


.premium-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}


.premium-slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}


.premium-track {
    display: flex;
    gap: 30px;
    transition: 0.6s ease-in-out;
}



.premium-card {
    position: relative;
    min-width: calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}



.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}


.quote {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00365c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}



.rating {
    color: #ffb400;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}


.premium-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    min-height: 95px;
}



.profile {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}


.profile img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f67823;
}


.profile h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #111;
}



.profile span {
    font-size: 14px;
    color: #777;
}


.premium-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #f67823;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    flex-shrink: 0;
}


.premium-arrow:hover {
    background: #00365c;
    transform: scale(1.1);
}



.premium-card.active {
    transform: scale(1.08);
    background: white;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    z-index: 2;
}


.premium-card.side-card {
    opacity: .3;
    transform: scale(.92);
}


.premium-dots {
    text-align: center;
    margin-top: 40px;
}


.premium-dots span {
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #00365c;
    margin: 0 6px;
    cursor: pointer;
    transition: .3s;
}



.premium-dots span.active {
    width: 35px;
    border-radius: 20px;
    background: #f67823;
}



@keyframes testimonialFade {

    from {
        opacity: 0;
        transform: translateY(20px);
    }


    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.premium-card {
    animation: testimonialFade .6s ease;
}



@media(max-width:992px) {

    .premium-testimonial {
        padding: 80px 0;
    }


    .premium-testimonial-heading h2 {
        font-size: 36px;
    }


    .premium-card {
        min-width: calc(50% - 15px);
        padding: 35px 25px;
    }


    .premium-card.active {
        transform: scale(1.03);
    }



    .premium-arrow {
        width: 45px;
        height: 45px;
    }

}




@media(max-width:600px) {

    .premium-testimonial {
        padding: 60px 0;
    }


    .premium-testimonial-heading {
        margin-bottom: 20px;
    }


    .premium-testimonial-heading h2 {
        font-size: 28px;
    }


    .premium-testimonial .container {
        width: 100%;
    }


    .premium-testimonial-heading p {
        font-size: 14px;
        line-height: 1.5;
    }


    .premium-slider-wrapper {
        gap: 10px;
    }


    .premium-slider {
        padding: 20px 0;
    }


    .premium-track {
        gap: 20px;
    }



    .premium-card {
        min-width: 100%;
        padding: 30px 25px;
    }


    .premium-card.active {
        transform: scale(1);
    }


    .quote {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }


    .rating {
        font-size: 18px;
    }


    .premium-card p {
        font-size: 15px;
        min-height: auto;
    }


    .profile img {
        width: 55px;
        height: 55px;
    }


    .profile h4 {
        font-size: 16px;
    }


    .premium-arrow {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }


    .premium-dots {
        margin-top: 25px;
    }

}



@media(max-width:400px) {
    .premium-slider-wrapper {
        gap: 5px;
    }

    .premium-arrow {
        display: none;
    }


}








.brand-service-section {
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}


.brand-service-section .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


.brand-heading {
    text-align: center;
    margin-bottom: 40px;
}


.brand-heading h2 {
    font-size: 38px;
    margin: 0 0 15px;
    font-weight: 800;
    color: #00365c;
}


.brand-heading p {
    color: #666;
    margin: auto;
}



.brand-slider {
    overflow: hidden;
    width: 100%;
}


.brand-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: brandMove 25s linear infinite;
}



.brand-slider:hover .brand-track {
    animation-play-state: paused;
}


.brand-card {
    width: 170px;
    height: 120px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
    border: 1px solid #eee;
}


.brand-card span {
    font-size: 24px;
    font-weight: 800;
    color: #222222b8;
    letter-spacing: .5px;
    transition: .3s;
}


.brand-card:hover {
    background: #f67823;
    transform: translateY(0px);
}


.brand-card:hover span {
    color: #fff;
}


@keyframes brandMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}




@media(max-width:768px) {

    .brand-heading h2 {
        font-size: 26px;
    }


    .brand-card {
        width: 170px;
        height: 100px;
    }


    .brand-card img {
        max-width: 90px;
        max-height: 45px;
    }


    .brand-track {
        gap: 20px;
    }


    .brand-service-section {
        padding: 60px 0;
    }


    .brand-service-section .container {
        width: 100%;
    }


    .brand-service-section .about-subtitle {
        font-size: 13px;
        margin-bottom: 18px;
    }


    .brand-heading p {
        font-size: 15px;
    }


}










.contact-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: #f7f9fc;
}



.contact-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #f67823;
    opacity: .08;
    filter: blur(120px);
    top: -250px;
    left: -200px;
}

.contact-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #ff9f43;
    opacity: .06;
    filter: blur(120px);
    right: -200px;
    bottom: -220px;
}



.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}


.contact-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}


.contact-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border: 1px solid rgba(255, 107, 53, .35);
    border-radius: 50px;
    color: #ff8a5c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


.contact-subtitle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f67823;
    box-shadow: 0 0 12px #f67823;
}


.contact-heading h2 {
    margin-top: 5px;
    color: #00365c;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 800;
}



.contact-heading p {
    margin-top: 18px;
    color: #939495;
    font-size: 16px;
    line-height: 1.6;
}



.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


.contact-card {
    position: relative;
    min-height: 245px;
    padding: 30px 25px;
    border: 1px solid rgb(0 54 92);
    border-radius: 22px;
    background: rgba(255, 255, 255, .045);
    backdrop-filter: blur(15px);
    overflow: hidden;
    transition: .4s ease;
}



.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 0;
    height: 3px;
    background: #f67823;
    border-radius: 10px;
    transition: .4s ease;
}

.contact-card:hover::before {
    width: 70px;
}



.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, .35);
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}



.contact-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 107, 53, .12);
    color: #f67823;
    font-size: 24px;
    margin-bottom: 24px;
    transition: .4s ease;
}


.contact-card:hover .contact-icon {
    background: #f67823;
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}


.contact-content span {
    display: block;
    color: #00365c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 6px;
}


.contact-content h3 {
    color: #525252;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}


.contact-content p {
    margin-top: 10px;
    color: #727070;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 0px;
}



.contact-content .contact-button {
    display: inline-block;
    color: #727070;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
    transition: .3s;
}


.contact-content .contact-button:hover {
    color: #f67823;
}





.contact-arrow {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
    background: #f67823;
}


.contact-card:hover .contact-arrow {
    background: #f67823;
    border-color: #f67823;
    color: #fff;
    transform: rotate(45deg);
}




.contact-cta {
    margin-top: 55px;
    padding: 30px 35px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(100deg, #f67823, #f4511e);
    box-shadow: 0 25px 60px rgba(255, 107, 53, .20);
}


.cta-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cta-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 23px;
}

.cta-content span {
    display: block;
    color: rgba(255, 255, 255, .75);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-content h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.cta-content p {
    color: rgba(255, 255, 255, .78);
    margin: 4px 0 0;
    font-size: 13px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.contact-book-btn,
.contact-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.contact-book-btn {
    background: #fff;
    color: #f4511e;

}

.contact-call-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
}

.contact-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.contact-call-btn:hover {
    background: #fff;
    color: #f4511e;
}



@media(max-width:992px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-heading h2 {
        font-size: 40px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card:last-child {
        grid-column: 1 / -1;
    }

}



@media(max-width:768px) {

    .contact-section {
        padding: 75px 0;
    }

    .contact-heading {
        margin-bottom: 35px;
        text-align: left;
    }

    .contact-heading h2 {
        font-size: 32px;
    }

    .contact-heading p {
        font-size: 14px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card:last-child {
        grid-column: auto;
    }

    .contact-card {
        min-height: auto;
        padding: 27px 24px;
    }

    .contact-cta {
        margin-top: 35px;
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        width: 100%;
    }

    .contact-book-btn,
    .contact-call-btn {
        flex: 1;
    }



    .contact-section::before {
        display: none;
    }

}



@media(max-width:480px) {

    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        padding: 0 10px;
    }

    .contact-heading h2 {
        font-size: 24px;
        margin-top: 0px;
    }

    .contact-heading p {
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-card {
        padding: 24px 10px;
        border-radius: 18px;
    }


    .contact-content .contact-button {
        font-size: 14px;
    }


    .contact-content p {
        color: #464141;
        font-size: 14px;
        line-height: 1.5;
    }


    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 21px;
        margin-bottom: 20px;
    }

    .contact-content h3 {
        font-size: 19px;
    }

    .contact-content a {
        font-size: 14px;
    }

    .contact-arrow {
        top: 22px;
        right: 20px;
    }

    .contact-cta {
        padding: 22px 20px;
    }

    .cta-content {
        align-items: flex-start;
    }

    .cta-content h3 {
        font-size: 18px;
    }

    .cta-content p {
        font-size: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .contact-book-btn,
    .contact-call-btn {
        width: 100%;
    }

}









.asm-footer {
    position: relative;
    background: #071d2b;
    color: #ffffff;
    overflow: hidden;
}


.asm-footer::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -180px;
    background: rgba(255, 122, 0, .08);
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.asm-footer::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -250px;
    left: -180px;
    background: rgba(15, 61, 86, .5);
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}



.asm-footer-cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 90px 50px;
    border-radius: 24px;
    overflow: hidden;
}



.asm-footer-cta-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: 40%;
    bottom: -130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
}



.asm-footer-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}


.asm-footer-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #f67823;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.asm-footer-cta-label i {
    font-size: 15px;
}



.asm-footer-cta-title {
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.5px;
}

.asm-footer-cta-title span {
    color: #f67823;
}



.asm-footer-cta-text {
    max-width: 620px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.8;
}



.asm-footer-cta-action {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}



.asm-footer-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50px;
    color: #ffffff;
    background: rgba(255, 255, 255, .05);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .35s ease;
}

.asm-footer-call-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .35);
    transform: translateY(-3px);
}



.asm-footer-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 50px;
    color: #ffffff;
    background: #f67823;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(255, 122, 0, .25);
    transition: all .35s ease;
}

.asm-footer-book-btn:hover {
    color: #ffffff;
    background: #f67823;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(255, 122, 0, .35);
}

.asm-footer-book-btn i {
    transition: transform .35s ease;
}

.asm-footer-book-btn:hover i {
    transform: translate(3px, -3px);
}



.asm-footer-main {
    position: relative;
    z-index: 2;
    padding: 75px 0 55px;
}



.asm-footer-column {
    position: relative;
}



.asm-footer-company {
    padding-right: 30px;
}



.asm-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.asm-footer-logo img {
    width: 190px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all .35s ease;
}

.asm-footer-logo:hover img {
    transform: translateY(-3px);
}



.asm-footer-description {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.9;
}



.asm-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.asm-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    color: rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .03);
    font-size: 15px;
    text-decoration: none;
    transition: all .35s ease;
}

.asm-footer-social a:hover {
    color: #ffffff;
    background: #f67823;
    border-color: #f67823;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, .22);
}



.asm-footer-title {
    position: relative;
    margin: 4px 0 25px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
}



.asm-footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: #f67823;
}

.asm-footer-title::before {
    content: "";
    position: absolute;
    left: 40px;
    bottom: 0;
    width: 6px;
    height: 2px;
    background: rgba(255, 122, 0, .35);
}



.asm-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.asm-footer-links li {
    margin: 0;
}

.asm-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    text-decoration: none;
    transition: all .3s ease;
}

.asm-footer-links a i {
    color: #f67823;
    font-size: 10px;
    transition: transform .3s ease;
}

.asm-footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.asm-footer-links a:hover i {
    transform: translateX(3px);
}



.asm-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 19px;
}



.asm-footer-contact-icon {
    width: 39px;
    height: 39px;
    min-width: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #f67823;
    background: rgba(255, 122, 0, .09);
    border: 1px solid rgba(255, 122, 0, .12);
    font-size: 14px;
    transition: all .3s ease;
}

.asm-footer-contact-item:hover .asm-footer-contact-icon {
    color: #ffffff;
    background: #f67823;
    border-color: #f67823;
    transform: translateY(-2px);
}



.asm-footer-contact-content {
    padding-top: 1px;
}

.asm-footer-contact-content span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .42);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.asm-footer-contact-content p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.6;
}

.asm-footer-contact-content a {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    text-decoration: none;
    transition: color .3s ease;
}

.asm-footer-contact-content a:hover {
    color: #f67823;
}



.asm-footer-areas {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: rgba(0, 0, 0, .10);
}



.asm-footer-areas-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 22px 0;
}



.asm-footer-areas-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: max-content;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.asm-footer-areas-heading i {
    color: #f67823;
    font-size: 16px;
}



.asm-footer-area-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.asm-footer-area-list a {
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 30px;
    color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .025);
    font-size: 11px;
    text-decoration: none;
    transition: all .3s ease;
}

.asm-footer-area-list a:hover {
    color: #ffffff;
    border-color: rgba(255, 122, 0, .45);
    background: rgba(255, 122, 0, .08);
}


.asm-footer-bottom {
    position: relative;
    z-index: 2;
    background: #051721;
}

.asm-footer-bottom-inner {
    padding: 20px;
    text-align: center;
}


.asm-footer-copyright {
    margin: 0;
    color: rgb(255 255 255 / 82%);
    font-size: 12px;
}


.asm-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 13px;
}

.asm-footer-bottom-links a {
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    text-decoration: none;
    transition: color .3s ease;
}

.asm-footer-bottom-links a:hover {
    color: #f67823;
}

.asm-footer-bottom-links span {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .15);
}



@media (max-width:1399px) {

    .asm-footer-cta-title {
        font-size: 31px;
    }

}



@media (max-width:1199px) {

    .asm-footer-cta-box {
        padding: 40px;
    }

    .asm-footer-cta-title {
        font-size: 28px;
    }

    .asm-footer-company {
        padding-right: 10px;
    }

    .asm-footer-logo img {
        width: 170px;
    }

}



@media (max-width:991px) {

    .asm-footer-cta {
        padding-top: 55px;
    }

    .asm-footer-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px;
    }

    .asm-footer-cta-action {
        width: 100%;
    }

    .asm-footer-call-btn,
    .asm-footer-book-btn {
        flex: 1;
    }

    .asm-footer-main {
        padding: 60px 0 45px;
    }

    .asm-footer-company {
        padding-right: 0;
    }

    .asm-footer-areas-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }


    .asm-footer-cta-content {
        text-align: center;
    }

}



@media (max-width:767px) {

    .asm-footer-cta {
        padding-top: 40px;
    }

    .asm-footer-cta-box {
        padding: 30px 24px;
        border-radius: 20px;
        gap: 25px;
    }

    .asm-footer-cta-title {
        font-size: 25px;
    }

    .asm-footer-cta-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .asm-footer-cta-action {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .asm-footer-call-btn,
    .asm-footer-book-btn {
        width: 100%;
        flex: none;
    }

    .asm-footer-main {
        padding: 50px 0 35px;
    }

    .asm-footer-column {
        margin-bottom: 15px;
    }

    .asm-footer-logo img {
        width: 160px;
    }

    .asm-footer-description {
        font-size: 13px;
    }

    .asm-footer-title {
        margin-top: 10px;
    }

    .asm-footer-social {
        margin-top: 20px;
    }

    .asm-footer-areas-inner {
        padding: 20px 0;
    }

    .asm-footer-area-list {
        gap: 6px;
    }

    .asm-footer-bottom-inner {
        min-height: auto;
        padding: 20px 0;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

}


@media (max-width:575px) {

    .asm-footer-cta-box {
        padding: 26px 20px;
    }

    .asm-footer-cta-label {
        font-size: 10px;
        letter-spacing: 1.1px;
    }

    .asm-footer-cta-title {
        font-size: 22px;
    }

    .asm-footer-cta-text {
        font-size: 12px;
    }

    .asm-footer-call-btn,
    .asm-footer-book-btn {
        min-height: 48px;
        font-size: 13px;
    }

    .asm-footer-main {
        padding: 45px 0 25px;
    }

    .asm-footer-logo img {
        width: 145px;
    }

    .asm-footer-contact-item {
        gap: 10px;
    }

    .asm-footer-contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .asm-footer-area-list a {
        font-size: 10px;
        padding: 5px 9px;
    }

    .asm-footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

}



@media (max-width:400px) {

    .asm-footer-cta-title {
        font-size: 20px;
    }

    .asm-footer-cta-box {
        padding: 24px 17px;
    }

    .asm-footer-logo img {
        width: 135px;
    }

    .asm-footer-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .asm-footer-links a {
        font-size: 14px;
    }

    .asm-footer-contact-content p,
    .asm-footer-contact-content a {
        font-size: 13px;
    }

    .asm-footer-copyright {
        font-size: 10px;
    }

    .asm-footer-bottom-links a {
        font-size: 10px;
    }


    .asm-footer ol,
    ul {
        padding-left: 10px;
    }


    .booking-card textarea {
        resize: none;
        height: 100px;
    }
}


@media (max-width:320px) {

    .asm-footer-cta-title {
        font-size: 19px;
    }

    .asm-footer-cta-text {
        font-size: 14px;
    }

    .asm-footer-call-btn,
    .asm-footer-book-btn {
        min-height: 45px;
        font-size: 12px;
    }

    .asm-footer-social a {
        width: 36px;
        height: 36px;
    }

}


section.need {
    background: #0d354b;
}








.asm-sticky-contact {
    position: fixed;
    right: 22px;
    bottom: 110px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}


.asm-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 58px;
    height: 58px;
    padding: 0;
    overflow: hidden;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transition: width 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}



.asm-sticky-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    transition: transform 0.3s ease;
}


.asm-sticky-text {
    padding-left: 4px;
    padding-right: 20px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}


.asm-sticky-btn:hover {
    width: 150px;
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}


.asm-sticky-btn:hover .asm-sticky-text {
    opacity: 1;
    transform: translateX(0);
}


.asm-sticky-btn:hover .asm-sticky-icon {
    transform: scale(1.08);
}


.asm-whatsapp-btn {
    background: #25D366;
    color: #FFFFFF;
}


.asm-whatsapp-btn:hover {
    background: #20BA5A;
    color: #FFFFFF;
}


.asm-call-btn {
    background: #f62323;
    color: #FFFFFF;
}


.asm-call-btn:hover {
    background: #f62323;
    color: #FFFFFF;
}



.asm-whatsapp-btn .asm-sticky-icon {
    animation: asmWhatsappPulse 2.5s infinite;
}


@keyframes asmWhatsappPulse {

    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.12);
    }

    20% {
        transform: scale(1);
    }

}


.asm-call-btn .asm-sticky-icon {
    animation: asmCallShake 3s infinite;
}


@keyframes asmCallShake {

    0%,
    85%,
    100% {
        transform: rotate(0deg);
    }

    88% {
        transform: rotate(-8deg);
    }

    91% {
        transform: rotate(8deg);
    }

    94% {
        transform: rotate(-5deg);
    }

    97% {
        transform: rotate(5deg);
    }

}



@media (max-width: 600px) {

    .asm-sticky-contact {
        right: 14px;
        bottom: 18px;
        gap: 10px;
    }


    .asm-sticky-btn {
        width: 54px;
        height: 54px;
    }


    .asm-sticky-icon {
        width: 54px;
        min-width: 54px;
        height: 54px;
        font-size: 21px;
    }


    .asm-sticky-btn:hover {
        width: 54px;
        transform: translateY(-3px);
    }


    .asm-sticky-text {
        display: none;
    }


    .asm-sticky-contact {
        right: 10px;
        bottom: 94px;
        gap: 20px;
    }

}



@media (max-width: 380px) {


    .asm-sticky-btn {
        width: 48px;
        height: 48px;
    }


    .asm-sticky-icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
        font-size: 19px;
    }


    .asm-sticky-btn:hover {
        width: 48px;
    }

}