:root{
    --primary:#0B1F3A;
    --secondary:#D4AF37;
    --accent:#C62828;
    --text:#1f2328;
    --muted:#6b7280;
    --bg:#f4f6fb;
    --card:#ffffff;
    --border:rgba(15, 23, 42, 0.08);
    --shadow:0 10px 30px rgba(2, 6, 23, 0.08);
    --radius:16px;
}

html{scroll-behavior:smooth;}
body{
    color:var(--text);
    background:var(--bg);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

.navbar-shadow{box-shadow:0 10px 30px rgba(0,0,0,0.10);}
.nav-cta{border-radius:12px;}
.navbar-brand{
    display:flex;
    align-items:center;
    gap:10px;
}

.navbar-agency{
    background:#ffffff;
    border-bottom:1px solid rgba(15, 23, 42, 0.08);
}

.btn-accent{
    background:var(--accent);
    border-color:var(--accent);
    color:#fff;
}
.btn-accent:hover{filter:brightness(0.95); color:#fff;}
.btn-outline-accent{
    border-color:rgba(198,40,40,0.45);
    color:var(--accent);
}
.btn-outline-accent:hover{background:rgba(198,40,40,0.08); color:var(--accent);}
.brand-mark{
    width:26px;
    height:26px;
    border-radius:8px;
    background:
        radial-gradient(12px 12px at 30% 30%, rgba(212,175,55,0.55) 0%, rgba(212,175,55,0.15) 65%, rgba(212,175,55,0.00) 100%),
        linear-gradient(180deg, rgba(212,175,55,0.22) 0%, rgba(212,175,55,0.05) 100%),
        rgba(255,255,255,0.06);
    border:1px solid rgba(212,175,55,0.35);
    box-shadow:0 10px 24px rgba(0,0,0,0.22);
    position:relative;
}
.brand-mark::after{
    content:"";
    position:absolute;
    inset:6px 7px 7px 7px;
    border-radius:6px;
    border:1px solid rgba(255,255,255,0.25);
    clip-path:polygon(50% 0%, 92% 18%, 92% 62%, 50% 100%, 8% 62%, 8% 18%);
    opacity:0.9;
}

.brand-logo{
    height:42px;
    width:auto;
    display:block;
    border-radius:6px;
}

.hero{
    position:relative;
    background:
        radial-gradient(900px 360px at 20% 20%, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.00) 60%),
        radial-gradient(800px 340px at 80% 40%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.00) 60%),
        linear-gradient(135deg, var(--primary) 0%, #12345e 100%);
    overflow:hidden;
}
.hero::after{
    content:"";
    position:absolute;
    inset:-2px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size:48px 48px;
    opacity:0.35;
    pointer-events:none;
    mix-blend-mode:soft-light;
}
.hero .container{position:relative; z-index:1;}
.hero h1{letter-spacing:-0.02em;}

.hero-agency{
    border-radius:24px;
    margin-top:18px;
    margin-bottom:18px;
    background:
        linear-gradient(90deg, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.80) 55%, rgba(11,31,58,0.10) 100%),
        var(--hero-image, linear-gradient(135deg, #0b1f3a 0%, #12345e 100%));
    background-size:cover;
    background-position:right center;
}
.hero-agency::before{
    content:"";
    position:absolute;
    right:-180px;
    top:-220px;
    width:520px;
    height:520px;
    border-radius:999px;
    background:radial-gradient(circle at 30% 30%, rgba(198,40,40,0.55) 0%, rgba(198,40,40,0.12) 55%, rgba(198,40,40,0.0) 70%);
    transform:rotate(12deg);
    pointer-events:none;
}
.hero-agency::after{
    content:"";
    position:absolute;
    right:-140px;
    bottom:-240px;
    width:520px;
    height:520px;
    border-radius:999px;
    background:radial-gradient(circle at 30% 30%, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.06) 55%, rgba(212,175,55,0.0) 70%);
    transform:rotate(-8deg);
    pointer-events:none;
}

.stats-band{
    background:linear-gradient(135deg, var(--primary) 0%, #102e55 100%);
    color:#fff;
    border-radius:20px;
    box-shadow:0 18px 46px rgba(2, 6, 23, 0.18);
    border:1px solid rgba(255,255,255,0.10);
}
.stats-band .stat-num{
    font-weight:900;
    font-size:1.6rem;
    letter-spacing:-0.02em;
}
.stats-band .stat-label{color:rgba(255,255,255,0.72); font-size:0.9rem;}
.stats-band .stat-item{
    padding:18px 12px;
    text-align:center;
}
.stats-band .stat-item + .stat-item{border-left:1px solid rgba(255,255,255,0.12);}

.tile{
    border:1px solid var(--border);
    border-radius:18px;
    background:var(--card);
    box-shadow:var(--shadow);
    transition:transform .18s ease, box-shadow .18s ease;
}
.tile:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 44px rgba(2, 6, 23, 0.10);
}
.tile-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(198,40,40,0.08);
    border:1px solid rgba(198,40,40,0.18);
    color:var(--primary);
}
.tile-icon svg{width:28px; height:28px;}

