* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

:root {
    --navy-blue: #343a5e;
    --orange-color: #f16522;
    --white: #ffffff;
}

body {
    direction: rtl;
    background-color: #fff;
    overflow-x: hidden;
}
body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.top-header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.logo-area img {
    max-height: 150px;
    width: 200px;
}
.nav-container {
    background-color: var(--navy-blue);
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    border-radius: 4px;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    width: 100%;
}

.desktop-nav ul li {
    flex: 1;
    text-align: center;
}

.desktop-nav ul li a {
    display: block;
    padding: 15px 5px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.desktop-nav ul li a:hover, .desktop-nav ul li a.active {
    background-color: var(--orange-color);
}
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy-blue);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%); 
    transition: transform 0.4s ease-in-out;
}

.side-menu.open {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

.side-menu-links {
    list-style: none;
    text-align: center;
    width: 100%;
}

.side-menu-links li a {
    display: block;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}

.side-menu-footer {
    position: absolute;
    bottom: 50px;
    text-align: center;
    color: #fff;
}

.menu-phone-link {
    color: var(--orange-color);
    font-size: 25px;
    text-decoration: none;
    font-weight: bold;
}
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .menu-btn {
        display: block;
        font-size: 25px;
        color: var(--navy-blue);
        cursor: pointer;
    }
    .phone-num { font-size: 18px; }
    .logo-area img { max-height: 100px; }
}

.overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}
.overlay.show { display: block; }
@media (min-width: 993px) {
    .side-menu, 
    .overlay, 
    .menu-btn {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}
.contact-banner-area {
    padding: 30px 0;
    text-align: center;
    background-color: #fff;
}

.styled-contact-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to left, #f16522 50%, #343a5e 50%);
    padding: 10px 60px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.styled-contact-card:hover {
    transform: translateY(-3px);
}

.phone-icon-wrap {
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5px;
}

.phone-icon-wrap i {
    color: #f16522;
    font-size: 24px;
}

.phone-text-wrap {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    padding-right: 20px;
    letter-spacing: 1px;
}
.main-services-title {
    text-align: center;
    margin-bottom: 40px;
}

.main-services-title h2 {
    font-size: 30px;
    color: #343a5e;
    margin-bottom: 5px;
}

.underline {
    width: 70px;
    height: 4px;
    background: #f16522;
    margin: 0 auto;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    padding-bottom: 60px;
}

.service-box {
    background: #fff;
    border-bottom: 2px solid #eee;
    transition: 0.3s ease;
    overflow: hidden;
}

.service-box:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-box a {
    text-decoration: none;
    color: inherit;
}

.img-container {
    position: relative;
    height: 240px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #343a5e;
    color: #fff;
    padding: 4px 14px;
    font-size: 13px;
    border-radius: 2px;
}

.content {
    padding: 20px;
    text-align: right;
}

.content h3 {
    font-size: 19px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: bold;
}

.content p {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
}
@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .phone-text-wrap { font-size: 24px; }
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr; 
    }
    .phone-text-wrap { font-size: 18px; }
    .styled-contact-card { padding: 8px 40px; }
    .phone-icon-wrap { width: 40px; height: 40px; }
    .phone-icon-wrap i { font-size: 18px; }
}
.floating-contact {
    position: fixed;
    bottom: 25px;
    left: 25px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
    animation: pulse 2s infinite; 
}
.call-float {
    background-color: #f16522; 
}
.whatsapp-float {
    background-color: #25d366;
}
.float-btn:hover {
    transform: scale(1.1) rotate(10deg);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(241, 101, 34, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(241, 101, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(241, 101, 34, 0); }
}
.site-footer {
    background-color: #343a5e; 
    color: #fff;
    padding: 60px 0 0;
    margin-top: 50px;
}

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

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #f16522;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: #f16522;
}

.about-us p {
    line-height: 1.8;
    color: #ccc;
    font-size: 15px;
    margin-top: 20px;
}

