:root {
    --primary-navy: #061D3F;
    --dark-navy: #021B3A;
    --medical-blue: #0B5ED7;
    --medical-green: #009B8E;
    --green-accent: #14B8A6;
    --gold-accent: #F5B301;
    --light-blue: #EEF7FF;
    --light-section: #F6FAFF;
    --white: #FFFFFF;
    --dark-text: #102033;
    --muted-text: #5D6B7A;
    --border-color: #DCE8F5;
    --shadow-soft: 0 18px 45px rgba(6, 29, 63, 0.11);
    --shadow-card: 0 14px 34px rgba(6, 29, 63, 0.10);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
}

.narrow {
    width: min(100% - 32px, 840px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 24px rgba(6, 29, 63, 0.08);
}

.top-contact-bar {
    background: linear-gradient(90deg, var(--dark-navy), var(--primary-navy));
    color: var(--white);
    font-size: 0.82rem;
}

.top-contact-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
}

.top-contact-inner::-webkit-scrollbar {
    display: none;
}

.top-contact-left,
.top-contact-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-contact-bar a,
.top-contact-bar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    opacity: 0.96;
}

.top-contact-bar i {
    color: var(--gold-accent);
}

.top-contact-bar .bi-whatsapp {
    color: #25D366;
}

.main-navbar {
    background: var(--white);
}

.nav-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    color: var(--primary-navy);
    font-size: 1.18rem;
    font-weight: 800;
}

.brand-copy span {
    color: var(--medical-green);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-copy small {
    color: var(--dark-text);
    font-size: 0.74rem;
    margin-top: 3px;
}

.nav-actions-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    padding: 7px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 999px;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 12px;
    transform-origin: top;
    transform: scaleY(0.96);
    opacity: 0;
    pointer-events: none;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-menu.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2px;
}

.nav-list a,
.dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--primary-navy);
    font-size: 0.95rem;
    font-weight: 600;
    background: transparent;
    border: 0;
    border-radius: 6px;
    padding: 12px 10px;
    cursor: pointer;
    text-align: left;
}

.nav-list a:hover,
.dropdown-toggle:hover,
.nav-list a.active,
.dropdown-toggle.active {
    background: var(--light-blue);
    color: var(--medical-green);
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background: #fbfdff;
    border-radius: 6px;
}

.nav-dropdown.is-open .dropdown-menu {
    display: grid;
}

.dropdown-menu a {
    padding-left: 22px;
    font-size: 0.9rem;
}

.nav-apply-desktop {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    padding: 12px 22px;
    font-weight: 700;
    line-height: 1.1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-green {
    background: linear-gradient(135deg, var(--medical-green), var(--green-accent));
    color: var(--white);
    box-shadow: 0 12px 28px rgba(0, 155, 142, 0.24);
}

.btn-navy {
    background: var(--primary-navy);
    color: var(--white);
    box-shadow: 0 14px 32px rgba(6, 29, 63, 0.24);
}

.btn-outline {
    color: var(--primary-navy);
    background: var(--white);
    border-color: var(--primary-navy);
}

.btn-outline:hover {
    color: var(--white);
    background: var(--primary-navy);
}

.btn-light {
    color: var(--primary-navy);
    background: var(--white);
}

.btn-block {
    width: 100%;
}

.btn-apply {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, #f9fdff 0%, var(--light-blue) 63%, #ffffff 100%);
    padding: 34px 0 0;
}

.hero-map-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 30%, rgba(11, 94, 215, 0.12), transparent 28%),
        linear-gradient(180deg, transparent 75%, #ffffff 75%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: end;
    gap: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8px 0 92px;
}

