:root {
    --primary: #9E1B23;
    --primary-dark: #2D0909;
    --gold: #c5a059;
    --white: #ffffff;
    --light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

[lang="en"] .lang-ar {
    display: none;
}

[lang="ar"] .lang-en {
    display: none;
}

.main-header {
    background: var(--light);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid var(--gold);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.5));
}

.brand-text h1 {
    font-size: 22px;
    color: var(--gold);
    line-height: 1;
}

.brand-text span {
    font-size: 10px;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1513694203232-719a280e022f?q=80&w=2000');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: kenBurns 20s linear infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(158, 27, 35, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(197, 160, 89, 0.6);
    }

    100% {
        transform: scale(1);
    }
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    border: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 26, 53, 0.98) !important;
        backdrop-filter: blur(10px);
        display: flex !important;
        flex-direction: column !important;

        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;

        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 2500;
    }

    .nav-links li {
        margin: 5px 0 !important;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 20px !important;
        padding: 10px 0 !important;
        display: block;
        color: #fff !important;
        font-weight: 600;
    }

    .mobile-lang-item {
        margin-top: 20px !important;
    }

    .lang-btn-nav {
        min-width: 140px !important;
        height: 45px !important;
        font-size: 14px !important;
        background: var(--gold) !important;
        color: var(--primary) !important;
        border-radius: 50px !important;
        border: none;
    }

}

.lang-btn {
    background: var(--gold);
    color: var(--primary);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-size: 14px;
}

.lang-btn:hover {
    background: #e5bc6d;
    transform: translateY(-2px);
}

.lang-btn i {
    font-size: 16px;
}

.marble-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.main-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.main-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-img-wrapper:hover img {
    transform: scale(1.05);
}

.experience-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--primary);
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mini-features {
    margin: 25px 0;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

.f-item i {
    color: var(--gold);
    font-size: 20px;
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .marble-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-img-wrapper img {
        height: 300px;
    }

    .action-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-outline {
        margin-left: 0;
    }
}

.page-hero-inner {
    height: 45vh;
    background: linear-gradient(rgba(45, 9, 9, 0.8), rgba(45, 9, 9, 0.8)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1500');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px;
    font-weight: 800;
}

.features-details-grid,
.steps-grid-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.f-detail-card,
.step-card {
    background: #fff;
    padding: 30px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: 0.3s ease;
}

.f-detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.f-detail-card i {
    font-size: 35px;
    color: var(--gold);
    margin-bottom: 20px;
}

.f-detail-card h4,
.step-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.f-detail-card p,
.step-card p {
    font-size: 14px;
    color: #666;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    margin: 0 auto 15px;
}

.tips-box {
    background: #fdfaf3;
    padding: 40px;
    border-radius: 25px;
    border-right: 6px solid var(--gold);
    max-width: 800px;
    margin: 0 auto;
}

.tips-box ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.tips-box ul li {
    margin-bottom: 15px;
    font-weight: bold;
}

.tips-box ul li::before {
    content: "✦";
    color: var(--gold);
    margin-left: 10px;
}

.btns-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-outline-blue {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-outline-blue:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 992px) {

    .features-details-grid,
    .steps-grid-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .features-details-grid,
    .steps-grid-details {
        grid-template-columns: 1fr;
    }

    .btns-flex {
        flex-direction: column;
    }

    .page-hero-inner h1 {
        font-size: 1.8rem;
    }
}

.section-padding {
    padding: 100px 0;
}

.marble-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.main-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.main-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.cleaning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.clean-pro-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--gold);
    transition: 0.3s;
}

.clean-pro-card:hover {
    transform: translateY(-10px);
}

.cp-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.detailed-list {
    list-style: none;
    padding: 0;
}

.detailed-list li {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    border-right: 4px solid var(--gold);
}

.sticky-cta {
    position: sticky;
    top: 120px;
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

@media (max-width: 992px) {

    .marble-main-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .main-img-wrapper img {
        height: 350px;
    }
}


.article-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: start;
}