.mini-icon{
    width:34px;
    height:34px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,0.16);
    border:1px solid rgba(212,175,55,0.28);
    color:var(--primary);
    flex:0 0 auto;
}
.mini-icon svg{width:18px; height:18px;}

.service-card{
    border:1px solid var(--border);
    border-radius:18px;
    background:var(--card);
    box-shadow:var(--shadow);
    overflow:hidden;
    transition:transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 44px rgba(2, 6, 23, 0.10);
}
.service-card-media{
    position:relative;
    width:100%;
    aspect-ratio: 16/9;
    background:linear-gradient(135deg, rgba(11,31,58,0.14) 0%, rgba(198,40,40,0.10) 100%);
}
.service-card-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.service-card-placeholder{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
}
.service-card-placeholder svg{width:48px; height:48px;}
.service-card-badge{
    position:absolute;
    top:12px;
    left:12px;
    padding:6px 10px;
    border-radius:999px;
    font-weight:700;
    font-size:12px;
    letter-spacing:0.02em;
    color:#fff;
    background:rgba(198,40,40,0.92);
    border:1px solid rgba(255,255,255,0.20);
    backdrop-filter: blur(6px);
}
.service-card-badge.badge-right{
    left:auto;
    right:12px;
}
.service-card-body{
    padding:16px 16px 18px 16px;
}
.section-title{
    font-weight:900;
    letter-spacing:-0.02em;
}

.why-card{
    border:1px solid var(--border);
    border-radius:18px;
    background:var(--card);
    box-shadow:var(--shadow);
    height:100%;
    padding:18px;
}
.why-media{
    width:100%;
    aspect-ratio: 16/10;
    border-radius:16px;
    overflow:hidden;
    background:linear-gradient(135deg, rgba(11,31,58,0.14) 0%, rgba(198,40,40,0.10) 100%);
    border:1px solid rgba(11,31,58,0.10);
    display:flex;
    align-items:center;
    justify-content:center;
}
.why-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.why-media-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.72);
    border:1px solid rgba(255,255,255,0.35);
    color:var(--primary);
    box-shadow:0 18px 50px rgba(2, 6, 23, 0.12);
}
.why-media-icon svg{width:40px; height:40px; color:var(--primary);}

