.ac-intro-section {
    position: relative;
    padding: 90px 0px;
    background: rgb(247 248 250);
    overflow: hidden;
}


.ac-intro-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


.ac-intro-wrapper {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 65px;
}


.ac-intro-image {
    position: relative;
}


.ac-image-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding: 12px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f67823, #00365c, #f67823);
    box-shadow: 0 30px 70px rgba(255, 107, 53, .18);
}


.ac-image-box::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px dashed #ff6b35;
    border-radius: 50%;
    left: -45px;
    top: -45px;
    z-index: -1;
}


.ac-image-box::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #ff6b35;
    opacity: .08;
    border-radius: 50%;
    right: -50px;
    bottom: -50px;
    z-index: -1;
}

.ac-image-box img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
}




.ac-experience-badge {
    position: absolute;
    right: -35px;
    bottom: 35px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}


.ac-experience-badge strong {
    display: block;
    color: #f67823;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}


.ac-experience-badge span {
    margin-top: 7px;
    color: #555;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}



.ac-intro-content {
    position: relative;
}


.ac-intro-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border-radius: 50px;
    background: #fff3ed;
    color: #ff6b35;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
}


.ac-intro-subtitle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b35;
    box-shadow: 0 0 0 5px rgba(255, 107, 53, .10);
}

.ac-intro-content h2 {
    margin-top: 0;
    max-width: 700px;
    color: #00365c;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 800;
}




.ac-intro-description {
    max-width: 700px;
    margin-top: 15px;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}



.ac-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
}


.ac-highlight-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px;
    border: 1px solid #00365c;
    border-radius: 15px;
    background: #fff;
    transition: .35s ease;
}


.ac-highlight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, .25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .07);
}


.ac-highlight-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff1eb;
    color: #f67823;
    font-size: 18px;
    transition: .35s ease;
}



.ac-highlight-card:hover .ac-highlight-icon {
    background: #ff6b35;
    color: #fff;
    transform: scale(1.05);
}



.ac-highlight-content h3 {
    margin: 0;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
}


.ac-highlight-content p {
    margin-top: 5px;
    color: #777;
    font-size: 12px;
    line-height: 1.6;
}



.ac-intro-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
}



.ac-intro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 23px;
    border-radius: 10px;
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(255, 107, 53, .20);
    transition: .35s ease;
}

.ac-intro-btn:hover {
    color: #fff;
    background: #e95726;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(255, 107, 53, .28);
}



.ac-intro-call {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
    text-decoration: none;
}

.ac-call-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #ff6b35;
    transition: .3s;
}

.ac-intro-call:hover .ac-call-icon {
    background: #ff6b35;
    color: #fff;
}

.ac-intro-call small {
    display: block;
    color: #888;
    font-size: 10px;
    margin-bottom: 2px;
}

.ac-intro-call strong {
    display: block;
    color: #222;
    font-size: 14px;
}




@media(max-width:992px) {

    .ac-intro-section {
        padding: 85px 0;
    }

    .ac-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ac-intro-image {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .ac-image-box {
        max-width: 600px;
    }

    .ac-image-box img {
        height: 450px;
    }

    .ac-intro-content h2 {
        font-size: 40px;
    }

}



@media(max-width:768px) {

    .ac-intro-section {
        padding: 70px 0;
    }

    .ac-intro-container {
        padding: 0 15px;
    }

    .ac-intro-wrapper {
        gap: 45px;
    }

    .ac-image-box {
        padding: 8px;
        border-radius: 22px;
    }

    .ac-image-box img {
        height: 380px;
        border-radius: 17px;
    }

    .ac-experience-badge {
        width: 115px;
        height: 115px;
        right: -15px;
        bottom: 20px;
    }

    .ac-experience-badge strong {
        font-size: 24px;
    }

    .ac-experience-badge span {
        font-size: 10px;
    }

    .ac-intro-content h2 {
        font-size: 32px;
    }

    .ac-intro-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .ac-highlights {
        grid-template-columns: 1fr;
    }

}



@media(max-width:480px) {
    .ac-intro-section {
        padding: 60px 0;
        background: #f7f1f0;
    }

    .ac-image-box img {
        height: 310px;
    }

    .ac-experience-badge {
        width: 95px;
        height: 95px;
        right: -8px;
        bottom: 15px;
    }

    .ac-experience-badge strong {
        font-size: 20px;
    }

    .ac-experience-badge span {
        font-size: 9px;
    }

    .ac-intro-content h2 {
        font-size: 22px;
    }

    .ac-intro-subtitle {
        font-size: 10px;
        padding: 8px 15px;
    }

    .ac-highlight-card {
        padding: 15px;
    }

    .ac-intro-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

}












.ac-types-section {
    position: relative;
    padding: 90px 0;
    background: #f7f8fa;
    overflow: hidden;
}

.ac-types-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #ff6b35;
    opacity: .06;
    filter: blur(110px);
    top: -200px;
    left: -180px;
}

