:root {
    /* Logo palette: navy shield, cyan wings/text, red wings */
    --mw-navy: #0B2C6B;
    --mw-navy-deep: #061A45;
    --mw-blue: #00AEEF;
    --mw-blue-dark: #0095D0;
    --mw-red: #ED1C24;
    --mw-red-dark: #C41219;
    --mw-black: #1A1A1A;
    --mw-grey: #F3F7FB;
    --mw-text: #1A1A1A;
    --mw-muted: #5A6472;
    --mw-white: #ffffff;
    --mw-shadow: 0 12px 40px rgba(11, 44, 107, 0.12);
    --mw-radius: 18px;
    /* aliases kept for older class names */
    --mw-teal: #ED1C24;
    --mw-teal-light: #ED1C24;
}

* { box-sizing: border-box; }

body {
    font-family: 'Sora', system-ui, sans-serif;
    color: var(--mw-text);
    background: var(--mw-white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
.display-font {
    font-family: 'Epilogue', system-ui, sans-serif;
    color: var(--mw-navy);
    font-weight: 700;
}

a { color: var(--mw-blue); text-decoration: none; transition: .25s ease; }
a:hover { color: var(--mw-red); }

.bg-navy { background: var(--mw-navy) !important; }
.bg-blue { background: var(--mw-blue) !important; }
.bg-teal { background: var(--mw-red) !important; }
.bg-soft {
    background:
        radial-gradient(circle at top right, rgba(0, 174, 239, 0.18), transparent 40%),
        radial-gradient(circle at bottom left, rgba(237, 28, 36, 0.12), transparent 35%),
        linear-gradient(180deg, #f7fbff 0%, #EEF7FC 100%);
}
.text-navy { color: var(--mw-navy) !important; }
.text-blue { color: var(--mw-blue) !important; }
.text-red { color: var(--mw-red) !important; }
.text-teal { color: var(--mw-red) !important; }
.text-muted-mw { color: var(--mw-muted) !important; }
.bg-red { background: var(--mw-red) !important; }

.topbar {
    background: linear-gradient(90deg, var(--mw-navy-deep), var(--mw-navy) 55%, #083A7A);
    color: #fff;
    font-size: .9rem;
    padding: .55rem 0;
}
.topbar a { color: #fff; opacity: .92; }
.topbar a:hover { opacity: 1; color: #fff; }
.topbar .social a {
    width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.25); border-radius: 50%; margin-left: .35rem;
}

.navbar-mw {
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(11, 44, 107,.06);
    padding: .7rem 0;
}
.navbar-mw .navbar-brand img { height: 58px; width: auto; }
.navbar-mw .nav-link {
    color: var(--mw-navy) !important;
    font-weight: 600;
    font-size: .95rem;
    padding: .55rem 1rem !important;
    position: relative;
}
.navbar-mw .nav-link:hover,
.navbar-mw .nav-link.active { color: var(--mw-blue) !important; }
.navbar-mw .dropdown-menu {
    border: 0; border-radius: 14px; box-shadow: var(--mw-shadow); padding: .6rem;
}
.navbar-mw .dropdown-item {
    border-radius: 10px; font-weight: 500; padding: .55rem .85rem; color: var(--mw-navy);
}
.navbar-mw .dropdown-item:hover { background: rgba(0, 174, 239,.1); color: var(--mw-blue); }

.btn-mw {
    background: linear-gradient(135deg, var(--mw-blue), var(--mw-blue-dark));
    color: #fff !important;
    border: 0;
    border-radius: 999px;
    padding: .75rem 1.6rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 174, 239,.35);
}
.btn-mw:hover { transform: translateY(-2px); color: #fff !important; filter: brightness(1.05); }
.btn-mw-outline {
    border: 2px solid var(--mw-blue);
    color: var(--mw-blue) !important;
    border-radius: 999px;
    padding: .7rem 1.5rem;
    font-weight: 700;
    background: transparent;
}
.btn-mw-outline:hover { background: var(--mw-blue); color: #fff !important; }
.btn-mw-dark {
    background: linear-gradient(135deg, var(--mw-navy), var(--mw-navy-deep));
    color: #fff !important;
    border: 0;
    border-radius: 999px;
    padding: .75rem 1.6rem;
    font-weight: 700;
}
.btn-mw-red {
    background: linear-gradient(135deg, var(--mw-red), var(--mw-red-dark));
    color: #fff !important;
    border: 0;
    border-radius: 999px;
    padding: .75rem 1.6rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(237, 28, 36, .35);
}
.btn-mw-red:hover { transform: translateY(-2px); color: #fff !important; filter: brightness(1.05); }

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(6,26,69,.94) 0%, rgba(11,44,107,.88) 45%, rgba(0,174,239,.72) 100%),
        url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
}
.hero::before {
    content: '';
    position: absolute;
    inset: auto -10% -30% auto;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    left: -80px; bottom: -80px;
    width: 280px; height: 280px;
    border: 30px solid rgba(0, 174, 239,.2);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero .eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: .4rem 1rem;
    font-size: .85rem;
    font-weight: 600;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hero h1 span { color: #7FD9F7; }
.hero p { color: rgba(255,255,255,.88); font-size: 1.08rem; max-width: 560px; }
.hero-stats {
    display: flex; flex-wrap: wrap; gap: .5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.hero-stats .stat {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    padding: .9rem 1.2rem;
    min-width: 140px;
    backdrop-filter: blur(8px);
}
.hero-stats .stat strong {
    display: block; font-size: 1.5rem; color: #fff;
}
.hero-stats .stat span { font-size: .82rem; opacity: .85; }

.section { padding: 5rem 0; }
.section-title {
    margin-bottom: 2.5rem;
}
.section-title .label {
    color: var(--mw-blue);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .8rem;
}
.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: .4rem 0 .8rem;
}
.section-title p { color: var(--mw-muted); max-width: 620px; margin: 0 auto; }

.country-card, .college-card, .feature-card, .expert-card, .testimonial-card {
    background: #fff;
    border: 1px solid rgba(11, 44, 107,.06);
    border-radius: var(--mw-radius);
    box-shadow: var(--mw-shadow);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}
.row > [class*="col-"] > .country-card,
.row > [class*="col-"] > .college-card,
.row > [class*="col-"] > .feature-card,
.row > [class*="col-"] > .expert-card,
.row > [class*="col-"] > .testimonial-card,
.row > [class*="col-"] > a > .country-card {
    height: 100%;
}
.country-card:hover, .college-card:hover, .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(11, 44, 107,.16);
}
.country-card .card-top {
    height: 150px;
    background: linear-gradient(135deg, var(--mw-navy), var(--mw-blue));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 2.4rem; font-weight: 800;
}
.country-card .card-body,
.college-card .card-body,
.feature-card,
.expert-card,
.testimonial-card {
    padding: 1.4rem;
}
.country-card h3, .college-card h3 { font-size: 1.2rem; margin-bottom: .5rem; color: var(--mw-navy); }
.fee-pill {
    display: inline-block;
    background: rgba(0, 174, 239,.12);
    color: var(--mw-blue-dark);
    border-radius: 999px;
    padding: .35rem .8rem;
    font-weight: 700;
    font-size: .85rem;
}

.college-card .thumb {
    height: 180px;
    background: linear-gradient(135deg, #0B2C6B, #00AEEF);
    display: flex; align-items: end;
    padding: 1rem;
    color: #fff;
    font-weight: 700;
}
.feature-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(0,174,239,.15), rgba(237,28,36,.12));
    color: var(--mw-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--mw-red);
}

.about-banner {
    background: linear-gradient(120deg, rgba(6,26,69,.92), rgba(0,174,239,.78)),
        url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?auto=format&fit=crop&w=1400&q=80') center/cover;
    color: #fff;
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.about-banner h2, .about-banner p { color: #fff; }

.cta-band {
    background: linear-gradient(110deg, var(--mw-navy-deep) 0%, var(--mw-navy) 40%, var(--mw-blue) 100%);
    color: #fff;
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band::before {
    content: '';
    position: absolute;
    right: -40px; top: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.cta-band::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--mw-blue), var(--mw-red));
}

.page-hero {
    background: linear-gradient(120deg, var(--mw-navy-deep), var(--mw-navy) 50%, #0A4A8A);
    color: #fff;
    padding: 4.5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--mw-blue) 0%, var(--mw-blue) 55%, var(--mw-red) 100%);
}
.page-hero h1 {
    color: #fff;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.page-hero p { color: rgba(255,255,255,.85); margin: 0; }

.detail-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}
.detail-hero-tags span {
    display: inline-block;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    border-radius: 999px;
    padding: .35rem .85rem;
    font-size: .82rem;
    font-weight: 600;
}

.detail-page {
    background: #f7fbff;
}
.detail-panel {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 10px 30px rgba(11,44,107,.06);
    border: 1px solid rgba(11,44,107,.06);
}
.detail-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--mw-navy);
}
.detail-lead {
    font-weight: 600;
    color: var(--mw-navy);
    margin-bottom: 1rem;
}
.detail-text {
    color: var(--mw-muted);
    line-height: 1.85;
    word-break: break-word;
}
.detail-sidebar {
    background: #fff;
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 10px 30px rgba(11,44,107,.06);
    border: 1px solid rgba(11,44,107,.06);
    position: sticky;
    top: 100px;
}
.detail-sidebar h5 {
    margin-bottom: 1rem;
    color: var(--mw-navy);
}
.detail-facts {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}
.detail-facts li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .7rem 0;
    border-bottom: 1px dashed rgba(11,44,107,.12);
}
.detail-facts li:last-child { border-bottom: 0; }
.detail-facts span {
    color: var(--mw-muted);
    flex-shrink: 0;
}
.detail-facts strong {
    text-align: right;
    color: var(--mw-navy);
    word-break: break-word;
}
.detail-table-wrap {
    border-radius: 12px;
    border: 1px solid rgba(11,44,107,.08);
}
.detail-college-link {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(11,44,107,.08);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(11,44,107,.05);
    transition: transform .25s ease, box-shadow .25s ease;
}
.detail-college-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11,44,107,.1);
}
.detail-college-link--row {
    display: flex;
    width: 100%;
    height: auto;
    align-items: stretch;
    transform: none;
}
.detail-college-link--row:hover {
    transform: translateY(-2px);
}
.detail-college-link--row .detail-college-thumb {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}
.detail-college-link--row .detail-college-body {
    flex: 1;
    min-width: 0;
}
.detail-college-link--row .detail-college-body p {
    min-height: 0;
    margin-bottom: 0;
}
.detail-college-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
}
.detail-college-link--row .detail-college-meta {
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    text-align: right;
}
.detail-college-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    width: 100%;
}
.detail-colleges-full {
    width: 100%;
}
@media (max-width: 767px) {
    .detail-college-link--row {
        flex-direction: column;
    }
    .detail-college-link--row .detail-college-thumb {
        flex: none;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }
    .detail-college-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .detail-college-link--row .detail-college-meta {
        align-items: flex-start;
        text-align: left;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin-top: .75rem;
    }
}
.detail-college-thumb {
    background: linear-gradient(135deg, var(--mw-navy), var(--mw-blue));
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    padding: .85rem 1rem;
}
.detail-college-body { padding: 1rem; }
.detail-college-body h4 {
    font-size: 1rem;
    margin-bottom: .4rem;
    color: var(--mw-navy);
}
.detail-college-body p {
    color: var(--mw-muted);
    font-size: .9rem;
    margin-bottom: .75rem;
    min-height: 2.7em;
}
.detail-college-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
}
.detail-college-meta span {
    color: var(--mw-blue-dark);
    font-weight: 700;
    font-size: .85rem;
}
.detail-college-meta em {
    font-style: normal;
    color: var(--mw-red);
    font-weight: 700;
    font-size: .85rem;
}
.detail-related {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    background: #f7fbff;
    border: 1px solid rgba(11,44,107,.08);
    border-radius: 12px;
    padding: 1rem;
    text-decoration: none;
    height: 100%;
}
.detail-related strong { color: var(--mw-navy); }
.detail-related span { color: var(--mw-blue-dark); font-weight: 700; font-size: .9rem; }
.detail-related-news {
    padding-bottom: .85rem;
    margin-bottom: .85rem;
}
.detail-related-news.has-border {
    border-bottom: 1px solid rgba(11,44,107,.1);
}
.detail-related-news a {
    color: var(--mw-navy);
    font-weight: 700;
    text-decoration: none;
}
.detail-related-news a:hover { color: var(--mw-blue); }

