:root{--bg:#f6f7f9;--card:#fff;--text:#20252b;--muted:#6b7280;--accent:#0f766e;--dark:#111827;--border:#e5e7eb}
*{box-sizing:border-box}body{margin:0;font-family:Tahoma,Arial,sans-serif;background:var(--bg);color:var(--text);line-height:1.8}.container{width:min(1120px,92%);margin:auto}.site-header{background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:10}.nav{min-height:70px;display:flex;align-items:center;justify-content:space-between;gap:20px}.brand{font-size:1.3rem;font-weight:800;color:var(--dark);text-decoration:none}.nav nav{display:flex;gap:18px}.nav nav a{color:var(--text);text-decoration:none}.hero{padding:72px 0;background:linear-gradient(135deg,#ecfeff,#f0fdfa)}.hero-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:30px;align-items:center}.hero h1{font-size:clamp(2rem,5vw,4rem);line-height:1.25;margin:0 0 14px}.hero p{font-size:1.1rem;color:var(--muted)}.btn{display:inline-block;background:var(--accent);color:white;padding:11px 18px;border-radius:10px;text-decoration:none;border:0;cursor:pointer}.section{padding:52px 0}.section h2{margin-top:0}.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.card{background:var(--card);border:1px solid var(--border);border-radius:16px;overflow:hidden;box-shadow:0 7px 24px rgba(0,0,0,.04)}.card img{width:100%;height:210px;object-fit:cover;background:#eee}.card-body{padding:18px}.card h3{margin:0 0 8px}.card a{text-decoration:none;color:inherit}.meta{color:var(--muted);font-size:.9rem}.article{background:white;padding:28px;border-radius:16px;border:1px solid var(--border)}.article img{max-width:100%;border-radius:12px}.site-footer{margin-top:50px;background:var(--dark);color:white;padding:28px 0;text-align:center}.whatsapp{position:fixed;bottom:22px;left:22px;background:#16a34a;color:#fff;padding:12px 17px;border-radius:999px;text-decoration:none;box-shadow:0 8px 24px rgba(0,0,0,.2)}.form{background:#fff;padding:24px;border-radius:14px;border:1px solid var(--border);max-width:760px}.form label{display:block;font-weight:700;margin-top:12px}.form input,.form textarea,.form select{width:100%;padding:11px;border:1px solid var(--border);border-radius:8px;font:inherit}.form textarea{min-height:130px}.notice{padding:12px 15px;border-radius:8px;background:#ecfdf5;margin-bottom:16px}.error{background:#fef2f2}.adminbar{background:#111827;padding:13px 0}.adminbar a{color:white;text-decoration:none;margin-left:14px}.table-wrap{overflow:auto;background:#fff;border:1px solid var(--border);border-radius:12px}table{width:100%;border-collapse:collapse}th,td{padding:12px;border-bottom:1px solid var(--border);text-align:right}.actions{display:flex;gap:8px}.danger{background:#b91c1c}.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.stat{background:#fff;padding:22px;border:1px solid var(--border);border-radius:14px}.stat strong{font-size:2rem;display:block}@media(max-width:800px){.hero-grid,.cards,.stats{grid-template-columns:1fr}.nav{flex-direction:column;padding:12px 0}.nav nav{flex-wrap:wrap;justify-content:center}.hero{padding:45px 0}}
.home-layout {
    max-width: 1500px;
    margin: 25px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 25px;
    direction: rtl;
    align-items: start;
}

.category-sidebar {
    background: #f4f4f4;
    padding: 0;
    position: sticky;
    top: 20px;
}

.category-sidebar-title {
    background: #08649a;
    color: white;
    font-size: 25px;
    font-weight: bold;
    padding: 18px;
    text-align: right;
}

.category-sidebar-link {
    display: block;
    background: #ffffff;
    color: #222;
    text-decoration: none;
    font-size: 21px;
    font-weight: bold;
    padding: 16px 20px;
    margin-bottom: 6px;
    border-right: 5px solid transparent;
    transition: 0.2s;
}

.category-sidebar-link:hover {
    background: #eeeeee;
    border-right-color: #0b699f;
    color: #0b699f;
}

.home-content {
    min-width: 0;
}

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

    .category-sidebar {
        position: static;
    }
}
/* ==========================================================
   DROOB AL DHIL - HOME PAGE
========================================================== */


.home-layout {
    width: 100%;
    max-width: 1600px;
    margin: 25px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 25px;
    direction: rtl;
    align-items: start;
}


.home-content {
    min-width: 0;
}


/* ==========================================================
   SIDEBAR
========================================================== */

.category-sidebar {
    background: #f4f4f4;
    position: sticky;
    top: 20px;
    overflow: hidden;
}

.category-sidebar-title {
    background: #08699f;
    color: #fff;
    padding: 22px 20px;
    font-size: 28px;
    font-weight: 800;
}

.category-sidebar-link {
    display: block;
    padding: 17px 22px;
    background: #fff;
    color: #222;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    transition: all .2s ease;
}

.category-sidebar-link:hover {
    background: #eef7fc;
    color: #08699f;
    padding-right: 28px;
}


/* ==========================================================
   SEARCH
========================================================== */

.top-search {
    margin-bottom: 18px;
}

.top-search form {
    display: flex;
    gap: 8px;
}

.top-search input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 15px 18px;
    font-size: 17px;
    border-radius: 5px;
    background: #fff;
}

.top-search button {
    border: 0;
    background: #08699f;
    color: #fff;
    padding: 0 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
}


/* ==========================================================
   HERO
========================================================== */

.main-hero {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 28px;
}

.hero-small-title {
    display: inline-block;
    color: #0870a8;
    font-weight: 800;
    margin-bottom: 8px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-outline {
    background: transparent !important;
    border: 2px solid #118378 !important;
    color: #118378 !important;
}

.contact-box {
    background: #fff;
    padding: 32px;
    border-radius: 14px;
    border: 1px solid #e3e3e3;
    font-size: 18px;
}

.contact-box strong {
    display: block;
    font-size: 23px;
    margin-bottom: 20px;
}


/* ==========================================================
   SECTION TITLES
========================================================== */

.section-blue-title {
    background: #08699f;
    color: #fff;
    min-height: 64px;
    padding: 14px 20px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    font-size: 22px;
}

.section-blue-title strong {
    font-size: 23px;
}

.section-blue-title span {
    font-size: 15px;
    opacity: .9;
}

.view-all-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.view-all-link:hover {
    text-decoration: underline;
}


.section-orange-title {
    background: #cf3807;
    color: white;
    padding: 15px 20px;
    margin-bottom: 18px;
}

.section-orange-title strong {
    display: block;
    font-size: 23px;
    margin-bottom: 4px;
}


/* ==========================================================
   SERVICE CARDS
========================================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.service-card {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 7px;
    background: #eee;
}

.service-card > a {
    display: block;
    width: 100%;
    height: 100%;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.service-card:hover img {
    transform: scale(1.04);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.82)
    );
    color: #fff;
    padding: 55px 20px 20px;
}

.service-card-overlay h3 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 22px;
}

.service-card-overlay span {
    font-size: 14px;
}

.service-placeholder {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
}


/* ==========================================================
   WELCOME BANNER
========================================================== */

.welcome-banner {
    margin: 24px 0;
    background: linear-gradient(
        90deg,
        #d53b08,
        #ef5417
    );
    color: white;
    padding: 16px 22px;
    display: flex;
    gap: 16px;
    align-items: center;
    border-radius: 6px;
}

.welcome-banner strong {
    display: block;
    font-size: 21px;
    margin-bottom: 3px;
}

.welcome-icon {
    background: #ffd727;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}


/* ==========================================================
   OFFERS
========================================================== */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
}

.offer-card {
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 26px;
    text-align: center;
}

.offer-card h3 {
    margin: 12px 0;
}

.offer-icon {
    font-size: 35px;
}


/* ==========================================================
   ARTICLES
========================================================== */

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.article-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    border-radius: 7px;
}

.article-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.article-card:hover img {
    transform: scale(1.025);
}

.article-card-body {
    padding: 17px;
}

.article-card-body h3 {
    font-size: 20px;
    line-height: 1.6;
    margin: 5px 0 10px;
}

.article-card-body h3 a {
    color: #222;
    text-decoration: none;
}

.article-card-body h3 a:hover {
    color: #c83b07;
}

.article-card-body p {
    color: #555;
    line-height: 1.9;
}

.article-category {
    color: #777;
    font-size: 14px;
}

.category-home-section {
    margin-top: 28px;
}

.empty-message {
    background: #fafafa;
    border: 1px dashed #ccc;
    padding: 22px;
    text-align: center;
}


/* ==========================================================
   ABOUT
========================================================== */

.about-trails {
    background: #0b2435;
    color: #fff;
    padding: 55px 35px;
    margin-top: 35px;
    border-radius: 8px;
}

.about-trails h2 {
    color: #fff;
    font-size: 38px;
    margin: 4px 0 18px;
}

.about-trails p {
    max-width: 900px;
    line-height: 2;
    font-size: 18px;
    color: #eef4f7;
}

.about-small {
    color: #64c5e9;
    font-weight: bold;
}

.about-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}