.ac-types-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}


.ac-types-heading {
    max-width: 950px;
    margin: 0 auto 40px;
    text-align: center;
}


.ac-types-heading h2 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    color: #00365c;
}


.ac-types-heading p {
    margin-top: 16px;
    color: #707070;
    font-size: 15px;
    line-height: 1.5;
}


.ac-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}



.ac-type-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .45s ease;
}

.ac-type-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, .25);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .10);
}



.ac-type-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.ac-type-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, .55));
}

.ac-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s ease;
}


.ac-type-card:hover .ac-type-image img {
    transform: scale(1.08);
}



.ac-type-number {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f67823;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}


.ac-type-content {
    padding: 25px 15px 25px;
    text-align: center;
}


.ac-type-content h3 {
    margin: 0;
    color: #222;
    font-size: 21px;
    font-weight: 750;
}

.ac-type-content p {
    margin-top: 10px;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}



.ac-type-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #ff6b35;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.ac-type-content a i {
    transition: .3s;
}

.ac-type-content a:hover {
    color: #e95726;
}

.ac-type-content a:hover i {
    transform: translate(3px, -3px);
}



@media(max-width:992px) {

    .ac-types-section {
        padding: 90px 0;
    }

    .ac-types-heading h2 {
        font-size: 40px;
    }

    .ac-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}



@media(max-width:768px) {

    .ac-types-section {
        padding: 70px 0;
    }

    .ac-types-container {
        padding: 0 15px;
    }

    .ac-types-heading {
        margin-bottom: 40px;
    }

    .ac-types-heading h2 {
        font-size: 32px;
    }

    .ac-types-heading p {
        font-size: 14px;
    }

    .ac-types-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ac-type-image {
        height: 240px;
    }

}



@media(max-width:480px) {

    .ac-types-section {
        padding: 60px 0;
    }

    .ac-types-heading h2 {
        font-size: 28px;
    }

    .ac-types-heading p {
        font-size: 13px;
    }

    .ac-type-image {
        height: 220px;
    }

    .ac-type-content {
        padding: 22px 20px 24px;
    }

}









.ac-services-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}



.ac-services-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #ff6b35;
    opacity: .055;
    filter: blur(120px);
    top: -220px;
    left: -200px;
}

.ac-services-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #ff9f43;
    opacity: .05;
    filter: blur(110px);
    right: -200px;
    bottom: -200px;
}


.ac-services-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


.ac-services-heading {
    margin: 0 auto 40px;
    text-align: center;
}


.ac-services-heading h2 {
    color: #00365c;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
}


.ac-services-heading p {
    margin-top: 15px;
    color: #707070;
    font-size: 15px;
    line-height: 1.5;

}



.ac-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}


.ac-service-card {
    position: relative;
    padding: 25px 20px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #eeeeee;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .045);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.ac-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, .25);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .09);
}


.ac-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.ac-service-number {
    font-size: 12px;
    font-weight: 800;
    color: #b6b6b6;
    letter-spacing: 1px;
}


.ac-service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #00365c21;
    color: #f67823;
    font-size: 23px;
    transition: .4s ease;
}


.ac-service-card:hover .ac-service-icon {
    background: #f67823;
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}



.ac-service-content h3 {
    margin: 0;
    color: #222;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 750;
}


.ac-service-content p {
    margin-top: 10px;
    color: #777;
    font-size: 14px;
    line-height: 1.5;
}



.ac-service-card::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f67823;
    opacity: .09;
    right: -45px;
    bottom: -45px;
    transition: .5s ease;
}


.ac-service-card:hover::before {
    width: 180px;
    height: 180px;
    opacity: .07;
}



.ac-service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 0;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background: #ff6b35;
    transition: .4s ease;
}


.ac-service-card:hover::after {
    width: 55px;
}