.article-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.imp-card {
    background: #fdfdfd;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
}

.imp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.imp-num {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 900;
}

.detailed-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-bar-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 15px;
    border-right: 5px solid var(--gold);
    transition: 0.3s;
}

.service-bar-item:hover {
    background: #f1f1f1;
    transform: scale(1.01);
}

.service-bar-item i {
    font-size: 24px;
    color: var(--primary);
}

.sticky-cta-box {
    position: sticky;
    top: 120px;
    background: var(--primary);
    color: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 35, 71, 0.2);
}

.cta-icon {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.sidebar-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.btn-wa-sidebar {
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-phone-sidebar {
    background: transparent;
    color: white;
    border: 2px solid var(--gold);
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-phone-sidebar:hover {
    background: var(--gold);
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .sticky-cta-box {
        position: static;
        margin-top: 40px;
    }
}

.btn-clean-outline {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border: 2px solid var(--gold);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s all ease;
}

.btn-clean-outline i {
    margin-right: 8px;
    font-size: 12px;
    transition: 0.3s;
}

.btn-clean-outline:hover {
    background: var(--gold);
    color: #fff;
}

.btn-clean-outline:hover i {
    transform: translateX(-5px);
}

.btn-clean-solid {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    transition: 0.3s all ease;
    border: 2px solid var(--gold);
}

.btn-clean-solid i {
    margin-right: 8px;
}

.btn-clean-solid:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 35, 71, 0.2);
}

.clean-pro-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    padding: 40px 30px;
}

.decor-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.mini-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.mf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #444;
}

.mf-item i {
    color: var(--gold);
}

.floating-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.services-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.s-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fdfdfd;
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.s-item span {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.s-item:hover {
    border-color: var(--gold);
    transform: translateX(-10px);
}

@media (max-width: 992px) {
    .decor-main-grid {
        grid-template-columns: 1fr;
    }

    .mini-features-grid {
        grid-template-columns: 1fr;
    }

    .s-item:hover {
        transform: translateX(0);
    }
}

.article-layout-grid {
    display: grid;
    grid-template-columns: 2fr 350px;
    gap: 50px;
    align-items: start;
}

.article-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.importance-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.imp-card-mini {
    background: #fcfcfc;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.imp-card-mini:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.imp-card-mini i {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 15px;
}

.imp-card-mini h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary);
}

.imp-card-mini p {
    font-size: 13px;
    color: #777;
}

.numbered-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.n-service-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.n-service-item:hover {
    border-right: 5px solid var(--primary);
    transform: translateX(-10px);
}

.n-number {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    margin-left: 20px;
    opacity: 0.5;
}

.n-text h4 {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.sticky-contact-card {
    position: sticky;
    top: 100px;
    background: var(--primary);
    color: white;
    padding: 40px 25px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(158, 27, 35, 0.2);
}

.main-cta-icon {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 20px;
}

.btn-cta-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    margin: 20px 0;
    transition: 0.3s;
}

.btn-cta-sidebar:hover {
    transform: scale(1.05);
    background: #20ba5a;
}

.sidebar-info-row {
    font-size: 18px;
    font-weight: bold;
    color: var(--gold);
}

@media (max-width: 992px) {
    .article-layout-grid {
        grid-template-columns: 1fr;
    }

    .importance-mini-grid {
        grid-template-columns: 1fr;
    }

    .sticky-contact-card {
        position: static;
        margin-top: 40px;
    }
}

.maintenance-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.m-grid-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.m-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    text-align: right;
    transition: 0.3s;
}

.m-card:hover {
    background: var(--gold);
    color: var(--primary);
}

.m-card i {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 15px;
    transition: 0.3s;
}

.m-card:hover i {
    color: var(--primary);
}

.m-cta-box {
    background: #fff;
    color: var(--primary);
    padding: 40px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m-cta-box h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
}