.cta-band{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    background:
        radial-gradient(800px 360px at 80% 30%, rgba(198,40,40,0.35) 0%, rgba(198,40,40,0.10) 55%, rgba(198,40,40,0.00) 70%),
        radial-gradient(700px 340px at 30% 80%, rgba(212,175,55,0.22) 0%, rgba(212,175,55,0.06) 55%, rgba(212,175,55,0.00) 70%),
        linear-gradient(135deg, var(--primary) 0%, #12345e 100%);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 18px 60px rgba(2, 6, 23, 0.16);
    color:#fff;
}

.about-hero{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    background:
        radial-gradient(800px 360px at 80% 30%, rgba(198,40,40,0.35) 0%, rgba(198,40,40,0.10) 55%, rgba(198,40,40,0.00) 70%),
        radial-gradient(700px 340px at 30% 80%, rgba(212,175,55,0.22) 0%, rgba(212,175,55,0.06) 55%, rgba(212,175,55,0.00) 70%),
        linear-gradient(135deg, var(--primary) 0%, #12345e 100%);
    box-shadow:0 24px 60px rgba(2, 6, 23, 0.22);
    border:1px solid rgba(255,255,255,0.10);
    color:#fff;
}
.about-hero::before{
    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:520px;
    height:520px;
    border-radius:999px;
    border:18px solid rgba(198,40,40,0.28);
    transform:rotate(18deg);
}
.about-hero::after{
    content:"";
    position:absolute;
    right:-180px;
    bottom:-180px;
    width:620px;
    height:620px;
    border-radius:999px;
    border:18px solid rgba(255,255,255,0.10);
}
.about-hero .content{position:relative; z-index:1;}

.media-frame{
    border-radius:22px;
    overflow:hidden;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.16);
    box-shadow:0 20px 50px rgba(0,0,0,0.22);
}
.media-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.square-frame{
    width:100%;
    aspect-ratio: 1/1;
    border-radius:22px;
    overflow:hidden;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(15, 23, 42, 0.10);
}
.square-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.chip-link{
    display:inline-flex;
    align-items:center;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(11,31,58,0.06);
    border:1px solid rgba(11,31,58,0.14);
    color:var(--primary);
    text-decoration:none;
    font-weight:700;
    font-size:0.92rem;
}
.chip-link:hover{
    background:rgba(11,31,58,0.10);
    color:var(--primary);
}

.bullet-list{
    list-style:none;
    padding-left:0;
    margin:0;
}
.bullet-list li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    padding:8px 0;
    color:rgba(255,255,255,0.88);
}
.bullet-list li::before{
    content:"";
    width:10px;
    height:10px;
    border-radius:999px;
    background:var(--accent);
    margin-top:6px;
    box-shadow:0 0 0 4px rgba(198,40,40,0.18);
    flex:0 0 auto;
}

.page-banner{
    border-radius:24px;
    overflow:hidden;
    background:
        radial-gradient(820px 360px at 85% 20%, rgba(198,40,40,0.32) 0%, rgba(198,40,40,0.10) 55%, rgba(198,40,40,0.00) 70%),
        linear-gradient(135deg, var(--primary) 0%, #12345e 100%);
    color:#fff;
    border:1px solid rgba(255,255,255,0.10);
    box-shadow:0 22px 56px rgba(2, 6, 23, 0.18);
}
.page-banner .subtitle{color:rgba(255,255,255,0.76);}

#homeHeroCarousel .carousel-control-prev,
#homeHeroCarousel .carousel-control-next{
    width:54px;
}
#homeHeroCarousel .carousel-control-prev-icon,
#homeHeroCarousel .carousel-control-next-icon{
    filter:drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}
.hero-split{
    min-height:520px;
}
.hero-full{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    height:calc(100vh - 120px);
    min-height:560px;
    max-height:860px;
    background:linear-gradient(135deg, var(--primary) 0%, #12345e 100%);
    border:1px solid rgba(255,255,255,0.10);
    box-shadow:0 24px 60px rgba(2, 6, 23, 0.22);
    color:#fff;
}
.hero-full::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:var(--hero-bg);
    background-size:cover;
    background-position:center;
    filter:saturate(1.05) contrast(1.05);
    transform:scale(1.02);
}
.hero-full::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(900px 420px at 80% 20%, rgba(198,40,40,0.35) 0%, rgba(198,40,40,0.10) 55%, rgba(198,40,40,0.00) 70%),
        linear-gradient(90deg, rgba(2,6,23,0.68) 0%, rgba(2,6,23,0.22) 55%, rgba(2,6,23,0.10) 100%);
}
.hero-full-content{
    position:relative;
    z-index:1;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:28px 28px;
    max-width:820px;
}
.hero-full-sub{
    color:rgba(255,255,255,0.78);
    font-size:1.05rem;
    max-width:720px;
}
#homeHeroCarousel .carousel-indicators{
    margin-bottom:10px;
}
#homeHeroCarousel .carousel-indicators [data-bs-target]{
    width:10px;
    height:10px;
    border-radius:999px;
    background-color:rgba(255,255,255,0.55);
}
#homeHeroCarousel .carousel-indicators .active{
    background-color:var(--secondary);
}
.kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    gap:10px;
    font-weight:800;
    letter-spacing:0.14em;
    text-transform:uppercase;
    font-size:0.78rem;
    color:rgba(255,255,255,0.78);
}
.kicker::before{
    content:"";
    width:28px;
    height:2px;
    background:var(--secondary);
    border-radius:999px;
    box-shadow:0 0 0 3px rgba(212,175,55,0.18);
}