.ac-service-card.featured {
    background: linear-gradient(145deg, #f67823, #f67823);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(255, 107, 53, .20);
}


.ac-service-card.featured .ac-service-number {
    color: rgba(255, 255, 255, .65);
}


.ac-service-card.featured .ac-service-icon {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}


.ac-service-card.featured .ac-service-content h3 {
    color: #fff;
}


.ac-service-card.featured .ac-service-content p {
    color: rgba(255, 255, 255, .78);
}


.ac-service-card.featured .ac-service-content a {
    color: #fff;
}


.ac-service-card.featured:hover {
    box-shadow: 0 30px 65px rgba(255, 107, 53, .28);
}



@media(max-width:1100px) {

    .ac-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}



@media(max-width:992px) {

    .ac-services-section {
        padding: 90px 0;
    }

    .ac-services-heading h2 {
        font-size: 40px;
    }

    .ac-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}



@media(max-width:768px) {

    .ac-services-section {
        padding: 70px 0;
    }

    .ac-services-container {
        padding: 0 15px;
    }

    .ac-services-heading {
        margin-bottom: 40px;
    }

    .ac-services-heading h2 {
        font-size: 32px;
    }

    .ac-services-heading p {
        font-size: 14px;
    }

    .ac-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ac-service-card {
        min-height: auto;
        padding: 23px;
    }

}



@media(max-width:480px) {

    .ac-services-section {
        padding: 60px 0;
    }

    .ac-services-heading h2 {
        font-size: 28px;
    }

    .ac-services-heading p {
        font-size: 13px;
        line-height: 1.75;
    }

    .ac-service-card {
        padding: 21px;
        border-radius: 17px;
    }

    .ac-service-icon {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }

    .ac-service-content h3 {
        font-size: 18px;
    }

}








.hero-ac .hero-content h1 {
    font-size: 57px;
    font-weight: 800;
    line-height: 1.11;
    margin-bottom: 20px;
    color: #fff;
}




.hero-micro .hero-content h1 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.11;
    margin-bottom: 20px;
    color: #fff;
}


.about-geyser .ac-intro-content h2 {
    margin-top: 0;
    max-width: 700px;
    color: #00365c;
    font-size: 33px;
    line-height: 1.18;
    font-weight: 800;
}



.hero-ro .hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.11;
    margin-bottom: 20px;
    color: #fff;
}



.about-ro .ac-intro-content h2 {
    margin-top: 0;
    max-width: 700px;
    color: #00365c;
    font-size: 33px;
    line-height: 1.18;
    font-weight: 800;
}



.hero-chimney .hero-content h1 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.11;
    margin-bottom: 20px;
    color: #fff;
}








.geyser-services {
    background: #f7f8fa;
}








.gallery-breadcrumb-section {
    position: relative;
    width: 100%;
    min-height: 390px;
    display: flex;
    align-items: center;
    background: linear-gradient(110deg, #0f3d56 0%, #0f3d56 55%, #0f3d56 100%);
    overflow: hidden;
}



.gallery-breadcrumb-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #ff6b35;
    opacity: 0.10;
    filter: blur(100px);
    top: -220px;
    left: -150px;
}


.gallery-breadcrumb-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #ff8a5c;
    opacity: 0.07;
    filter: blur(100px);
    right: -150px;
    bottom: -180px;
}



.gallery-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .25), transparent 60%);
    pointer-events: none;
}



.gallery-breadcrumb-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}


.gallery-breadcrumb-content {
    text-align: center;
}



.gallery-breadcrumb-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 19px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    background: rgba(255, 255, 255, .06);
    color: #f67823;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
}



.gallery-breadcrumb-content h1 {
    color: #ffffff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0px;
}



.gallery-breadcrumb-content p {
    margin-top: 15px;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}


.gallery-breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
}



.gallery-breadcrumb-nav a {
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}


.gallery-breadcrumb-nav a:hover {
    color: #ff6b35;
}



.gallery-breadcrumb-nav span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 10px;
}



.gallery-breadcrumb-nav strong {
    color: #ff6b35;
    font-size: 13px;
    font-weight: 700;
}




@media (max-width: 992px) {

    .gallery-breadcrumb-section {
        min-height: 350px;
    }


    .gallery-breadcrumb-container {
        padding: 70px 25px;
    }


    .gallery-breadcrumb-content h1 {
        font-size: 48px;
    }

}



@media (max-width: 768px) {

    .gallery-breadcrumb-section {
        min-height: 320px;
    }


    .gallery-breadcrumb-container {
        padding: 65px 20px;
    }


    .gallery-breadcrumb-content {
        text-align: center;
        margin: 0 auto;
    }


    .gallery-breadcrumb-subtitle {
        font-size: 10px;
        padding: 8px 15px;
    }


    .gallery-breadcrumb-content h1 {
        margin-top: 18px;
        font-size: 40px;
    }


    .gallery-breadcrumb-content p {
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-breadcrumb-nav {
        margin-top: 22px;
    }


    .gallery-breadcrumb-content::after {
        margin-left: auto;
        margin-right: auto;
    }

}



@media (max-width: 480px) {

    .gallery-breadcrumb-section {
        min-height: 290px;
    }

    .gallery-breadcrumb-container {
        padding: 55px 15px;
    }

    .gallery-breadcrumb-content h1 {
        font-size: 30px;
    }

    .gallery-breadcrumb-content p {
        font-size: 13px;
    }

    .gallery-breadcrumb-nav {
        gap: 9px;
        padding: 9px 13px;
    }

    .gallery-breadcrumb-nav a,
    .gallery-breadcrumb-nav strong {
        font-size: 12px;
    }
}





.about-washing img {
    display: block;
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 22px;
    object-position: 50% 100%;
}







.gallery-section {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background: #f7f8fa;
    overflow: hidden;
}



.gallery-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #ff6b35;
    opacity: 0.045;
    filter: blur(120px);
    top: -220px;
    left: -200px;
    pointer-events: none;
}