.btn-gold-small {
    background: var(--gold);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.importance-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.imp-item {
    background: #fdfaf3;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.imp-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.full-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.fs-item {
    padding: 15px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.why-us-list {
    list-style: none;
    padding: 0;
    text-align: right;
    margin: 20px 0;
}

.why-us-list li {
    margin-bottom: 10px;
    font-weight: bold;
}

.why-us-list li i {
    color: var(--gold);
    margin-left: 10px;
}

@media (max-width: 992px) {
    .maintenance-main-grid {
        grid-template-columns: 1fr;
    }

    .m-grid-items {
        grid-template-columns: 1fr;
    }

    .importance-grid-box {
        grid-template-columns: 1fr;
    }
}


.article-layout-grid {
    display: grid;
    grid-template-columns: 2fr 350px;
    gap: 50px;
    align-items: start;
}

.article-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.importance-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.imp-card-mini {
    background: #fdfaf3;
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.imp-card-mini i {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 15px;
}

.imp-card-mini h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
}

.numbered-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.n-service-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f5f5f5;
    transition: 0.3s;
}

.n-service-item:hover {
    border-right: 5px solid var(--gold);
    transform: translateX(-10px);
}

.n-number {
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
    margin-left: 20px;
    opacity: 0.4;
}

.n-text h4 {
    font-size: 15px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.sticky-contact-card {
    position: sticky;
    top: 100px;
    background: var(--primary);
    color: white;
    padding: 40px 25px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 35, 71, 0.2);
}

.sidebar-check-list {
    list-style: none;
    padding: 0;
    text-align: right;
    margin: 20px 0;
}

.sidebar-check-list li {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: bold;
}

.sidebar-check-list i {
    color: var(--gold);
    margin-left: 10px;
}

.btn-cta-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    margin: 20px 0;
}

@media (max-width: 992px) {
    .article-layout-grid {
        grid-template-columns: 1fr;
    }

    .importance-mini-grid {
        grid-template-columns: 1fr;
    }

    .sticky-contact-card {
        position: static;
        margin-top: 40px;
    }
}

