body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: #f5f6f8;
    color: #1f2937;
}

a {
    text-decoration: none;
}

.public-hero {
    position: relative;
    min-height: 360px;
    color: #fff;
    overflow: hidden;
}

.public-hero-tall {
    min-height: 500px;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    opacity: .9;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.58), rgba(0,46,132,.72));
    z-index: 1;
}

.hero-content-layer {
    position: relative;
    z-index: 2;
}

.overlay-top {
    background-color: rgba(0,0,0,.38);
    padding: 14px 0;
    font-weight: 700;
}

.top-icon {
    color: red;
    margin-right: 6px;
}

.navbar-public {
    padding: 0 30px 10px;
}

.navbar-public .navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-public.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
}

.navbar-public.navbar-dark .navbar-nav .nav-link:hover,
.navbar-public.navbar-dark .navbar-nav .nav-link.active {
    color: #ff4c4c;
}

.public-hero-content {
    padding: 48px 0 58px;
}

.public-hero-content-right {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

.public-hero h1 {
    color: #fff;
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: .95;
    margin-bottom: .65rem;
    text-transform: uppercase;
}

.public-hero p {
    color: rgba(255,255,255,.9);
    max-width: 700px;
    margin: 0;
    font-size: 1.05rem;
}

.public-hero-content-right p {
    font-size: clamp(1.35rem, 3vw, 2.8rem);
    font-weight: 400;
    max-width: none;
}

.accent-red {
    color: red;
}

.public-service-bar {
    background: #032c84;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 0;
}

.public-section {
    padding: 54px 0;
}

.public-section h2,
.public-section h3 {
    color: #032c84;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
}

.public-section h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.public-card {
    background: #fff;
    border: 1px solid #e1e6ee;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(3,44,132,.08);
    height: 100%;
    overflow: hidden;
}

.public-card-body {
    padding: 1.25rem;
}

.public-card h3,
.public-card h4,
.public-card h5 {
    color: #032c84;
    font-weight: 800;
}

.btn-public-primary {
    background: #032c84;
    color: #fff !important;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    padding: .72rem 1.15rem;
}

.btn-public-primary:hover {
    background: #021f5e;
}

.btn-public-outline {
    color: #032c84 !important;
    border: 2px solid #032c84;
    border-radius: 999px;
    font-weight: 700;
    padding: .66rem 1.1rem;
    background: #fff;
}

.btn-public-light {
    background: rgba(255,255,255,.94);
    color: #032c84 !important;
    border: 2px solid rgba(255,255,255,.94);
    border-radius: 999px;
    font-weight: 800;
    padding: .66rem 1.1rem;
}

.btn-public-light:hover {
    background: #fff;
    color: #021f5e !important;
}

.form-label {
    color: #032c84;
    font-weight: 700;
}

.form-select,
.form-control {
    min-height: 46px;
    border-radius: 10px;
    border-color: #cfd8e3;
}

textarea.form-control {
    min-height: 120px;
    resize: none;
}

.public-form-shell {
    background: #fff;
    border: 1px solid #e1e6ee;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(3,44,132,.1);
    padding: 1.4rem;
}

.form-section-title {
    color: #032c84;
    font-weight: 800;
    border-bottom: 2px solid #d4a017;
    padding-bottom: .45rem;
    margin: 1.35rem 0 1rem;
}

.public-footer {
    background: #111827;
    color: rgba(255,255,255,.72);
    padding: 24px 0;
    margin-top: 48px;
}

.public-footer a {
    color: #fff;
}

.product-tile-public {
    display: block;
    position: relative;
    min-height: 190px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

.product-tile-public::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.58);
    transition: background-color .25s ease;
}

.product-tile-public:hover::before {
    background: rgba(0,46,132,.52);
}

.product-tile-public span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.public-map {
    min-height: 350px;
    width: 100%;
    border: 0;
    border-radius: 16px;
}

.call-btn {
    margin-top: 30px;
    width: 200px;
}

@media (max-width: 768px) {
    .bg-video {
        object-fit: contain;
        background-color: #000;
    }

    .overlay-top .container-fluid {
        gap: .5rem;
        flex-direction: column;
        text-align: center;
    }

    .navbar-public {
        padding-left: 16px;
        padding-right: 16px;
    }

    .public-hero-content,
    .public-hero-content-right {
        text-align: center;
        justify-content: center;
        padding: 36px 0 48px;
    }

    .call-btn {
        width: 180px;
    }
}
