/*
Theme Name: Professional Service Theme
Theme URI: https://example.com/
Author: Professional Service Theme
Description: قالب WordPress احترافي متجاوب لمواقع الخدمات والأعمال المحلية.
Version: 3.0.0
Text Domain: professional-service-theme
*/

:root{
    --ps-primary:#0f766e;
    --ps-primary-dark:#115e59;
    --ps-secondary:#f59e0b;
    --ps-dark:#0f172a;
    --ps-text:#334155;
    --ps-muted:#64748b;
    --ps-light:#f8fafc;
    --ps-white:#fff;
    --ps-border:#e2e8f0;
    --ps-radius:22px;
    --ps-container:1200px;
    --ps-shadow:0 20px 60px rgba(15,23,42,.08);
    --ps-shadow-sm:0 8px 25px rgba(15,23,42,.07);
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    background:var(--ps-white);
    color:var(--ps-text);
    font-family:Arial,Tahoma,sans-serif;
    line-height:1.8;
    direction:rtl;
    overflow-x:hidden;
}

body.admin-bar .site-header{
    top:32px;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    height:auto;
}

button,
input,
textarea,
select{
    font-family:inherit;
}

.container{
    width:min(calc(100% - 40px),var(--ps-container));
    margin-inline:auto;
}

.section{
    padding:100px 0;
}

.section-light{
    background:var(--ps-light);
}

.section-dark{
    background:var(--ps-dark);
    color:#fff;
}

.section-head{
    max-width:760px;
    margin:0 auto 55px;
    text-align:center;
}

.section-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    color:var(--ps-primary);
    font-size:14px;
    font-weight:900;
}

.section-kicker::before{
    content:"";
    width:28px;
    height:3px;
    border-radius:10px;
    background:var(--ps-secondary);
}

.section-head h2{
    margin:0 0 14px;
    color:var(--ps-dark);
    font-size:clamp(30px,4vw,48px);
    line-height:1.25;
    letter-spacing:-1px;
}

.section-head p{
    margin:0;
    color:var(--ps-muted);
    font-size:17px;
}

/* =========================================================
   HEADER
========================================================= */

.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(226,232,240,.85);
    transition:.25s ease;
}

.site-header.is-scrolled{
    box-shadow:0 10px 35px rgba(15,23,42,.08);
}

