:root{
    --bg:#ffffff;
    --soft:#f8f5ee;
    --soft2:#fbfaf7;
    --text:#172033;
    --muted:#667085;
    --line:#eadfca;
    --gold:#d9a441;
    --gold2:#f5d27a;
    --dark:#0f172a;
    --shadow:0 18px 45px rgba(15,23,42,.10);
    --shadow2:0 26px 70px rgba(15,23,42,.14);
    --radius:22px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Inter,Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.65;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* Header */
.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.header-inner{
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    position:relative;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:950;
    font-size:23px;
    letter-spacing:.2px;
    color:var(--dark);
    flex-shrink:0;
}

.brand img{
    width:52px;
    height:52px;
    border-radius:14px;
    object-fit:cover;
    border:2px solid var(--gold);
}

.nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    flex-wrap:wrap;
}

.nav a{
    padding:10px 12px;
    border-radius:999px;
    font-weight:800;
    color:#334155;
    font-size:14px;
    transition:.22s ease;
}

.nav a:hover{
    background:var(--soft);
    color:var(--dark);
}

.nav-call{
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:#1f1600!important;
    box-shadow:0 10px 24px rgba(217,164,65,.28);
}

.mobile-menu-btn{
    display:none;
    visibility:hidden;
    opacity:0;
}

/* Hero */
.hero{
    min-height:650px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;
}

.hero-content{
    max-width:880px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
    padding:95px 0;
}

.eyebrow,
.section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(217,164,65,.14);
    border:1px solid rgba(217,164,65,.45);
    color:var(--gold2);
    border-radius:999px;
    padding:8px 15px;
    font-weight:950;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-tag{
    color:#9b6b0f;
    background:#fff8e8;
}

.hero h1{
    font-size:clamp(38px,6vw,76px);
    line-height:1.03;
    margin:22px 0 18px;
    font-weight:950;
}

.hero p{
    font-size:20px;
    max-width:780px;
    margin:0 auto 30px;
    color:#e6edf7;
}

.hero-actions{
    display:flex;
    gap:16px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    padding:14px 24px;
    font-weight:950;
    border:1px solid transparent;
    transition:.25s ease;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn.primary{
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:#221600;
    box-shadow:0 16px 34px rgba(217,164,65,.35);
}

.btn.ghost{
    color:#fff;
    border-color:rgba(255,255,255,.42);
    background:rgba(255,255,255,.08);
}

.btn.dark{
    box-shadow:none;
}

.hero-points{
    margin-top:24px;
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.hero-points span{
    color:#fff;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.20);
    padding:9px 13px;
    border-radius:999px;
    font-weight:850;
    backdrop-filter:blur(10px);
}

/* Common Sections */
.section{
    padding:82px 0;
}

.section-head{
    text-align:center;
    max-width:790px;
    margin:0 auto 38px;
}

.intro-grid h2,
.section-head h2,
.cta-inner h2{
    font-size:clamp(30px,4vw,48px);
    line-height:1.12;
    margin:14px 0 16px;
    letter-spacing:-.6px;
}

.intro-grid p,
.section-head p{
    color:var(--muted);
    font-size:17px;
}

.text-link{
    display:inline-flex;
    margin-top:8px;
    color:#af770e;
    font-weight:950;
}

/* About / Services */
.intro-section{
    background:#ffffff;
    overflow:hidden;
}

.intro-grid{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(420px,.75fr);
    gap:52px;
    align-items:center;
}

.intro-content{
    max-width:720px;
}

.service-card-wrap{
    width:100%;
    max-width:560px;
    margin-left:auto;
    display:grid;
    gap:18px;
}

.service-card{
    width:100%;
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:26px;
    border-radius:28px;
    background:#ffffff;
    border:1px solid rgba(217,164,65,.35);
    box-shadow:0 18px 45px rgba(15,23,42,.09);
    transition:.25s ease;
}

.service-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow2);
}

.service-card b{
    flex:0 0 58px;
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:#211500;
    font-weight:950;
}

.service-text{
    flex:1;
    min-width:0;
}

.service-card span{
    display:block;
    font-size:20px;
    font-weight:950;
    line-height:1.25;
    color:#111827;
    margin-bottom:7px;
}

.service-card small{
    display:block;
    color:var(--muted);
    font-size:15px;
    line-height:1.65;
    font-weight:700;
}