@media (max-width: 991px) {
    .detail-sidebar { position: static; }
}

.breadcrumb-mw { --bs-breadcrumb-divider-color: rgba(255,255,255,.5); }
.breadcrumb-mw .breadcrumb-item, .breadcrumb-mw a { color: rgba(255,255,255,.8); }
.breadcrumb-mw .breadcrumb-item.active { color: #fff; }

.fee-table thead { background: var(--mw-navy); color: #fff; }
.fee-table th, .fee-table td { padding: .9rem 1rem; vertical-align: middle; }
.fee-table tbody tr:hover { background: rgba(0, 174, 239,.06); }

.contact-card {
    background: #fff;
    border-radius: var(--mw-radius);
    box-shadow: var(--mw-shadow);
    padding: 1.5rem;
}
.form-mw .form-control, .form-mw .form-select {
    border-radius: 12px;
    border: 1px solid rgba(11, 44, 107,.12);
    padding: .8rem 1rem;
    width: 100%;
}
.form-mw .form-control:focus, .form-mw .form-select:focus {
    border-color: var(--mw-blue);
    box-shadow: 0 0 0 .25rem rgba(0, 174, 239,.15);
}

.footer-mw {
    background: linear-gradient(180deg, var(--mw-navy-deep), var(--mw-navy));
    color: rgba(255,255,255,.8);
    padding-top: 4rem;
}
.footer-mw h5 { color: #fff; margin-bottom: 1.2rem; }
.footer-mw a { color: rgba(255,255,255,.75); }
.footer-mw a:hover { color: var(--mw-blue); }
.footer-mw .logo-light img { height: 64px; margin-bottom: 1rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 2.5rem;
    padding: 1.2rem 0;
    font-size: .9rem;
}

.expert-avatar {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mw-navy), var(--mw-blue));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; font-weight: 800;
    margin: 0 auto 1rem;
    box-shadow: inset 0 -3px 0 var(--mw-red);
}
.testimonial-card .quote {
    color: var(--mw-blue);
    font-size: 1.8rem;
    line-height: 1;
}

/* Admin */
.admin-sidebar {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--mw-navy-deep), var(--mw-navy));
    color: #fff;
    padding: 1.5rem 1rem;
}
.admin-sidebar .brand img { height: 48px; }
.admin-sidebar .nav-link {
    color: rgba(255,255,255,.75);
    border-radius: 12px;
    padding: .7rem 1rem;
    margin-bottom: .25rem;
    font-weight: 500;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(0, 174, 239,.18);
    color: #fff;
}
.admin-top {
    background: #fff;
    border-bottom: 1px solid rgba(11, 44, 107,.08);
    padding: 1rem 1.5rem;
}
.admin-filters {
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 24px rgba(11,44,107,.05);
    border: 1px solid rgba(11,44,107,.06);
}
.admin-filters .form-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--mw-navy);
}
.stat-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--mw-shadow);
    padding: 1.25rem;
}
.stat-box .num { font-size: 1.8rem; font-weight: 800; color: var(--mw-navy); }
.table-admin thead { background: var(--mw-grey); }
.badge-new { background: var(--mw-blue); }
.badge-active { background: var(--mw-blue); }
.badge-new { background: var(--mw-red); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.hero-panel {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2rem;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    animation: float 9s ease-in-out infinite;
}
.hero-panel h3 { color: #fff; margin-bottom: 1rem; }
.hero-panel-badge {
    display: inline-block;
    background: rgba(0, 174, 239,.25);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: .35rem .85rem;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-panel li { margin-bottom: .55rem; opacity: .95; }

.trust-strip {
    background: #fff;
    border-bottom: 1px solid rgba(11, 44, 107,.06);
    padding: 1.25rem 0;
    margin-top: -1px;
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    font-weight: 600;
    color: var(--mw-navy);
}
.trust-item i {
    width: 38px; height: 38px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(0,174,239,.15), rgba(11,44,107,.1));
    color: var(--mw-blue);
}

.process-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.4rem 1.1rem;
    height: 100%;
    border: 1px solid rgba(11, 44, 107,.06);
    box-shadow: var(--mw-shadow);
}
.process-no {
    font-family: 'Epilogue', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--mw-blue);
    margin-bottom: .5rem;
}