.header-inner{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.brand .custom-logo-link{
    display:flex;
    align-items:center;
}

.brand img.custom-logo{
    width:50px;
    height:50px;
    object-fit:contain;
    border-radius:14px;
}

.brand-mark{
    width:50px;
    height:50px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:linear-gradient(135deg,var(--ps-primary),var(--ps-primary-dark));
    color:#fff;
    font-size:21px;
    font-weight:900;
}

.brand-text strong{
    display:block;
    color:var(--ps-dark);
    font-size:18px;
    line-height:1.3;
    white-space:nowrap;
}

.brand-text span{
    display:block;
    margin-top:2px;
    color:var(--ps-muted);
    font-size:11px;
    line-height:1.3;
}

.main-nav{
    margin-inline:auto;
}

.main-nav ul{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    padding:0;
    margin:0;
}

.main-nav li{
    margin:0;
    padding:0;
}

.main-nav a{
    position:relative;
    display:inline-flex;
    align-items:center;
    min-height:82px;
    color:var(--ps-dark);
    font-size:15px;
    font-weight:800;
    transition:.2s ease;
}

.main-nav a::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:0;
    height:3px;
    border-radius:10px 10px 0 0;
    background:var(--ps-primary);
    transition:.25s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a{
    color:var(--ps-primary);
}

.main-nav a:hover::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after{
    width:100%;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:9px;
    flex-shrink:0;
}

.btn{
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:10px 20px;
    border:1px solid transparent;
    border-radius:13px;
    cursor:pointer;
    font-size:15px;
    font-weight:900;
    line-height:1.2;
    transition:.22s ease;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-primary{
    background:var(--ps-primary);
    color:#fff;
    box-shadow:0 8px 22px rgba(15,118,110,.22);
}

.btn-primary:hover{
    background:var(--ps-primary-dark);
}

.btn-secondary{
    background:var(--ps-secondary);
    color:#111827;
}

.btn-outline{
    border-color:var(--ps-border);
    background:#fff;
    color:var(--ps-dark);
}

.btn-outline:hover{
    border-color:var(--ps-primary);
    color:var(--ps-primary);
}

.mobile-menu-toggle{
    display:none;
    width:46px;
    height:46px;
    border:1px solid var(--ps-border);
    border-radius:12px;
    background:#fff;
    color:var(--ps-dark);
    cursor:pointer;
    font-size:25px;
    line-height:1;
}

/* =========================================================
   HERO
========================================================= */

.hero{
    position:relative;
    min-height:700px;
    display:flex;
    align-items:center;
    overflow:hidden;
    isolation:isolate;
    background:
        linear-gradient(90deg,rgba(15,23,42,.94) 0%,rgba(15,23,42,.76) 48%,rgba(15,23,42,.35) 100%),
        var(--hero-image) center/cover no-repeat;
}

.hero::after{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:150px;
    z-index:-1;
    background:linear-gradient(transparent,rgba(15,23,42,.2));
}

.hero-content{
    max-width:820px;
    padding:100px 0;
    color:#fff;
}

.hero-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 15px;
    margin-bottom:22px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:999px;
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(8px);
    font-size:14px;
    font-weight:800;
}

.hero h1{
    max-width:850px;
    margin:0 0 22px;
    color:#fff;
    font-size:clamp(40px,6vw,76px);
    line-height:1.1;
    letter-spacing:-2px;
}

.hero p{
    max-width:700px;
    margin:0 0 32px;
    color:rgba(255,255,255,.9);
    font-size:19px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.hero .btn-outline{
    border-color:rgba(255,255,255,.35);
    background:rgba(255,255,255,.1);
    color:#fff;
}

.hero .btn-outline:hover{
    background:#fff;
    color:var(--ps-dark);
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip{
    position:relative;
    z-index:5;
    margin-top:-55px;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
    background:#fff;
    border:1px solid var(--ps-border);
    border-radius:22px;
    box-shadow:var(--ps-shadow);
}

.trust-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:26px 22px;
    border-left:1px solid var(--ps-border);
}

.trust-item:last-child{
    border-left:0;
}

.trust-icon{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    border-radius:14px;
    background:rgba(15,118,110,.1);
    color:var(--ps-primary);
    font-weight:900;
}

.trust-item strong{
    display:block;
    color:var(--ps-dark);
    font-size:15px;
}

.trust-item span{
    display:block;
    color:var(--ps-muted);
    font-size:12px;
}

/* =========================================================
   CARDS
========================================================= */

.cards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.card{
    background:#fff;
    border:1px solid var(--ps-border);
    border-radius:var(--ps-radius);
    box-shadow:var(--ps-shadow-sm);
    overflow:hidden;
}

.service-card{
    position:relative;
    height:100%;
    padding:32px;
    transition:.25s ease;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--ps-shadow);
    border-color:rgba(15,118,110,.25);
}

.service-icon{
    width:60px;
    height:60px;
    display:grid;
    place-items:center;
    margin-bottom:22px;
    border-radius:17px;
    background:linear-gradient(135deg,rgba(15,118,110,.12),rgba(15,118,110,.05));
    color:var(--ps-primary);
    font-size:25px;
    font-weight:900;
}

.service-card h3{
    margin:0 0 11px;
    color:var(--ps-dark);
    font-size:22px;
    line-height:1.35;
}

.service-card p{
    margin:0 0 20px;
    color:var(--ps-muted);
}

.read-more{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:var(--ps-primary);
    font-weight:900;
}

/* =========================================================
   ABOUT
========================================================= */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image::before{
    content:"";
    position:absolute;
    inset:25px -25px -25px 25px;
    border-radius:28px;
    background:rgba(15,118,110,.1);
    z-index:0;
}

.about-image img{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    border-radius:28px;
    box-shadow:var(--ps-shadow);
}

.about-content h2{
    margin:0 0 18px;
    color:var(--ps-dark);
    font-size:clamp(30px,4vw,48px);
    line-height:1.25;
}

.about-content > p{
    margin:0 0 25px;
    color:var(--ps-muted);
    font-size:17px;
}

.feature-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:25px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.feature-check{
    width:24px;
    height:24px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    border-radius:50%;
    background:rgba(15,118,110,.1);
    color:var(--ps-primary);
    font-size:13px;
    font-weight:900;
}

.feature-item strong{
    color:var(--ps-dark);
}

/* =========================================================
   STATS
========================================================= */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:35px;
}