/* Premium Quality */
.premium-quality-section{
    background:
        radial-gradient(circle at top left, rgba(245,210,122,.26), transparent 28%),
        radial-gradient(circle at bottom right, rgba(217,164,65,.16), transparent 28%),
        linear-gradient(180deg,#ffffff 0%,#fbfaf7 100%);
}

.quality-center-grid{
    max-width:1050px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    align-items:stretch;
}

.quality-card{
    position:relative;
    text-align:center;
    background:#ffffff;
    border:1px solid rgba(217,164,65,.35);
    border-radius:30px;
    padding:34px 26px;
    box-shadow:0 22px 60px rgba(15,23,42,.09);
    overflow:hidden;
    transition:.25s ease;
}

.quality-card:before{
    content:"";
    position:absolute;
    left:50%;
    top:-70px;
    transform:translateX(-50%);
    width:150px;
    height:150px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(245,210,122,.32),transparent 68%);
}

.quality-card:hover{
    transform:translateY(-8px);
    box-shadow:0 32px 85px rgba(15,23,42,.15);
    border-color:rgba(217,164,65,.85);
}

.quality-card.featured{
    background:linear-gradient(180deg,#fffdf7 0%,#ffffff 100%);
    transform:translateY(-12px);
}

.quality-icon{
    position:relative;
    width:66px;
    height:66px;
    margin:0 auto 18px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:#171202;
    font-size:27px;
    font-weight:950;
    box-shadow:0 16px 32px rgba(217,164,65,.28);
}

.quality-card h3{
    position:relative;
    margin:0 0 12px;
    font-size:23px;
    line-height:1.25;
    color:#111827;
}

.quality-card p{
    position:relative;
    margin:0;
    color:#5f6f82;
    font-size:15.8px;
    line-height:1.75;
}

/* Projects */
.projects-section{
    background:var(--soft);
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.project-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:26px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.project-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow2);
}

.project-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.project-body{
    padding:20px;
}

.project-body h3{
    margin:0 0 8px;
    font-size:21px;
    line-height:1.25;
}

.project-body p{
    margin:8px 0;
    color:var(--muted);
}

.address{
    font-weight:850;
    color:#475467!important;
}

.mini-call{
    display:inline-flex;
    margin-top:12px;
    background:#111827;
    color:#fff;
    border-radius:999px;
    padding:10px 14px;
    font-weight:850;
}

.mini-call:hover{
    background:#000;
}

/* Team */
.team-home-section{
    background:#fff;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.team-card{
    background:#fff;
    border:1px solid rgba(214,164,74,.30);
    border-radius:28px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.team-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow2);
    border-color:rgba(217,164,65,.7);
}

.team-img{
    padding:16px 16px 0;
}

.team-img img{
    width:100%;
    height:270px;
    object-fit:cover;
    border-radius:22px;
    background:#f3f4f6;
}

.team-content{
    padding:20px;
}

.team-content h3{
    margin:0 0 4px;
    font-size:22px;
    line-height:1.2;
}

.team-content span{
    display:inline-flex;
    margin-bottom:10px;
    color:#9b6b0f;
    font-weight:950;
}

.team-content p{
    color:var(--muted);
    margin:8px 0;
}

.team-info{
    font-weight:850;
    color:#475467!important;
}

.team-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:14px;
}

.team-actions a{
    background:#111827;
    color:#fff;
    border-radius:999px;
    padding:9px 14px;
    font-weight:900;
}

