* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --main-color: #9B1728;
}

body {
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    direction: rtl;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

/* start to home section css */




.home {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../assets/images/background.webp");
    background-size: cover;
    background-position: center;
    height: 99vh;
    width: 100%;
}

.header {
    padding: 20px 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.36s cubic-bezier(.2, .9, .25, 1), opacity 0.25s ease;
    /* enable smooth hide/show */
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header .logo {
    display: flex;
    gap: 10px;
}

.header.hide-navbar {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
}

.header .logo img {
    font-size: 20px;
    width: 50px;
    height: auto;
}

.header .logo .span {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.header .logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header .logo .logo-text .word-1 {
    font-weight: bold;
    font-size: 18px;
    color: white;
}

.header .logo .logo-text .word-2 {
    font-size: 16px;
    color: white;
}

.header .navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.header .navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header .navbar ul li a:hover {
    color: #cc0000;
}

.header .container .button-1 {
    padding: 10px 20px;
    background-color: #9C192B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.header .container .button-1:hover {
    background-color: #821523;
}

.header .container .button-1 a {
    text-decoration: none;
    color: white;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: right;
    height: 100vh;
    color: white;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.5;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero .container .icon-home i {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-style: normal;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 50px;
}

.cta-button-1,
.cta-button-2 {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.cta-button-1 {
    border: 1px solid white;
    color: white;
}

.cta-button-1:hover {
    background: white;
    color: black;
}

.cta-button-2 {
    background-color: #9B1728;
    color: white;
    border: 1px solid #9B1728;
}

.cta-button-2:hover {
    background-color: #820029;
}

.icon-home {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    font-size: 0.9rem;
}

.icon-home i {
    display: flex;
    align-items: center;
    gap: 10px;
    font-style: normal;
}





/* end of home section css */




/* start title section css */




.title {
    background-color: #f4f4f4;
    padding: 80px 0;
    direction: rtl;
}

.title .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
    border-radius: 15px;
    overflow: visible;
}

.title [class^="icon-"] {
    padding: 30px 20px;
    text-align: center;
    background: #ffffff;
    transition: all 0.35s cubic-bezier(.2, .8, .2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-left: none !important;
    border: none !important;
}

.title [class^="icon-"]:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 10;
    box-shadow: 0 0 20px var(--main-color);
    border-color: var(--main-color);

}

.title [class^="icon-"] img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.title h2 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.title p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 25px;
}

.title button {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #a50034;
    color: #a50034;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.title button:hover {
    background: #a50034;
    color: #fff;
    box-shadow: 0 5px 15px rgba(165, 0, 52, 0.3);
}





/* end title section css */






/* start of feedback section css */

.feedback {
    position: relative;
    background-image: url("../assets/images/background-feedback.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 100px 0;
    direction: rtl;
    font-family: "Cairo", sans-serif;
    overflow: hidden;
}

.feedback::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.feedback .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feedback-card>div {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    text-align: right;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    cursor: pointer;
}

.feedback-card>div.show {
    opacity: 1;
    transform: translateY(0);
}

.feedback-card>div:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feedback-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.feedback-card img:hover {
    border-color: var(--main-color);
    box-shadow: 0 0 15px var(--main-color);
}

.stars span {
    color: #ffb400;
    font-size: 1.2rem;
    margin-right: 2px;
    transition: transform 0.3s;
}

.stars span:hover {
    transform: scale(1.4) rotate(10deg);
    color: var(--main-color);
}

.feedback-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    max-width: 400px;
}

.left-col {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    flex-direction: row-reverse;
    gap: 40px;
    margin-top: 100px;
    position: relative;
    right: 30px;
    top: 30px;
}

.left-col>div {
    text-align: center;
}

.left-col i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.left-col span {
    font-size: 3.4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.left-col span:hover {
    transform: scale(1.1);
}

.left-col p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 900;
}

/* Responsive */
@media(max-width: 992px) {
    .feedback .row {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .left-col {
        justify-content: center;
        margin-top: 50px;
        right: 0;
        top: 0;
    }
}




/* end of feedback section css */




/* start of mini-services section css */



.mini-services h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 15px;
    margin-top: 25px;
    text-align: center;
}

.mini-services .container .row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    height: 80%;
    flex-direction: row-reverse;

}

.mini-services .container .row .left-row,
.mini-services .container .row .right-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-services .container .row .left-row .servies-item,
.mini-services .container .row .right-row .servies-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row-reverse;
    border-radius: 20px;
    border: solid 2px #959090;
    width: 110%;
    /* padding: 15px; */
    background-color: white;
    transition: all 0.3s ease;
}

.mini-services .container .row .left-row .servies-item:hover,
.mini-services .container .row .right-row .servies-item:hover {
    background-color: white;
    transform: translateY(-5px);
}

.mini-services .container .row .left-row .servies-item i,
.mini-services .container .row .right-row .servies-item i {
    font-size: 1.5rem;
    color: #9B1728;
}

.mini-services .container .row .left-row .servies-item img,
.mini-services .container .row .right-row .servies-item img {
    width: 220px;
    height: 220px;
    border-radius: 20px;
}

.servies-item h3 {
    font-size: 1.5rem;
    /* margin-bottom: 20%; */
    color: #333;
    font-weight: bold;
}

.servies-item div {
    display: flex;
    flex-direction: column;
    position: relative;
    left: 35px;
    bottom: 5px;

}

.servies-item div ul {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 10px;
}

.services-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.services-list li {
    font-size: 0.9rem;
    color: black;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
}

.services-list li::before {
    content: '●';
    color: #bc1515;
    font-size: 1.2rem;
}

.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: var(--main-color);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    width: 140px;
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.button:hover .icon {
    transform: translate(4px);
}

.button:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

.mini-services-2 {
    margin-top: 50px;
    background-color: #ddd;
    padding: 80px 0;
    direction: rtl;
}

.mini-services-2 .container h3 {
    font-size: 1.5rem;
    /* margin-bottom: 20%; */
    color: #333;
    font-weight: bold;
}

.services-grid {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.services-list-1 {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
}

.services-list-1 li {
    position: relative;
    padding-right: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.services-list-1 li::before {
    content: '●';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #9B1728;
    font-size: 1.2rem;
}



/* start .mini-services-lg section css */


.mini-services-lg {
    padding: 90px 0;
    background: #f4f6f9;
    font-family: "Cairo", sans-serif;
}

.mini-services-lg .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.service-content {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.service-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #111;
    position: relative;
}

.service-content h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #e60023;
    display: block;
    margin-top: 10px;
    border-radius: 5px;
}

.service-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #222;
}

.service-content p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 15px;
}