.section-kicker {
    display: inline-flex;
    color: var(--medical-green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-content h1 {
    margin: 0;
    color: var(--primary-navy);
    font-size: 2.35rem;
    line-height: 1.16;
    font-weight: 800;
    max-width: 680px;
}

.hero-content h1 span {
    color: var(--medical-green);
}

.hero-content p {
    max-width: 530px;
    margin: 18px 0 22px;
    color: #1f2d3d;
    font-size: 1rem;
}

.hero-actions {
    display: grid;
    gap: 12px;
    max-width: 360px;
}

.hero-visual {
    min-height: 420px;
    position: relative;
    z-index: 1;
    align-self: stretch;
}

.hero-world-map {
    position: absolute;
    width: 125%;
    max-width: none;
    right: -25%;
    top: 5%;
    opacity: 0.55;
}

.hero-doctor {
    position: absolute;
    right: -18px;
    bottom: 0;
    width: min(115%, 520px);
    height: auto;
    filter: drop-shadow(0 24px 30px rgba(6, 29, 63, 0.16));
}

.floating-stat {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(220, 232, 245, 0.92);
    border-radius: var(--radius);
    box-shadow: 0 12px 26px rgba(6, 29, 63, 0.12);
    padding: 10px 12px;
    min-width: 94px;
    display: grid;
    line-height: 1.15;
}

.floating-stat strong {
    color: var(--primary-navy);
    font-size: 1.15rem;
    font-weight: 800;
}

.floating-stat span {
    color: var(--muted-text);
    font-size: 0.72rem;
    font-weight: 600;
}

.stat-one {
    top: 82px;
    left: 0;
}

.stat-two {
    top: 26px;
    right: 26px;
}

.stat-three {
    bottom: 126px;
    left: -18px;
}

.stat-four {
    bottom: 72px;
    right: 12px;
}

.feature-strip {
    position: relative;
    z-index: 3;
    margin-top: -72px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.feature-item {
    min-height: 102px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    color: var(--primary-navy);
    text-align: center;
    padding: 14px 8px;
    border-right: 1px solid var(--border-color);
}

.feature-item:last-child {
    border-right: 0;
}

.feature-item i {
    font-size: 2rem;
}

.feature-item span {
    font-weight: 600;
    line-height: 1.25;
    font-size: 0.82rem;
}

.stats-strip {
    background: var(--primary-navy);
    padding: 26px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: var(--radius);
    overflow: hidden;
}

.stats-grid div {
    min-height: 104px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    color: var(--white);
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.stats-grid div:last-child {
    border-right: 0;
}

.stats-grid i {
    font-size: 1.8rem;
}

.stats-grid strong {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
}

.stats-grid span {
    font-size: 0.85rem;
    line-height: 1.25;
}

.section {
    padding: 70px 0;
}

.section-soft {
    background: var(--light-section);
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 22px;
}

.section-heading h2,
.two-column h2,
.info-card h2,
.table-card h2,
.form-card h2,
.contact-card h2,
.guidance-section h2,
.final-cta h2 {
    margin: 0;
    color: var(--primary-navy);
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 800;
}

.section-heading.centered > span:not(.section-kicker) {
    width: 72px;
    height: 4px;
    display: inline-block;
    margin-top: 12px;
    background: var(--medical-green);
    border-radius: 999px;
}

.popular-countries {
    background: var(--white);
}

.slider-shell {
    position: relative;
}

.country-card-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 270px);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding: 8px 0 18px;
    scrollbar-width: none;
}

.country-card-track::-webkit-scrollbar {
    display: none;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 20px;
}

.country-card {
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.country-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.country-card:hover .country-image img {
    transform: none;
}

.flag-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, var(--medical-green), var(--primary-navy));
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 18px rgba(6, 29, 63, 0.18);
}

.country-card-body {
    padding: 18px;
}

.country-card h3 {
    margin: 0 0 16px;
    color: var(--primary-navy);
    font-size: 1.16rem;
    line-height: 1.25;
    text-align: center;
    font-weight: 800;
}

.country-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.country-meta span {
    display: block;
    color: var(--muted-text);
    font-size: 0.75rem;
    margin-bottom: 3px;
}

.country-meta strong {
    color: var(--dark-text);
    font-size: 0.82rem;
}

.slider-arrow {
    position: absolute;
    top: 44%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--primary-navy);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(6, 29, 63, 0.24);
    cursor: pointer;
}

.slider-prev {
    left: -6px;
}

.slider-next {
    right: -6px;
}

.value-grid,
.university-grid,
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 20px;
}

.value-grid.three {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.value-card,
.university-card,
.info-card,
.table-card,
.contact-card,
.form-card,
.gallery-card,
.success-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.value-card {
    padding: 24px;
}

.value-card i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--medical-blue), var(--medical-green));
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.value-card h3,
.university-card h3,
.info-card h3,
.contact-card h3,
.timeline-step h3 {
    margin: 0 0 8px;
    color: var(--primary-navy);
    font-size: 1.08rem;
    line-height: 1.3;
    font-weight: 800;
}

.value-card p,
.university-card p,
.info-card p,
.contact-card p,
.timeline-step p {
    margin: 0;
    color: var(--muted-text);
}

.process-timeline {
    display: grid;
    gap: 16px;
}

.timeline-step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 22px 20px 22px 72px;
}

.timeline-step span {
    position: absolute;
    left: 18px;
    top: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary-navy);
    color: var(--white);
    font-weight: 800;
}

.university-card {
    padding: 22px;
}

.university-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-navy), var(--medical-blue));
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.university-card ul,
.check-list,
.footer-grid ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.university-card li,
.check-list li {
    color: var(--muted-text);
}

.university-card li i,
.check-list li::before {
    color: var(--medical-green);
}

.check-list li {
    position: relative;
    padding-left: 26px;
}

.check-list li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 1px;
}

.university-card .btn {
    margin-top: 18px;
}

.guidance-section {
    background: linear-gradient(135deg, var(--dark-navy), var(--medical-blue));
    color: var(--white);
}

.guidance-inner {
    display: grid;
    gap: 22px;
    align-items: center;
}

.guidance-section h2,
.guidance-section p,
.guidance-section .section-kicker {
    color: var(--white);
}

.guidance-section p {
    margin: 14px 0 0;
    max-width: 780px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(6, 29, 63, 0.07);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: var(--white);
    color: var(--primary-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    text-align: left;
    font-weight: 800;
    padding: 18px 20px;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: var(--muted-text);
}

.final-cta {
    background: var(--light-blue);
    padding: 64px 0;
}

.final-cta-inner {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 32px;
    text-align: center;
}

.final-cta p {
    color: var(--muted-text);
    margin: 12px auto 22px;
    max-width: 650px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-navy), var(--primary-navy));
    color: var(--white);
}

.compact-hero {
    padding: 78px 0;
}