/* ==========================================================
   FLOATING BUTTONS
========================================================== */

.floating-contact {
    position: fixed;
    z-index: 9999;
    bottom: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 14px 20px;
    border-radius: 30px;
    box-shadow: 0 7px 22px rgba(0,0,0,.2);
}

.floating-whatsapp {
    left: 20px;
    background: #16a94b;
}

.floating-phone {
    right: 20px;
    background: #0872a8;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1150px) {

    .home-layout {
        grid-template-columns: 260px minmax(0,1fr);
    }

    .service-grid,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

}


@media (max-width: 800px) {

    .home-layout {
        display: block;
        padding: 0 12px;
    }

    .category-sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .category-sidebar-link {
        font-size: 17px;
        padding: 13px 16px;
    }

    .service-grid,
    .article-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 250px;
    }

    .article-card img {
        height: 230px;
    }

    .section-blue-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-search form {
        display: block;
    }

    .top-search input {
        width: 100%;
        margin-bottom: 8px;
    }

    .top-search button {
        width: 100%;
        padding: 14px;
    }

}
/* ==========================================
   DROOB AL DHIL HEADER
========================================== */

.top-bar {
    background: #0d5f8f;
    color: #fff;
    font-size: 14px;
}

.top-bar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-contact {
    display: flex;
    gap: 18px;
}