.service-content ul,
.service-content ol {
    margin: 20px 0;
    padding-right: 20px;
}

.service-content li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
    position: relative;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: start;
}

.service-img img {
    width: 100%;
    border-radius: 14px;
}

.service-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #111;
}

.service-box ul {
    list-style: none;
    padding: 0;
}

.service-box li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #f7f7f7;
    border-radius: 8px;
    transition: 0.6s;
    cursor: pointer;
}

.service-box li:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateX(-5px);
}

.faq-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.faq-box h4 {
    font-size: 16px;
    color: var(--main-color);
    margin-top: 18px;
    margin-bottom: 6px;
    cursor: pointer;
    position: relative;
    padding-right: 6px;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-box h4::after {
    content: '\25BC';
    display: inline-block;
    margin-left: 8px;
    font-size: 0.85rem;
    color: var(--main-color);
    transform: rotate(0deg);
    transition: transform 0.25s ease;
}

.faq-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 12px 0;
    overflow: hidden;
    max-height: 0;
    padding-top: 0;
}

.faq-open>h4 {
    color: var(--main-color);
}

.faq-open>h4::after {
    transform: rotate(-180deg);
}

.faq-open>p {
    transition: max-height .36s cubic-bezier(.2, .9, .25, 1), padding .28s ease;
}

/* ===== responsive ===== */

@media (max-width:992px) {

    .mini-services-lg .container {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 35px;
    }

    .service-sidebar {
        position: relative;
        top: 0;
    }

}

.service-content a {
    position: relative;
    color: #e00000;
    font-weight: 700;
    text-decoration: none;
    transition: all .35s ease;
}

.service-content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ff7b7b);
    transition: .4s;
}

.service-content a:hover {
    color: #000;
    transform: translateY(-2px);
}

.service-content a:hover::after {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    margin: 10px 6px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    perspective: 1000px;
    transition: all .35s ease;
}

.btn-call {
    background: linear-gradient(145deg, #ff0000, #b80000);
    box-shadow: 0 10px 25px rgba(255, 0, 0, .4);
}

.btn-whatsapp {
    background: linear-gradient(145deg, #25d366, #1fa855);
    box-shadow: 0 10px 25px rgba(0, 255, 120, .4);
}

.btn-services {
    background: linear-gradient(145deg, #333, #000);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .4);
}

.btn:hover {
    transform:
        translateY(-8px) rotateX(10deg) rotateY(-6deg) scale(1.05);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .35);
}

.btn:active {
    transform: scale(.96);
}

.cta-box {
    background: linear-gradient(180deg, #f7f9fc, #eef2f7);
    padding: 30px;
    border-radius: 14px;
    margin: 40px 0;
    border-right: 6px solid #e00000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

/* end .mini-services-lg section css */






/* end of mini-services section css  */

/* بدايه اخر 4 سيكشن  */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 720px;
    margin: auto;
    color: #666;
    font-size: 16px;
    line-height: 1.9;
}

.work-steps {
    padding: 100px 0;
    background: #f4f6f9;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.step-box {
    background: #fff;
    padding: 40px 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    position: relative;
    transition: .35s;
    overflow: hidden;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .12);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #9B1728;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.step-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-box p {
    color: #666;
    font-size: 15px;
}

.why-us {
    padding: 100px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    text-align: center;
    transition: .35s;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .12);
}

.why-card i {
    font-size: 40px;
    color: #9B1728;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: #666;
}

.stat-box {
    padding: 40px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(5px);
    transition: .35s;
}

.stat-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .15);
}

.stat-box h3 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-box p {
    font-size: 16px;
}

.contact-info {
    padding: 100px 0;
    background: #f4f6f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    text-align: center;
    transition: .35s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .12);
}

.contact-card i {
    font-size: 35px;
    color: #9B1728;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
}

.contact-card a {
    display: inline-block;
    margin-top: 10px;
    color: #9B1728;
    font-weight: bold;
    text-decoration: none;
}

.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-container {
    max-width: 820px;
    margin: auto;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: .3s;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 17px;
}

.faq-question span {
    color: #9B1728;
    font-size: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #666;
    line-height: 1.8;
    transition: max-height .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}

.float-btn {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    transition: .3s;
}

.float-call {
    bottom: 90px;
    background: #0a7cff;
}

.float-whatsapp {
    bottom: 20px;
    background: #25D366;
}

.float-btn:hover {
    transform: scale(1.1);
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 28px;
    }

    .step-box,
    .why-card,
    .contact-card {
        padding: 30px;
    }

    .stat-box h3 {
        font-size: 32px;
    }
}

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.header .logo img {
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.header .navbar ul li a {
    position: relative;
}


.header .navbar ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #cc0000;
    transition: 0.3s;
}

.header .navbar ul li a:hover::after {
    width: 100%;
}

.cta-button-1,
.cta-button-2 {
    position: relative;
    overflow: hidden;
}

.cta-button-1::before,
.cta-button-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.4s;
}

.cta-button-1:hover::before,
.cta-button-2:hover::before {
    left: 100%;
}

.booking-section {
    padding: 100px 20px;
    max-width: 100%;
    margin: auto;
}

.booking-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 150px;
    align-items: center;
}

.booking-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.booking-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
}