.stat{
    padding:22px 12px;
    text-align:center;
    border:1px solid var(--ps-border);
    border-radius:16px;
    background:#fff;
}

.stat strong{
    display:block;
    color:var(--ps-primary);
    font-size:32px;
    line-height:1.2;
}

.stat span{
    color:var(--ps-muted);
    font-size:13px;
}

/* =========================================================
   PROJECTS
========================================================= */

.projects-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.project-card{
    transition:.25s ease;
}

.project-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--ps-shadow);
}

.project-image{
    display:block;
    aspect-ratio:16/10;
    overflow:hidden;
    background:#e2e8f0;
}

.project-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.project-card:hover .project-image img{
    transform:scale(1.04);
}

.project-card-content{
    padding:22px;
}

.project-card h3{
    margin:0 0 7px;
    color:var(--ps-dark);
    font-size:20px;
}

.project-card p{
    margin:0;
    color:var(--ps-muted);
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.testimonial{
    position:relative;
    padding:30px;
    background:#fff;
    border:1px solid var(--ps-border);
    border-radius:var(--ps-radius);
    box-shadow:var(--ps-shadow-sm);
}

.testimonial::before{
    content:"“";
    position:absolute;
    top:10px;
    left:20px;
    color:rgba(15,118,110,.1);
    font-size:80px;
    line-height:1;
    font-family:Georgia,serif;
}

.testimonial-stars{
    color:var(--ps-secondary);
    font-size:18px;
    letter-spacing:3px;
}

.testimonial p{
    position:relative;
    margin:20px 0;
    color:var(--ps-text);
}

.testimonial strong{
    color:var(--ps-dark);
}

/* =========================================================
   FAQ
========================================================= */

.faq-list{
    max-width:900px;
    margin:auto;
}

.faq-item{
    margin-bottom:12px;
    overflow:hidden;
    border:1px solid var(--ps-border);
    border-radius:17px;
    background:#fff;
}

.faq-question{
    width:100%;
    min-height:65px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:16px 22px;
    border:0;
    background:#fff;
    color:var(--ps-dark);
    text-align:right;
    font-size:17px;
    font-weight:900;
    cursor:pointer;
}

.faq-question span{
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    border-radius:50%;
    background:var(--ps-light);
    color:var(--ps-primary);
    font-size:20px;
}

.faq-answer{
    display:none;
    padding:0 22px 22px;
    color:var(--ps-muted);
}

.faq-item.open .faq-answer{
    display:block;
}

/* =========================================================
   CTA
========================================================= */

.cta{
    position:relative;
    overflow:hidden;
    padding:80px 0;
    background:linear-gradient(135deg,var(--ps-primary-dark),var(--ps-primary));
    color:#fff;
}

.cta::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-200px;
    top:-300px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
}

.cta-inner{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}

.cta h2{
    margin:0 0 10px;
    color:#fff;
    font-size:clamp(30px,4vw,44px);
    line-height:1.25;
}

.cta p{
    margin:0;
    color:rgba(255,255,255,.84);
    font-size:17px;
}

.cta .btn-outline{
    background:#fff;
    border-color:#fff;
    color:var(--ps-primary-dark);
}

/* =========================================================
   CONTACT
========================================================= */

.contact-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:25px;
}

.contact-card{
    padding:32px;
    border:1px solid var(--ps-border);
    border-radius:var(--ps-radius);
    background:#fff;
    box-shadow:var(--ps-shadow-sm);
}