.country-hero {
    padding: 96px 0;
    background:
        linear-gradient(90deg, rgba(2, 27, 58, 0.88), rgba(6, 29, 63, 0.72)),
        var(--country-image) center / cover;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 28%, rgba(20, 184, 166, 0.22), transparent 30%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.page-hero h1 {
    margin: 0;
    font-size: 2.35rem;
    line-height: 1.15;
    font-weight: 800;
}

.page-hero p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.86);
    max-width: 650px;
}

.page-hero .btn {
    margin-top: 24px;
}

.two-column,
.contact-grid {
    display: grid;
    gap: 28px;
}

.two-column > div > p {
    color: var(--muted-text);
}

.info-card,
.table-card,
.contact-card,
.form-card {
    padding: 24px;
}

.tall-card {
    align-self: start;
}

.table-card {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    min-width: 430px;
}

th,
td {
    text-align: left;
    padding: 14px;
    border-bottom: 1px solid var(--border-color);
}

th {
    color: var(--primary-navy);
    background: var(--light-blue);
}

.filter-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    background: var(--light-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 24px;
}

.filter-panel label,
.form-card label {
    display: grid;
    gap: 7px;
}

.filter-panel span,
.form-card span {
    color: var(--primary-navy);
    font-size: 0.88rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 7px;
    background: var(--white);
    color: var(--dark-text);
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--medical-green);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.empty-state {
    display: none;
    text-align: center;
    color: var(--muted-text);
    font-weight: 700;
    margin: 24px 0 0;
}

.empty-state.is-visible {
    display: block;
}

.contact-grid {
    align-items: start;
}

.contact-card {
    display: grid;
    gap: 14px;
}

.contact-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-navy);
    font-weight: 700;
}

.contact-card i {
    color: var(--medical-green);
}

.map-placeholder {
    margin-top: 20px;
    min-height: 250px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light-blue), #ffffff);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
}

.map-placeholder i {
    font-size: 2rem;
    color: var(--medical-green);
}

.form-card {
    display: grid;
    gap: 16px;
}

.form-card h2 {
    margin-bottom: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.gallery-card {
    overflow: hidden;
}

.gallery-placeholder {
    min-height: 220px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    color: var(--primary-navy);
    background:
        linear-gradient(135deg, rgba(238, 247, 255, 0.95), rgba(255, 255, 255, 0.85)),
        radial-gradient(circle at 28% 28%, rgba(20, 184, 166, 0.22), transparent 28%);
    font-weight: 800;
}

.gallery-placeholder i {
    font-size: 2.5rem;
    color: var(--medical-green);
}

.success-section {
    min-height: 58vh;
    display: grid;
    align-items: center;
    background: var(--light-section);
}

.success-card {
    padding: 46px 26px;
    text-align: center;
}

.success-card i {
    color: var(--medical-green);
    font-size: 3.4rem;
}

.success-card h1 {
    color: var(--primary-navy);
    font-size: 2rem;
    line-height: 1.25;
    margin: 16px 0 10px;
}

.success-card p {
    color: var(--muted-text);
    margin: 0 0 22px;
}

.text-link {
    color: var(--medical-green);
    font-weight: 800;
}

.site-footer {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.78);
    padding: 58px 0 24px;
}

.footer-grid {
    display: grid;
    gap: 30px;
}

.footer-grid h3 {
    color: var(--white);
    font-size: 1.05rem;
    margin: 0 0 14px;
}

.footer-brand img {
    width: 84px;
    background: var(--white);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 14px;
}

.footer-grid p {
    margin: 0;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid a:hover {
    color: var(--green-accent);
}

.footer-disclaimer {
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 20px;
    display: grid;
    gap: 10px;
    font-size: 0.86rem;
}

.footer-disclaimer p {
    margin: 0;
}

.floating-whatsapp,
.back-to-top {
    position: fixed;
    right: 18px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--white);
    box-shadow: 0 14px 26px rgba(6, 29, 63, 0.24);
}

.floating-whatsapp {
    bottom: 22px;
    background: #25D366;
    font-size: 1.9rem;
}