.gallery-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #ff9a72;
    opacity: 0.04;
    filter: blur(110px);
    right: -200px;
    bottom: -200px;
    pointer-events: none;
}



.gallery-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.gallery-heading {
    margin: 0 auto 30px;
    text-align: center;
}



.gallery-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border-radius: 50px;
    background: #ffffff;
    color: #ff6b35;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}



.gallery-subtitle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b35;
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.10);
}


.gallery-heading h2 {
    margin: 0 0 20px;
    color: #00365c;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
}



.gallery-heading p {
    margin: 15px auto 0;
    color: #727272;
    font-size: 15px;
    line-height: 1.5;
}



.gallery-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin: 0 auto 55px;
    padding: 7px;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


.gallery-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 125px;
    padding: 12px 22px;
    border: none;
    outline: none;
    border-radius: 50px;
    background: transparent;
    color: #777777;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;

}


.gallery-tab i {
    font-size: 16px;
    transition: transform 0.35s ease;
}


.gallery-tab:not(.active):hover {
    color: #f67823;
    background: #fff3ed;
}


.gallery-tab:not(.active):hover i {
    transform: scale(1.08);
}


.gallery-tab.active {
    background: #f67823;
    color: #ffffff;
    box-shadow: 0 9px 22px rgba(255, 107, 53, 0.24);
}


.gallery-tab.active i {
    transform: scale(1.05);
}



.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}



.gallery-item {
    position: relative;
    width: 100%;
    min-width: 0;
    animation: galleryItemShow 0.45s ease both;
}



@keyframes galleryItemShow {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}



.gallery-card {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}



.gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}



.gallery-card:hover img {
    transform: scale(1.08);
}



.gallery-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.38) 40%, rgba(0, 0, 0, 0) 75%);
    opacity: 0;
    transition: opacity 0.4s ease;
}



.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}



.gallery-card-info {
    min-width: 0;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}



.gallery-card:hover .gallery-card-info {
    transform: translateY(0);
}



.gallery-card-info span {
    display: inline-block;
    margin-bottom: 7px;
    color: #ff986f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}



.gallery-card-info h3 {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}



.gallery-view-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 17px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transform: translateY(15px);
    transition: transform 0.4s ease, background 0.3s ease, border-color 0.3s ease;
}



.gallery-card:hover .gallery-view-btn {
    transform: translateY(0);
}


.gallery-view-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
}



.gallery-video-card {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
    border-radius: 20px;
    background: #111111;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}



.gallery-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.gallery-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.08) 100%);
}



.gallery-video-info {
    min-width: 0;
}



.gallery-video-info span {
    display: inline-block;
    margin-bottom: 7px;
    color: #ff986f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}



.gallery-video-info h3 {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}


.gallery-play-btn {
    position: relative;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #f67823;
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.30);
    transition: transform 0.3s ease, background 0.3s ease;
}



.gallery-play-btn:hover {
    transform: scale(1.08);
    background: #e95726;
}



.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.90);
    backdrop-filter: blur(8px);
}



.gallery-lightbox.active {
    display: flex;
    animation: galleryLightboxShow 0.3s ease;
}



@keyframes galleryLightboxShow {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}



.gallery-lightbox img {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    animation: galleryImageShow 0.35s ease;
}



@keyframes galleryImageShow {

    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}



.gallery-lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    color: #ffffff;
    font-size: 17px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, transform 0.3s ease;
}



.gallery-lightbox-close:hover {
    background: #ff6b35;
    transform: rotate(90deg);
}



@media (max-width: 1100px) {

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .gallery-card,
    .gallery-video-card {
        height: 300px;
    }

}