/* Process */
.premium-process-section{
    background:
        radial-gradient(circle at top right, rgba(245,210,122,.20), transparent 26%),
        linear-gradient(180deg,#ffffff 0%,#f8f5ee 100%);
}

.process-timeline{
    max-width:930px;
    margin:0 auto;
    display:grid;
    gap:22px;
    position:relative;
}

.process-step{
    display:grid;
    grid-template-columns:96px 1fr;
    gap:20px;
    align-items:center;
    background:#ffffff;
    border:1px solid rgba(217,164,65,.35);
    border-radius:30px;
    padding:24px;
    box-shadow:0 22px 60px rgba(15,23,42,.08);
    transition:.25s ease;
}

.process-step:hover{
    transform:translateY(-5px);
    box-shadow:0 32px 85px rgba(15,23,42,.14);
    border-color:rgba(217,164,65,.8);
}

.process-badge{
    width:76px;
    height:76px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#111827,#2b2108);
    color:var(--gold2);
    font-size:23px;
    font-weight:950;
    box-shadow:0 16px 34px rgba(15,23,42,.18);
}

.process-content h3{
    margin:0 0 8px;
    font-size:25px;
    color:#111827;
    line-height:1.22;
}

.process-content p{
    margin:0;
    color:#5f6f82;
    font-size:16px;
    line-height:1.75;
}

.center-btn{
    text-align:center;
    margin-top:34px;
}

/* CTA */
.cta-band{
    padding:55px 0;
    background:linear-gradient(135deg,#171202,#d9a441);
    color:#fff;
}

.cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.cta-inner h2{
    margin:0;
}

.cta-inner p{
    margin:6px 0 0;
    color:#fff6df;
}

/* Page Hero */
.page-hero{
    background:linear-gradient(135deg,#111827,#2b2108);
    color:#fff;
    padding:90px 0;
}

.page-hero.small{
    padding:80px 0;
}

.page-hero h1{
    font-size:clamp(34px,5vw,58px);
    margin:14px 0 8px;
    line-height:1.12;
}

.page-hero p{
    color:#e7e9ef;
    font-size:18px;
    max-width:820px;
}

/* Content Pages */
.content-page{
    max-width:920px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:28px;
    padding:38px;
    box-shadow:var(--shadow);
}

.content-page h2{
    font-size:34px;
    margin-top:0;
}

.content-page h3{
    font-size:23px;
    margin-top:28px;
    margin-bottom:8px;
    color:#111827;
}

.content-page p{
    color:var(--muted);
    font-size:17px;
}

/* Gallery */
.masonry-gallery{
    columns:3 270px;
    column-gap:22px;
}

.gallery-card{
    break-inside:avoid;
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    overflow:hidden;
    margin:0 0 22px;
    box-shadow:var(--shadow);
}

.gallery-card img{
    width:100%;
}

.gallery-card figcaption{
    padding:16px 18px;
}

.gallery-card h3{
    margin:0;
    font-size:19px;
}

.gallery-card p{
    margin:4px 0 0;
    color:var(--muted);
}

/* Contact */
.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.contact-card{
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    border-radius:24px;
    padding:26px;
}

.contact-card h3{
    margin-top:0;
}

.contact-card a{
    font-weight:950;
    color:#9b6b0f;
}

/* Footer Final */
.site-footer{
    background:linear-gradient(135deg,#0f172a,#171202);
    color:#ffffff;
    padding-top:64px;
}

.footer-premium-grid{
    display:grid;
    grid-template-columns:1.55fr 1fr .85fr;
    gap:28px;
    align-items:start;
}

.footer-box{
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.10);
    border-radius:24px;
    padding:24px;
    min-height:100%;
}

.footer-premium-grid .footer-box:nth-child(3){
    justify-self:end;
    width:100%;
    max-width:260px;
}

.footer-box h3{
    margin:0 0 12px;
    font-size:26px;
    line-height:1.2;
    color:#f5d27a;
}

.footer-box h4{
    margin:0 0 14px;
    font-size:19px;
    color:#f5d27a;
}

.footer-box p{
    margin:0 0 11px;
    color:#d5d9e3;
    line-height:1.65;
}

.footer-box p span{
    display:block;
    color:#ffffff;
    font-weight:900;
    font-size:13px;
    margin-bottom:3px;
}

.footer-box a{
    color:#d5d9e3;
    font-weight:800;
    word-break:break-word;
}

.footer-box a:hover{
    color:#f5d27a;
}

.footer-address-box{
    margin-top:18px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.12);
}

.footer-address-box h4{
    margin:0 0 8px;
    color:#f5d27a;
    font-size:18px;
}

.footer-address-box .footer-address{
    margin:0;
    color:#d5d9e3;
    font-weight:800;
    line-height:1.7;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:9px;
}

.footer-links li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.08);
    padding:9px 12px;
    border-radius:14px;
    color:#d5d9e3;
    font-weight:850;
}

.footer-links li a:hover{
    background:rgba(217,164,65,.18);
    color:#f5d27a;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.12);
    padding:18px;
    margin-top:38px;
    color:#b8bfcc;
}

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:22px;
    z-index:99;
    background:#25d366;
    color:#fff;
    padding:13px 18px;
    border-radius:999px;
    font-weight:950;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.empty-box{
    grid-column:1/-1;
    background:#fff8e8;
    border:1px dashed var(--gold);
    padding:24px;
    border-radius:18px;
    text-align:center;
    font-weight:850;
    color:#7a5410;
}