button {
    background: var(--main-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

button:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.map-box {
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
}

.map-placeholder {
    position: absolute;
    inset: 0;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-text {
    text-align: center;
    padding: 30px;
}

.map-text span {
    font-size: 60px;
    color: #2563eb;
    display: block;
    margin-bottom: 10px;
}

.map-text h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.map-text p {
    color: #64748b;
}

/* --- Footer Wave Separator --- */
.site-footer {
    position: relative;
    font-family: "Cairo", sans-serif;
    direction: rtl;
}

.footer-wave {
    position: relative;
    z-index: 2;
    margin-bottom: -2px;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* --- Newsletter Section --- */
.footer-newsletter {
    background: #0d0d0d;
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155, 23, 40, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-newsletter::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(155, 23, 40, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(155, 23, 40, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px 45px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.newsletter-text>i {
    font-size: 3rem;
    color: #9B1728;
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.newsletter-text h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 4px;
    font-weight: 700;
}

.newsletter-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-input-group {
    display: flex;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #9B1728;
    box-shadow: 0 0 20px rgba(155, 23, 40, 0.2);
}

.newsletter-input-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: #fff;
    font-family: "Cairo", sans-serif;
    font-size: 0.95rem;
    outline: none;
    direction: rtl;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-input-group button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #9B1728, #c41e3a);
    color: #fff;
    border: none;
    font-family: "Cairo", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-input-group button:hover {
    background: linear-gradient(135deg, #c41e3a, #e0243e);
    transform: scale(1.02);
}

.newsletter-input-group button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.newsletter-input-group button:hover i {
    transform: translateX(-4px);
}

.newsletter-message {
    margin-top: 10px;
    font-size: 0.85rem;
    min-height: 22px;
    transition: all 0.4s ease;
}

.newsletter-message.success {
    color: #2ecc71;
}

.newsletter-message.error {
    color: #e74c3c;
}

/* --- Main Footer Area --- */
.footer-main {
    background: #0d0d0d;
    padding: 60px 0 40px;
}

.footer-main .container {
    max-width: 1300px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* --- Footer Columns --- */
.footer-col-title {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #9B1728, transparent);
    border-radius: 3px;
}

.footer-col-title i {
    color: #9B1728;
    font-size: 1.1rem;
}

/* --- Footer About Column --- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-logo-lg {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #9B1728, #e0243e);
    padding: 8px 14px;
    border-radius: 10px;
    line-height: 1;
    letter-spacing: 1px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.footer-slogan {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(155, 23, 40, 0.12);
    border: 1px solid rgba(155, 23, 40, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(155, 23, 40, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 23, 40, 0.15);
}

.trust-badge i {
    color: #9B1728;
    font-size: 0.85rem;
}

.trust-badge span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    position: relative;
    padding-right: 15px;
}

.footer-tagline::before {
    content: '❝';
    position: absolute;
    right: 0;
    top: -2px;
    color: #9B1728;
    font-size: 1rem;
}

/* --- Footer Links --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease, color 0.3s ease;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 0;
    height: 1px;
    background: #9B1728;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-right: 8px;
}

.footer-links a:hover i {
    transform: translateX(-4px);
    color: #9B1728;
}

.footer-links a:hover::after {
    width: 100%;
}

/* --- Footer Contact List --- */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-contact-item:hover {
    background: rgba(155, 23, 40, 0.1);
    border-color: rgba(155, 23, 40, 0.2);
    transform: translateX(-4px);
}

.contact-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #9B1728, #c41e3a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon-box i {
    color: #fff;
    font-size: 1rem;
}

.contact-icon-box.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-icon-box.email-icon {
    background: linear-gradient(135deg, #EA4335, #c5221f);
}

.contact-icon-box.address-icon {
    background: linear-gradient(135deg, #4285F4, #1a73e8);
}

.footer-contact-item:hover .contact-icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* --- Social Media Bar --- */
.footer-social-bar {
    background: #0d0d0d;
    padding: 30px 0;
}

.social-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-social-links {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    transform: translateY(-6px) scale(1.05);
    border-color: transparent;
}

.social-link:hover i {
    color: #fff;
    transform: scale(1.15);
}

/* Facebook */
.social-link.facebook::before {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.social-link.facebook:hover::before {
    opacity: 1;
}

.social-link.facebook:hover {
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.35);
}

/* WhatsApp */
.social-link.whatsapp::before {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-link.whatsapp:hover::before {
    opacity: 1;
}

.social-link.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* Instagram */
.social-link.instagram::before {
    background: linear-gradient(135deg, #F56040, #C13584, #833AB4);
}

.social-link.instagram:hover::before {
    opacity: 1;
}

.social-link.instagram:hover {
    box-shadow: 0 8px 25px rgba(193, 53, 132, 0.35);
}

/* Twitter/X */
.social-link.twitter::before {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.social-link.twitter:hover::before {
    opacity: 1;
}

.social-link.twitter:hover {
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.35);
}

/* --- Decorative Divider --- */
.footer-divider {
    background: #0d0d0d;
    padding: 0 0 5px;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 23, 40, 0.4), rgba(255, 255, 255, 0.08), rgba(155, 23, 40, 0.4), transparent);
    position: relative;
}

.divider-line::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #9B1728;
    font-size: 0.6rem;
    background: #0d0d0d;
    padding: 0 12px;
}

/* --- Bottom Bar --- */
.footer-bottom {
    background: #080808;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

.copyright strong {
    color: #9B1728;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #9B1728;
}

.bottom-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #9B1728, #c41e3a);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 8px 25px rgba(155, 23, 40, 0.35);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(155, 23, 40, 0.5);
}

.back-to-top::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 17px;
    background: linear-gradient(135deg, #9B1728, #c41e3a);
    opacity: 0;
    z-index: -1;
    animation: pulse-glow 2s ease-in-out infinite;
}

.back-to-top.visible::before {
    opacity: 0.4;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* --- Footer Fade In Animation --- */
.site-footer .footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.site-footer .footer-col.footer-visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 35px;
    }

    .newsletter-wrapper {
        padding: 30px 35px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .newsletter-text {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-text>i {
        font-size: 2.5rem;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .social-bar-content {
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-newsletter {
        padding: 30px 0 40px;
    }

    .newsletter-wrapper {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }

    .newsletter-input-group button {
        justify-content: center;
        padding: 14px 20px;
        border-radius: 0 0 11px 11px;
    }

    .footer-about {
        text-align: center;
    }

    .footer-about .footer-col-title {
        justify-content: center;
    }

    .footer-about .footer-col-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-trust-badges {
        justify-content: center;
    }

    .footer-tagline {
        text-align: center;
        padding-right: 0;
    }

    .footer-tagline::before {
        display: none;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 12px;
        text-align: right;
    }

    .footer-links a {
        justify-content: flex-start;
        padding: 4px 0;
    }

    .footer-links a::after {
        display: none;
    }

    .footer-contact-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        align-items: stretch;
    }

    .footer-contact-item {
        width: 100%;
        max-width: none;
        justify-content: flex-start;
        text-align: right;
        padding: 12px 10px;
    }

    .contact-value {
        word-break: break-word;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 46px;
        height: 46px;
        font-size: 1.5rem;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .newsletter-text h3 {
        font-size: 1.15rem;
    }

    .newsletter-text p {
        font-size: 0.82rem;
    }

    .newsletter-input-group input {
        padding: 13px 16px;
        font-size: 0.88rem;
    }

    .newsletter-input-group button {
        padding: 13px 16px;
        font-size: 0.88rem;
    }

    .footer-brand {
        font-size: 1.1rem;
    }

    .footer-desc {
        font-size: 0.85rem;
    }

    .trust-badge {
        padding: 5px 10px;
    }

    .trust-badge span {
        font-size: 0.72rem;
    }

    .social-link {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .contact-value {
        font-size: 0.78rem;
    }

    .copyright {
        font-size: 0.78rem;
    }
}

/* --- General Site Responsiveness --- */
@media (max-width: 992px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .header .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 140px 0 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.4;
    }

    .cta-buttons {
        justify-content: center;
    }

    .icon-home {
        justify-content: center;
        flex-wrap: wrap;
    }

    .modern-decorative-line {
        margin: 10px auto 20px auto;
    }

    .title .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .feedback .row {
        flex-direction: column;
        gap: 40px;
    }

    .left-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0;
        right: auto;
        top: auto;
    }

    .mini-services .container .row {
        flex-direction: column;
        height: auto;
    }

    .mini-services .container .row .left-row,
    .mini-services .container .row .right-row {
        width: 100%;
    }

    .mini-services-lg .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-sidebar {
        position: static;
    }

    /* --- Booking --- */
    .booking-1 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .booking-content h2 {
        font-size: 28px;
    }

    .map-box {
        height: 350px;
    }

    /* --- Grids --- */
    .steps-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 15px;
    }

    /* --- Container width --- */
    .container {
        width: 90%;
    }
}

@media (max-width: 768px) {

    /* --- Container --- */
    .container {
        width: 94%;
        padding-left: 12px;
        padding-right: 12px;
    }

    /* --- Header / Navbar --- */
    .header {
        padding: 14px 0;
    }

    .header .container .button-1 {
        padding: 8px 14px;
        font-size: 14px;
    }

    .header .navbar ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    /* --- Hero --- */
    .home {
        height: auto;
    }

    .hero {
        padding: 120px 0 50px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button-1,
    .cta-button-2 {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .icon-home {
        gap: 20px;
        flex-direction: column;
    }

    .icon-home i {
        font-size: 0.9rem;
        justify-content: center;
    }

    /* --- Title cards --- */
    .title {
        padding: 50px 0;
    }

    .title .container {
        grid-template-columns: 1fr;
    }

    .title [class^="icon-"] {
        padding: 22px 15px;
    }

    .title [class^="icon-"] img {
        width: 60px;
        height: 60px;
    }

    .title h2 {
        font-size: 1.2rem;
    }

    .title p {
        font-size: 0.88rem;
    }

    .title button {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    /* --- Feedback --- */
    .feedback {
        padding: 60px 0;
    }

    .right-col h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    .feedback-card>div {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feedback-card p {
        max-width: 100%;
    }

    .left-col {
        gap: 25px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }

    .left-col>div {
        min-width: 110px;
        text-align: center;
    }

    .left-col span {
        font-size: 2.4rem;
    }

    .left-col p {
        font-size: 1rem;
    }

    /* --- Mini-services --- */
    .mini-services .container .row .left-row .servies-item,
    .mini-services .container .row .right-row .servies-item {
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
    }

    .servies-item img {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }

    .servies-item div {
        left: auto;
        bottom: auto;
        align-items: center;
        width: 100%;
    }

    .button.read-more,
    .button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .mini-services-2 {
        padding: 50px 0;
    }

    .mini-services-2 .container h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .services-list-1 {
        width: 100%;
        max-width: 300px;
    }

    /* --- Mini-services-lg detail --- */
    .mini-services-lg {
        padding: 60px 0;
    }

    .service-content {
        padding: 25px 18px;
    }

    .service-content h2 {
        font-size: 22px;
        text-align: center;
    }

    .service-content h2::after {
        margin: 10px auto 0 auto;
    }

    .service-content h3 {
        font-size: 20px;
        margin-top: 25px;
    }

    .service-content p,
    .service-content li {
        font-size: 15px;
    }

    .service-box h3,
    .faq-box h3 {
        font-size: 18px;
        text-align: center;
    }

    /* --- Booking --- */
    .booking-section {
        padding: 60px 0;
    }

    .booking-1 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-content h2 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-box {
        height: 280px;
    }

    .map-text span {
        font-size: 40px;
    }

    .map-text h4 {
        font-size: 18px;
    }

    /* --- Work steps --- */
    .work-steps {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-box {
        padding: 35px 25px 25px;
    }

    .step-box h3 {
        font-size: 18px;
    }

    .step-box p {
        font-size: 14px;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 18px;
        top: -16px;
        left: -16px;
    }

    /* --- Why us --- */
    .why-us {
        padding: 60px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 30px 25px;
    }

    .why-card i {
        font-size: 32px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
    }

    /* --- Contact info --- */
    .contact-info {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-card i {
        font-size: 28px;
    }

    /* --- FAQ section --- */
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    /* --- Section titles --- */
    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    /* --- Float buttons --- */
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .float-call {
        bottom: 80px;
    }

    .float-whatsapp {
        bottom: 18px;
    }
}

@media (max-width: 480px) {

    /* --- Container --- */
    .container {
        width: 96%;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* --- Header --- */
    .header .logo .span {
        font-size: 18px;
    }

    .header .logo img {
        width: 36px;
        animation: none;
    }

    .header .logo .logo-text .word-1 {
        font-size: 14px;
    }

    .header .logo .logo-text .word-2 {
        font-size: 12px;
    }

    .header .container .button-1 {
        padding: 7px 10px;
        font-size: 12px;
    }

    /* --- Hero --- */
    .hero {
        padding: 110px 0 40px;
    }

    .hero h1 {
        font-size: 1.45rem;
    }

    .hero p {
        font-size: 0.88rem;
    }

    .cta-buttons {
        gap: 12px;
    }

    .cta-button-1,
    .cta-button-2 {
        padding: 11px 20px;
        font-size: 0.9rem;
    }

    .icon-home {
        gap: 14px;
    }

    .icon-home i {
        font-size: 0.82rem;
        gap: 6px;
    }

    /* --- Title cards --- */
    .title {
        padding: 40px 0;
    }

    .title h2 {
        font-size: 1.1rem;
    }

    .title p {
        font-size: 0.82rem;
    }

    .title button {
        font-size: 0.8rem;
        padding: 7px 14px;
    }

    /* --- Feedback counters --- */
    .feedback {
        padding: 40px 0;
    }

    .left-col span {
        font-size: 2rem;
    }

    .left-col i {
        font-size: 1.6rem;
    }

    .left-col p {
        font-size: 0.85rem;
    }

    /* --- Mini services --- */
    .mini-services h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .servies-item h3 {
        font-size: 1.1rem;
    }

    .services-list li {
        font-size: 0.82rem;
    }

    .mini-services-2 .container h3 {
        font-size: 1.1rem;
    }

    .services-list-1 li {
        font-size: 14px;
    }

    /* --- Service detail --- */
    .service-content {
        padding: 20px 14px;
    }

    .service-content h2 {
        font-size: 19px;
    }

    .service-content h3 {
        font-size: 17px;
    }

    .service-content p,
    .service-content li {
        font-size: 14px;
        line-height: 1.85;
    }

    .service-box {
        padding: 20px;
    }

    .service-box h3 {
        font-size: 17px;
    }

    .service-box li {
        padding: 10px 12px;
        font-size: 14px;
    }

    .faq-box {
        padding: 20px;
    }

    .faq-box h3 {
        font-size: 17px;
    }

    .faq-box h4 {
        font-size: 14px;
    }

    /* --- Booking --- */
    .booking-content h2 {
        font-size: 20px;
    }

    .booking-content p {
        font-size: 14px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 13px;
        padding: 10px;
    }

    .map-box {
        height: 220px;
    }

    .map-text span {
        font-size: 32px;
    }

    .map-text h4 {
        font-size: 15px;
    }

    .map-text p {
        font-size: 13px;
    }

    /* --- Work steps --- */
    .step-box {
        padding: 32px 18px 18px;
    }

    .step-box h3 {
        font-size: 16px;
    }

    .step-box p {
        font-size: 13px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 16px;
        top: -14px;
        left: -14px;
    }

    /* --- Why us --- */
    .why-card {
        padding: 25px 18px;
    }

    .why-card i {
        font-size: 28px;
    }

    .why-card h3 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 13px;
    }

    /* --- Contact cards --- */
    .contact-card {
        padding: 25px 15px;
    }

    .contact-card i {
        font-size: 24px;
    }

    .contact-card h3 {
        font-size: 16px;
    }

    .contact-card p {
        font-size: 13px;
    }

    /* --- FAQ section --- */
    .faq-question {
        font-size: 14px;
        padding: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .faq-question span {
        font-size: 17px;
    }

    /* --- Section titles --- */
    .section-title h2 {
        font-size: 20px;
    }

    .section-title p {
        font-size: 13px;
        line-height: 1.7;
    }

    /* --- Float buttons --- */
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 17px;
        right: 14px;
    }

    .float-call {
        bottom: 72px;
    }

    .float-whatsapp {
        bottom: 14px;
    }

    /* --- Back to top --- */
    .back-to-top {
        bottom: 15px;
        left: 15px;
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }
}


/* ============================================================
   PREMIUM RESPONSIVE — Full Mobile UI Redesign
   Breakpoints: 992px | 768px | 480px
   RTL-perfect • All sections covered
   ============================================================ */

/* ── 992px — Tablet ─────────────────────────────────────── */
@media (max-width: 992px) {

    /* Navbar: hamburger LEFT, logo RIGHT (RTL) */
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0 16px;
        flex-direction: row-reverse;
    }

    /* Logo stays on the right naturally in RTL — no change needed */
    /* Hamburger shown, CTA hidden */
    .header .hamburger {
        display: flex !important;
        order: -1;
    }

    .header .header-cta {
        display: none !important;
    }

    /* Sidebar drawer from left (RTL: left side) */
    .header .navbar {
        position: fixed;
        top: 0;
        left: -300px;
        right: auto;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #1a1a2e 0%, #0d0d14 100%);
        flex-direction: column;
        padding: 80px 24px 30px;
        z-index: 1000;
        transition: left 0.38s cubic-bezier(.2, .9, .25, 1);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.35);
        overflow-y: auto;
    }

    .header .navbar.active {
        left: 0;
        right: auto;
    }

    .header .navbar ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .header .navbar ul li a {
        display: block;
        padding: 13px 0;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    /* Hero */
    .home {
        height: auto;
        min-height: 100vh;
    }

    .hero {
        height: auto;
        min-height: calc(100vh - 64px);
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .hero p {
        font-size: 1rem;
    }

    .modern-decorative-line {
        margin: 8px auto 18px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .icon-home {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    /* Title cards: 2×2 grid */
    .title {
        padding: 60px 0;
    }

    .title .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Feedback */
    .feedback .row {
        flex-direction: column;
        gap: 40px;
    }

    .right-col,
    .left-col {
        width: 100%;
    }

    .left-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 10px;
        right: auto;
        top: auto;
    }

    .left-col>div {
        min-width: 110px;
    }

    /* Mini-services row */
    .mini-services .container .row {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .mini-services .container .row .left-row,
    .mini-services .container .row .right-row {
        width: 100%;
    }

    /* Service detail (mini-services-lg) */
    .mini-services-lg .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-sidebar {
        position: static;
    }

    /* Booking */
    .booking-1 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-content h2 {
        font-size: 28px;
    }

    .map-box {
        height: 320px;
    }

    /* Bottom 4 grids */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 15px;
    }

    /* Container */
    .container {
        width: 90%;
    }
}


/* ── 768px — Mobile ─────────────────────────────────────── */
@media (max-width: 768px) {

    /* Container */
    .container {
        width: 93%;
        padding-left: 12px;
        padding-right: 12px;
    }

    /* ── Navbar ── */
    .header {
        padding: 13px 0;
    }

    /* ── Hero ── */
    .home {
        height: auto;
    }

    .hero {
        padding: 110px 0 50px;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.45;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-button-1,
    .cta-button-2 {
        width: 100%;
        text-align: center;
        padding: 13px 24px;
        font-size: 0.95rem;
    }

    .icon-home {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 28px;
    }

    .icon-home i {
        font-size: 0.88rem;
        justify-content: center;
        gap: 8px;
    }

    /* ── Title cards: 2×2 on mobile ── */
    .title {
        padding: 45px 0;
    }

    .title .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 14px;
    }

    .title [class^="icon-"] {
        padding: 20px 12px;
        border-radius: 10px;
    }

    .title [class^="icon-"] img {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .title h2 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .title p {
        font-size: 0.82rem;
        margin-bottom: 16px;
    }

    .title button {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    /* ── Feedback / Testimonials ── */
    .feedback {
        padding: 55px 0;
    }

    .right-col h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 24px;
    }

    .feedback-card>div {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
        gap: 14px;
        margin-bottom: 20px;
    }

    .feedback-card img {
        width: 58px;
        height: 58px;
    }

    .feedback-card p {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .stars span {
        font-size: 1rem;
    }

    .left-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 24px;
    }

    .left-col>div {
        min-width: 90px;
        text-align: center;
    }

    .left-col span {
        font-size: 2.2rem;
    }

    .left-col i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .left-col p {
        font-size: 0.9rem;
    }

    /* ── Mini-services — Redesigned cards ── */
    .mini-services {
        padding-bottom: 50px;
    }

    .mini-services h2 {
        font-size: 1.7rem;
        padding: 0 10px;
    }

    .mini-services .container .row .left-row .servies-item,
    .mini-services .container .row .right-row .servies-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 16px;
        width: 100%;
        border-radius: 16px;
        gap: 12px;
    }

    .servies-item img {
        width: 100%;
        max-width: 220px;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
        margin: 0 auto;
    }

    .servies-item div {
        left: auto;
        bottom: auto;
        align-items: center;
        width: 100%;
    }

    .servies-item h3 {
        font-size: 1.15rem;
        text-align: center;
    }

    .services-list li {
        font-size: 0.85rem;
        justify-content: center;
    }

    .button.read-more,
    .button {
        width: auto;
        min-width: 160px;
        justify-content: center;
    }

    /* Mini-services-2 */
    .mini-services-2 {
        padding: 45px 0;
    }

    .mini-services-2 .container h3 {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .services-list-1 {
        width: 100%;
        max-width: 320px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    /* Mini-services-lg detail */
    .mini-services-lg {
        padding: 55px 0;
    }

    .service-content {
        padding: 24px 18px;
    }

    .service-content h2 {
        font-size: 22px;
        text-align: center;
    }

    .service-content h2::after {
        margin: 10px auto 0;
    }

    .service-content h3 {
        font-size: 19px;
        margin-top: 25px;
    }

    .service-content p,
    .service-content li {
        font-size: 15px;
    }

    .service-box h3,
    .faq-box h3 {
        font-size: 17px;
        text-align: center;
    }

    .service-box li {
        font-size: 14px;
    }

    /* ── Booking ── */
    .booking-section {
        padding: 55px 0;
    }

    .booking-1 {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .booking-content h2 {
        font-size: 22px;
    }

    .booking-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 11px 14px;
    }

    .map-box {
        height: 260px;
        border-radius: 18px;
    }

    .map-text span {
        font-size: 38px;
    }

    .map-text h4 {
        font-size: 17px;
    }

    /* ── Work-steps ── */
    .work-steps {
        padding: 55px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .step-box {
        padding: 34px 22px 22px;
    }

    .step-box h3 {
        font-size: 17px;
    }

    .step-box p {
        font-size: 14px;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 17px;
        top: -15px;
        left: -15px;
    }

    /* ── Why-us ── */
    .why-us {
        padding: 55px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-card {
        padding: 28px 22px;
        text-align: center;
    }

    .why-card i {
        font-size: 30px;
    }

    .why-card h3 {
        font-size: 17px;
    }

    .why-card p {
        font-size: 14px;
    }

    /* ── Contact info ── */
    .contact-info {
        padding: 55px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .contact-card i {
        font-size: 26px;
    }

    .contact-card h3 {
        font-size: 17px;
    }

    .contact-card p {
        font-size: 14px;
    }

    /* ── FAQ section ── */
    .faq-section {
        padding: 55px 0;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 14px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 0 14px;
    }

    .faq-question span {
        font-size: 18px;
    }

    /* ── Global section titles ── */
    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 23px;
    }

    .section-title p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* ── Float buttons ── */
    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
        right: 14px;
    }

    .float-call {
        bottom: 76px;
    }

    .float-whatsapp {
        bottom: 16px;
    }

    /* ── Back to top ── */
    .back-to-top {
        bottom: 18px;
        left: 18px;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-main {
        padding: 40px 0 28px;
    }

    .footer-newsletter {
        padding: 28px 0 38px;
    }

    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px 18px;
        border-radius: 16px;
    }

    .newsletter-text {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }

    .newsletter-input-group button {
        justify-content: center;
        padding: 13px 18px;
        border-radius: 0 0 11px 11px;
    }

    .footer-col-title {
        justify-content: center;
    }

    .footer-col-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links a::after {
        display: none;
    }

    .footer-about {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-trust-badges {
        justify-content: center;
    }

    .footer-tagline {
        text-align: center;
        padding-right: 0;
    }

    .footer-tagline::before {
        display: none;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-item {
        max-width: 340px;
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .social-bar-content {
        flex-direction: column;
        gap: 16px;
    }
}


/* ── 480px — Small Mobile ───────────────────────────────── */
@media (max-width: 480px) {

    /* Container */
    .container {
        width: 96%;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* ── Header ── */
    .header {
        padding: 11px 0;
    }

    .header .logo .span {
        font-size: 18px;
    }

    .header .logo img {
        width: 34px;
    }

    .header .logo .logo-text .word-1 {
        font-size: 13px;
    }

    .header .logo .logo-text .word-2 {
        font-size: 11px;
    }

    /* ── Hero ── */
    .hero {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.45;
    }

    .hero p {
        font-size: 0.88rem;
    }

    .cta-buttons {
        gap: 10px;
    }

    .cta-button-1,
    .cta-button-2 {
        font-size: 0.88rem;
        padding: 12px 18px;
    }

    .icon-home i {
        font-size: 0.82rem;
    }

    /* ── Title cards: stays 2×2 but tighter ── */
    .title {
        padding: 35px 0;
    }

    .title .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .title [class^="icon-"] {
        padding: 16px 10px;
    }

    .title [class^="icon-"] img {
        width: 46px;
        height: 46px;
        margin-bottom: 10px;
    }

    .title h2 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .title p {
        font-size: 0.78rem;
        margin-bottom: 12px;
    }

    .title button {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    /* ── Feedback ── */
    .feedback {
        padding: 40px 0;
    }

    .right-col h3 {
        font-size: 1.2rem;
    }

    .feedback-card img {
        width: 50px;
        height: 50px;
    }

    .feedback-card p {
        font-size: 0.84rem;
    }

    .left-col span {
        font-size: 1.9rem;
    }

    .left-col i {
        font-size: 1.6rem;
    }

    .left-col p {
        font-size: 0.82rem;
    }

    /* ── Mini-services ── */
    .mini-services h2 {
        font-size: 1.4rem;
    }

    .servies-item img {
        max-width: 180px;
        height: 150px;
    }

    .servies-item h3 {
        font-size: 1.05rem;
    }

    .services-list li {
        font-size: 0.82rem;
    }

    .mini-services-2 .container h3 {
        font-size: 1.05rem;
    }

    .services-list-1 li {
        font-size: 13px;
    }

    /* ── Service detail ── */
    .service-content {
        padding: 18px 13px;
    }

    .service-content h2 {
        font-size: 19px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p,
    .service-content li {
        font-size: 13.5px;
    }

    .service-box,
    .faq-box {
        padding: 18px 14px;
    }

    .service-box h3,
    .faq-box h3 {
        font-size: 16px;
    }

    .service-box li {
        padding: 9px 11px;
        font-size: 13px;
    }

    .faq-box h4 {
        font-size: 13.5px;
    }

    /* ── Booking ── */
    .booking-content h2 {
        font-size: 19px;
    }

    .booking-content p {
        font-size: 13px;
    }

    .form-group label {
        font-size: 12.5px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 13px;
        padding: 10px 12px;
    }

    .map-box {
        height: 200px;
    }

    .map-text span {
        font-size: 30px;
    }

    .map-text h4 {
        font-size: 15px;
    }

    .map-text p {
        font-size: 12.5px;
    }

    /* ── Work-steps ── */
    .step-box {
        padding: 30px 16px 16px;
    }

    .step-box h3 {
        font-size: 15px;
    }

    .step-box p {
        font-size: 13px;
    }

    .step-number {
        width: 46px;
        height: 46px;
        font-size: 15px;
        top: -13px;
        left: -13px;
    }

    /* ── Why-us ── */
    .why-card {
        padding: 22px 16px;
    }

    .why-card i {
        font-size: 26px;
    }

    .why-card h3 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 12.5px;
    }

    /* ── Contact cards ── */
    .contact-card {
        padding: 22px 14px;
    }

    .contact-card i {
        font-size: 22px;
    }

    .contact-card h3 {
        font-size: 15px;
    }

    .contact-card p {
        font-size: 12.5px;
    }

    /* ── FAQ section ── */
    .faq-question {
        font-size: 13.5px;
        padding: 13px;
    }

    .faq-answer {
        font-size: 12.5px;
    }

    .faq-question span {
        font-size: 16px;
    }

    /* ── Section titles ── */
    .section-title h2 {
        font-size: 19px;
    }

    .section-title p {
        font-size: 12.5px;
    }

    /* ── Float / Back-to-top ── */
    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
        right: 12px;
    }

    .float-call {
        bottom: 68px;
    }

    .float-whatsapp {
        bottom: 12px;
    }

    .back-to-top {
        bottom: 14px;
        left: 14px;
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        border-radius: 11px;
    }

    /* ── Footer ── */
    .newsletter-text h3 {
        font-size: 1.1rem;
    }

    .newsletter-text p {
        font-size: 0.82rem;
    }

    .newsletter-input-group input {
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .newsletter-input-group button {
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .footer-brand {
        font-size: 1.1rem;
    }

    .footer-desc {
        font-size: 0.85rem;
    }

    .trust-badge span {
        font-size: 0.72rem;
    }

    .social-link {
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }

    .contact-value {
        font-size: 0.78rem;
    }

    .copyright {
        font-size: 0.78rem;
    }

    .footer-bottom-links a {
        font-size: 0.78rem;
    }
}

/* ============================================================
   Responsive Override & Media Query System (Mobile-First)
   - Appended as a focused, non-destructive override block
   - Purpose: unify breakpoints, fix mobile navbar order, spacing,
     overflow-x, RTL alignment and micro-interactions without
     removing or rewriting existing rules earlier in the file.
   - Approach: mobile-first variables, then progressive media queries
   ============================================================ */

:root {
    /* spacing scale used only by the responsive block (won't override existing variables) */
    --rs-xxs: 6px;
    --rs-xs: 10px;
    --rs-sm: 14px;
    --rs-md: 20px;
    --rs-lg: 28px;
    --rs-xl: 40px;
}

/* Base safety rules (do not change layout semantics) */
html,
body {
    max-width: 100%;
    overflow-x: clip;
    /* prevent horizontal scroll without breaking sticky positioning */
}

img,
svg,
iframe,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Normalize container behavior on small screens */
.container {
    box-sizing: border-box;
}

/* ------------------------------------------------------------
   Mobile (small phones) — up to 480px
   - Primary adjustments to spacing, navbar order swap and RTL tweaks
   ------------------------------------------------------------ */
@media (max-width: 480px) {

    /* Navbar: visual swap using flex ordering only */
    .header .container {
        display: flex !important;
        flex-direction: row-reverse !important;
        /* keep a single row */
        align-items: center !important;
        gap: var(--rs-sm) !important;
        padding-left: calc(var(--rs-sm));
        padding-right: calc(var(--rs-sm));
    }

    /* Hamburger first visually (left in RTL viewport) */
    .header .hamburger {
        order: 0 !important;
        margin-left: 6px !important;
    }

    /* Navbar (drawer) after hamburger */
    .header .navbar {
        order: 1 !important;
        flex: 1 1 auto !important;
    }

    /* Logo moves to the right */
    .header .logo {
        order: 2 !important;
        flex: 0 0 auto !important;
    }

    /* CTA stays last */
    .header .header-cta {
        order: 3 !important;
    }

    /* Increase breathing space across prime sections */
    .content-grid,
    .title .container,
    .feedback .row,
    .mini-services .container .row {
        gap: var(--rs-md) !important;
        grid-gap: var(--rs-md) !important;
    }

    /* Make title cards compact and 2x2 with gap */
    .title .container {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .title [class^="icon-"] {
        padding: var(--rs-sm) !important;
    }

    /* Sidebar & article spacing */
    .sidebar,
    .article-body {
        padding-top: var(--rs-sm) !important;
        padding-bottom: var(--rs-sm) !important;
    }

    .sidebar-card,
    .article-section,
    .servies-item {
        margin-bottom: var(--rs-sm) !important;
    }

    /* Ensure nav drawer doesn't overflow horizontally */
    .header .navbar {
        left: 0;
        right: auto;
        width: 100%;
        max-width: 320px;
        box-sizing: border-box;
    }
}

/* ------------------------------------------------------------
   Mobile (medium phones/tablets portrait) — up to 768px
   - Additional spacing, hero sizing, and card behavior
   ------------------------------------------------------------ */
@media (max-width: 768px) {
    .header .container {
        gap: var(--rs-md);
        padding-left: 14px;
        padding-right: 14px;
    }

    .header .hamburger {
        order: 0 !important;
    }

    .header .navbar {
        order: 1 !important;
    }

    .header .logo {
        order: 2 !important;
    }

    /* Hero adjustments for medium phones */
    .hero {
        padding: 90px 0 40px !important;
    }

    .hero h1 {
        font-size: 1.7rem !important;
        line-height: 1.3 !important;
    }

    .cta-buttons {
        width: 100%;
        gap: 12px !important;
    }

    /* Title cards: 2x2 grid, improved spacing */
    .title .container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--rs-md) !important;
    }

    .title [class^="icon-"] {
        min-height: 180px !important;
    }

    /* Services list: stack cleanly */
    .mini-services .container .row {
        gap: var(--rs-md) !important;
    }

    .servies-item {
        padding: 14px !important;
        border-radius: 12px !important;
    }

    /* Feedback cards: center and space */
    .feedback .row {
        gap: var(--rs-md) !important;
    }

    .feedback-card>div {
        padding: 12px !important;
    }

    /* Prevent accidental horizontal overflow from large shadows */
    .servies-item,
    .article-section,
    .sidebar-card {
        box-shadow: none !important;
    }
}

/* ------------------------------------------------------------
   Tablet / Small Desktop — up to 992px
   - Balanced spacing, two-column transitions, RTL alignment fixes
   ------------------------------------------------------------ */
@media (max-width: 992px) {
    .container {
        width: 92% !important;
    }

    .content-grid {
        gap: var(--rs-lg) !important;
    }

    .title .container {
        gap: var(--rs-lg) !important;
    }

    /* Keep navbar behavior consistent but don't reorder desktop layout */
    .header .hamburger {
        display: flex !important;
    }

    .header .logo {
        flex: 0 0 auto;
    }

    /* Disable sticky sidebar on tablets */
    .service-sidebar {
        position: static;
    }
}

/* ------------------------------------------------------------
   Large screens (desktop) — min width 1200px: minor polish
   - These rules are gentle and won't change existing desktop styles
   ------------------------------------------------------------ */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }

    .title .container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ------------------------------------------------------------
   Accessibility / Micro-interactions
   - Subtle transitions on interactive elements without layout shift
   ------------------------------------------------------------ */
.header .hamburger,
.header .navbar a,
.cta-button-1,
.cta-button-2,
.button {
    transition: transform .18s ease, box-shadow .18s ease, opacity .12s ease;
}

.toc-list a,
.servies-item,
.article-section {
    will-change: transform, opacity;
}

/* End of responsive override block */

/* ===== Floating Buttons Styles (Call + WhatsApp) ===== */
.float-whatsapp,
.float-call {
    position: fixed;
    right: 18px;
    /* moved to right side (reversed) */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: transform .18s ease, box-shadow .18s ease, opacity .12s ease;
    text-decoration: none;

}

.float-whatsapp {
    bottom: 90px;
    background: #25D366;
}

.float-call {
    bottom: 20px;
    background: var(--main-color, #9B1728);
}

.float-whatsapp i,
.float-call i {
    font-size: 1.25rem;
}

.float-whatsapp:hover,
.float-call:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

/* Small tweak for very small screens */
@media (max-width: 420px) {

    .float-whatsapp,
    .float-call {
        right: 12px;
        width: 50px;
        height: 50px;
    }

    .float-call {
        bottom: 16px;
    }

    .float-whatsapp {
        bottom: 72px;
    }
}

/* Ensure floats never cover interactive bottom bars: add safe area offset for iOS */
@supports (padding: max(0px)) {
    .float-whatsapp {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 90px);
    }

    .float-call {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
    }
}

/* Accessibility: focus outline */
.float-whatsapp:focus,
.float-call:focus {
    outline: 3px solid rgba(255, 255, 255, 0.18);
    outline-offset: 3px;
}

/* End floating buttons styles */