.contact-card h3{
    margin:0 0 10px;
    color:var(--ps-dark);
    font-size:25px;
}

.contact-item{
    padding:16px 0;
    border-bottom:1px solid var(--ps-border);
}

.contact-item:last-child{
    border-bottom:0;
}

.contact-item small{
    display:block;
    margin-bottom:3px;
    color:var(--ps-muted);
}

.contact-item strong{
    display:block;
    color:var(--ps-dark);
}

/* =========================================================
   INNER PAGE
========================================================= */

.page-hero{
    padding:80px 0;
    background:
        radial-gradient(circle at 10% 20%,rgba(15,118,110,.12),transparent 35%),
        var(--ps-light);
    border-bottom:1px solid var(--ps-border);
}

.page-hero h1{
    margin:0 0 12px;
    color:var(--ps-dark);
    font-size:clamp(34px,5vw,58px);
    line-height:1.2;
}

.page-hero p{
    max-width:760px;
    margin:0;
    color:var(--ps-muted);
}

.single-layout{
    max-width:920px;
    margin:auto;
}

.single-card{
    padding:40px;
    background:#fff;
    border:1px solid var(--ps-border);
    border-radius:var(--ps-radius);
    box-shadow:var(--ps-shadow-sm);
}

.featured-media{
    width:100%;
    aspect-ratio:16/9;
    overflow:hidden;
    margin:0 0 35px;
    border-radius:22px;
    background:#e2e8f0;
}

.featured-media img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.entry-title{
    margin:0 0 25px;
    color:var(--ps-dark);
    font-size:clamp(30px,5vw,50px);
    line-height:1.25;
}

.entry-content{
    color:var(--ps-text);
    font-size:17px;
}

.entry-content > *:first-child{
    margin-top:0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4{
    color:var(--ps-dark);
    line-height:1.4;
}

.entry-content img{
    border-radius:18px;
}

.entry-content a{
    color:var(--ps-primary);
    font-weight:800;
}

.entry-content ul,
.entry-content ol{
    padding-right:25px;
}

.entry-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:-10px 0 25px;
    color:var(--ps-muted);
    font-size:13px;
}

/* =========================================================
   BLOG
========================================================= */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.blog-card{
    overflow:hidden;
    background:#fff;
    border:1px solid var(--ps-border);
    border-radius:20px;
    box-shadow:var(--ps-shadow-sm);
    transition:.25s ease;
}

.blog-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--ps-shadow);
}

.blog-image{
    display:block;
    aspect-ratio:16/10;
    overflow:hidden;
    background:#e2e8f0;
}

.blog-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.blog-content{
    padding:24px;
}

.blog-content h2{
    margin:0 0 10px;
    color:var(--ps-dark);
    font-size:21px;
    line-height:1.4;
}

.blog-content p{
    margin:0 0 15px;
    color:var(--ps-muted);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    padding:75px 0 25px;
    background:#0b1220;
    color:#94a3b8;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:50px;
}

.footer-title{
    margin:0 0 16px;
    color:#fff;
    font-size:20px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:9px;
}

.footer-links a:hover{
    color:#fff;
}

.footer-brand-text{
    max-width:420px;
}

.footer-brand-text p{
    margin:8px 0;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-top:50px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.1);
    font-size:13px;
}

/* =========================================================
   FLOATING CONTACT
========================================================= */