/* Admin */
.admin-body{
    background:#f5f7fb;
}

.admin-shell{
    display:grid;
    grid-template-columns:260px 1fr;
    min-height:100vh;
}

.sidebar{
    background:#111827;
    color:#fff;
    padding:24px;
}

.sidebar h2{
    margin:0 0 24px;
}

.sidebar a{
    display:block;
    padding:12px 14px;
    border-radius:12px;
    color:#dce3ef;
    font-weight:850;
}

.sidebar a:hover,
.sidebar a.active{
    background:rgba(217,164,65,.18);
    color:#f5d27a;
}

.admin-main{
    padding:28px;
}

.admin-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:24px;
    box-shadow:0 12px 34px rgba(15,23,42,.06);
    margin-bottom:22px;
}

.admin-card h1,
.admin-card h2{
    margin-top:0;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:7px;
    margin-bottom:14px;
}

.form-group label{
    font-weight:950;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:13px;
    border:1px solid #d0d5dd;
    border-radius:13px;
    font:inherit;
}

.form-group textarea{
    min-height:120px;
}

.full{
    grid-column:1/-1;
}

.admin-btn{
    border:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:#211500;
    padding:12px 18px;
    border-radius:999px;
    font-weight:950;
    cursor:pointer;
}

.light-btn{
    background:#eef2f7!important;
    color:#111827!important;
    margin-left:8px;
}

.danger{
    background:#fee2e2;
    color:#991b1b;
}

.admin-table{
    width:100%;
    border-collapse:collapse;
}

.admin-table th,
.admin-table td{
    padding:12px;
    border-bottom:1px solid #e5e7eb;
    text-align:left;
}

.admin-table img{
    width:82px;
    height:62px;
    border-radius:12px;
    object-fit:cover;
}

.notice{
    background:#ecfdf3;
    border:1px solid #abefc6;
    padding:12px 14px;
    border-radius:14px;
    margin-bottom:18px;
    font-weight:850;
}

.login-wrap{
    min-height:100vh;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,#111827,#3a2a08);
}

.login-box{
    background:#fff;
    width:min(440px,92%);
    padding:34px;
    border-radius:26px;
    box-shadow:0 25px 70px rgba(0,0,0,.28);
}

.login-box h1{
    margin-top:0;
}

.login-box input{
    width:100%;
    margin-bottom:14px;
    padding:14px;
    border:1px solid #d0d5dd;
    border-radius:13px;
}

.error{
    background:#fef2f2;
    color:#991b1b;
    padding:12px;
    border-radius:12px;
    margin-bottom:14px;
    font-weight:850;
}

/* Tablet */
@media(max-width:1050px){
    .team-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .project-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .intro-grid{
        grid-template-columns:1fr;
        gap:34px;
    }

    .service-card-wrap{
        max-width:100%;
        margin-left:0;
    }

    .footer-premium-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-premium-grid .footer-box:nth-child(3){
        justify-self:stretch;
        max-width:none;
        grid-column:1 / -1;
    }
}