.top-contact a {
    color: #fff;
    text-decoration: none;
}

.top-text {
    font-weight: 700;
}


/* Main header */

.main-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    z-index: 1000;
}

.main-nav {
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 30px;
}


/* Brand */

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #17212b;
    margin-left: auto;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #0870a8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 900;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 28px;
    line-height: 1.2;
}

.brand-text small {
    color: #777;
    margin-top: 4px;
}


/* Menu */

.main-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-menu a {
    color: #222;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 0;
    position: relative;
}

.main-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    width: 0;
    height: 3px;
    background: #0870a8;
    transition: .25s;
}

.main-menu a:hover {
    color: #0870a8;
}

.main-menu a:hover::after {
    width: 100%;
}


/* CTA */

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-whatsapp,
.header-phone {
    text-decoration: none;
    color: white;
    padding: 11px 16px;
    border-radius: 6px;
    font-weight: 700;
}

.header-whatsapp {
    background: #17a84b;
}

.header-phone {
    background: #0870a8;
}


/* Mobile */

.mobile-menu-button {
    display: none;
    border: 0;
    background: #0870a8;
    color: #fff;
    border-radius: 5px;
    font-size: 26px;
    width: 46px;
    height: 46px;
    cursor: pointer;
}


@media (max-width: 950px) {

    .main-nav {
        flex-wrap: wrap;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid #eee;
    }

    .menu-open .main-menu {
        display: flex;
    }

    .main-menu a {
        padding: 14px;
        border-bottom: 1px solid #eee;
    }

    .header-actions {
        display: none;
    }

    .top-text {
        display: none;
    }

}


@media (max-width: 600px) {

    .brand-text strong {
        font-size: 22px;
    }

    .brand-text small {
        font-size: 11px;
    }

    .top-contact {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

}
/* ==========================================
   FOOTER - DROOB AL DHIL
========================================== */

.new-site-footer {
    background: #102b3d;
    color: #fff;
    margin-top: 40px;
}

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

.footer-column h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 20px;
}

.footer-column p {
    color: #d7e2e9;
    line-height: 2;
}

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

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

.footer-links a {
    color: #d9e5eb;
    text-decoration: none;
}

.footer-links a:hover {
    color: #67c9ee;
}

.footer-contact-line {
    margin: 10px 0;
}

.footer-contact-line a {
    color: #fff;
    text-decoration: none;
}


/* Latest articles strip */

.footer-news {
    background: #0870a8;
    overflow: hidden;
}

.footer-news-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.footer-news-label {
    background: #f5c323;
    color: #222;
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 0 20px;
    white-space: nowrap;
}

.footer-news-track {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    animation: footerNewsMove 30s linear infinite;
}

.footer-news-track a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.footer-news-track a:hover {
    text-decoration: underline;
}

@keyframes footerNewsMove {

    from {
        transform: translateX(-5%);
    }

    to {
        transform: translateX(45%);
    }
}


/* Bottom */

.footer-bottom {
    background: #091d2a;
}

.footer-bottom-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #cbd8df;
    font-size: 14px;
}


/* Floating contact buttons */

.footer-floating {
    position: fixed;
    bottom: 24px;
    z-index: 10000;
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 35px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

.footer-floating-whatsapp {
    left: 25px;
    background: #19aa4d;
}

.footer-floating-phone {
    right: 25px;
    background: #0870a8;
}


/* Mobile footer */

@media (max-width: 800px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-top: 35px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 15px 0;
    }

    .footer-news-inner {
        display: block;
    }

    .footer-news-label {
        padding: 12px 15px;
        display: block;
        text-align: center;
    }

    .footer-news-track {
        padding: 14px 0;
    }

}
/* ===========================
   HOME SLIDER
=========================== */

.home-slider {
    width: 100%;
    margin-bottom: 25px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    background: #111;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,0) 65%
    );
    pointer-events: none;
}


/* Text box */

.slider-overlay {
    position: absolute;
    z-index: 5;
    right: 25px;
    bottom: 45px;
    width: min(620px, calc(100% - 50px));
    background: rgba(0, 103, 103, .88);
    padding: 15px 20px;
    color: white;
    border-radius: 4px;
}

.slider-category {
    font-size: 15px;
    margin-bottom: 4px;
}

.slider-overlay h2 {
    color: white;
    margin: 0 0 6px;
    font-size: 27px;
}

.slider-overlay p {
    color: white;
    margin: 0;
    line-height: 1.7;
}


/* Arrows */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 46px;
    height: 55px;
    border: 0;
    color: white;
    background: rgba(0,0,0,.4);
    font-size: 25px;
    cursor: pointer;
}

.slider-prev {
    right: 15px;
}

.slider-next {
    left: 15px;
}

.slider-arrow:hover {
    background: #0870a8;
}


/* Dots */

.slider-dots {
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,.6);
    cursor: pointer;
}

.slider-dot.active {
    background: #0b8fc6;
    transform: scale(1.2);
}


/* Mobile */

@media (max-width: 800px) {

    .slider-container {
        height: 340px;
    }

    .slider-overlay {
        right: 12px;
        bottom: 38px;
        width: calc(100% - 24px);
        padding: 12px 15px;
    }

    .slider-overlay h2 {
        font-size: 20px;
    }

    .slider-overlay p {
        font-size: 13px;
    }
}
/* FINAL SLIDER TUNING */