.floating-contact{
    position:fixed;
    z-index:9998;
    left:18px;
    bottom:25%;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.float-btn{
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#fff;
    box-shadow:0 10px 30px rgba(15,23,42,.2);
    transition:.22s ease;
}

.float-btn:hover{
    transform:translateY(-3px) scale(1.03);
}

.float-phone{
    background:#2563eb;
}

.float-whatsapp{
    background:#16a34a;
}

.float-email{
    background:#475569;
}

.float-btn svg{
    width:22px;
    height:22px;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

/* =========================================================
   PAGINATION
========================================================= */

.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:7px;
    margin-top:40px;
}

.page-numbers{
    min-width:42px;
    height:42px;
    display:grid;
    place-items:center;
    padding:0 10px;
    border:1px solid var(--ps-border);
    border-radius:10px;
    background:#fff;
    color:var(--ps-dark);
    font-weight:800;
}

.page-numbers.current,
.page-numbers:hover{
    background:var(--ps-primary);
    border-color:var(--ps-primary);
    color:#fff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .header-actions .btn-outline{
        display:none;
    }

    .main-nav ul{
        gap:18px;
    }

    .cards-grid,
    .projects-grid,
    .testimonial-grid,
    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid{
        gap:45px;
    }

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .trust-item:nth-child(2){
        border-left:0;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4){
        border-top:1px solid var(--ps-border);
    }

    .contact-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:900px){

    body.admin-bar .site-header{
        top:46px;
    }

    .header-inner{
        min-height:70px;
    }

    .mobile-menu-toggle{
        display:grid;
        place-items:center;
    }

    .main-nav{
        position:absolute;
        top:calc(100% + 1px);
        right:0;
        left:0;
        display:none;
        padding:12px 20px 20px;
        background:#fff;
        border-bottom:1px solid var(--ps-border);
        box-shadow:0 18px 35px rgba(15,23,42,.1);
    }

    .main-nav.is-open{
        display:block;
    }

    .main-nav ul{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:0;
    }

    .main-nav a{
        width:100%;
        min-height:52px;
        justify-content:flex-start;
        border-bottom:1px solid var(--ps-border);
    }

    .main-nav li:last-child a{
        border-bottom:0;
    }

    .main-nav a::after{
        display:none;
    }

    .hero{
        min-height:650px;
    }

    .hero-content{
        padding:80px 0;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-image{
        order:2;
    }

    .about-content{
        order:1;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:650px){

    .container{
        width:min(calc(100% - 28px),var(--ps-container));
    }

    .section{
        padding:70px 0;
    }

    .brand img.custom-logo,
    .brand-mark{
        width:43px;
        height:43px;
    }

    .brand-text strong{
        font-size:15px;
    }

    .brand-text span{
        display:none;
    }

    .header-actions{
        display:none;
    }

    .hero{
        min-height:600px;
        background:
            linear-gradient(180deg,rgba(15,23,42,.88),rgba(15,23,42,.82)),
            var(--hero-image) center/cover no-repeat;
    }

    .hero-content{
        padding:65px 0 100px;
    }

    .hero h1{
        font-size:40px;
        letter-spacing:-1px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .trust-strip{
        margin-top:-35px;
    }

    .trust-grid{
        grid-template-columns:1fr 1fr;
    }

    .trust-item{
        padding:18px 12px;
    }

    .trust-item:nth-child(2){
        border-left:0;
    }

    .trust-item:nth-child(3){
        border-left:1px solid var(--ps-border);
    }

    .trust-item:nth-child(4){
        border-left:0;
    }

    .cards-grid,
    .projects-grid,
    .testimonial-grid,
    .blog-grid{
        grid-template-columns:1fr;
    }

    .feature-list{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:1fr 1fr;
    }

    .about-image::before{
        inset:15px -10px -15px 10px;
    }

    .single-card{
        padding:22px;
        border-radius:18px;
    }

    .featured-media{
        aspect-ratio:4/3;
        border-radius:16px;
        margin-bottom:25px;
    }

    .entry-title{
        font-size:32px;
    }

    .entry-content{
        font-size:16px;
    }

    .cta{
        padding:65px 0;
    }

    .cta-inner{
        flex-direction:column;
        align-items:stretch;
        text-align:center;
    }

    .cta .btn{
        width:100%;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .floating-contact{
        right:0;
        left:0;
        bottom:0;
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:0;
        padding:7px;
        background:rgba(255,255,255,.96);
        border-top:1px solid var(--ps-border);
        box-shadow:0 -8px 30px rgba(15,23,42,.12);
        backdrop-filter:blur(12px);
    }

    .float-btn{
        width:100%;
        height:48px;
        border-radius:10px;
        box-shadow:none;
    }

    body{
        padding-bottom:62px;
    }
}