.trust-chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.16);
    color:rgba(255,255,255,0.90);
    font-weight:600;
    font-size:0.9rem;
    backdrop-filter: blur(8px);
}
.trust-dot{
    width:8px;
    height:8px;
    border-radius:999px;
    background:var(--secondary);
    box-shadow:0 0 0 3px rgba(212,175,55,0.20);
}

.security-strip{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    background:
        radial-gradient(900px 420px at 80% 20%, rgba(198,40,40,0.28) 0%, rgba(198,40,40,0.06) 55%, rgba(198,40,40,0.00) 70%),
        radial-gradient(900px 420px at 20% 80%, rgba(212,175,55,0.20) 0%, rgba(212,175,55,0.06) 55%, rgba(212,175,55,0.00) 70%),
        linear-gradient(135deg, #071425 0%, var(--primary) 55%, #12345e 100%);
    border:1px solid rgba(255,255,255,0.10);
    box-shadow:0 22px 56px rgba(2, 6, 23, 0.18);
    padding:22px;
}
.security-strip::after{
    content:"";
    position:absolute;
    inset:-2px;
    background:linear-gradient(90deg, rgba(212,175,55,0.0), rgba(212,175,55,0.18), rgba(212,175,55,0.0));
    transform:translateX(-60%);
    animation:sparkSweep 4.8s ease-in-out infinite;
    pointer-events:none;
    mix-blend-mode:screen;
    opacity:0.35;
}
@keyframes sparkSweep{
    0%{transform:translateX(-70%);}
    45%{transform:translateX(110%);}
    100%{transform:translateX(110%);}
}
.security-strip-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    letter-spacing:0.14em;
    text-transform:uppercase;
    font-size:0.74rem;
    color:rgba(255,255,255,0.78);
    margin-bottom:8px;
}
.security-strip-kicker::before{
    content:"";
    width:28px;
    height:2px;
    background:var(--secondary);
    border-radius:999px;
    box-shadow:0 0 0 3px rgba(212,175,55,0.18);
}
.security-badge{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px 14px;
    border-radius:18px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
}
.security-badge:hover{
    background:rgba(255,255,255,0.09);
    border-color:rgba(255,255,255,0.20);
}
.security-badge-icon{
    width:42px;
    height:42px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,0.14);
    border:1px solid rgba(212,175,55,0.28);
    color:#fff;
    flex:0 0 auto;
}
.security-badge-icon svg{width:20px;height:20px;}
.security-badge-title{
    color:#fff;
    font-weight:800;
}
.security-badge-sub{
    color:rgba(255,255,255,0.72);
    font-size:0.9rem;
}

.btn-gold{background:var(--secondary); border-color:var(--secondary); color:#111;}
.btn-gold:hover{filter:brightness(0.96);}
.btn-soft{
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.18);
    color:#fff;
}
.btn-soft:hover{background:rgba(255,255,255,0.14); color:#fff;}

.card{
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}
.card .card-body{padding:20px;}
.card-accent{
    position:relative;
    overflow:hidden;
}
.card-accent::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:linear-gradient(180deg, var(--secondary) 0%, rgba(212,175,55,0.15) 100%);
}
.card-accent .card-body{position:relative;}

.stat-card{
    border-radius:var(--radius);
    border:1px solid var(--border);
    background:var(--card);
    box-shadow:var(--shadow);
    padding:16px;
    height:100%;
    position:relative;
    overflow:hidden;
}
.stat-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:rgba(212,175,55,0.75);
    opacity:0.9;
}
.stat{
    font-size:1.8rem;
    font-weight:800;
    color:var(--primary);
    letter-spacing:-0.02em;
}
.text-muted{color:var(--muted) !important;}

.blog-content p{margin:0 0 12px 0;}
.blog-content ul,.blog-content ol{padding-left:1.2rem; margin:0 0 12px 0;}
.blog-content h2,.blog-content h3,.blog-content h4{color:var(--primary); margin-top:18px;}
.blog-content a{color:var(--accent); text-decoration:underline;}