.footer-logo {
    max-height: 70px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

.quick-links ul {
    list-style: none;
}

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

.quick-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}
.quick-links ul li a i {
    font-size: 12px;
    margin-left: 8px;
    color: #f16522;
}
.quick-links ul li a:hover {
    color: #f16522;
    padding-right: 10px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-item i {
    color: #f16522;
    font-size: 18px;
}
.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    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-column h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    .contact-item {
        justify-content: center;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
.footer-bottom {
    background-color: #2a2f4d; 
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
    font-size: 14px;
    color: #aaa;
    margin: 5px 0; 
}
.gmt-credits a {
    color: #f16522;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}
.gmt-credits a:hover {
    color: #fff; 
    text-decoration: underline;
}
.info-highlight-bar {
    background-color: #f16522; 
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 30px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.info-highlight-bar h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}
.service-details-content {
    padding-bottom: 50px;
}

.main-service-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.main-service-image img {
    width: 100%;
    height: auto;
    display: block;
}
.service-text-area h1 {
    color: #343a5e;
    font-size: 30px;
    margin-bottom: 20px;
    border-right: 5px solid #f16522;
    padding-right: 15px;
}

.service-text-area p {
    font-size: 18px;
    line-height: 2;
    color: #555;
    text-align: justify;
}
@media (max-width: 768px) {
    .info-highlight-bar h3 { font-size: 18px; }
    .service-text-area h1 { font-size: 24px; }
}
html, body {
    height: 100%;
    margin: 0;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}
#header-placeholder {
    width: 100%;
}
main {
    flex: 1; 
    padding-top: 20px;
}

#footer-placeholder {
    width: 100%;
}
.promo-box-container {
    text-align: center;
    margin: 25px auto;
    padding: 0 15px;
    width: 100%;
}
.animated-promo-frame {
    display: inline-block;
    background: #343a5e; 
    padding: 18px 60px;
    border: 3px solid #f16522; 
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: floating-frame 3s ease-in-out infinite; 
}

.animated-promo-frame h3 {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    position: relative;
    z-index: 5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transform: skewX(-30deg);
    animation: shine-logic 4s infinite;
    z-index: 1;
}
@keyframes shine-logic {
    0% { left: -100%; }
    25% { left: 100%; }
    100% { left: 100%; }
}
@keyframes floating-frame {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@media (max-width: 768px) {
    .animated-promo-frame { padding: 12px 30px; }
    .animated-promo-frame h3 { font-size: 18px; }
}
.main-footer {
    background-color: #1a1e36; 
    color: #fff;
    padding: 70px 0 0;
    margin-top: auto; 
    border-top: 4px solid #f16522;
    direction: rtl;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
}
.footer-logo img {
    max-height: 80px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about p {
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

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

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

.social-icons a:hover {
    background: #f16522;
    transform: translateY(-5px);
}
.footer-col h3 {
    color: #f16522;
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: #f16522;
}

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

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

.links ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
    display: inline-block;
}

.links ul li a:hover {
    color: #f16522;
    padding-right: 10px;
}
.contact-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.c-item i {
    color: #f16522;
    font-size: 20px;
    margin-top: 5px;
}

.c-info span {
    display: block;
    font-size: 13px;
    color: #a0aec0;
}

.c-info a, .c-info p {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}
.footer-bottom {
    background: #111424;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.bottom-flex p {
    font-size: 14px;
    color: #718096;
}

.gmt-link a {
    color: #f16522;
    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;
        gap: 40px;
    }
    .footer-col h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    .social-icons, .c-item {
        justify-content: center;
    }
    .bottom-flex {
        flex-direction: column;
        gap: 10px;
    }
}
.service-page-wrapper {
    padding: 40px 0;
    background-color: #fcfcfc;
}

.service-main-title h1 {
    font-size: 32px;
    color: #343a5e;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px solid #f16522;
    display: inline-block;
    padding-bottom: 10px;
}

.service-hero-img {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-hero-img img { width: 100%; display: block; }

.content-styled-area {
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.gold-border {
    border-right: 8px solid #f16522;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.navy-bg {
    background: #343a5e;
    color: #fff;
}

.navy-bg h3 { color: #f16522; margin-bottom: 15px; }

.quick-contact-box {
    background: #fdf2ec;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
}

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

.c-btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
}

.call { background: #343a5e; }
.whatsapp { background: #25d366; }

.highlight-quote {
    background: #eee;
    padding: 25px;
    border-left: 5px solid #343a5e;
    font-style: italic;
    margin: 30px 0;
    font-size: 18px;
}

.video-placeholder {
    height: 200px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 15px;
    margin: 40px 0;
    cursor: pointer;
}

.v-content i { font-size: 50px; color: #f16522; margin-bottom: 10px; }
.v-content { text-align: center; display: flex; flex-direction: column; }

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.f-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.f-item i { color: #f16522; margin-left: 10px; }

.article-section h3 {
    margin: 30px 0 15px;
    color: #343a5e;
}

.article-section p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #444;
    line-height: 1.9;
}
.special-offer-box {
    background: #fffcf5;
    border: 2px dashed #f16522;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.highlight-text {
    font-weight: bold;
    color: #f16522;
    font-size: 1.2rem;
    margin-top: 15px;
    text-align: center;
}

.type-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.type-card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    border-top: 4px solid #343a5e;
}

.type-card h4 { color: #f16522; margin-bottom: 10px; }

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

.step-card {
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.step-card span {
    background: #343a5e;
    color: #fff;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
}

.tags-wrapper span {
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 13px;
    color: #555;
}

@media (max-width: 768px) {
    .type-container { grid-template-columns: 1fr; }
}
.highlight-border {
    border: 2px solid #343a5e;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.split-boxes {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.s-box {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-top: 5px solid #f16522;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.s-box h4 { color: #343a5e; margin-bottom: 10px; }

.asphalt-promo-box {
    background: #343a5e;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.asphalt-promo-box h3 { color: #f16522; }

.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.step-item {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.step-item span {
    color: #f16522;
    font-weight: bold;
    margin-left: 5px;
}

.tags-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tags-flex span {
    background: #eee;
    padding: 4px 12px;
    font-size: 13px;
    border-radius: 4px;
    color: #444;
}

.contact-footer-card {
    text-align: center;
    background: #fdf2ec;
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
}

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

.btn-main {
    background: #343a5e;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

.btn-wa {
    background: #25d366;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

@media (max-width: 768px) {
    .split-boxes, .footer-btns { flex-direction: column; }
    .btn-main, .btn-wa { font-size: 16px; }
}
.advice-box {
    background: #fff9f5;
    border: 2px dashed #f16522;
}

.advice-box .offer-header i {
    color: #f16522;
    font-size: 35px;
}

.inside-p {
    margin-top: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1.8;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.styled-list li i {
    color: #f16522;
    margin-top: 5px;
    font-size: 18px;
}