.slider-container {
    height: 430px;
    border-radius: 10px;
}

.slider-overlay {
    right: 30px;
    bottom: 42px;
    max-width: 590px;
    padding: 14px 18px;
    background: rgba(0, 105, 105, .84);
}

.slider-overlay h2 {
    font-size: 25px;
    line-height: 1.5;
}

.slider-overlay p {
    font-size: 15px;
    line-height: 1.8;
}

.slider-arrow {
    width: 42px;
    height: 50px;
    font-size: 22px;
}

.slider-prev {
    right: 12px;
}

.slider-next {
    left: 12px;
}

.slider-dots {
    bottom: 12px;
}

.slider-dot {
    width: 11px;
    height: 11px;
}
/* ===== NEWS BAR ===== */

.home-news-bar {
    width: 100%;
    display: flex;
    align-items: stretch;
    margin: 14px 0 25px;
    border-radius: 5px;
    overflow: hidden;
    direction: rtl;
}

.news-label {
    background: #ffd21f;
    color: #222;
    padding: 14px 22px;
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.news-message {
    flex: 1;
    background: #c93408;
    color: #ffffff;
    padding: 14px 22px;
    font-size: 17px;
    font-weight: 700;
}
/* ==========================================
   SPECIAL OFFERS
========================================== */

.special-offers {
    margin: 25px 0 30px;
}

.special-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.special-offer-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 7px;
    padding: 28px 20px;
    text-align: center;
    transition: .25s;
}

.special-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
}

.special-offer-icon {
    font-size: 38px;
    margin-bottom: 10px;
}

.special-offer-card h3 {
    font-size: 22px;
    margin: 8px 0 12px;
}

.special-offer-card p {
    color: #555;
    line-height: 1.8;
}