.contact-card{
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:var(--card);
    box-shadow:var(--shadow);
    padding:16px 16px;
}
.contact-card:hover{
    transform:translateY(-1px);
    box-shadow:0 18px 40px rgba(2, 6, 23, 0.12);
}
.contact-card-icon{
    width:44px;
    height:44px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(11,31,58,0.06);
    border:1px solid rgba(11,31,58,0.10);
    color:#0B1F3A;
    flex:0 0 auto;
}
.contact-card-icon svg{width:20px;height:20px;}
.contact-form-cover{
    position:relative;
    height:160px;
    background:#0b1f3a;
}
.contact-form-cover img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    filter:saturate(1.05) contrast(1.05);
}
.contact-form-cover-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:14px 16px;
    color:#fff;
    background:linear-gradient(180deg, rgba(2,6,23,0.00) 0%, rgba(2,6,23,0.78) 100%);
}
.contact-detail{
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding:10px 0;
    border-top:1px dashed rgba(15,23,42,0.12);
}
.contact-detail:first-of-type{border-top:none; padding-top:0;}
.contact-detail-key{
    color:rgba(15,23,42,0.55);
    font-weight:700;
    font-size:0.92rem;
}
.contact-detail-val{
    text-align:right;
}
.contact-detail-val a{
    color:var(--accent);
    text-decoration:none;
}
.contact-detail-val a:hover{text-decoration:underline;}

.industry-card{
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,0.10);
    background:#0b1f3a;
    box-shadow:0 18px 50px rgba(2, 6, 23, 0.12);
}
.industry-card-media{
    position:relative;
    aspect-ratio: 4 / 3;
}
.industry-card-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:saturate(1.05) contrast(1.05);
}
.industry-card-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:12px;
    background:linear-gradient(180deg, rgba(2,6,23,0.0) 0%, rgba(2,6,23,0.70) 100%);
}
.industry-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 10px;
    border-radius:999px;
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.18);
    color:#fff;
}
.industry-pill-icon{
    width:22px;
    height:22px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,0.18);
    border:1px solid rgba(212,175,55,0.35);
    color:#fff;
}
.industry-pill-icon svg{width:14px;height:14px;}

.service-icon{
    width:44px;
    height:44px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,0.16);
    border:1px solid rgba(212,175,55,0.28);
    color:var(--primary);
    font-weight:800;
}
.list-check{
    list-style:none;
    padding-left:0;
    margin:0;
}
.list-check li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    padding:6px 0;
    color:var(--muted);
}
.list-check li::before{
    content:"";
    width:18px;
    height:18px;
    margin-top:2px;
    border-radius:6px;
    background:rgba(11,31,58,0.10);
    border:1px solid rgba(11,31,58,0.18);
    box-shadow: inset 0 0 0 4px rgba(212,175,55,0.22);
    flex:0 0 auto;
}

.client-logo{
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:var(--card);
    box-shadow:var(--shadow);
    padding:14px;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.client-logo img{
    max-height:54px;
    max-width:100%;
    filter:grayscale(1);
    opacity:0.75;
    transition:filter .2s ease, opacity .2s ease, transform .2s ease;
}
.client-logo:hover img{
    filter:grayscale(0);
    opacity:1;
    transform:translateY(-1px);
}

.logo-marquee{
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:var(--card);
    box-shadow:var(--shadow);
    overflow:hidden;
    padding:14px;
}
.logo-track{
    display:flex;
    align-items:center;
    gap:18px;
    width:max-content;
    animation:logoMarquee 26s linear infinite;
}
.logo-item{
    width:170px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(15,23,42,0.03);
    border:1px solid rgba(15,23,42,0.06);
}
.logo-item img{
    max-height:48px;
    max-width:140px;
    filter:grayscale(1);
    opacity:0.78;
}
.logo-marquee:hover .logo-track{
    animation-play-state: paused;
}
@keyframes logoMarquee{
    0%{transform:translateX(0);}
    100%{transform:translateX(-50%);}
}

.site-footer{
    position:relative;
    background:
        radial-gradient(900px 420px at 15% 0%, rgba(212,175,55,0.16) 0%, rgba(212,175,55,0.00) 60%),
        radial-gradient(900px 420px at 85% 20%, rgba(198,40,40,0.22) 0%, rgba(198,40,40,0.00) 60%),
        linear-gradient(135deg, #0B1F3A 0%, #071425 100%);
    border-top:1px solid rgba(255,255,255,0.10);
    overflow:hidden;
}
.site-footer::before{
    content:"";
    position:absolute;
    inset:-2px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size:56px 56px;
    opacity:0.22;
    pointer-events:none;
    mix-blend-mode:soft-light;
}
.site-footer .container{position:relative; z-index:1;}
.footer-title{letter-spacing:0.02em;}
.footer-desc{max-width: 34ch;}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.12);
}
.footer-link{
    color:rgba(255,255,255,0.72);
    text-decoration:none;
}
.footer-link:hover{
    color:#fff;
    text-decoration:underline;
}
.footer-social .social-btn{
    width:38px;
    height:38px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.12);
    text-decoration:none;
}
.footer-social .social-btn:hover{
    background:rgba(212,175,55,0.18);
    border-color:rgba(212,175,55,0.35);
    color:#fff;
}
.footer-social .social-btn svg{width:18px;height:18px;}