@media (max-width: 992px) {

    .gallery-section {
        padding: 90px 0;
    }

    .gallery-heading h2 {
        font-size: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .gallery-card,
    .gallery-video-card {
        height: 320px;
    }

}



@media (max-width: 768px) {

    .gallery-section {
        padding: 70px 0;
    }

    .gallery-container {
        padding: 0 15px;
    }

    .gallery-heading {
        margin-bottom: 40px;
    }

    .gallery-heading h2 {
        font-size: 32px;
    }

    .gallery-heading p {
        font-size: 13px;
        line-height: 1.75;
    }

    .gallery-tabs {
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-card,
    .gallery-video-card {
        height: 300px;
    }



    .gallery-card-overlay {
        opacity: 1;
    }

    .gallery-card-info {
        transform: translateY(0);
    }

    .gallery-view-btn {
        transform: translateY(0);
    }


    .hero-ac .hero-content h1 {
        font-size: 23px;
    }



    .hero-micro .hero-content h1 {
        font-size: 23px;
    }



    .about-geyser .ac-intro-content h2 {
        font-size: 22px;
    }


    .hero-ro .hero-content h1 {
        font-size: 21px;
    }


    .about-ro .ac-intro-content h2 {
        font-size: 21px;
    }


    .ac-intro-description {
        font-size: 14px;
        line-height: 1.5;
    }


    .ac-services-heading p {
        font-size: 14px;
        line-height: 1.5;
    }


    .hero-chimney .hero-content h1 {
        font-size: 22px;
    }

}



@media (max-width: 480px) {

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-heading h2 {
        font-size: 28px;
    }

    .gallery-heading p {
        font-size: 12.5px;
    }

    .gallery-subtitle {
        padding: 8px 15px;
        font-size: 10px;
    }

    .gallery-tabs {
        width: 100%;
        max-width: 310px;
        margin-left: auto;
        margin-right: auto;
        padding: 6px;
    }

    .gallery-tab {
        flex: 1;
        min-width: auto;
        padding: 11px 15px;
        font-size: 12px;
    }

    .gallery-tab i {
        font-size: 14px;
    }

    .gallery-card,
    .gallery-video-card {
        height: 260px;
        border-radius: 17px;
    }

    .gallery-card-overlay,
    .gallery-video-overlay {
        padding: 20px;
    }

    .gallery-card-info h3,
    .gallery-video-info h3 {
        font-size: 15px;
    }

    .gallery-view-btn {
        width: 43px;
        height: 43px;
        font-size: 15px;
    }

    .gallery-play-btn {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }

    .gallery-lightbox {
        padding: 15px;
    }

    .gallery-lightbox img {
        max-width: 94vw;
        max-height: 80vh;
        border-radius: 8px;
    }

    .gallery-lightbox-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
    }

}



@media (max-width: 360px) {

    .gallery-heading h2 {
        font-size: 25px;
    }

    .gallery-tab {
        padding: 10px 11px;
        gap: 6px;
        font-size: 11px;
    }

    .gallery-card,
    .gallery-video-card {
        height: 235px;
    }

    .gallery-card-overlay,
    .gallery-video-overlay {
        padding: 16px;
    }

}










.asm-thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #F7F9FB 0%, #FFFFFF 50%, #FFF5ED 100%);
}



.asm-thankyou-wrapper {
    width: 100%;
    max-width: 720px;
}



.asm-thankyou-card {
    position: relative;
    width: 100%;
    padding: 70px 60px;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #E5EAF0;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 54, 92, 0.12);
    overflow: hidden;
}



.asm-thankyou-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #F67823 0%, #F67823 50%, #00365C 100%);
}



.asm-thankyou-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(246, 120, 35, 0.06);
    pointer-events: none;
}



.asm-thankyou-icon {
    position: relative;
    z-index: 2;
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF1E7, #FFF8F3);
    border: 8px solid #FFFFFF;
    box-shadow: 0 15px 40px rgba(246, 120, 35, 0.20);
    color: #F67823;
    font-size: 46px;
    font-weight: 800;
    animation: asmThankyouPop 0.7s ease forwards;

}



@keyframes asmThankyouPop {

    0% {
        opacity: 0;
        transform: scale(0.5);

    }

    60% {
        opacity: 1;
        transform: scale(1.08);

    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}



.asm-thankyou-title {
    position: relative;
    z-index: 2;
    margin: 0 0 16px;
    color: #00365C;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}


.asm-thankyou-title span {
    color: #F67823;
}


.asm-thankyou-description {
    position: relative;
    z-index: 2;
    max-width: 530px;
    margin: 0 auto;
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}


.asm-thankyou-message {
    position: relative;
    z-index: 2;
    margin-top: 32px;
    padding: 22px 28px;
    text-align: left;
    border-radius: 18px;
    background: #F7F9FB;
    border: 1px solid #E5EAF0;
    border-left: 4px solid #F67823;
    text-align: center;
}



.asm-thankyou-message strong {
    display: block;
    margin-bottom: 8px;
    color: #00365C;
    font-size: 15px;
    font-weight: 700;
}



.asm-thankyou-message p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}



.asm-thankyou-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}


.asm-thankyou-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    padding: 15px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}


.asm-thankyou-home {
    background: #F67823;
    color: #FFFFFF;
    box-shadow: 0 12px 28px rgba(246, 120, 35, 0.25);
}



.asm-thankyou-home:hover {
    background: #00365C;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 54, 92, 0.22);
}



.asm-thankyou-call {
    background: #FFFFFF;
    color: #00365C;
    border: 1px solid #D9E1E7;
}



.asm-thankyou-call:hover {
    background: #00365C;
    color: #FFFFFF;
    border-color: #00365C;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 54, 92, 0.18);
}



.asm-thankyou-brand {
    position: relative;
    z-index: 2;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid #E8EDF1;
    color: #98A2B3;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.4px;
}



.asm-thankyou-brand strong {
    color: #00365C;
    font-size: 13px;
}