.back-to-top {
    bottom: 92px;
    background: var(--primary-navy);
    font-size: 1.2rem;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover,
.floating-whatsapp:hover {
    transform: translateY(-3px);
}

@media (max-width: 380px) {
    .container,
    .narrow {
        width: min(100% - 22px, 1180px);
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-copy strong {
        font-size: 0.98rem;
    }

    .brand-copy span {
        font-size: 0.78rem;
    }

    .brand-copy small {
        font-size: 0.62rem;
    }

    .btn-apply {
        padding: 9px 10px;
        font-size: 0.82rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (min-width: 720px) {
    .hero-actions {
        display: flex;
        max-width: none;
    }

    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-timeline.detailed {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline-step {
        padding: 64px 18px 20px;
    }

    .timeline-step span {
        left: 18px;
        top: 18px;
    }

    .guidance-inner,
    .two-column,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    }
}

@media (min-width: 980px) {
    .top-contact-bar {
        font-size: 0.9rem;
    }

    .nav-actions-mobile {
        display: none;
    }

    .nav-inner {
        min-height: 88px;
    }

    .brand-logo {
        width: 62px;
        height: 62px;
    }

    .brand-copy strong {
        font-size: 1.35rem;
    }

    .brand-copy span {
        font-size: 1.03rem;
    }

    .brand-copy small {
        font-size: 0.78rem;
    }

    .nav-menu {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        max-height: none;
        overflow: visible;
        box-shadow: none;
        border: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 18px;
        flex: 1;
        justify-content: flex-end;
    }

    .nav-list {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .nav-list a,
    .dropdown-toggle {
        width: auto;
        padding: 10px 8px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .nav-dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        min-width: 245px;
        display: grid;
        opacity: 0;
        transform: translateY(8px);
        pointer-events: none;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-soft);
        background: var(--white);
        transition: opacity 0.2s ease, transform 0.2s ease;
        padding: 8px;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu,
    .nav-dropdown.is-open .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .dropdown-menu a {
        width: 100%;
        padding: 10px;
    }

    .nav-apply-desktop {
        display: inline-flex;
        min-height: 44px;
        padding: 10px 18px;
        white-space: nowrap;
    }

    .hero-section {
        padding-top: 60px;
    }

    .hero-inner {
        grid-template-columns: 1fr 0.92fr;
        gap: 26px;
    }

    .hero-content {
        padding: 30px 0 150px;
    }

    .hero-content h1 {
        font-size: 4.35rem;
        line-height: 1.08;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-visual {
        min-height: 610px;
    }

    .hero-doctor {
        right: 0;
        width: min(82%, 450px);
    }

    .feature-strip {
        margin-top: -92px;
    }

    .feature-item {
        min-height: 126px;
    }

    .feature-item i {
        font-size: 2.5rem;
    }

    .feature-item span {
        font-size: 1rem;
    }

    .section {
        padding: 86px 0;
    }

    .section-heading h2,
    .two-column h2,
    .info-card h2,
    .table-card h2,
    .form-card h2,
    .contact-card h2,
    .guidance-section h2,
    .final-cta h2 {
        font-size: 2.4rem;
    }

    .country-card-track {
        grid-auto-columns: minmax(220px, 1fr);
    }

    .page-hero h1 {
        font-size: 3.35rem;
    }
}

@media (min-width: 1180px) {
    .nav-list a,
    .dropdown-toggle {
        padding: 10px 11px;
        font-size: 0.9rem;
    }

    .country-card-track {
        grid-auto-columns: calc((100% - 64px) / 5);
    }
}

/* Final static HTML refinements */
.top-contact-inner {
    min-height: 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.top-contact-left,
.top-contact-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.top-contact-combo {
    position: relative;
}

.contact-menu-button {
    border: 0;
    background: transparent;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    cursor: pointer;
    font-weight: 600;
}

.dual-contact-icon {
    width: 30px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dual-contact-icon i {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 0.72rem;
}

.dual-contact-icon .bi-telephone-fill {
    background: var(--gold-accent);
    color: var(--dark-navy);
    margin-right: -6px;
    z-index: 1;
}

.dual-contact-icon .bi-whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-menu-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 180px;
    background: var(--white);
    color: var(--primary-navy);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 8px;
    display: none;
    z-index: 30;
}

.top-contact-combo.is-open .contact-menu-options,
.top-contact-combo:hover .contact-menu-options {
    display: grid;
}

.contact-menu-options a {
    color: var(--primary-navy);
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
}

.contact-menu-options a:hover {
    background: var(--light-blue);
}

.top-counselling-btn {
    justify-self: center;
    min-height: 30px;
    padding: 6px 14px 6px 19px;
    border-radius: 999px;
    background: transparent;
    color: var(--white);
    font-weight: 800;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.top-counselling-btn .free-tag {
    position: absolute;
    left: 0;
    inset-block: 0;
    width: 14px;
    display: grid;
    place-items: center;
    background: var(--gold-accent);
    color: var(--dark-navy);
    font-size: 0.48rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.top-contact-right {
    justify-content: flex-end;
}

.top-contact-right .social-link {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 0;
    background: transparent;
    line-height: 1;
}

.top-contact-right .social-link i {
    font-size: 0.95rem;
}

.top-contact-right .social-email i {
    color: var(--gold-accent);
}

.top-contact-right .social-facebook i {
    color: #1877F2;
}

.top-contact-right .social-youtube i {
    color: #FF0000;
}

.top-contact-right .social-instagram i {
    color: #E4405F;
}

.top-contact-right .social-instagram i::before {
    background:
        radial-gradient(circle at 30% 105%, #FEDA75 0 18%, #FA7E1E 34%, #D62976 55%, #962FBF 76%, #4F5BD5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.top-contact-right .social-x i {
    color: #FFFFFF;
}

.top-contact-right .social-telegram i {
    color: #26A5E4;
}

.brand-logo {
    width: 62px;
    height: 62px;
}

.brand-copy {
    min-width: 164px;
}

.brand-copy strong {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 1.24rem;
    line-height: 1;
}

.brand-copy .brand-blue {
    color: var(--primary-navy);
}

.brand-copy .brand-green {
    color: var(--medical-green);
}

.brand-subline {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 7px;
    color: var(--dark-text) !important;
    margin-top: 3px;
}

.brand-subline em {
    height: 2px;
    background: var(--medical-green);
    display: block;
    border-radius: 999px;
}

.brand-subline b {
    color: var(--dark-text);
    font-size: 0.72rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.brand-copy small {
    font-size: 0.66rem;
}

.section {
    padding: 52px 0;
}

.section-heading {
    margin-bottom: 22px;
}

.hero-section {
    padding-top: 24px;
}

.hero-visual {
    overflow: hidden;
}

.hero-doctor {
    width: 310px;
    height: 410px;
    object-fit: cover;
    object-position: top center;
    clip-path: inset(0 0 28% 0);
    right: -34px;
    bottom: 0;
}

.floating-stat {
    padding: 8px 10px;
    min-width: 88px;
}

.stat-three {
    bottom: 196px;
    left: 10px;
}

.feature-strip {
    margin-top: -58px;
}

.stats-strip {
    padding: 18px 0;
}

.country-card-track {
    grid-auto-columns: minmax(198px, 226px);
    gap: 14px;
}

.country-image {
    aspect-ratio: 16 / 8.5;
}

.flag-badge {
    width: 46px;
    height: 46px;
    padding: 0;
    overflow: hidden;
    background: var(--white);
    border-width: 3px;
}

.flag-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.country-card-body {
    padding: 13px;
}

.country-card h3 {
    font-size: 1.08rem;
    margin-bottom: 9px;
}

.country-lines {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: grid;
    gap: 5px;
}

.country-lines li {
    color: var(--muted-text);
    font-size: 0.78rem;
    line-height: 1.25;
    display: flex;
    align-items: center;
    gap: 7px;
}

.country-lines i {
    color: var(--medical-green);
    font-size: 0.85rem;
}

.country-card .btn {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.85rem;
}

.value-card,
.university-card,
.info-card,
.table-card,
.contact-card,
.form-card {
    padding: 20px;
}

.university-desc {
    font-size: 0.84rem;
    line-height: 1.55;
    margin: 8px 0 0;
}

.university-card ul {
    margin-top: 12px;
    gap: 7px;
}

.university-card .btn {
    margin-top: 14px;
}

@media (max-width: 719px) {
    .container,
    .narrow {
        width: min(100% - 24px, 1180px);
    }

   .top-contact-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
    min-height: 50px;
    padding: 7px 12px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

   .top-counselling-btn {
    grid-column: auto;
    justify-self: auto;
    flex: 0 0 auto;
    min-height: 30px;
    padding: 7px 16px;
    font-size: 0.78rem;
    line-height: 1;
    white-space: nowrap;
}

    .contact-menu-button {
        font-size: 0.78rem;
    }

   .top-contact-right a {
    font-size: 0.78rem;
    gap: 6px;
    white-space: nowrap;
}

    .contact-menu-options {
        min-width: 160px;
    }

    .nav-inner {
        min-height: 72px;
        gap: 10px;
    }

    .brand {
        gap: 7px;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-copy {
        min-width: 128px;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .brand-subline b {
        font-size: 0.58rem;
        letter-spacing: 1px;
    }

    .brand-copy small {
        font-size: 0.56rem;
    }

    .btn-apply {
        min-height: 38px;
        padding: 9px 11px;
        font-size: 0.78rem;
    }

    .hero-section {
        padding-top: 18px;
    }

    .hero-content {
        padding: 4px 0 86px;
    }

    .hero-content h1 {
        font-size: 2.12rem;
    }

    .hero-content p {
        margin: 13px 0 16px;
        font-size: 0.9rem;
    }

    .hero-actions {
        max-width: 292px;
        gap: 9px;
    }

    .hero-actions .btn {
        min-height: 43px;
        padding: 10px 14px;
        font-size: 0.86rem;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-doctor {
        width: 280px;
        height: 370px;
        clip-path: inset(0 0 33% 0);
        right: -74px;
    }

    .floating-stat {
        display: none;
    }

    .feature-strip {
        margin-top: -50px;
    }

    .feature-item {
        min-height: 88px;
        padding: 10px 5px;
    }

    .feature-item i {
        font-size: 1.55rem;
    }

    .stats-grid strong {
        font-size: 1.36rem;
    }

    .stats-grid div {
        min-height: 88px;
    }

    .section {
        padding: 42px 0;
    }

    .section-heading h2,
    .two-column h2,
    .info-card h2,
    .table-card h2,
    .form-card h2,
    .contact-card h2,
    .guidance-section h2,
    .final-cta h2 {
        font-size: 1.58rem;
    }

    .country-card-track {
        grid-auto-columns: minmax(190px, 72vw);
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 720px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 980px) {
    .section {
        padding: 68px 0;
    }

    .hero-content {
        padding: 28px 0 132px;
    }

    .hero-doctor {
        width: 400px;
        height: 560px;
        clip-path: inset(0 0 28% 0);
        right: 22px;
    }

    .feature-strip {
        margin-top: -78px;
    }

    .process-timeline.detailed {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Requested final layout polish */
.brand-copy {
    width: max-content;
    min-width: 0;
}

.brand-copy strong {
    white-space: nowrap;
    font-size: 1.42rem;
    letter-spacing: 0;
}

.brand-subline {
    width: 100%;
}

.brand-subline b {
    letter-spacing: 1.9px;
}

.floating-stat {
    display: none;
}

.hero-inner {
    grid-template-columns: 0.92fr 1.08fr;
}

.hero-visual {
    min-height: 460px;
    isolation: isolate;
    overflow: visible;
}

.hero-visual::before {
    content: "" !important;
    position: absolute !important;
    width: 92% !important;
    height: 96% !important;
    right: -12% !important;
    top: 0 !important;
    bottom: auto !important;
    border-radius: 58% 0 0 58% !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 247, 255, 0.74)),
        radial-gradient(circle at 72% 30%, rgba(20, 184, 166, 0.14), transparent 42%),
        radial-gradient(circle at 28% 78%, rgba(11, 94, 215, 0.12), transparent 44%) !important;
    box-shadow:
        -12px 0 26px rgba(255, 255, 255, 0.88),
        -6px 0 18px rgba(6, 29, 63, 0.06) !important;
    z-index: 0 !important;
}

.hero-visual::after {
    content: "" !important;
    position: absolute !important;
    width: 28% !important;
    height: 94% !important;
    left: 24% !important;
    top: 0 !important;
    bottom: auto !important;
    border-radius: 100% 0 0 100% !important;
    background: linear-gradient(
        180deg,
        rgba(0, 155, 142, 0.20),
        rgba(11, 94, 215, 0.13),
        rgba(255, 255, 255, 0.18)
    ) !important;
    box-shadow:
        -10px 0 22px rgba(255, 255, 255, 0.82),
        inset -8px 0 18px rgba(255, 255, 255, 0.55) !important;
    z-index: 1 !important;
}
.hero-doctor {
    width: min(96%, 600px);
    height: min(95%, 590px);
    object-fit: cover;
    object-position: top center;
    clip-path: inset(0 0 16% 0);
    right: -8px;
    bottom: 0;
}

.country-card,
.university-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.country-card-body,
.university-card {
    flex: 1;
}

.country-card-body {
    display: flex;
    flex-direction: column;
}

.country-image {
    aspect-ratio: 16 / 9;
    background: var(--light-blue);
}

.country-image img {
    object-fit: cover;
    padding: 0;
}

.country-card .btn,
.university-card .btn {
    margin-top: auto;
}

.country-lines {
    min-height: 74px;
}

.country-card h3 {
    min-height: 28px;
}

.university-card h3 {
    min-height: 58px;
}

.university-desc {
    min-height: 66px;
}

.guidance-inner {
    grid-template-columns: 1fr;
    text-align: left;
}

.guidance-copy {
    max-width: 850px;
}

.guidance-copy h2 {
    white-space: nowrap;
}

.guidance-copy p {
    margin: 8px 0 0;
}

.guidance-section .btn {
    width: fit-content;
}

@media (max-width: 719px) {
    .brand-copy strong {
        font-size: 1.12rem;
    }

    .brand-subline b {
        letter-spacing: 1.2px;
    }

    .hero-inner {
    grid-template-columns: 58% 42%;
    align-items: end;
}

    .hero-content {
        padding-bottom: 72px;
    }

    .hero-visual {
    min-height: 430px;
    height: 430px;
    align-self: end;
    overflow: visible;
}

    .hero-visual::before {
        width: 100%;
        height: 88%;
        right: -28%;
        border-radius: 60% 0 0 60%;
    }

    .hero-visual::after {
        width: 58%;
        height: 76%;
        right: 28%;
    }

   .hero-doctor {
    width: 245px;
    height: auto;
    max-height: 405px;
    right: -18px;
    bottom: 0;
    object-fit: contain;
    object-position: bottom right;
    clip-path: none;
}

    .country-lines {
        min-height: 72px;
    }

    .university-card h3,
    .university-desc {
        min-height: 0;
    }

    .guidance-inner {
        gap: 16px;
    }

    .guidance-section .btn {
        width: 100%;
    }
}

@media (min-width: 980px) {
    .brand-copy strong {
        font-size: 1.56rem;
    }

    .brand-logo {
        width: 70px;
        height: 70px;
    }

    .hero-visual {
        min-height: 640px;
    }

    .hero-doctor {
        width: min(100%, 600px);
        height: 650px;
        right: 0;
        clip-path: inset(0 0 13% 0);
    }
}

/* Mobile request fixes */
br.hero-mobile-break,
.top-contact-bar .email-short,
.top-contact-bar .contact-short {
    display: none;
}

.brand-copy {
    display: inline-grid;
    grid-template-columns: max-content;
}

.brand-subline {
    max-width: 100%;
    gap: 5px;
}

.brand-subline em {
    height: 1.5px;
}

.brand-subline b {
    letter-spacing: 1.1px;
}

@media (max-width: 719px) {
    .top-contact-inner {
        width: min(100% - 14px, 1180px);
        min-height: 34px;
        display: grid;
        grid-template-columns: minmax(0, auto) auto max-content;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
        padding: 4px 0;
        overflow: visible;
    }

    .top-contact-left,
    .top-contact-right {
        min-width: 0;
        gap: 0;
    }

    .contact-menu-button {
        gap: clamp(3px, 1vw, 5px);
        font-size: clamp(0.5rem, 2.25vw, 0.68rem);
        line-height: 1;
    }

    .contact-menu-button > .bi-chevron-down {
        display: none;
    }

    .dual-contact-icon {
        width: clamp(20px, 6vw, 24px);
        height: clamp(17px, 5vw, 19px);
    }

    .dual-contact-icon i {
        width: clamp(15px, 4.5vw, 17px);
        height: clamp(15px, 4.5vw, 17px);
        font-size: clamp(0.5rem, 1.7vw, 0.56rem);
    }

    .top-counselling-btn {
        min-height: 26px;
        padding: 6px clamp(6px, 2vw, 9px) 6px 17px;
        font-size: clamp(0.52rem, 2.3vw, 0.68rem);
        line-height: 1;
        box-shadow: none;
    }

    .top-counselling-btn .free-tag {
        width: 13px;
        font-size: 0.42rem;
    }

    .top-contact-bar .email-full {
        display: none;
    }

    .top-contact-bar .contact-number {
        display: inline-flex;
        font-size: clamp(0.5rem, 2.25vw, 0.68rem);
    }

    .top-contact-bar .email-short {
        display: inline-flex;
    }

    .top-contact-bar .contact-short {
        display: none;
    }

    .top-contact-right {
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(1.5px, 0.75vw, 4px);
    }

    .top-contact-right .social-link {
        width: clamp(15px, 4.8vw, 21px);
        height: clamp(15px, 4.8vw, 21px);
    }

    .top-contact-right .social-link i {
        font-size: clamp(0.66rem, 2.75vw, 0.88rem);
    }

    .nav-inner {
        min-width: 0;
    }

    .brand {
        flex: 1 1 auto;
        max-width: calc(100% - 136px);
        min-width: 0;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .brand-copy {
        width: auto;
        max-width: 122px;
        min-width: 0;
        overflow: hidden;
    }

    .brand-copy strong {
        font-size: 0.96rem;
    }

    .brand-subline {
        gap: 4px;
    }

    .brand-subline b {
        font-size: 0.53rem;
        letter-spacing: 0.75px;
    }

    .brand-copy small {
        font-size: 0.52rem;
    }

    .nav-actions-mobile {
        flex: 0 0 auto;
        gap: 6px;
    }

    .btn-apply {
        min-height: 34px;
        padding: 7px 8px;
        font-size: 0.7rem;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
        padding: 6px;
    }

    .nav-toggle span {
        width: 27px;
    }

    br.hero-mobile-break {
        display: block;
    }

    .hero-section {
        padding-top: 10px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: 515px;
        overflow: hidden;
    }

    .hero-content {
        max-width: none;
        padding: 2px 0 72px;
    }

    .hero-content h1 {
        width: 60%;
        max-width: 238px;
        font-size: clamp(2rem, 10vw, 2.42rem);
        line-height: 0.98;
        position: relative;
        z-index: 2;
    }

    .hero-content p {
        width: 59%;
        max-width: 218px;
        margin: 12px 0 14px;
        font-size: 0.78rem;
        line-height: 1.55;
        position: relative;
        z-index: 2;
    }

    .hero-actions {
        width: 58%;
        max-width: 210px;
        position: relative;
        z-index: 2;
    }

    .hero-actions .btn {
        min-height: 40px;
        padding: 9px 10px;
        font-size: 0.76rem;
        gap: 7px;
    }

    .hero-visual {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 54%;
        height: 100%;
        min-height: 0;
        pointer-events: none;
        z-index: 1;
        overflow: visible;
    }

    .hero-world-map {
        width: 210%;
        right: -70%;
        top: 12%;
        opacity: 0.52;
    }

    .hero-visual::before {
        width: 118%;
        height: 78%;
        right: -34%;
        bottom: 0;
        border-radius: 70% 0 0 66%;
    }

    .hero-visual::after {
        width: 70%;
        height: 58%;
        right: 28%;
        bottom: 8%;
    }

    .hero-doctor {
        width: min(58vw, 240px);
        height: auto;
        max-height: 385px;
        right: 28px;
        bottom: 18px;
        object-fit: contain;
        object-position: bottom right;
        clip-path: none;
    }

    .feature-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: -54px;
    }

    .feature-item,
    .stats-grid div {
        min-width: 0;
    }

    .feature-item span {
        font-size: 0.68rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .stats-grid strong {
        font-size: 1.18rem;
    }

    .stats-grid span {
        font-size: 0.66rem;
    }

    .popular-countries .container {
        width: min(100% - 18px, 1180px);
    }

    .slider-shell,
    .country-card-track {
        max-width: 100%;
        min-width: 0;
    }

    .country-card-track {
        grid-auto-columns: calc((100% - 16px) / 3);
        gap: 8px;
        padding: 4px 0 12px;
    }

    .country-card {
        border-radius: 7px;
    }

    .country-image {
        aspect-ratio: 4 / 3;
    }

    .country-card-body {
        padding: 7px;
    }

    .country-card h3 {
        min-height: 32px;
        margin-bottom: 5px;
        font-size: 0.76rem;
        line-height: 1.16;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .country-lines {
        min-height: 48px;
        margin-bottom: 7px;
        gap: 3px;
    }

    .country-lines li {
        gap: 3px;
        font-size: 0.54rem;
        line-height: 1.16;
    }

    .country-lines i {
        font-size: 0.62rem;
    }

    .country-card .btn {
        min-height: 28px;
        padding: 6px 4px;
        font-size: 0.57rem;
        gap: 3px;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
        top: 45%;
    }

    .slider-prev {
        left: -7px;
    }

    .slider-next {
        right: -7px;
    }
}

@media (max-width: 380px) {
    .top-contact-inner {
        width: min(100% - 12px, 1180px);
        gap: 3px;
    }

    .contact-menu-button,
    .top-counselling-btn {
        font-size: clamp(0.48rem, 2.1vw, 0.62rem);
    }

    .top-counselling-btn {
        padding: 6px 5px 6px 15px;
    }

    .top-counselling-btn .free-tag {
        width: 12px;
        font-size: 0.37rem;
    }

    .top-contact-right {
        gap: 1.5px;
    }

    .top-contact-right .social-link {
        width: clamp(14px, 4.6vw, 17px);
        height: clamp(14px, 4.6vw, 17px);
    }

    .top-contact-right .social-link i {
        font-size: clamp(0.6rem, 2.6vw, 0.78rem);
    }

    .brand {
        max-width: calc(100% - 122px);
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-copy {
        max-width: 116px;
    }

    .brand-copy strong {
        font-size: 0.9rem;
    }

    .brand-subline b {
        font-size: 0.5rem;
    }

    .brand-copy small {
        font-size: 0.49rem;
    }

    .nav-actions-mobile {
        gap: 4px;
    }

    .btn-apply {
        min-height: 32px;
        padding: 7px;
        font-size: 0.66rem;
    }

    .nav-toggle {
        width: 36px;
        height: 36px;
    }

    .hero-inner {
        min-height: 492px;
    }

    .hero-content h1 {
        width: 62%;
        font-size: 2rem;
    }

    .hero-content p {
        width: 57%;
        font-size: 0.72rem;
    }

    .hero-actions {
        width: 57%;
    }

    .hero-actions .btn {
        padding-inline: 8px;
        font-size: 0.7rem;
        gap: 6px;
    }

    .hero-doctor {
        width: min(58vw, 218px);
        right: 20px;
        bottom: 24px;
    }

    .country-card-track {
        grid-auto-columns: calc((100% - 12px) / 3);
        gap: 6px;
    }

    .country-card-body {
        padding: 6px;
    }

    .country-card h3 {
        font-size: 0.7rem;
    }

    .country-lines li {
        font-size: 0.5rem;
    }

    .country-card .btn {
        font-size: 0.53rem;
    }
}
/* FINAL MOBILE HERO: remove blank space, keep doctor from top */
@media (max-width: 719px) {
    .hero-section {
        padding-top: 10px !important;
        padding-bottom: 0 !important;
        overflow: hidden !important;
    }

    .hero-inner {
        grid-template-columns: 1fr !important;
        position: relative !important;
        min-height: 0 !important;
        height: auto !important;
        align-items: start !important;
        overflow: hidden !important;
        padding-bottom: 10px !important;
    }

    .hero-content {
        width: 58% !important;
        max-width: 235px !important;
        position: relative !important;
        z-index: 3 !important;
        padding: 24px 0 0 !important;
    }

    .hero-content h1 {
        width: 100% !important;
        max-width: 235px !important;
        font-size: clamp(1.82rem, 8.4vw, 2.12rem) !important;
        line-height: 1.06 !important;
        margin: 0 !important;
    }

    .hero-content h1 .hero-title-line {
        display: inline-block !important;
        white-space: nowrap !important;
    }

    .hero-content h1 .hero-title-green {
        color: var(--medical-green) !important;
    }

    .hero-content p {
        width: 100% !important;
        max-width: 220px !important;
        margin: 12px 0 13px !important;
        font-size: 0.74rem !important;
        line-height: 1.45 !important;
    }

    .hero-actions {
        width: 100% !important;
        max-width: 210px !important;
        gap: 8px !important;
        margin-bottom: 0 !important;
    }

    .hero-actions .btn {
        min-height: 37px !important;
        padding: 8px 9px !important;
        font-size: 0.72rem !important;
        gap: 6px !important;
    }

    .hero-visual {
    position: absolute !important;
    top: 24px !important;
    right: 0 !important;
    bottom: auto !important;
    width: 58% !important;
    height: 330px !important;
    min-height: 0 !important;
    z-index: 2 !important;
    overflow: visible !important;
    pointer-events: none !important;
    isolation: isolate !important;
}

    .hero-doctor {
        position: absolute !important;
        top: 0 !important;
        right: -12px !important;
        bottom: auto !important;
        width: 90% !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: top right !important;
        clip-path: none !important;
    }

    .feature-strip {
        margin-top: 12px !important;
        position: relative !important;
        z-index: 5 !important;
    }
}

/* FINAL EXTRA SMALL MOBILE */
@media (max-width: 380px) {
    .hero-content {
        width: 59% !important;
        max-width: 215px !important;
        padding-top: 22px !important;
    }

    .hero-content h1 {
        font-size: 1.82rem !important;
    }

    .hero-content p {
        font-size: 0.68rem !important;
        line-height: 1.42 !important;
    }

    .hero-actions .btn {
        min-height: 35px !important;
        font-size: 0.68rem !important;
    }

    .hero-visual {
        top: 22px !important;
        width: 58% !important;
        height: 310px !important;
    }

    .hero-doctor {
        top: 0 !important;
        right: -10px !important;
        width: 90% !important;
        height: auto !important;
        bottom: auto !important;
    }

    .feature-strip {
        margin-top: 10px !important;
    }
}