.admin-shell{
    background:#f4f6fb;
    min-height:100vh;
}
.admin-topbar{
    background:linear-gradient(135deg, #0B1F3A 0%, #12345e 100%);
    box-shadow:0 10px 30px rgba(2, 6, 23, 0.16);
}
.admin-brand-dot{
    width:12px;
    height:12px;
    border-radius:999px;
    background:var(--secondary);
    box-shadow:0 0 0 4px rgba(212,175,55,0.18);
    flex:0 0 auto;
}
.admin-sidebar{
    background:#ffffff;
    border-right:1px solid var(--border);
    min-height:calc(100vh - 56px);
}
@media (min-width: 992px){
    .admin-sidebar{
        position:sticky;
        top:56px;
        height:calc(100vh - 56px);
        overflow:auto;
    }
}
.admin-nav-section{
    font-size:0.72rem;
    font-weight:800;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:rgba(15,23,42,0.45);
    padding:8px 10px;
}
.admin-nav-link{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 10px;
    border-radius:12px;
    color:rgba(15,23,42,0.82);
    text-decoration:none;
    font-weight:700;
}
.admin-nav-link:hover{
    background:rgba(11,31,58,0.06);
    color:rgba(15,23,42,0.92);
}
.admin-nav-link.active{
    background:rgba(212,175,55,0.18);
    border:1px solid rgba(212,175,55,0.35);
    color:#0B1F3A;
}
.admin-nav-icon{
    width:34px;
    height:34px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(11,31,58,0.06);
    border:1px solid rgba(11,31,58,0.10);
    color:#0B1F3A;
    flex:0 0 auto;
}
.admin-nav-link.active .admin-nav-icon{
    background:#0B1F3A;
    border-color:#0B1F3A;
    color:#fff;
}
.admin-nav-icon svg{width:18px; height:18px;}
.admin-content{min-height:calc(100vh - 56px);}
.admin-pagekicker{
    font-size:0.75rem;
    font-weight:800;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:rgba(15,23,42,0.50);
}
.admin-login{
    min-height:calc(100vh - 2px);
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(900px 420px at 15% 0%, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0.00) 60%),
        radial-gradient(900px 420px at 85% 20%, rgba(198,40,40,0.18) 0%, rgba(198,40,40,0.00) 60%),
        linear-gradient(135deg, #0B1F3A 0%, #071425 100%);
}
.admin-login-card{
    border:1px solid rgba(255,255,255,0.10);
}

.floating-wa,.floating-call,.floating-quote{
    position:fixed;
    right:14px;
    z-index:1030;
    padding:10px 12px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 10px 30px rgba(0,0,0,0.18);
    font-size:0.92rem;
}
.floating-wa{bottom:14px; background:#25D366; color:#0b1f3a;}
.floating-call{bottom:60px; background:var(--primary); color:#fff;}
.floating-quote{bottom:106px; background:var(--secondary); color:#111;}
.floating-wa:hover,.floating-call:hover,.floating-quote:hover{opacity:0.92;}

@media (max-width: 576px){
    .floating-wa,.floating-call,.floating-quote{
        right:12px;
        padding:9px 10px;
        font-size:0.85rem;
    }
    .hero h1{font-size:2.1rem;}
}