.news-card {
    background: #fff;
    border-radius: var(--mw-radius);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--mw-shadow);
    border: 1px solid rgba(11, 44, 107,.06);
    transition: transform .3s ease;
}
.news-card:hover { transform: translateY(-6px); }
.news-thumb {
    height: 150px;
    background: linear-gradient(135deg, var(--mw-navy), var(--mw-blue));
    position: relative;
}
.news-cat {
    position: absolute;
    left: 1rem; bottom: 1rem;
    background: rgba(255,255,255,.92);
    color: var(--mw-navy);
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem .7rem;
    border-radius: 999px;
}
.news-body { padding: 1.25rem 1.4rem 1.5rem; }
.news-body h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.news-article .lead { font-weight: 600; }
.article-content { font-size: 1.02rem; line-height: 1.85; }

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 12px 30px rgba(37,211,102,.4);
    z-index: 1040;
    transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff !important; }

.country-chip {
    display: inline-block;
    background: rgba(0, 174, 239,.1);
    color: var(--mw-navy);
    border: 1px solid rgba(0, 174, 239,.2);
    border-radius: 999px;
    padding: .35rem .85rem;
    font-size: .82rem;
    font-weight: 600;
}
.country-chip:hover { background: var(--mw-blue); color: #fff; border-color: var(--mw-blue); }

.country-accordion .accordion-item {
    border: 1px solid rgba(11, 44, 107,.08);
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: .75rem;
    box-shadow: 0 6px 20px rgba(11, 44, 107,.05);
}
.country-accordion .accordion-button {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    color: var(--mw-navy);
    background: #fff;
    box-shadow: none;
}
.country-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(0, 174, 239,.08), rgba(237, 28, 36,.06));
    color: var(--mw-navy);
    box-shadow: none;
}
.country-accordion .accordion-body { line-height: 1.8; }