.asm-thankyou-brand strong::after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    margin: 7px auto 0;
    border-radius: 5px;
    background: #F67823;
}



@media (max-width: 768px) {

    .asm-thankyou-section {
        padding: 45px 18px;
    }


    .asm-thankyou-card {
        padding: 55px 35px;
        border-radius: 26px;
    }


    .asm-thankyou-icon {
        width: 90px;
        height: 90px;
        font-size: 40px;
    }


    .asm-thankyou-title {
        font-size: 37px;
    }


    .asm-thankyou-description {
        font-size: 15px;
    }

}



@media (max-width: 600px) {

    .asm-thankyou-section {
        min-height: 100vh;
        padding: 25px 15px;
    }


    .asm-thankyou-wrapper {
        width: 100%;
    }


    .asm-thankyou-card {
        padding: 48px 22px;
        border-radius: 23px;
    }


    .asm-thankyou-icon {
        width: 78px;
        height: 78px;
        margin-bottom: 23px;
        font-size: 34px;
        border-width: 6px;
    }


    .asm-thankyou-title {
        margin-bottom: 13px;
        font-size: 31px;
        letter-spacing: -0.5px;
    }


    .asm-thankyou-description {
        font-size: 14px;
        line-height: 1.7;
    }


    .asm-thankyou-message {
        margin-top: 25px;
        padding: 17px;
        border-radius: 14px;
    }


    .asm-thankyou-message strong {
        font-size: 14px;
    }


    .asm-thankyou-message p {
        font-size: 13px;
        line-height: 1.7;
    }


    .asm-thankyou-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 28px;
    }


    .asm-thankyou-btn {
        width: 100%;
        max-width: 290px;
        min-width: 0;
        padding: 14px 22px;
    }


    .asm-thankyou-brand {
        margin-top: 30px;
        padding-top: 20px;
        font-size: 11px;
    }

}



@media (max-width: 380px) {

    .asm-thankyou-section {
        padding: 20px 12px;
    }


    .asm-thankyou-card {
        padding: 40px 17px;
        border-radius: 20px;
    }


    .asm-thankyou-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }


    .asm-thankyou-title {
        font-size: 27px;
    }


    .asm-thankyou-description {
        font-size: 13px;
    }


    .asm-thankyou-message {
        padding: 15px;
    }


    .asm-thankyou-btn {
        max-width: 260px;
    }

}



.asm-thankyou-section ::selection {
    background: #F67823;
    color: #FFFFFF;
}











.asm-breadcrumb-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0px;
    background-image: url("../images/ac-services-breadcrumb.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}



.asm-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(15 61 86), rgb(15 61 86));
    z-index: 1;
}



.asm-breadcrumb-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}


.asm-breadcrumb-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.asm-breadcrumb-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 8px 17px;
    border-radius: 50px;
    background: rgba(246, 120, 35, 0.15);
    border: 1px solid rgba(246, 120, 35, 0.35);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
}


.asm-breadcrumb-subtitle i {
    color: #F67823;
    font-size: 15px;
}


.asm-breadcrumb-content h1 {
    margin: 0 0 40px;
    color: #FFFFFF;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
}



.asm-breadcrumb-content>p {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
}



.asm-breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    text-align: center;
}


.asm-breadcrumb-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s ease;
}


.asm-breadcrumb-nav a i {
    color: #F67823;
}


.asm-breadcrumb-nav a:hover {
    color: #F67823;
}



.asm-breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
}



.asm-breadcrumb-current {
    color: #F67823;
    font-size: 13px;
    font-weight: 700;
}



@media (max-width: 992px) {

    .asm-breadcrumb-section {
        padding: 70px 25px;
    }


    .asm-breadcrumb-content h1 {
        font-size: 44px;
    }

    .asm-breadcrumb-content>p {
        font-size: 16px;
    }

}



@media (max-width: 600px) {

    .asm-breadcrumb-section {
        padding: 65px 20px;
        background-position: center;
    }


    .asm-breadcrumb-overlay {
        background: linear-gradient(135deg, rgba(0, 54, 92, 0.96), rgba(0, 54, 92, 0.84));
    }


    .asm-breadcrumb-container {
        justify-content: center;
    }


    .asm-breadcrumb-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }


    .asm-breadcrumb-subtitle {
        font-size: 11px;
        padding: 7px 13px;
        margin-bottom: 13px;
    }


    .asm-breadcrumb-content h1 {
        font-size: 28px;
        letter-spacing: -.5px;
        text-align: center;
    }


    .asm-breadcrumb-content>p {
        max-width: 330px;
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: center;
    }


    .asm-breadcrumb-nav {
        padding: 10px 16px;
        gap: 8px;
    }


    .asm-breadcrumb-nav a,
    .asm-breadcrumb-current {
        font-size: 12px;
    }

}