/* Mobile Header */
@media(max-width:900px){
    .site-header{
        position:sticky;
        top:0;
        z-index:99999;
        background:#ffffff;
    }

    .header-inner{
        min-height:72px;
        height:72px;
        padding:0;
        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        gap:12px;
        position:relative;
    }

    .brand{
        max-width:calc(100% - 60px);
        font-size:18px;
        line-height:1.2;
        flex:1;
    }

    .brand img{
        width:46px;
        height:46px;
        flex:0 0 46px;
    }

    .mobile-menu-btn{
        display:flex;
        visibility:visible;
        opacity:1;
        width:48px;
        height:48px;
        flex:0 0 48px;
        border:0;
        border-radius:14px;
        background:linear-gradient(135deg,#d9a441,#f5d27a);
        cursor:pointer;
        align-items:center;
        justify-content:center;
        flex-direction:column;
        gap:5px;
        box-shadow:0 10px 24px rgba(217,164,65,.28);
        margin-left:auto;
        z-index:100001;
        padding:0;
    }

    .mobile-menu-btn span{
        display:block;
        visibility:visible;
        opacity:1;
        width:23px;
        height:3px;
        background:#1f1600;
        border-radius:99px;
        transition:.25s ease;
    }

    .mobile-menu-btn.active span:nth-child(1){
        transform:translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2){
        opacity:0;
    }

    .mobile-menu-btn.active span:nth-child(3){
        transform:translateY(-8px) rotate(-45deg);
    }

    .nav{
        position:absolute;
        top:72px;
        left:0;
        right:0;
        width:100%;
        display:none;
        grid-template-columns:1fr;
        gap:8px;
        background:#ffffff;
        border:1px solid rgba(217,164,65,.30);
        border-radius:0 0 22px 22px;
        box-shadow:0 24px 70px rgba(15,23,42,.16);
        padding:14px;
        z-index:100000;
    }

    .nav.active{
        display:grid;
    }

    .nav a{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:13px 15px;
        border-radius:14px;
        background:#fbfaf7;
        color:#172033;
        font-size:15px;
        font-weight:900;
    }

    .nav a:hover{
        background:#fff8e8;
    }

    .nav-call{
        justify-content:center!important;
        background:linear-gradient(135deg,#d9a441,#f5d27a)!important;
        color:#1f1600!important;
    }

    .quality-center-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .quality-card.featured{
        transform:none;
    }

    .quality-card{
        padding:28px 22px;
    }

    .process-step{
        grid-template-columns:1fr;
        text-align:center;
    }

    .process-badge{
        margin:0 auto;
    }
}

@media(max-width:850px){
    .hero{
        min-height:560px;
    }

    .hero-content{
        padding:70px 0;
    }

    .hero p{
        font-size:17px;
    }

    .project-grid,
    .team-grid,
    .admin-shell,
    .form-grid{
        grid-template-columns:1fr;
    }

    .project-card img{
        height:220px;
    }

    .team-img img{
        height:260px;
    }

    .cta-inner{
        display:block;
    }

    .cta-inner .btn{
        margin-top:18px;
    }

    .admin-main{
        padding:16px;
    }

    .sidebar{
        position:relative;
    }

    .admin-table{
        display:block;
        overflow:auto;
    }

    .content-page{
        padding:24px;
        border-radius:22px;
    }
}

@media(max-width:650px){
    .footer-premium-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .footer-premium-grid .footer-box:nth-child(3){
        justify-self:stretch;
        max-width:none;
        grid-column:auto;
    }

    .footer-box{
        padding:20px;
        border-radius:20px;
    }

    .footer-box h3{
        font-size:23px;
    }

    .footer-box h4{
        font-size:18px;
    }
}

@media(max-width:520px){
    .brand{
        font-size:17px;
    }

    .brand img{
        width:44px;
        height:44px;
    }

    .hero h1{
        font-size:36px;
    }

    .section{
        padding:62px 0;
    }

    .service-card{
        padding:22px;
        gap:14px;
    }

    .service-card b{
        flex:0 0 50px;
        width:50px;
        height:50px;
    }

    .service-card span{
        font-size:18px;
    }

    .service-card small{
        font-size:14px;
    }

    .hero-actions .btn{
        width:100%;
    }

    .floating-whatsapp{
        right:12px;
        bottom:14px;
        padding:11px 14px;
    }
} 
/* FINAL HEADER LOGO FIX - ONLY LOGO, NOTHING ELSE */
.header-main-logo{
    width:220px !important;
    max-width:220px !important;
    height:62px !important;
    max-height:62px !important;
    object-fit:contain !important;
    object-position:left center !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    padding:0 !important;
    margin:0 !important;
}

/* Jab logo upload ho to site title hide rahe */
.brand:has(.header-main-logo){
    gap:0 !important;
    width:220px !important;
    max-width:220px !important;
    flex:0 0 220px !important;
    overflow:hidden !important;
}

.brand:has(.header-main-logo) span{
    display:none !important;
}

/* Header height safe */
.header-inner{
    min-height:76px !important;
}

/* Desktop menu safe */
.nav{
    flex:1 !important;
}

/* Mobile logo */
@media(max-width:900px){
    .brand:has(.header-main-logo){
        width:auto !important;
        max-width:calc(100% - 60px) !important;
        flex:1 1 auto !important;
        overflow:hidden !important;
    }

    .header-main-logo{
        width:210px !important;
        max-width:100% !important;
        height:56px !important;
        max-height:56px !important;
    }

    .header-inner{
        min-height:72px !important;
        height:72px !important;
    }

    .nav{
        top:72px !important;
    }
}

/* Small mobile */
@media(max-width:520px){
    .header-main-logo{
        width:190px !important;
        max-width:100% !important;
        height:52px !important;
        max-height:52px !important;
    }
}