.country-facts li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px dashed rgba(11, 44, 107,.1);
}
.country-facts li span { color: var(--mw-muted); }
.country-facts li strong { text-align: right; color: var(--mw-navy); }
.sticky-side { position: sticky; top: 100px; }

.contact-page {
    background:
        radial-gradient(circle at top left, rgba(0,174,239,.08), transparent 40%),
        radial-gradient(circle at bottom right, rgba(237,28,36,.05), transparent 35%),
        #f7fbff;
}
.contact-side {
    background: #fff;
    border-radius: 22px;
    padding: 1.25rem 1.4rem 1.4rem;
    box-shadow: var(--mw-shadow);
    border: 1px solid rgba(11,44,107,.06);
}
.contact-side-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(11,44,107,.12);
}
.contact-side-item:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-side-item h5 {
    margin: 0 0 .25rem;
    font-size: 1rem;
    color: var(--mw-navy);
}
.contact-side-item p,
.contact-side-item a {
    margin: 0;
    color: var(--mw-muted);
    font-size: .92rem;
    word-break: break-word;
}
.contact-side-item a:hover { color: var(--mw-blue); }
.contact-side-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,174,239,.15), rgba(11,44,107,.08));
    color: var(--mw-blue);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.contact-privacy {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    margin-top: 1.15rem;
    padding: 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(11,44,107,.05), rgba(0,174,239,.08));
}
.contact-privacy i {
    color: var(--mw-red);
    font-size: 1.2rem;
    margin-top: .15rem;
    flex-shrink: 0;
}
.contact-privacy strong {
    display: block;
    color: var(--mw-navy);
    margin-bottom: .25rem;
}
.contact-privacy p {
    color: var(--mw-muted);
    font-size: .86rem;
    line-height: 1.5;
}
.contact-form-panel {
    background: #fff;
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: var(--mw-shadow);
    border: 1px solid rgba(11,44,107,.06);
    position: relative;
    overflow: hidden;
}
.contact-form-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--mw-blue), var(--mw-red));
}
.contact-form-panel form { position: relative; }

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ===== Custom signature sections ===== */
.mw-why { background: linear-gradient(180deg, #f4f9fd 0%, #fff 55%, #fff 100%); overflow: hidden; }
.mw-why-visual { position: relative; min-height: 420px; }
.mw-why-orb {
    position: absolute; border-radius: 50%; filter: blur(2px);
    animation: float 7s ease-in-out infinite;
}
.mw-why-orb--blue {
    width: 220px; height: 220px; left: -30px; top: 20px;
    background: radial-gradient(circle, rgba(0,174,239,.45), transparent 70%);
}
.mw-why-orb--red {
    width: 160px; height: 160px; right: 10px; bottom: 40px;
    background: radial-gradient(circle, rgba(237,28,36,.35), transparent 70%);
    animation-delay: 1.2s;
}
.mw-why-panel {
    position: relative; z-index: 2;
    background: linear-gradient(145deg, var(--mw-navy-deep), var(--mw-navy) 60%, #0A4A8A);
    color: #fff; border-radius: 28px; padding: 2.4rem;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
    box-shadow: 0 24px 60px rgba(11,44,107,.28);
}
.mw-why-panel h2, .mw-why-panel p { color: #fff; }
.mw-why-kicker {
    display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: #7FD9F7; margin-bottom: .8rem;
}

.mw-rail { display: grid; gap: 0; position: relative; }
.mw-rail::before {
    content: ''; position: absolute; left: 22px; top: 10px; bottom: 10px; width: 2px;
    background: linear-gradient(180deg, var(--mw-blue), var(--mw-red));
}
.mw-rail-item {
    display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: start;
    padding: 1.1rem 0 1.1rem .2rem; position: relative;
}
.mw-rail-item h4 { margin: 0 0 .35rem; font-size: 1.1rem; }
.mw-rail-item p { margin: 0; color: var(--mw-muted); }
.mw-rail-mark {
    width: 44px; height: 44px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--mw-navy); color: #fff; font-weight: 800; font-size: .85rem;
    box-shadow: 0 8px 20px rgba(11,44,107,.2); z-index: 1;
}
.mw-rail-mark--red { background: var(--mw-red); box-shadow: 0 8px 20px rgba(237,28,36,.25); }

.mw-dest {
    display: block; height: 100%;
    background: #fff; border-radius: 22px; overflow: hidden;
    border: 1px solid rgba(11,44,107,.08);
    box-shadow: 0 16px 40px rgba(11,44,107,.08);
    transition: transform .35s ease, box-shadow .35s ease;
}
.mw-dest:hover { transform: translateY(-10px) rotate(-.4deg); box-shadow: 0 28px 55px rgba(11,44,107,.16); }
.mw-dest-media {
    height: 140px; position: relative;
    background: linear-gradient(135deg, var(--mw-navy-deep), var(--mw-navy) 55%, var(--mw-blue));
    overflow: hidden;
}
.mw-dest-code {
    position: absolute; left: 1.2rem; bottom: 1rem;
    font-family: 'Epilogue', sans-serif; font-size: 3rem; font-weight: 800;
    color: rgba(255,255,255,.9); line-height: 1; letter-spacing: -.04em;
}
.mw-dest-wing {
    position: absolute; right: -20px; top: 20px;
    width: 120px; height: 70px;
    background: linear-gradient(135deg, transparent 40%, rgba(0,174,239,.55) 40%, rgba(0,174,239,.55) 70%, rgba(237,28,36,.7) 70%);
    transform: skewX(-18deg); border-radius: 8px;
    animation: float 6s ease-in-out infinite;
}
.mw-dest-body { padding: 1.35rem 1.4rem 1.5rem; }
.mw-dest-body h3 { font-size: 1.2rem; margin-bottom: .45rem; color: var(--mw-navy); }
.mw-dest-body p { color: var(--mw-muted); margin-bottom: 1rem; min-height: 3.2em; }
.mw-dest-meta {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px dashed rgba(11,44,107,.12); padding-top: .85rem;
}
.mw-dest-meta span {
    background: rgba(0,174,239,.1); color: var(--mw-blue-dark);
    font-weight: 700; font-size: .8rem; padding: .3rem .7rem; border-radius: 999px;
}
.mw-dest-meta em { font-style: normal; color: var(--mw-red); font-weight: 700; }

/* Journey timeline */
.process-section { background: #fff; position: relative; }
.process-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0,174,239,.07), transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(237,28,36,.06), transparent 30%);
    pointer-events: none;
}
.mw-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding-top: 1rem;
}
.mw-journey-line {
    position: absolute;
    top: 42px; left: 8%; right: 8%; height: 3px;
    background: linear-gradient(90deg, var(--mw-blue), var(--mw-navy) 50%, var(--mw-red));
    border-radius: 999px; z-index: 0;
}
.mw-journey-step {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding-top: .2rem;
}
.mw-journey-step.is-offset { margin-top: 2.5rem; }
.mw-journey-node {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #fff; border: 3px solid var(--mw-blue); color: var(--mw-navy);
    font-size: 1.35rem; margin-bottom: 1rem;
    box-shadow: 0 10px 28px rgba(0,174,239,.25);
    transition: transform .3s ease;
}
.mw-journey-node.is-red {
    border-color: var(--mw-red); color: var(--mw-red);
    box-shadow: 0 10px 28px rgba(237,28,36,.22);
}
.mw-journey-step:hover .mw-journey-node { transform: scale(1.08) rotate(-4deg); }
.mw-journey-body {
    background: linear-gradient(180deg, #fff, #f7fbff);
    border: 1px solid rgba(11,44,107,.08);
    border-radius: 18px;
    padding: 1.1rem .9rem 1.25rem;
    box-shadow: 0 14px 34px rgba(11,44,107,.08);
    width: 100%;
}
.mw-journey-no {
    display: inline-block; font-family: 'Epilogue', sans-serif;
    font-weight: 800; font-size: .85rem; letter-spacing: .08em;
    color: var(--mw-blue); margin-bottom: .35rem;
}
.mw-journey-body h4 { font-size: 1.02rem; margin-bottom: .4rem; }
.mw-journey-body p { margin: 0; color: var(--mw-muted); font-size: .92rem; }

/* Experts showcase */
.mw-experts {
    background:
        linear-gradient(180deg, #eef6fc 0%, #f8fbfe 100%);
    position: relative; overflow: hidden;
}
.mw-experts::after {
    content: ''; position: absolute; right: -80px; top: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    border: 28px solid rgba(237,28,36,.08); pointer-events: none;
}
.mw-expert-track {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.mw-expert-tile {
    position: relative; background: #fff; border-radius: 24px;
    padding: 2rem 1.5rem 1.6rem; overflow: hidden;
    border: 1px solid rgba(11,44,107,.07);
    box-shadow: 0 18px 40px rgba(11,44,107,.08);
    transform: translateY(0); transition: transform .35s ease;
}
.mw-expert-tile:hover { transform: translateY(-8px); }
.mw-expert-tile.is-featured {
    background: linear-gradient(160deg, var(--mw-navy-deep), var(--mw-navy));
    color: #fff; border: 0;
}
.mw-expert-tile.is-featured h3,
.mw-expert-tile.is-featured .mw-expert-bio { color: #fff; }
.mw-expert-tile.is-featured .mw-expert-role { color: #7FD9F7; }
.mw-expert-tile.is-featured .mw-expert-bar {
    background: linear-gradient(90deg, var(--mw-blue), var(--mw-red));
}
.mw-expert-ribbon {
    position: absolute; top: 14px; right: -28px;
    background: var(--mw-red); color: #fff;
    font-weight: 800; font-size: .75rem; letter-spacing: .06em;
    padding: .35rem 2.4rem; transform: rotate(35deg);
}
.mw-expert-tile.is-featured .mw-expert-ribbon { background: var(--mw-blue); }
.mw-expert-mono {
    font-family: 'Epilogue', sans-serif; font-size: 3.2rem; font-weight: 800;
    line-height: 1; color: rgba(0,174,239,.25); margin-bottom: .6rem;
    letter-spacing: -.06em;
}
.mw-expert-tile.is-featured .mw-expert-mono { color: rgba(255,255,255,.18); }
.mw-expert-tile h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.mw-expert-role { font-weight: 600; color: var(--mw-blue); margin-bottom: .7rem; }
.mw-expert-bio { color: var(--mw-muted); margin-bottom: 1rem; }
.mw-expert-bar {
    height: 4px; width: 64px; border-radius: 999px;
    background: linear-gradient(90deg, var(--mw-navy), var(--mw-red));
}

/* Testimonials magazine layout */
.mw-stories { background: #fff; }
.mw-story-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 1.2rem;
}
.mw-story {
    margin: 0; background: #f7fbff; border-radius: 22px;
    padding: 1.6rem 1.5rem; position: relative;
    border: 1px solid rgba(11,44,107,.06);
}
.mw-story.is-lead {
    background: linear-gradient(155deg, var(--mw-navy-deep) 0%, var(--mw-navy) 70%, #0A4A8A);
    color: #fff; min-height: 100%;
    display: flex; flex-direction: column; justify-content: space-between;
}
.mw-story.is-lead p, .mw-story.is-lead strong { color: #fff; }
.mw-story.is-lead footer span { color: rgba(255,255,255,.7); }
.mw-story-mark {
    font-family: Georgia, serif; font-size: 4rem; line-height: .6;
    color: var(--mw-red); margin-bottom: .6rem;
}
.mw-story.is-lead .mw-story-mark { color: var(--mw-blue); }
.mw-story-stars { color: #F2A227; font-size: .85rem; margin-bottom: .7rem; }
.mw-story p { color: var(--mw-muted); margin-bottom: 1.2rem; }
.mw-story footer { display: flex; flex-direction: column; gap: .15rem; }
.mw-story footer strong { color: var(--mw-navy); }
.mw-story footer span { color: var(--mw-muted); font-size: .85rem; }

@media (max-width: 991px) {
    .hero { min-height: auto; padding: 5rem 0 4rem; }
    .navbar-mw .navbar-brand img { height: 48px; }
    .about-banner, .cta-band { padding: 2rem; }
    .trust-item { justify-content: flex-start; font-size: .9rem; }
    .mw-journey { grid-template-columns: 1fr; gap: 1.5rem; }
    .mw-journey-line { display: none; }
    .mw-journey-step.is-offset { margin-top: 0; }
    .mw-journey-step { flex-direction: row; text-align: left; gap: 1rem; align-items: flex-start; }
    .mw-journey-node { margin-bottom: 0; flex-shrink: 0; }
    .mw-expert-track { grid-template-columns: 1fr; }
    .mw-story-grid { grid-template-columns: 1fr; }
    .mw-why-visual { min-height: auto; }
}