@media (max-width: 800px) {
    .special-offers-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================
   FINAL CLEANUP
========================================== */

/* تقليل المسافات الكبيرة */
.section,
.category-home-section {
    margin-top: 16px !important;
    margin-bottom: 18px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* عنوان كل قسم مثل المرجع */
.category-home-section .section-blue-title {
    margin-bottom: 12px !important;
    min-height: 58px;
    padding: 10px 15px;
    border-top: 5px solid #f39a00;
}

/* الصور الثلاث */
.category-home-section .article-grid {
    gap: 12px;
}

/* تقليل ارتفاع الصور */
.category-home-section .article-card img {
    height: 220px !important;
    object-fit: cover;
}

/* البطاقة أقصر */
.category-home-section .article-card-body {
    padding: 11px 12px !important;
}

/* العنوان فقط تقريبًا */
.category-home-section .article-card-body h3 {
    font-size: 18px;
    line-height: 1.55;
    margin: 0;
}

/* إخفاء النص الطويل من الصفحة الرئيسية */
.category-home-section .article-card-body p {
    display: none !important;
}

/* إخفاء أي مسافات فارغة غير ضرورية */
.category-home-section:empty {
    display: none;
}
/* ==========================================
   HOME CATEGORY CARDS - COMPACT FINAL
========================================== */

.category-home-section {
    margin: 14px 0 20px !important;
    padding: 0 !important;
}

.category-home-section .section-blue-title {
    min-height: 55px !important;
    margin-bottom: 12px !important;
    padding: 9px 15px !important;
    border-top: 5px solid #f39a00 !important;
}

.category-home-section .article-grid {
    gap: 12px !important;
}

.category-home-section .article-card {
    border-radius: 7px !important;
    overflow: hidden;
}

.category-home-section .article-card img {
    width: 100%;
    height: 235px !important;
    object-fit: cover;
}

.category-home-section .article-card-body {
    padding: 11px 12px !important;
    text-align: center;
}

/* عنوان المقال فقط */
.category-home-section .article-card-body h3 {
    margin: 0 !important;
    font-size: 19px !important;
    line-height: 1.55 !important;
}

.category-home-section .article-card-body h3 a {
    color: #bd3107 !important;
    text-decoration: none !important;
}

/* أهم سطر: إخفاء وصف المقال */
.category-home-section .article-card-body p {
    display: none !important;
}
/* ==========================================
   SIDEBAR FINAL CLEANUP
========================================== */

.category-sidebar {
    width: 100%;
    background: transparent;
}

.category-sidebar-title {
    padding: 17px 18px !important;
    font-size: 25px !important;
    min-height: auto !important;
}

.category-sidebar-link {
    padding: 14px 18px !important;
    font-size: 18px !important;
    line-height: 1.4;
    margin-bottom: 5px !important;
    border-right: 0 !important;
    text-align: right;
}

.category-sidebar-link:hover {
    padding-right: 22px !important;
}

/* تقليل عرض العمود الجانبي */
.home-layout {
    grid-template-columns: 280px minmax(0, 1fr) !important;
    gap: 18px !important;
}
/* ==========================================================
   BOTTOM AREA - FINAL CLEANUP
========================================================== */


/* ---------- ABOUT DROOB AL DHIL ---------- */

.about-trails {
    margin-top: 25px !important;
    padding: 38px 45px !important;
    border-radius: 7px !important;
    min-height: auto !important;
}

.about-trails .container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-trails .about-small {
    font-size: 16px;
}

.about-trails h2 {
    font-size: 38px !important;
    margin: 5px 0 18px !important;
}

.about-trails p {
    font-size: 17px !important;
    line-height: 1.9 !important;
    margin: 8px 0 !important;
}

.about-buttons {
    margin-top: 20px !important;
    gap: 10px !important;
}

.about-buttons .btn {
    padding: 11px 20px !important;
    font-size: 16px !important;
}


/* ---------- FOOTER ---------- */

.new-site-footer {
    margin-top: 25px !important;
}

.footer-grid {
    padding-top: 35px !important;
    padding-bottom: 30px !important;

    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1fr !important;

    gap: 35px !important;
    align-items: start;
}

.footer-column h3 {
    font-size: 23px !important;
    margin-bottom: 14px !important;
}

.footer-column p {
    font-size: 15px !important;
    line-height: 1.85 !important;
    margin: 5px 0 !important;
}

.footer-links li {
    margin-bottom: 7px !important;
}

.footer-links a {
    font-size: 15px !important;
    line-height: 1.6;
}

.footer-contact-line {
    font-size: 15px !important;
    margin: 8px 0 !important;
}


/* ---------- LATEST ARTICLES STRIP ---------- */

.footer-news {
    height: 56px;
    overflow: hidden;
}

.footer-news-inner {
    height: 56px !important;
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

.footer-news-label {
    height: 56px;
    padding: 0 22px !important;

    display: flex !important;
    align-items: center !important;

    flex: 0 0 auto;
    white-space: nowrap;

    font-size: 16px !important;
    font-weight: 800;
}

.footer-news-track {
    height: 56px;

    display: flex !important;
    align-items: center !important;

    gap: 22px !important;
    padding: 0 20px !important;

    white-space: nowrap;
}

.footer-news-track a {
    font-size: 15px !important;
}


/* ---------- COPYRIGHT ---------- */

.footer-bottom {
    min-height: 58px !important;
}

.footer-bottom-inner {
    min-height: 58px !important;
    font-size: 13px !important;
    padding: 8px 0 !important;
}


/* ---------- FLOATING BUTTONS ---------- */

.footer-floating,
.floating-contact {
    bottom: 18px !important;

    padding: 11px 20px !important;

    font-size: 15px !important;
    border-radius: 28px !important;
}

.footer-floating-whatsapp,
.floating-whatsapp {
    left: 20px !important;
}

.footer-floating-phone,
.floating-phone {
    right: 20px !important;
}


/* اجعل الشريط السفلي لا يختفي خلف أزرار الاتصال */
.footer-news-track {
    padding-left: 130px !important;
    padding-right: 25px !important;
}


/* ---------- MOBILE ---------- */

@media (max-width: 800px) {

    .about-trails {
        padding: 28px 20px !important;
    }

    .about-trails h2 {
        font-size: 30px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding: 28px 20px !important;
    }

    .footer-news-label {
        display: none !important;
    }

    .footer-news-track {
        padding-left: 100px !important;
    }

}
/* ==========================================================
   ULTRA COMPACT BOTTOM AREA
========================================================== */

/* ABOUT */
.about-trails {
    padding: 24px 32px !important;
    margin-top: 18px !important;
}

.about-trails h2 {
    font-size: 30px !important;
    margin: 4px 0 12px !important;
}

.about-trails p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin: 4px 0 !important;
}

.about-buttons {
    margin-top: 14px !important;
}


/* FOOTER */
.footer-grid {
    padding-top: 24px !important;
    padding-bottom: 20px !important;
    gap: 20px !important;
}

.footer-column h3 {
    font-size: 20px !important;
    margin-bottom: 9px !important;
}

.footer-column p,
.footer-links a,
.footer-contact-line {
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.footer-links li {
    margin-bottom: 4px !important;
}


/* make service list shorter */
.footer-links li:nth-child(n+6) {
    display: none;
}


/* latest articles ticker */
.footer-news,
.footer-news-inner,
.footer-news-label,
.footer-news-track {
    height: 46px !important;
    min-height: 46px !important;
}

.footer-news-label {
    padding: 0 16px !important;
    font-size: 14px !important;
}

.footer-news-track {
    gap: 16px !important;
}

.footer-news-track a {
    font-size: 14px !important;
}


/* copyright */
.footer-bottom,
.footer-bottom-inner {
    min-height: 45px !important;
}

.footer-bottom-inner {
    padding: 5px 0 !important;
}


/* floating buttons smaller */
.footer-floating,
.floating-contact {
    padding: 9px 17px !important;
    font-size: 14px !important;
}
/* ==========================================
   FINAL FOOTER COMPACT LAYOUT
========================================== */

.new-site-footer {
    margin-top: 18px !important;
}

/* Footer overall height */
.footer-grid {
    padding: 24px 45px 20px !important;
    gap: 45px !important;

    grid-template-columns:
        1.4fr
        .85fr
        .85fr !important;

    align-items: start !important;
}

/* Titles */
.footer-column h3 {
    margin: 0 0 12px !important;
    font-size: 22px !important;
}

/* Description */
.footer-column p {
    margin: 3px 0 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

/* Service links */
.footer-links li {
    margin-bottom: 5px !important;
}

.footer-links a {
    font-size: 14px !important;
}

/* Contact */
.footer-contact-line {
    margin: 6px 0 !important;
    font-size: 14px !important;
}


/* ==========================================
   NEWS STRIP
========================================== */

.footer-news,
.footer-news-inner,
.footer-news-track,
.footer-news-label {
    height: 44px !important;
    min-height: 44px !important;
}

.footer-news-label {
    padding: 0 15px !important;
    font-size: 14px !important;
}

.footer-news-track {
    padding: 0 115px 0 20px !important;
    gap: 18px !important;
}

.footer-news-track a {
    font-size: 14px !important;
}


/* ==========================================
   COPYRIGHT
========================================== */

.footer-bottom,
.footer-bottom-inner {
    min-height: 42px !important;
}

.footer-bottom-inner {
    padding: 4px 30px !important;
    font-size: 12px !important;
}


/* ==========================================
   FLOATING BUTTONS
========================================== */

.footer-floating,
.floating-contact {
    bottom: 12px !important;
    padding: 9px 17px !important;
    font-size: 14px !important;
}

/* WhatsApp */
.footer-floating-whatsapp,
.floating-whatsapp {
    left: 22px !important;
}

/* Phone */
.footer-floating-phone,
.floating-phone {
    right: 22px !important;
}


/* ==========================================
   Keep buttons away from sidebar/content
========================================== */

@media (min-width: 1000px) {

    .footer-floating-phone,
    .floating-phone {
        right: 35px !important;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 800px) {

    .footer-grid {
        grid-template-columns: 1fr !important;
        padding: 24px 20px !important;
        gap: 18px !important;
    }

    .footer-news-label {
        display: none !important;
    }

}
/* ==========================================
   FINAL TICKER + FLOATING BUTTON CLEANUP
========================================== */

/* ticker */
.footer-news {
    overflow: hidden !important;
}

.footer-news-inner {
    position: relative;
    overflow: hidden !important;
}

.footer-news-label {
    flex: 0 0 155px !important;
    width: 155px !important;
    justify-content: center !important;
    padding: 0 10px !important;
    font-size: 14px !important;
}

.footer-news-track {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;

    gap: 22px !important;
    padding: 0 25px !important;

    white-space: nowrap !important;
}

.footer-news-track a {
    font-size: 14px !important;
    font-weight: 700 !important;
}


/* keep footer clear of floating buttons */
.footer-bottom {
    padding-left: 120px !important;
    padding-right: 120px !important;
}


/* floating WhatsApp */
.footer-floating-whatsapp,
.floating-whatsapp {
    left: 25px !important;
    bottom: 18px !important;
}


/* floating phone */
.footer-floating-phone,
.floating-phone {
    right: 25px !important;
    bottom: 18px !important;
}


/* make both buttons smaller */
.footer-floating,
.floating-contact {
    min-width: auto !important;
    padding: 9px 18px !important;
    font-size: 14px !important;
}


/* mobile */
@media (max-width: 800px) {

    .footer-news-label {
        display: none !important;
    }

    .footer-bottom {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

}
/* ==========================================
   FOOTER FINAL COMPACT PASS
========================================== */

.footer-grid {
    padding-top: 18px !important;
    padding-bottom: 14px !important;
    gap: 28px !important;
}

.footer-column h3 {
    font-size: 19px !important;
    margin-bottom: 7px !important;
}

.footer-column p,
.footer-links a,
.footer-contact-line {
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.footer-links li {
    margin-bottom: 3px !important;
}


/* Make ticker thinner */
.footer-news,
.footer-news-inner,
.footer-news-track,
.footer-news-label {
    height: 40px !important;
    min-height: 40px !important;
}

.footer-news-label {
    flex: 0 0 140px !important;
    width: 140px !important;
    font-size: 13px !important;
}

.footer-news-track {
    padding-left: 120px !important;
    padding-right: 18px !important;
    gap: 16px !important;
}

.footer-news-track a {
    font-size: 13px !important;
}


/* Copyright */
.footer-bottom,
.footer-bottom-inner {
    min-height: 38px !important;
}

.footer-bottom-inner {
    font-size: 11px !important;
}


/* Floating buttons */
.footer-floating,
.floating-contact {
    padding: 8px 15px !important;
    font-size: 13px !important;
    bottom: 12px !important;
}

.footer-floating-whatsapp,
.floating-whatsapp {
    left: 18px !important;
}

.footer-floating-phone,
.floating-phone {
    right: 18px !important;
}
/* ==========================================================
   NEWS + OFFERS - CLEAN FINAL STYLE
========================================================== */

/* ---------- NEWS BAR ---------- */

.home-news-bar {
    margin: 12px 0 18px !important;
    min-height: 52px !important;
    border-radius: 4px !important;
    overflow: hidden;
}

.news-label {
    background: #f4c430 !important;
    color: #17212b !important;

    padding: 0 18px !important;
    min-width: 105px;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 16px !important;
    font-weight: 800 !important;
}

.news-message {
    background: #1175a6 !important;
    color: #ffffff !important;

    padding: 12px 20px !important;

    display: flex !important;
    align-items: center !important;

    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
}


/* ---------- OFFERS TITLE ---------- */

.section-orange-title {
    background: #1175a6 !important;
    color: #ffffff !important;

    padding: 16px 22px !important;
    margin-bottom: 14px !important;

    border-top: 5px solid #f4c430 !important;
    border-radius: 4px 4px 0 0 !important;
}

.section-orange-title strong {
    display: block;
    font-size: 25px !important;
    line-height: 1.4 !important;
    margin-bottom: 3px !important;
}

.section-orange-title span {
    font-size: 15px !important;
    opacity: .9;
}


/* ---------- OFFER CARDS ---------- */

.special-offers {
    margin: 18px 0 22px !important;
}

.special-offers-grid {
    gap: 12px !important;
}

.special-offer-card {
    min-height: 190px !important;

    padding: 22px 18px !important;

    border-radius: 5px !important;
    border: 1px solid #e2e6e9 !important;

    box-shadow: none !important;
}

.special-offer-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,.07) !important;
}

.special-offer-icon {
    font-size: 30px !important;
    margin-bottom: 8px !important;
}

.special-offer-card h3 {
    font-size: 20px !important;
    margin: 6px 0 8px !important;
}

.special-offer-card p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}
/* ==========================================
   SLIDER OVERLAY - SLIM STYLE
========================================== */

.slider-overlay {
    right: 28px !important;
    bottom: 35px !important;

    width: auto !important;
    max-width: 520px !important;

    padding: 10px 16px !important;

    background: rgba(0, 105, 105, 0.72) !important;

    border-radius: 4px !important;

    backdrop-filter: blur(2px);
}

.slider-overlay h2 {
    margin: 0 0 4px !important;
    font-size: 24px !important;
    line-height: 1.35 !important;
}

.slider-overlay p {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

@media (max-width: 800px) {
    .slider-overlay {
        right: 12px !important;
        bottom: 30px !important;

        max-width: calc(100% - 24px) !important;

        padding: 8px 12px !important;
    }

    .slider-overlay h2 {
        font-size: 19px !important;
    }

    .slider-overlay p {
        font-size: 13px !important;
    }
}
/* ==========================================
   SLIDER OVERLAY - EXTRA SLIM
========================================== */

.slider-overlay {
    right: 22px !important;
    bottom: 22px !important;

    width: fit-content !important;
    max-width: 420px !important;

    padding: 7px 12px !important;

    background: rgba(0, 105, 105, 0.62) !important;

    border-radius: 3px !important;
}

.slider-overlay h2 {
    margin: 0 0 2px !important;
    font-size: 19px !important;
    line-height: 1.25 !important;
}

.slider-overlay p {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
}

/* لو الوصف طويل، نخليه سطرين فقط */
.slider-overlay p {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 800px) {
    .slider-overlay {
        right: 10px !important;
        bottom: 16px !important;
        max-width: 320px !important;
        padding: 6px 10px !important;
    }

    .slider-overlay h2 {
        font-size: 16px !important;
    }

    .slider-overlay p {
        font-size: 11px !important;
    }
}
/* =========================
   Sidebar Categories جميل ومرتب
========================= */
.sidebar-box,
.categories-sidebar,
.home-sidebar {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #e8edf2;
}

.sidebar-box h3,
.categories-sidebar h3,
.home-sidebar h3 {
    margin: 0;
    padding: 22px 20px;
    background: linear-gradient(135deg, #0f6ea8, #1782c2);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
}

.sidebar-box ul,
.categories-sidebar ul,
.home-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 12px;
    background: #f7f9fc;
}

.sidebar-box ul li,
.categories-sidebar ul li,
.home-sidebar ul li {
    margin-bottom: 10px;
}

.sidebar-box ul li:last-child,
.categories-sidebar ul li:last-child,
.home-sidebar ul li:last-child {
    margin-bottom: 0;
}

.sidebar-box ul li a,
.categories-sidebar ul li a,
.home-sidebar ul li a {
    display: block;
    padding: 18px 16px;
    background: #ffffff;
    color: #1b1b1b;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #e6ebf1;
    transition: all 0.25s ease;
}

.sidebar-box ul li a:hover,
.categories-sidebar ul li a:hover,
.home-sidebar ul li a:hover {
    background: #0f6ea8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 110, 168, 0.18);
}

.sidebar-box ul li a.active,
.categories-sidebar ul li a.active,
.home-sidebar ul li a.active {
    background: #0f6ea8;
    color: #fff;
    border-color: #0f6ea8;
}

@media (max-width: 768px) {
    .sidebar-box h3,
    .categories-sidebar h3,
    .home-sidebar h3 {
        font-size: 20px;
        padding: 18px 14px;
    }

    .sidebar-box ul li a,
    .categories-sidebar ul li a,
    .home-sidebar ul li a {
        font-size: 16px;
        padding: 15px 12px;
    }
}
/* ==========================================
   BEAUTIFUL CATEGORY SIDEBAR
========================================== */

.category-sidebar {
    background: #ffffff !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
    border: 1px solid #e8edf2 !important;
}

/* عنوان الأقسام */
.category-sidebar-title {
    background: linear-gradient(135deg, #0f6fa4, #1686ba) !important;
    color: #ffffff !important;

    padding: 20px 15px !important;

    font-size: 25px !important;
    font-weight: 800 !important;
    text-align: center !important;

    margin: 0 !important;
}

/* روابط الأقسام */
.category-sidebar-link {
    display: block !important;

    background: #ffffff !important;
    color: #1e2933 !important;

    padding: 15px 14px !important;
    margin: 7px 9px !important;

    border: 1px solid #edf0f3 !important;
    border-radius: 9px !important;

    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;

    text-align: center !important;
    text-decoration: none !important;

    transition: all .22s ease !important;
}

/* عند مرور الماوس */
.category-sidebar-link:hover {
    background: #1175a6 !important;
    color: #ffffff !important;

    border-color: #1175a6 !important;

    transform: translateY(-2px) !important;

    box-shadow: 0 5px 14px rgba(17,117,166,.16) !important;
}

/* تقليل المسافة بين العناصر */
.category-sidebar-link + .category-sidebar-link {
    margin-top: 6px !important;
}

/* للشاشات الصغيرة */
@media (max-width: 800px) {

    .category-sidebar-title {
        font-size: 21px !important;
        padding: 17px 12px !important;
    }

    .category-sidebar-link {
        font-size: 15px !important;
        padding: 13px 10px !important;
        margin: 6px 8px !important;
    }
}
/* ==========================================
   CATEGORY SIDEBAR - CLEAN STYLE
========================================== */

.category-sidebar {
    background: #f7f9fb !important;
    border-radius: 14px !important;
    padding: 10px !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.07) !important;
    border: 1px solid #e5e9ee !important;
}

/* عنوان الأقسام */
.category-sidebar-title {
    background: #1175a6 !important;
    color: #ffffff !important;

    text-align: center !important;
    font-size: 24px !important;
    font-weight: 800 !important;

    padding: 18px 12px !important;
    margin: -10px -10px 10px -10px !important;

    border-radius: 14px 14px 0 0 !important;
}

/* كل قسم */
.category-sidebar-link {
    display: block !important;

    background: #ffffff !important;
    color: #222 !important;

    text-decoration: none !important;
    text-align: right !important;

    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;

    padding: 13px 15px !important;
    margin-bottom: 7px !important;

    border: 1px solid #e7ebef !important;
    border-radius: 8px !important;

    transition: all .2s ease !important;
}

/* حركة بسيطة */
.category-sidebar-link:hover {
    background: #1175a6 !important;
    color: #ffffff !important;

    padding-right: 20px !important;

    border-color: #1175a6 !important;
}

/* آخر عنصر */
.category-sidebar-link:last-child {
    margin-bottom: 0 !important;
}
/* ==========================================
   REMOVE ALL PHONE/CALL BUTTONS
========================================== */

.header-phone {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #1175a6 !important;
    font-size: 18px !important;
    font-weight: 800 !important;

    text-decoration: none !important;
    white-space: nowrap !important;

    margin: 0 18px !important;
}

.header-phone:hover {
    color: #0d5f87 !important;
}

.footer-floating-phone {
    display: none !important;
}
/* إبقاء رقم الهاتف داخل الفوتر ظاهرًا */
.footer-contact-line a[href^="tel:"] {
    display: inline !important;
}
/* ==============================
   HEADER SOCIAL MEDIA
============================== */

.header-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: ltr;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 23px;
    font-weight: 800;
    transition: transform .2s ease, opacity .2s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: .88;
}

.social-icon.snapchat {
    background: #fffc00;
    color: #111;
}

.social-icon.tiktok {
    background: #000;
    color: #fff;
}

.social-icon.instagram {
    background: #c62ca3;
    color: #fff;
}

.social-icon.youtube {
    background: #ff0000;
    color: #fff;
}

.social-icon.x-social {
    background: #25a7df;
    color: #fff;
}

.social-icon.facebook {
    background: #3b5998;
    color: #fff;
}
/* =========================================
   SOCIAL MEDIA - CLEAN REFERENCE STYLE
========================================= */

.header-socials {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    direction: ltr !important;
}

.header-socials a {
    text-decoration: none !important;
}

.social-circle {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 50% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-family: Arial, sans-serif !important;
    font-size: 27px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;

    transition: transform .2s ease, opacity .2s ease !important;
}

.social-circle:hover {
    transform: translateY(-3px) !important;
    opacity: .9 !important;
}

/* Snapchat */
.social-circle.snapchat {
    background: #fffc00 !important;
    color: #111 !important;
    font-size: 29px !important;
}

/* Instagram */
.social-circle.instagram {
    background: #c52aa3 !important;
    color: #ffffff !important;
    font-family: Georgia, serif !important;
    font-weight: bold !important;
}

/* YouTube */
.social-circle.youtube {
    background: #ff0000 !important;
    color: #ffffff !important;
}

.youtube-play {
    font-size: 29px !important;
    margin-left: 3px;
}

/* X */
.social-circle.x-social {
    background: #26a7e1 !important;
    color: #ffffff !important;
}

/* Facebook */
.social-circle.facebook {
    background: #3d5e9d !important;
    color: #ffffff !important;
    font-family: Arial, sans-serif !important;
    font-size: 30px !important;
}
.header-phone {
    display: flex !important;
    align-items: center !important;
    color: #1175a6 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    margin: 0 18px !important;
}

.header-phone:hover {
    color: #0d5f87 !important;
}