:root {
    --blue: #052b63;
    --blue2: #073f8f;
    --navy: #061f3f;
    --gold: #f7b625;
    --light: #f4f8ff;
    --border: #dbe7f5;
    --text: #12243d;
    --muted: #5f7189;
    --white: #fff;
    --shadow: 0 18px 50px rgba(8, 43, 93, .12)
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: "Causten";
    color: var(--text);
    background: #fff;
    line-height: 1.65
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.topbar {
    background: var(--navy);
    color: #fff;
    font-size: 12px
}

.topbar-wrap {
    display: flex;
    justify-content: space-between;
    padding: 7px 0
}

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 3px 20px rgba(0, 0, 0, .06)
}

.nav-wrap {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900
}

.brand small {
    display: block;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .04em
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 700
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--blue2)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 11px 18px;
    font-weight: 800;
    font-size: 13px;
    border: 1px solid transparent;
    cursor: pointer
}

.btn-primary {
    background: var(--blue2);
    color: #fff
}

.btn-outline {
    border-color: var(--blue);
    color: var(--blue);
    background: #fff
}


.btn-gold {
    background: #ea7424;
    color: #0b2442;
}



.menu-toggle {
    display: none
}

.hero {
    background: linear-gradient(90deg, rgba(5, 43, 99, .95), rgba(5, 43, 99, .70)), url('../images/home-hero.jpg') center/cover no-repeat;
    color: #fff;
    padding: 90px 0 70px
}

.hero-grid,
.split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 42px;
    align-items: center
}

.eyebrow {
    color: #ea7424;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .12em
}

.hero h1,
.page-hero h1 {
    font-size: 54px;
    line-height: 1.05;
    margin: 12px 0 20px
}

.hero p,
.page-hero p {
    font-size: 18px;
    color: #e6eef8
}

.hero-card,
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow);
    color: var(--text)
}

.search-box {
    display: flex;
    gap: 8px;
    margin: 18px 0
}

.search-box input,
.form-control {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 13px;
    background: #fff
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.pill {
    background: #eef5ff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 12px;
    font-weight: 700;
    font-size: 12px
}

.stats {
    margin-top: -34px;
    position: relative;
    z-index: 2
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.stat-card {
    text-align: center;
    padding: 24px;
    border-right: 1px solid var(--border)
}

.stat-card:last-child {
    border-right: 0
}

.stat-card h2 {
    margin: 0;
    color: var(--blue);
    font-size: 28px
}

.stat-card span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700
}

.section {
    padding: 82px 0
}

.bg-light {
    background: var(--light)
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 30px
}

.section h2 {
    font-size: 36px;
    line-height: 1.16;
    margin: 8px 0 14px;
    color: #071f3e
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.service-card,
.op-card,
.news-card,
.event-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(8, 43, 93, .08);
    transition: .25s
}

.service-card:hover,
.op-card:hover,
.news-card:hover,
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #eaf3ff;
    display: grid;
    place-items: center;
    margin-bottom: 16px
}

.icon img {
    width: 34px;
    height: 34px;
    object-fit: contain
}

.page-hero {
    background: linear-gradient(90deg, rgba(5, 43, 99, .94), rgba(5, 43, 99, .72)), url('../images/page-header.jpg') center/cover no-repeat;
    color: #fff;
    padding: 82px 0
}

.image-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 320px;
    background: #dcecff
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.mission-card {
    border-left: 6px solid var(--gold)
}

.price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow);
    position: relative
}

.price {
    font-size: 34px;
    font-weight: 900;
    color: var(--blue)
}

.price-card.featured {
    border: 2px solid #ea7424;
    transform: translateY(-8px)
}

.list {
    padding-left: 0;
    list-style: none
}

.list li {
    padding: 8px 0;
    border-bottom: 1px solid #edf2f8
}

.list li:before {
    content: '✓';
    color: var(--blue2);
    font-weight: 900;
    margin-right: 8px
}

.form-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow)
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.form-group label {
    font-weight: 800;
    font-size: 13px;
    display: block;
    margin-bottom: 7px
}

.full {
    grid-column: 1/-1
}

textarea.form-control {
    min-height: 110px
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.check-item {
    background: #f7fbff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    font-size: 13px
}

.alert {
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 18px
}

.alert-success {
    background: #e7f8ef;
    color: #0c6b35
}

.alert-error {
    background: #ffeaea;
    color: #8a1111
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px
}

.side-panel {
    background: var(--navy);
    color: #fff;
    border-radius: 20px;
    padding: 24px
}

.side-panel a {
    display: block;
    padding: 12px;
    border-radius: 8px;
    color: #dbe8fa
}

.side-panel a:hover {
    background: rgba(255, 255, 255, .1)
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden
}

th,
td {
    border-bottom: 1px solid var(--border);
    padding: 12px;
    text-align: left;
    font-size: 13px
}

th {
    background: #eef5ff;
    color: var(--blue)
}

.cta {
    background: #071f3e;
    color: #fff;
    border-radius: 22px;
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.cta h2 {
    color: #fff
}

.footer {
    background: #071f3e;
    color: #d8e6f8;
    padding: 58px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px
}

.footer a {
    display: block;
    color: #d8e6f8;
    margin: 8px 0;
    font-size: 14px
}

.copyright {
    border-top: 1px solid #244464;
    margin-top: 28px;
    padding-top: 18px;
    font-size: 12px;
    color: #a8b9cc
}

@media(max-width:900px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: var(--shadow)
    }

    .nav-menu.show {
        display: flex
    }

    .menu-toggle {
        display: block
    }

    .hero-grid,
    .split,
    .grid-2,
    .dashboard-grid {
   grid-template-columns: 1fr
    }

    .grid-3,
    .grid-4,
    .stats-grid,
    .form-grid,
    .checkbox-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero h1,
    .page-hero h1 {
        font-size: 36px
    }

    .section-head,
    .cta {
        display: block
    }

    .stat-card {
        border-right: 0;
        border-bottom: 1px solid var(--border)
    }
}