.main-footer-dark {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 80px 0 0;
    margin-top: 100px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4.footer-title {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

[lang="en"] .footer-col h4.footer-title::after {
    right: auto;
    left: 0;
}

.footer-logo {
    height: 70px;
    margin-bottom: 15px;
}

.brand-name h3 {
    font-size: 24px;
    color: var(--gold);
    margin: 0;
}

.footer-desc {
    font-size: 14px;
    color: #ccc;
    margin-top: 15px;
    max-width: 300px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-right: 10px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.contact-item i {
    color: var(--gold);
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

.footer-bottom-bar {
    background: #1a0505;
    padding: 20px 0;
    font-size: 13px;
    color: #777;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4.footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

[lang="en"] .floating-actions {
    right: auto;
    left: 30px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.float-btn.whatsapp {
    background-color: #25d366;
    animation: pulse-green 2s infinite;
}

.float-btn.phone {
    background-color: var(--gold);
    animation: shake-btn 4s ease-in-out infinite;
}

@keyframes shake-btn {

    0%,
    100% {
        transform: rotate(0);
    }

    5%,
    15%,
    25% {
        transform: rotate(15deg);
    }

    10%,
    20%,
    30% {
        transform: rotate(-15deg);
    }

    35% {
        transform: rotate(0);
    }
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-btn:hover {
    transform: scale(1.2) !important;
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

.about-main-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.about-text-side {
    flex: 1.2;
}

.about-img-side {
    flex: 0.8;
}

.maroon-text {
    color: var(--primary);
    font-weight: 900;
}

.about-p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.af-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    transition: 0.3s;
}

.af-item:hover {
    background: #fdf6f6;
    transform: translateX(-10px);
}

.af-item i {
    font-size: 28px;
    color: var(--gold);
    margin-top: 5px;
}

.af-item h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.btn-gold-fill {
    background: var(--gold);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-left: 15px;
}

.btn-outline-maroon {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.img-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.img-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-box-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--gold);
}

.experience-box-badge span {
    font-size: 35px;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.experience-box-badge p {
    font-size: 12px;
    margin: 0;
}

@media (max-width: 992px) {
    .about-main-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .af-item {
        text-align: right;
    }

    .btn-gold-fill {
        margin-left: 0;
        margin-bottom: 15px;
    }

    .about-action {
        display: flex;
        flex-direction: column;
    }

    .experience-box-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column !important;
        padding: 100px 30px;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: flex !important;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
    }

    .lang-btn-nav {
        background: var(--gold);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        width: 100%;
        font-weight: bold;
        margin-top: 20px;
    }

    .about-main-flex {
        flex-direction: column !important;
        text-align: center;
    }

    .af-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .about-action {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .maintenance-main-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .m-cta-box {
        text-align: center;
        align-items: center;
    }

    .m-grid-items {
        grid-template-columns: 1fr !important;
    }

    .btn-gold-small,
    .btn-outline-gold {
        width: 100%;
        max-width: 280px;
    }

    .hero-content h2 {
        font-size: 2rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
}

.menu-toggle {
    display: none;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .fa-bars:before,
    .fa-navicon:before {
        content: "\f0c9";
        color: black;
    }
}

@media (max-width: 768px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #001a35 !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease-in-out;
        z-index: 1500;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links li a {
        color: #ffffff !important;
        font-size: 22px;
        font-weight: bold;
    }

    .menu-toggle {
        z-index: 2000;
        position: relative;
    }

    body.menu-open {
        overflow: hidden;
    }
}



@media (max-width: 768px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 26, 53, 0.98) !important;
        backdrop-filter: blur(10px);
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 2500;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        margin: 15px 0;
        width: auto;
        border: none !important;
    }

    .nav-links li a {
        font-size: 24px !important;
        color: #fff !important;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s;
    }

    .nav-links li a:hover {
        color: var(--gold) !important;
    }

    .mobile-lang-item {
        margin-top: 30px !important;
    }

    .lang-btn-nav {
        background: var(--gold) !important;
        color: var(--primary) !important;
        width: auto !important;
        min-width: 150px;
        padding: 12px 30px !important;
        border-radius: 50px !important;
        font-size: 16px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    body.menu-open .floating-actions {
        opacity: 0;
        visibility: hidden;
    }

    .menu-toggle {
        z-index: 3000;
        color: #fff !important;
        position: relative;
    }
}

@media (max-width: 768px) {

    .decor-main-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .decor-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

    .decor-text-content p {
        text-align: center;
        margin: 15px 0;
    }

    .mini-features-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .mf-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
        font-size: 15px;
    }

    .action-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        margin-top: 25px;
    }

    .action-btns a {
        width: 100%;
        max-width: 280px;
        margin: 0 !important;
        text-align: center;
    }

    .nav-logo {
        height: 45px !important;
    }
}

@media (max-width: 768px) {
    .footer-col h4.footer-title::after {
        display: none;
    }

    .section-padding {
        padding: 30px 0 !important;
    }

    .section-header {
        margin-bottom: 20px !important;
    }

    .section-title {
        margin-bottom: 10px !important;
        font-size: 22px !important;
    }

    .maintenance-main-grid {
        margin-top: 15px !important;
        gap: 15px !important;
    }

    .m-grid-items {
        gap: 10px !important;
    }

    .m-card {
        padding: 15px !important;
        min-height: auto !important;
    }

    .m-card i {
        margin-bottom: 10px !important;
        font-size: 24px !important;
    }

    .m-cta-box {
        padding: 20px !important;
        margin-top: 10px !important;
    }

    .cleaning-grid {
        gap: 15px !important;
        margin-top: 10px !important;
    }

    .clean-pro-card {
        padding: 20px !important;
        min-height: auto !important;
        margin-bottom: 10px;
    }

    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .m-grid-items {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-top: 20px !important;
    }

    .m-card {
        padding: 20px 10px !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 160px !important;
        background: #ffffff !important;
        border: 1px solid #f0f0f0 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    }

    .m-card i {
        font-size: 28px !important;
        margin-bottom: 12px !important;
        background: rgba(158, 27, 35, 0.05);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .m-card h4 {
        font-size: 14px !important;
        margin-bottom: 5px !important;
    }

    .m-card p {
        font-size: 11px !important;
        line-height: 1.4 !important;
        color: #888 !important;
    }

    .m-cta-box {
        margin-top: 20px !important;
        padding: 25px 20px !important;
        border-radius: 20px !important;
        text-align: center;
    }

    .m-cta-box h3 {
        font-size: 20px !important;
    }

    .btn-gold-small,
    .btn-outline-gold {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.footer-contact-item i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.footer-contact-item:hover {
    color: var(--gold);
    transform: translateX(-5px);
}

[lang="en"] .footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-item i.fa-map-marker-alt {
    color: #ff4d4d;
}

@media (max-width: 768px) {
    .footer-col.contact-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact-links {
        width: 100%;
        align-items: center !important;
    }

    .footer-contact-item {
        justify-content: center !important;
        width: 100%;
        text-align: center;
        gap: 10px;
    }

    .footer-col.contact-col h4.footer-title::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }

    .footer-social-icons {
        justify-content: center !important;
        margin-top: 20px;
    }

    .footer-contact-item span {
        font-size: 16px;
    }
}



@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 26, 53, 0.98) !important;
        backdrop-filter: blur(10px);
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 2500;

        right: -100%;
        left: auto;
    }

    [lang="ar"] .nav-links.active {
        right: 0 !important;
        left: auto !important;
    }

    [lang="en"] .nav-links {
        left: -100% !important;
        right: auto !important;
    }

    [lang="en"] .nav-links.active {
        left: 0 !important;
        right: auto !important;
    }

    .menu-toggle {
        z-index: 3000;
        position: relative;
    }
}

[lang="en"] .marble-main-grid {
    direction: ltr;
}

[lang="en"] .f-item i {
    margin-left: 0;
    margin-right: 15px;
}

[lang="en"] .experience-tag {
    right: auto;
    left: 20px;
}

.action-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.action-btns .btn-gold,
.action-btns .btn-outline {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .action-btns {
        flex-direction: column;
    }
}


[lang="en"] .decor-main-grid {
    direction: ltr;
}

[lang="en"] .mf-item {
    justify-content: flex-start;
}

[lang="en"] .mf-item i {
    margin-left: 0;
    margin-right: 10px;
}

[lang="en"] .floating-badge {
    left: auto;
    right: 20px;
}

.action-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btns a {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

@media (max-width: 768px) {
    .action-btns {
        flex-direction: column;
    }

    .action-btns a {
        width: 100%;
    }
}


[lang="en"] .m-card {
    text-align: left;
}

@media (max-width: 768px) {
    [lang="en"] .m-card {
        text-align: center;
    }
}

[lang="en"] .m-card i {
    margin-right: 0;
    margin-bottom: 15px;
}

.m-cta-box .mt-4 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-gold-small,
.btn-outline-gold {
    text-align: center;
    width: 100%;
    white-space: nowrap;
}

.main-footer-dark {
    color: #ffffff;
    padding: 80px 0 0;
    margin-top: 100px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-title {
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 800;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(-5px);
    display: inline-block;
}

[lang="en"] .footer-links a:hover {
    transform: translateX(5px);
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-social-icons a:hover {
    background: var(--gold);
    color: #001a35;
    transform: translateY(-5px);
}

.footer-bottom-bar {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #888;
}

.dev-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-copy-flex {
        flex-direction: column;
        gap: 10px;
    }
}



.article-layout-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 50px;
    align-items: start;
}

.importance-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.imp-card-mini {
    background: #fdfdfd;
    padding: 25px 15px;
    border-radius: 15px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
}

.imp-card-mini i {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 10px;
}

.numbered-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.n-service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #f5f5f5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
}

.n-service-item:hover {
    border-right: 5px solid var(--primary);
    transform: translateX(-10px);
}

[lang="en"] .n-service-item:hover {
    border-right: none;
    border-left: 5px solid var(--primary);
    transform: translateX(10px);
}

.n-number {
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.4;
}

.sticky-contact-card {
    position: sticky;
    top: 110px;
    background: var(--primary);
    color: white;
    padding: 40px 25px;
    border-radius: 30px;
    text-align: center;
}

.main-cta-icon {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 20px;
}

.btn-wa-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    margin: 25px 0;
}

@media (max-width: 992px) {
    .article-layout-grid {
        grid-template-columns: 1fr;
    }

    .importance-mini-grid {
        grid-template-columns: 1fr;
    }

    .sticky-contact-card {
        position: static;
        margin-top: 40px;
    }
}


.maintenance-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?q=80&w=2000');
    height: 450px;
    margin-top: -80px;
}

.sticky-contact-card {
    background: var(--primary);
    color: white;
    padding: 40px 25px;
    border-radius: 30px;
    text-align: center;
    position: sticky;
    top: 110px;
    box-shadow: 0 20px 50px rgba(158, 27, 35, 0.3);
}

.main-cta-icon {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.n-service-item {
    border-right: 5px solid var(--primary);
    transition: 0.3s ease;
}

.n-service-item:hover {
    border-right-color: var(--gold);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

[lang="en"] .n-service-item {
    border-right: none;
    border-left: 5px solid var(--primary);
}

[lang="en"] .n-service-item:hover {
    border-left-color: var(--gold);
}


.marble-hero-bg {
    background-image: url('images/سيراميك1.jpeg');
    background-size: cover;
    background-position: center;
    height: 450px;
    margin-top: -80px;
}

.intro-box-centered {
    max-width: 800px;
    margin: 40px auto;
}

.features-details-grid,
.steps-grid-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.f-detail-card,
.step-card {
    background: #fff;
    padding: 30px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.btns-flex-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 992px) {

    .features-details-grid,
    .steps-grid-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .features-details-grid,
    .steps-grid-details {
        grid-template-columns: 1fr;
    }

    .btns-flex-centered {
        flex-direction: column;
        align-items: center;
    }
}

.footer-social-icons a.inst:hover {
    background: #E1306C;
    color: #fff;
}

.footer-social-icons a.fb:hover {
    background: #1877F2;
    color: #fff;
}

.footer-social-icons a.snap:hover {
    background: #FFFC00;
    color: #000;
}

.footer-social-icons a.tiktok:hover {
    background: #000000;
    color: #fff;
}

.gallery-category h2 {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 10px;
}

.gallery-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}


.legal-hero {
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1500') !important;
    height: 300px !important;
}

.legal-content-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h3 i {
    color: var(--gold);
}

.legal-section p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    text-align: justify;
}

.divider-gold {
    height: 1px;
    background: linear-gradient(to left, transparent, var(--gold), transparent);
    margin: 30px 0;
    opacity: 0.3;
}

.legal-footer-note {
    margin-top: 50px;
    font-size: 13px;
    color: #aaa;
}

@media (max-width: 768px) {
    .legal-content-card {
        padding: 30px 20px;
        margin-top: -30px;
    }

    .legal-section h3 {
        font-size: 19px;
    }

    .legal-section p {
        font-size: 14px;
        line-height: 1.8;
    }
}

.gallery-category-section {
    margin-bottom: 60px;
}

.category-header {
    margin-bottom: 30px;
    text-align: right;
}

[lang="en"] .category-header { text-align: left; }

.category-header h2 {
    color: var(--primary);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.gallery-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}

.gallery-item-pro {
    position: relative;
    height: 350px; 
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-item-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item-pro:hover img {
    transform: scale(1.1); 
}

.img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 35, 71, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.img-overlay span {
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    transform: translateY(20px);
    transition: 0.3s;
}

.gallery-item-pro:hover .img-overlay { opacity: 1; }
.gallery-item-pro:hover .img-overlay span { transform: translateY(0); }

@media (max-width: 992px) {
    .gallery-grid-pro {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid-pro {
        grid-template-columns: 1fr;
    }
    .gallery-item-pro {
        height: 280px;
    }
}
.category-header {
    margin-bottom: 35px;
    padding: 0 10px;
}

.category-header h2 {
    display: flex;
    align-items: center;
    gap: 15px; 
    color: var(--primary); 
    font-size: 28px;
    font-weight: 900;
}

.category-header h2 i {
    color: var(--gold); 
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(to left, var(--gold), transparent);
    margin-top: 10px;
    border-radius: 2px;
}

[lang="en"] .header-line {
    background: linear-gradient(to right, var(--gold), transparent);
}

.mt-5 {
    margin-top: 80px !important;
}

.gallery-item-pro {
    border-radius: 20px;
    overflow: hidden;
    height: 300px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gallery-item-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: 0.5s ease;
}

@media (max-width: 768px) {
    .category-header h2 { font-size: 22px; justify-content: center; }
    .header-line { margin: 10px auto; }
    .gallery-item-pro { height: 250px; }
}
.hero-brand-tag {
    display: inline-block;
    color: var(--gold); 
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 5px 20px;
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.6);
}

.hero-brand-tag::before,
.hero-brand-tag::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.hero-brand-tag::before {
    right: -45px;
}

.hero-brand-tag::after {
    left: -45px;
    background: linear-gradient(to left, transparent, var(--gold));
}

.hero-brand-tag {
    animation: fadeInBlur 1.5s ease-out forwards;
}

@keyframes fadeInBlur {
    0% { opacity: 0; filter: blur(10px); transform: scale(0.9); }
    100% { opacity: 1; filter: blur(0); transform: scale(1); }
}

@media (max-width: 768px) {
    .hero-brand-tag {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    .hero-brand-tag::before,
    .hero-brand-tag::after {
        width: 25px; 
    }
    .hero-brand-tag::before { right: -25px; }
    .hero-brand-tag::after { left: -25px; }
}
.hero-brand-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding: 8px 25px;
    
    animation: luxuryPulse 3s infinite ease-in-out;
    cursor: default;
}

@keyframes luxuryPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.08);
        text-shadow: 0 0 25px rgba(197, 160, 89, 0.9), 
                     0 0 40px rgba(255, 255, 255, 0.4);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
        opacity: 0.9;
    }
}

.hero-brand-tag::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transform: skewX(-25deg);
    animation: goldShine 4s infinite;
}

@keyframes goldShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.landscaping-hero-bg {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('images/حدائق.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.btn-clean-outline-small {
    padding: 6px 15px;
    border: 1px solid var(--gold);
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    border-radius: 5px;
}

.btn-clean-solid-small {
    padding: 6px 15px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    border-radius: 5px;
}

.cleaning-hero-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('images/تنضيف.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}
.landscaping-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.luxury-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 5;
}

.btn-outline-maroon {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    text-align: center;
}

.btn-outline-maroon:hover {
    background: var(--primary);
    color: white;
}

[lang="en"] .landscaping-home-grid {
    direction: ltr;
}

[lang="en"] .luxury-tag {
    right: auto;
    left: 20px;
}

@media (max-width: 992px) {
    .landscaping-home-grid {
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 40px;
    }

    .landscaping-images {
        order: -1; 
    }

    .mini-features {
        display: inline-block;
        text-align: right;
    }
    
    [lang="en"] .mini-features { text-align: left; }

    .action-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .action-btns a { width: 100%; margin: 0; }
}