@media (max-width: 380px) {

    .asm-breadcrumb-section {
        padding: 55px 15px;
    }


    .asm-breadcrumb-content h1 {
        font-size: 23px;
        margin-bottom: 20px;
    }


    .asm-breadcrumb-content>p {
        max-width: 290px;
        font-size: 12px;
    }


    .asm-breadcrumb-nav {
        padding: 9px 13px;
    }

}







.asm-booking-section {
    position: relative;
    width: 100%;
    padding: 90px 0px;
    background: linear-gradient(135deg, #f7f9fb 0%, #ffffff 52%, #fff8f3 100%);
    overflow: hidden;
}




.asm-booking-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}



.asm-booking-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 520px);
    align-items: center;
    gap: 70px;
}



.asm-booking-content {
    width: 100%;
    max-width: 590px;
}



.asm-booking-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    margin-bottom: 20px;
    color: #F67823;
    background: rgba(246, 120, 35, 0.09);
    border: 1px solid rgba(246, 120, 35, 0.18);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.asm-booking-subtitle i {
    font-size: 14px;
}


.asm-booking-content h2 {
    margin: 0 0 20px;
    color: #00365C;
    font-size: 44px;
    line-height: 1.17;
    font-weight: 800;
    letter-spacing: -1.3px;
}


.asm-booking-content h2 span {
    display: block;
    color: #F67823;
}



.asm-booking-description {
    max-width: 560px;
    margin: 0 0 34px;
    color: #687687;
    font-size: 15px;
    line-height: 1.85;
}



.asm-booking-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 20px;
    margin-bottom: 34px;
}



.asm-booking-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}



.asm-highlight-icon {
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #ffffff;
    background: #00365C;
    font-size: 17px;
    box-shadow: 0 8px 20px rgba(0, 54, 92, 0.12);
    transition: background 0.3s ease, transform 0.3s ease;
}

.asm-booking-highlight:hover .asm-highlight-icon {
    background: #F67823;
    transform: translateY(-3px);
}


.asm-booking-highlight h4 {
    margin: 2px 0 5px;
    color: #00365C;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 750;
}



.asm-booking-highlight p {
    margin: 0;
    color: #7b8794;
    font-size: 11px;
    line-height: 1.6;
}



.asm-booking-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    background: #ffffff;
    border: 1px solid #e4e9ee;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 54, 92, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.asm-booking-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0, 54, 92, 0.11);
}


.asm-booking-call-icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F67823;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(246, 120, 35, 0.20);
}



.asm-booking-call span {
    display: block;
    margin-bottom: 3px;
    color: #7b8794;
    font-size: 11px;
    line-height: 1.3;
}

.asm-booking-call a {
    color: #00365C;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.asm-booking-call a:hover {
    color: #F67823;
}



.asm-booking-form-wrapper {
    width: 100%;
}



.asm-booking-card {
    width: 100%;
    padding: 36px;
    background: #ffffff;
    border: 1px solid #e4e9ee;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 54, 92, 0.12);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.asm-booking-card:hover {
    box-shadow:
        0 30px 80px rgba(0, 54, 92, 0.15);
}



.asm-booking-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 27px;
    padding-bottom: 21px;
    border-bottom: 1px solid #e9edf1;
}



.asm-booking-card-header>div:first-child span {
    display: block;
    color: #F67823;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}



.asm-booking-card-header h3 {
    margin: 6px 0 0;
    color: #00365C;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 800;
}



.asm-booking-card-icon {
    width: 57px;
    min-width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #00365C, #005987);
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0, 54, 92, 0.18);
}



.asm-booking-form {
    width: 100%;
}


.asm-form-group {
    width: 100%;
    margin-bottom: 17px;
}


.asm-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #00365C;
    font-size: 12px;
    font-weight: 700;
}


.asm-input-box {
    position: relative;
    width: 100%;
}



.asm-input-box>i {
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: #F67823;
    font-size: 15px;
    pointer-events: none;
}


.asm-input-box input,
.asm-input-box select {
    width: 100%;
    height: 51px;
    padding: 0 12px 0 15px;
    border: 1px solid #dce3e9;
    border-radius: 11px;
    outline: none;
    background: #fafbfc;
    color: #344054;
    font-family: inherit;
    font-size: 13px;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}


.asm-input-box input::placeholder {
    color: #98a2b3;
}


.asm-input-box select {
    cursor: pointer;
}



.asm-input-box input:focus,
.asm-input-box select:focus {
    border-color: #F67823;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(246, 120, 35, 0.10);
}



.asm-textarea-box {
    position: relative;
    width: 100%;
}



.asm-textarea-box>i {
    position: absolute;
    top: 16px;
    left: 15px;
    z-index: 2;
    color: #F67823;
    font-size: 15px;
    pointer-events: none;
}


