﻿
    :root{
    
    --accent:#dea92e;
    --ink:#0f172a;
    --muted:#64748b;
    --shadow:0 18px 40px rgba(2,6,23,.12);
    --shadow2:0 14px 30px rgba(2,6,23,.18);
    --radius:18px;
    }

    /* Hide homepage carousel if shared layout injects it */
    #carouselExample{display:none !important; }

    .section-pad{padding: 36px 0 70px; }
    @media (max-width:768px){ .section - pad{padding: 26px 0 54px; } }

    /* Hero */
    .page-hero{
        position:relative;
    overflow:hidden;
    border-radius:22px;
    padding:52px 18px;
    color:#fff;
    background: linear-gradient(135deg, rgba(2,6,23,.88), rgba(13,110,253,.25)),
    url('/img/welcome.png') center/cover no-repeat;
    box-shadow:var(--shadow);
    border:1px solid rgba(255,255,255,.10);
    margin-bottom: 22px;
    }
    .page-hero:after{
        content:"";
    position:absolute; inset:-80px;
    background: radial-gradient(circle at 25% 25%, rgba(222,169,46,.28), transparent 55%),
    radial-gradient(circle at 70% 45%, rgba(13,110,253,.25), transparent 60%);
    filter: blur(18px);
    animation: floatGlow 10s ease-in-out infinite alternate;
    pointer-events:none;
    }
    @keyframes floatGlow{from{transform: translateY(-10px);} to{transform: translateY(10px);} }
    .page-hero .inner{position:relative; z-index:2; max-width: 980px; margin: 0 auto; text-align:center; }

    .hero-badge{
        display:inline-flex; align-items:center; gap:10px;
    padding:10px 14px; border-radius:999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    font-size:.95rem;
    }

    /* Cards */
    .card-modern{
        border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background:#fff;
    overflow:hidden;
    }

    .icon-bubble{
        width: 46px; height: 46px;
    border-radius: 14px;
    display:grid; place-items:center;
    background: rgba(13,110,253,.10);
    border: 1px solid rgba(13,110,253,.14);
    color: var(--brand);
    flex: 0 0 auto;
    }

    /* Map */
    .map-wrap{
        border - radius: 18px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.08);
    box-shadow: var(--shadow);
    }

    /* Info tiles */
    .info-tile{
        border - radius: 16px;
    padding: 16px;
    background: rgba(13,110,253,.06);
    border: 1px solid rgba(13,110,253,.10);
    height:100%;
    }

    /* Reveal */
    .reveal{opacity:0; transform: translateY(10px); transition: all .55s ease; }
    .reveal.on{opacity:1; transform: translateY(0); }