.asm-textarea-box textarea {
    display: block;
    width: 100%;
    min-height: 105px;
    padding: 14px 15px 14px 15px;
    border: 1px solid #dce3e9;
    border-radius: 14px;
    outline: none;
    resize: vertical;
    background: #fafbfc;
    color: #344054;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.6;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}



.asm-textarea-box textarea::placeholder {
    color: #98a2b3;
}



.asm-textarea-box textarea:focus {
    border-color: #F67823;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(246, 120, 35, 0.10);
}



.asm-booking-submit {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
    padding: 13px 22px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, #F67823, #ff913f);
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(246, 120, 35, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}



.asm-booking-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #00365C, #005987);
    box-shadow: 0 16px 30px rgba(0, 54, 92, 0.20);
}


.asm-booking-submit i {
    font-size: 17px;
    transition: transform 0.3s ease;
}


.asm-booking-submit:hover i {
    transform: translateX(5px);
}



.asm-booking-submit:active {
    transform: translateY(0);
}



@media (max-width: 1150px) {

    .asm-booking-row {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 480px);
        gap: 45px;
    }


    .asm-booking-content h2 {
        font-size: 42px;
    }


    .asm-booking-card {
        padding: 32px;
    }

}



@media (max-width: 991px) {

    .asm-booking-section {
        padding: 80px 20px;
    }


    .asm-booking-row {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .asm-booking-content {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }


    .asm-booking-description {
        margin-left: auto;
        margin-right: auto;
    }


    .asm-booking-highlights {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }


    .asm-booking-call {
        margin-left: auto;
        margin-right: auto;
    }



    .asm-booking-form-wrapper {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }

}



@media (max-width: 600px) {

    .asm-booking-section {
        padding: 65px 15px;
    }


    .asm-booking-content {
        text-align: left;
    }


    .asm-booking-subtitle {
        padding: 8px 14px;
        font-size: 9px;
        letter-spacing: 1px;
    }


    .asm-booking-content h2 {
        margin-bottom: 17px;
        font-size: 32px;
        line-height: 1.23;
        letter-spacing: -0.5px;
    }


    .asm-booking-description {
        margin-bottom: 28px;
        font-size: 13px;
        line-height: 1.75;
    }



    .asm-booking-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 370px;
        margin-bottom: 28px;
        margin-left: auto;
        margin-right: auto;
    }


    .asm-booking-highlight {
        width: 100%;
    }

    .asm-highlight-icon {
        width: 43px;
        min-width: 43px;
        height: 43px;
        border-radius: 12px;
        font-size: 16px;
    }

    .asm-booking-highlight h4 {
        font-size: 13px;
    }

    .asm-booking-highlight p {
        font-size: 10px;
    }

    .asm-booking-call {
        width: auto;
        padding: 11px 16px;
        text-align: left;
    }


    .asm-booking-call-icon {
        width: 43px;
        min-width: 43px;
        height: 43px;
    }


    .asm-booking-call a {
        font-size: 14px;
    }

    .asm-booking-card {
        padding: 25px 18px;
        border-radius: 20px;
    }


    .asm-booking-card-header {
        margin-bottom: 23px;
        padding-bottom: 18px;
    }


    .asm-booking-card-header h3 {
        font-size: 21px;
    }


    .asm-booking-card-icon {
        width: 49px;
        min-width: 49px;
        height: 49px;
        border-radius: 13px;
        font-size: 19px;
    }


    .asm-form-group {
        margin-bottom: 15px;
    }


    .asm-form-group label {
        font-size: 11px;
    }


    .asm-input-box input,
    .asm-input-box select {
        height: 49px;
        font-size: 12px;
    }


    .asm-textarea-box textarea {
        min-height: 100px;
        font-size: 12px;
    }


    .asm-booking-submit {
        min-height: 51px;
        font-size: 13px;
    }

}



@media (max-width: 400px) {

    .asm-booking-section {
        padding: 55px 12px;
    }

    .asm-booking-content h2 {
        font-size: 28px;
    }


    .asm-booking-description {
        font-size: 12px;
    }


    .asm-booking-card {
        padding: 22px 14px;
    }


    .asm-booking-card-header h3 {
        font-size: 19px;
    }


    .asm-booking-card-icon {
        width: 45px;
        min-width: 45px;
        height: 45px;
        font-size: 18px;
    }


    .asm-booking-call {
        width: 100%;
    }

    .asm-booking-call span {
        font-size: 10px;
    }

    .asm-booking-call a {
        font-size: 13px;
    }

}


@media (max-width: 340px) {

    .asm-booking-content h2 {
        font-size: 26px;
    }

    .asm-booking-card {
        padding: 20px 12px;
    }

    .asm-booking-card-header {
        gap: 8px;
    }

    .asm-booking-card-header h3 {
        font-size: 18px;
    }

    .asm-booking-card-icon {
        width: 42px;
        min-width: 42px;
        height: 42px;
    }

}