/* ==================================================
   GOVRA - STYLE.CSS
   Giao diện trang chủ
================================================== */


/* ==================================================
   1. BIẾN MÀU, FONT VÀ KÍCH THƯỚC
================================================== */

:root {
    --primary: #1769ff;
    --primary-dark: #0b3f9c;
    --primary-soft: #eaf2ff;

    --orange: #ff6b00;
    --orange-soft: #fff1e7;

    --navy: #071a3d;
    --navy-soft: #0d2957;

    --cyan: #0bb9d7;
    --green: #1bc989;

    --text: #112342;
    --text-soft: #63728a;
    --text-light: #8a96a8;

    --white: #ffffff;
    --surface: #f6f9fd;
    --surface-blue: #eef5ff;

    --border: #dce6f2;
    --border-dark: rgba(255, 255, 255, 0.12);

    --shadow-small: 0 10px 28px rgba(15, 39, 79, 0.08);
    --shadow-medium: 0 22px 55px rgba(15, 39, 79, 0.13);
    --shadow-large: 0 35px 90px rgba(7, 26, 61, 0.18);

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 30px;

    --container: 1180px;
    --font-main: "Manrope", sans-serif;
}


/* ==================================================
   2. RESET CƠ BẢN
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    color: var(--text);
    background: var(--white);

    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

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

ul {
    list-style: none;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    white-space: nowrap;
    border: 0;
}


/* ==================================================
   3. TOPBAR
================================================== */

.topbar {
    color: #cbd7e9;
    background: var(--navy);
}

.topbar__inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    font-size: 11px;
}

.topbar__links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar a {
    transition: color 0.2s ease;
}

.topbar a:hover {
    color: var(--white);
}


/* ==================================================
   4. HEADER
================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;

    border-bottom: 1px solid rgba(220, 230, 242, 0.9);
    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(16px);
}

.navbar {
    position: relative;

    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 200px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 31px);

    flex: 1;
}

.nav a {
    position: relative;

    padding: 27px 0;

    color: #3d4d65;

    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;

    transition: color 0.2s ease;
}

.nav a::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;

    height: 2px;

    border-radius: 999px;
    background: var(--primary);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.2s ease;
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    transform: scaleX(1);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-toggle {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);

    font-size: 21px;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.search-toggle:hover {
    color: var(--primary);
    border-color: #9fc1ff;
    transform: translateY(-2px);
}

.header-button {
    min-height: 42px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    border-radius: 12px;
    background: var(--primary);

    font-size: 11px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.header-button:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 24px rgba(23, 105, 255, 0.22);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}


/* ==================================================
   5. SEARCH PANEL
================================================== */

.search-panel {
    max-height: 0;
    overflow: hidden;

    border-top: 0 solid var(--border);
    background: var(--white);

    transition:
        max-height 0.3s ease,
        border-width 0.3s ease;
}

.search-panel.is-open {
    max-height: 105px;
    border-top-width: 1px;
}

.search-panel .container {
    padding: 16px 0;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    min-width: 0;
    height: 46px;
    padding: 0 16px;

    flex: 1;

    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    background: var(--surface);
}

.search-form input:focus {
    border-color: #8db6ff;
    box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.08);
}

.search-form button {
    min-width: 125px;

    color: var(--white);
    border-radius: 12px;
    background: var(--primary);

    font-size: 11px;
    font-weight: 800;
}


/* ==================================================
   6. HERO
================================================== */

.hero {
    position: relative;

    padding: 58px 0 64px;

    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(23, 105, 255, 0.13),
            transparent 34%
        ),
        radial-gradient(
            circle at 92% 20%,
            rgba(11, 185, 215, 0.13),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #f4f8ff,
            #ffffff 52%,
            #edf9ff
        );
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: 0.55;

    background-image:
        linear-gradient(
            rgba(23, 105, 255, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(23, 105, 255, 0.045) 1px,
            transparent 1px
        );

    background-size: 58px 58px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );
}

.hero__decoration {
    position: absolute;
    z-index: -2;

    border-radius: 50%;
    filter: blur(85px);
}

.hero__decoration--one {
    top: 40px;
    left: -180px;

    width: 430px;
    height: 430px;

    background: rgba(23, 105, 255, 0.14);
}

.hero__decoration--two {
    right: -150px;
    bottom: -120px;

    width: 440px;
    height: 440px;

    background: rgba(11, 185, 215, 0.13);
}

.hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
    align-items: center;
    gap: clamp(52px, 7vw, 95px);
}

.hero__content {
    max-width: 660px;
}

.hero__eyebrow {
    width: fit-content;
    margin-bottom: 22px;
    padding: 8px 13px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--primary-dark);
    border: 1px solid #c9dcff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero__eyebrow span:first-child {
    color: var(--orange);
}

.hero h1 {
    color: var(--navy);

    font-size: clamp(50px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -3px;
}

.hero h1 span {
    display: block;

    margin-top: 7px;

    color: transparent;

    background: linear-gradient(
        90deg,
        var(--primary),
        var(--cyan),
        var(--orange)
    );

    background-clip: text;
    -webkit-background-clip: text;
}

.hero__description {
    max-width: 620px;
    margin-top: 27px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.85;
}

.destination-search {
    margin-top: 31px;
}

.destination-search > label {
    display: block;
    margin-bottom: 9px;

    color: var(--text);
    font-size: 11px;
    font-weight: 800;
}

.destination-search__box {
    padding: 7px;

    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;

    border: 1px solid #d5e2f1;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);

    box-shadow: var(--shadow-small);
}

.destination-search__box > span {
    display: grid;
    place-items: center;

    color: var(--primary);
    font-size: 18px;
}

.destination-search__box input {
    min-width: 0;
    height: 44px;

    color: var(--text);
    border: 0;
    outline: 0;
    background: transparent;

    font-size: 12px;
}

.destination-search__box button {
    min-height: 44px;
    padding: 0 18px;

    color: var(--white);
    border-radius: 11px;
    background: var(--primary);

    font-size: 10px;
    font-weight: 800;
}

.hero__actions {
    margin-top: 25px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.button {
    min-height: 50px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    border-radius: 13px;

    font-size: 11px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button--primary {
    color: var(--white);
    background: var(--primary);

    box-shadow: 0 14px 32px rgba(23, 105, 255, 0.22);
}

.button--primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 18px 36px rgba(23, 105, 255, 0.28);
}

.button--secondary {
    color: var(--text);
    border: 1px solid var(--border);
    background: var(--white);
}

.button--secondary:hover {
    border-color: #99bcff;
}

.hero__trust {
    margin-top: 35px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
}

.hero__trust div {
    display: flex;
    flex-direction: column;
}

.hero__trust strong {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.2;
}

.hero__trust span {
    margin-top: 4px;

    color: var(--text-light);
    font-size: 8px;
}


/* ==================================================
   7. HERO VISUAL
================================================== */

.hero__visual {
    position: relative;

    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.travel-card {
    position: relative;
    z-index: 2;

    width: min(100%, 455px);
    padding: 31px;

    overflow: hidden;

    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-large);

    background:
        radial-gradient(
            circle at 82% 0%,
            rgba(23, 105, 255, 0.34),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #102f65,
            #071a3d 60%,
            #07375a
        );

    box-shadow:
        var(--shadow-large),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.travel-card::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -120px;

    width: 270px;
    height: 270px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.travel-card__header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.travel-card__label {
    color: #8fc2ff;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.travel-card h2 {
    margin-top: 7px;

    font-size: 29px;
    line-height: 1.1;
}

.travel-card__flag {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);

    font-size: 27px;
}

.travel-card__data {
    position: relative;
    z-index: 2;

    margin: 42px 0 32px;
    padding: 26px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.travel-card__data span {
    color: #9eb5cf;
    font-size: 9px;
}

.travel-card__data strong {
    margin-top: 8px;

    font-size: 40px;
    line-height: 1;
}

.travel-card__data small {
    margin-top: 9px;

    color: #a9bed5;
    font-size: 9px;
}

.travel-card__features {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.travel-card__features div {
    padding: 16px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.travel-card__features span {
    color: #8fa7c1;
    font-size: 8px;
}

.travel-card__features strong {
    margin-top: 5px;
    font-size: 10px;
}

.travel-card__footer {
    position: relative;
    z-index: 2;

    margin-top: 22px;
    padding-top: 19px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.travel-card__footer span {
    color: #8fa7c1;
    font-size: 9px;
}

.travel-card__footer strong {
    color: #79d9ff;
    font-size: 12px;
}

.floating-card {
    position: absolute;
    z-index: 3;

    padding: 13px 16px;

    display: flex;
    align-items: center;
    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);

    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(14px);
}

.floating-card__icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 10px;
    background: var(--primary-soft);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    color: var(--text);
    font-size: 9px;
}

.floating-card small {
    color: var(--text-light);
    font-size: 7px;
}

.floating-card--top {
    top: 13px;
    left: -20px;
}

.floating-card--bottom {
    right: -27px;
    bottom: 23px;
}


/* ==================================================
   8. BENEFITS
================================================== */

.benefits {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.benefits__grid {
    min-height: 112px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    padding: 23px 26px;

    display: flex;
    align-items: center;
    gap: 13px;

    border-right: 1px solid var(--border);
}

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

.benefit-item__icon {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: #047857;
    border-radius: 50%;
    background: #d1fae5;

    font-size: 11px;
    font-weight: 800;
}

.benefit-item strong {
    color: var(--navy);
    font-size: 10px;
}

.benefit-item p {
    margin-top: 4px;

    color: var(--text-light);
    font-size: 8px;
    line-height: 1.55;
}


/* ==================================================
   9. SECTION CHUNG
================================================== */

.section {
    padding: 95px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading--split {
    max-width: none;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading--split > div {
    max-width: 680px;
}

.section-heading__eyebrow {
    color: var(--primary);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.section-heading h2 {
    margin-top: 10px;

    color: var(--navy);

    font-size: clamp(31px, 3.4vw, 46px);
    line-height: 1.14;
    letter-spacing: -1.4px;
}

.section-heading p {
    margin-top: 16px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
}


/* ==================================================
   10. DESTINATIONS
================================================== */

.destinations {
    background: var(--white);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.destination-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.destination-card:hover {
    border-color: #b9d2ff;
    box-shadow: var(--shadow-medium);
    transform: translateY(-7px);
}

.destination-card__image {
    height: 155px;

    display: flex;
    align-items: flex-end;
    padding: 20px;

    position: relative;
    overflow: hidden;
}

.destination-card__image::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7, 26, 61, 0.45),
            transparent 70%
        );
}

.destination-card__image span {
    position: relative;
    z-index: 2;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.9);

    font-size: 25px;
}

.destination-card__image--japan {
    background:
        linear-gradient(135deg, #ffd4d4, #ffffff 55%, #cbe1ff);
}

.destination-card__image--korea {
    background:
        linear-gradient(135deg, #d8eaff, #ffffff 50%, #ffd5db);
}

.destination-card__image--china {
    background:
        linear-gradient(135deg, #ffddd0, #fff2d2 55%, #ffb9a5);
}

.destination-card__image--europe {
    background:
        linear-gradient(135deg, #d8e8ff, #eef4ff 50%, #c8dfff);
}

.destination-card__image--thailand {
    background:
        linear-gradient(135deg, #d7f4ff, #fff5dc 55%, #ffe1c8);
}

.destination-card__image--asia {
    background:
        linear-gradient(135deg, #d9fff1, #e8f7ff 55%, #d9e4ff);
}

.destination-card__content {
    padding: 21px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.destination-card h3 {
    color: var(--navy);
    font-size: 16px;
}

.destination-card p {
    margin-top: 5px;

    color: var(--text-light);
    font-size: 8px;
}

.destination-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--primary);

    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}


/* ==================================================
   11. PRODUCTS
================================================== */

.products {
    background: var(--surface);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    position: relative;

    min-height: 375px;
    padding: 28px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-card:hover {
    border-color: #b8d0ff;
    box-shadow: var(--shadow-medium);
    transform: translateY(-7px);
}

.product-card--featured {
    border-color: #9fc0ff;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f1f6ff
        );
}

.product-card__badge {
    position: absolute;
    top: 22px;
    right: 22px;

    padding: 5px 10px;

    color: var(--primary-dark);
    border-radius: 999px;
    background: var(--primary-soft);

    font-size: 8px;
    font-weight: 800;
}

.product-card__icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border-radius: 16px;
    background: var(--surface-blue);

    font-size: 23px;
}

.product-card h3 {
    margin-top: 25px;

    color: var(--navy);
    font-size: 19px;
}

.product-card > p {
    margin-top: 11px;

    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.75;
}

.product-card ul {
    margin-top: 23px;

    display: grid;
    gap: 11px;
}

.product-card li {
    position: relative;

    padding-left: 20px;

    color: var(--text-soft);
    font-size: 10px;
}

.product-card li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    color: var(--green);
    font-weight: 800;
}

.product-card > a {
    margin-top: auto;
    padding-top: 28px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
}


/* ==================================================
   12. HOW IT WORKS
================================================== */

.how-it-works {
    background: var(--white);
}

.steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.steps::before {
    content: "";

    position: absolute;
    top: 66px;
    right: 17%;
    left: 17%;

    height: 1px;
    border-top: 1px dashed #aac5f5;
}

.step-card {
    position: relative;
    z-index: 2;

    padding: 29px;

    text-align: center;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
}

.step-card__number {
    position: absolute;
    top: 20px;
    right: 22px;

    color: #dbe7f6;

    font-size: 35px;
    font-weight: 800;
    line-height: 1;
}

.step-card__icon {
    width: 69px;
    height: 69px;
    margin: 0 auto;

    display: grid;
    place-items: center;

    color: var(--primary);
    border-radius: 20px;
    background: var(--surface-blue);

    font-size: 25px;
}

.step-card h3 {
    margin-top: 24px;

    color: var(--navy);
    font-size: 17px;
}

.step-card p {
    margin-top: 10px;

    color: var(--text-soft);
    font-size: 10px;
    line-height: 1.75;
}


/* ==================================================
   13. GUIDES
================================================== */

.guides {
    background: var(--surface);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.guide-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.guide-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-6px);
}

.guide-card__image {
    height: 175px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            #dbe9ff,
            #f2f7ff 55%,
            #dff7ff
        );
}

.guide-card__image span {
    color: var(--primary);

    font-size: 42px;
    font-weight: 800;
}

.guide-card__content {
    padding: 23px;
}

.guide-card__category {
    color: var(--primary);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.guide-card h3 {
    margin-top: 10px;

    color: var(--navy);

    font-size: 16px;
    line-height: 1.45;
}

.guide-card p {
    margin-top: 11px;

    color: var(--text-soft);
    font-size: 10px;
    line-height: 1.7;
}

.guide-card a {
    margin-top: 20px;

    display: inline-flex;

    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}


/* ==================================================
   14. SUPPORT
================================================== */

.support {
    padding: 72px 0;

    color: var(--white);

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(23, 105, 255, 0.35),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(11, 185, 215, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--navy)
        );
}

.support__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.support__content {
    max-width: 690px;
}

.support__eyebrow {
    color: #9bc5ff;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.support h2 {
    margin-top: 10px;

    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1.15;
    letter-spacing: -1.3px;
}

.support p {
    margin-top: 15px;

    color: #c4d2e4;
    font-size: 12px;
    line-height: 1.75;
}

.support__actions {
    display: flex;
    gap: 10px;

    flex-shrink: 0;
}

.button--light {
    color: var(--primary-dark);
    background: var(--white);
}

.button--outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
}


/* ==================================================
   15. FOOTER
================================================== */

.footer {
    color: #91a3bb;
    background: var(--navy);
}

.footer__grid {
    padding: 58px 0;

    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 42px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__brand {
    max-width: 290px;
}

.footer__logo img {
    width: 165px;
    height: auto;

    filter: brightness(0) invert(1);
}

.footer__brand p {
    margin-top: 18px;

    color: #91a3bb;

    font-size: 10px;
    line-height: 1.8;
}

.footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer__column h3 {
    margin-bottom: 6px;

    color: var(--white);
    font-size: 11px;
}

.footer__column a,
.footer__column span {
    color: #91a3bb;
    font-size: 9px;

    transition: color 0.2s ease;
}

.footer__column a:hover {
    color: var(--white);
}

.footer__bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    font-size: 8px;
}

.footer__bottom div {
    display: flex;
    gap: 18px;
}

.footer__bottom a:hover {
    color: var(--white);
}


/* ==================================================
   16. RESPONSIVE LAPTOP
================================================== */

@media (max-width: 1080px) {
    .nav {
        gap: 17px;
    }

    .nav a {
        font-size: 11px;
    }

    .header-button {
        display: none;
    }

    .hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(370px, 0.9fr);
        gap: 45px;
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-child(2) {
        border-right: 0;
    }

    .benefit-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

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

    .footer__brand {
        grid-column: span 3;
        max-width: 500px;
    }
}


/* ==================================================
   17. RESPONSIVE TABLET
================================================== */

@media (max-width: 850px) {
    .topbar__inner > p {
        display: none;
    }

    .topbar__inner {
        justify-content: flex-end;
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;

        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;

        padding: 10px 24px 20px;

        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: var(--white);

        box-shadow: var(--shadow-medium);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 14px 4px;

        border-bottom: 1px solid var(--border);
    }

    .nav a:last-child {
        border-bottom: 0;
    }

    .nav a::after {
        display: none;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;

        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;

        border: 1px solid var(--border);
        border-radius: 12px;
        background: var(--white);
    }

    .menu-toggle span {
        width: 18px;
        height: 2px;

        border-radius: 999px;
        background: var(--text);

        transition:
            transform 0.2s ease,
            opacity 0.2s ease;
    }

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

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

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

    .hero {
        padding: 70px 0 82px;
    }

    .hero__layout {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 730px;
    }

    .hero__visual {
        min-height: auto;
        justify-content: flex-start;
    }

    .travel-card {
        width: min(100%, 520px);
    }

    .floating-card--top {
        left: 450px;
    }

    .floating-card--bottom {
        right: auto;
        left: 420px;
    }

    .product-grid,
    .steps,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .steps::before {
        display: none;
    }

    .support__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__brand {
        grid-column: span 2;
    }
}


/* ==================================================
   18. RESPONSIVE MOBILE
================================================== */

@media (max-width: 650px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .topbar {
        display: none;
    }

    .navbar {
        min-height: 68px;
        gap: 10px;
    }

    .logo img {
        width: 155px;
    }

    .search-toggle,
    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .navbar__actions {
        gap: 7px;
    }

    .nav {
        padding-right: 14px;
        padding-left: 14px;
    }

    .search-panel .container {
        padding: 12px 0;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        min-height: 43px;
    }

    .hero {
        padding: 52px 0 66px;
    }

    .hero__eyebrow {
        margin-bottom: 17px;
    }

    .hero h1 {
        font-size: clamp(39px, 11.5vw, 51px);
        line-height: 1.06;
        letter-spacing: -1.8px;
    }

    .hero__description {
        margin-top: 22px;

        font-size: 13px;
        line-height: 1.75;
    }

    .destination-search__box {
        grid-template-columns: 24px minmax(0, 1fr);
    }

    .destination-search__box button {
        grid-column: 1 / -1;

        width: 100%;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
        min-height: 48px;
    }

    .hero__trust {
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
    }

    .hero__visual {
        margin-top: 5px;
    }

    .travel-card {
        padding: 22px;
        border-radius: 22px;
    }

    .travel-card__data {
        margin: 29px 0 22px;
        padding: 20px;
    }

    .travel-card__data strong {
        font-size: 32px;
    }

    .floating-card {
        display: none;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .benefit-item:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 68px 0;
    }

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

    .section-heading--split {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-card__image {
        height: 140px;
    }

    .support {
        padding: 55px 0;
    }

    .support__actions {
        width: 100%;
        flex-direction: column;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 0;
    }
}


/* ==================================================
   19. MOBILE NHỎ
================================================== */

@media (max-width: 390px) {
    .logo img {
        width: 120px;
    }

    .hero h1 {
        font-size: 37px;
    }

    .travel-card__features {
        grid-template-columns: 1fr;
    }
}
/* Hiệu ứng header khi cuộn */
.header.is-scrolled {
    box-shadow: 0 10px 30px rgba(7, 26, 61, 0.08);
}

/* Làm nổi bật điểm đến vừa tìm */
.destination-card.is-highlighted {
    border-color: var(--primary);
    box-shadow:
        0 0 0 4px rgba(23, 105, 255, 0.12),
        var(--shadow-medium);

    transform: translateY(-7px);
}

/*==================================================
POPULAR DESTINATIONS
==================================================*/

.popular{
    padding:100px 0;
    background:#f8fbff;
}

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-subtitle{
    display:inline-block;
    color:#2563eb;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:48px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.section-heading p{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

.popular-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.country-card{

    position:relative;

    overflow:hidden;

    border-radius:26px;

    min-height:420px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.country-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.country-card img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.country-card:hover img{

    transform:scale(1.12);

}

.country-card .overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

    to top,

    rgba(5,25,63,.90),

    rgba(8,36,91,.55),

    rgba(0,0,0,.15)

    );

}

.country-card .content{

    position:absolute;

    left:30px;

    right:30px;

    bottom:30px;

    color:white;

    z-index:5;

}

.flag{

    font-size:32px;

}

.country-card h3{

    font-size:34px;

    margin:12px 0 10px;

    font-weight:800;

}

.country-card p{

    color:#d8e4ff;

    margin-bottom:22px;

}

.meta{

    display:flex;

    justify-content:space-between;

    margin-bottom:24px;

}

.meta span{

    padding:8px 18px;

    background:rgba(255,255,255,.15);

    border-radius:40px;

    backdrop-filter:blur(12px);

    font-size:14px;

}

.country-card a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:54px;

    border-radius:15px;

    text-decoration:none;

    font-weight:700;

    color:white;

    background:#2563eb;

    transition:.3s;

}

.country-card a:hover{

    background:#174dc6;

}

@media(max-width:1100px){

.popular-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.popular{

padding:70px 0;

}

.section-heading h2{

font-size:34px;

}

.popular-grid{

grid-template-columns:1fr;

}

.country-card{

min-height:360px;

}

}

/* Badge */

.country-card{
    position:relative;
}

.card-badge{

    position:absolute;

    top:18px;

    left:18px;

    z-index:10;

    padding:8px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    color:#fff;

    letter-spacing:.4px;

    text-transform:uppercase;

}

.badge-hot{
    background:#ff5a1f;
}

.badge-sale{
    background:#ef4444;
}

.badge-new{
    background:#16a34a;
}

.badge-premium{
    background:#7c3aed;
}

.badge-5g{
    background:#2563eb;
}

.badge-unlimited{
    background:#111827;
}

/* ==================================================
   GOVRA DESTINATION MARKET
================================================== */

.destination-market {
    padding: 100px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f9ff 100%
        );
}


/* Toolbar */

.market-toolbar {
    margin-bottom: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.market-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.market-filter {
    min-height: 40px;
    padding: 0 15px;

    color: var(--text-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);

    font-size: 10px;
    font-weight: 700;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.market-filter:hover {
    color: var(--primary);
    border-color: #a8c6ff;
    transform: translateY(-2px);
}

.market-filter.is-active {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);

    box-shadow: 0 10px 22px rgba(23, 105, 255, 0.2);
}

.market-search {
    width: min(100%, 260px);
    min-height: 43px;
    padding: 0 14px;

    display: flex;
    align-items: center;
    gap: 9px;

    flex-shrink: 0;

    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
}

.market-search input {
    width: 100%;
    min-width: 0;

    color: var(--text);
    border: 0;
    outline: 0;
    background: transparent;

    font-size: 10px;
}


/* Grid */

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* Card */

.market-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);

    box-shadow: 0 15px 40px rgba(14, 40, 83, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.market-card:hover {
    border-color: #abc8ff;

    box-shadow:
        0 25px 60px rgba(14, 40, 83, 0.16);

    transform: translateY(-8px);
}


/* Ảnh */

.market-card__media {
    position: relative;

    height: 225px;
    overflow: hidden;
}

.market-card__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.65s ease;
}

.market-card:hover .market-card__media img {
    transform: scale(1.08);
}

.market-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(6, 25, 61, 0.65),
            transparent 60%
        );
}


/* Cờ */

.market-card__flag {
    position: absolute;
    right: 18px;
    bottom: 17px;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);

    font-size: 23px;

    box-shadow: 0 8px 22px rgba(7, 26, 61, 0.2);
}


/* Badge */

.market-badge {
    position: absolute;
    top: 15px;
    left: 15px;

    padding: 7px 12px;

    color: var(--white);
    border-radius: 999px;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;

    box-shadow: 0 8px 20px rgba(7, 26, 61, 0.18);
}

.market-badge--hot {
    background: linear-gradient(135deg, #ff8a00, #ff4d00);
}

.market-badge--sale {
    background: linear-gradient(135deg, #ff4d5e, #d91235);
}

.market-badge--new {
    background: linear-gradient(135deg, #22c55e, #07873a);
}

.market-badge--premium {
    background: linear-gradient(135deg, #8b5cf6, #5b21b6);
}

.market-badge--fast {
    background: linear-gradient(135deg, #1f7aff, #1749c6);
}


/* Nội dung */

.market-card__body {
    padding: 22px;
}

.market-card__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.market-card__region {
    color: var(--primary);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.market-card h3 {
    margin-top: 4px;

    color: var(--navy);

    font-size: 20px;
    line-height: 1.25;
}

.market-card__technology {
    padding: 5px 9px;

    color: var(--primary-dark);
    border-radius: 999px;
    background: var(--primary-soft);

    font-size: 8px;
    font-weight: 800;
}

.market-card__network {
    margin-top: 9px;

    color: var(--text-soft);
    font-size: 9px;
}


/* Thông số */

.market-card__specs {
    margin-top: 19px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.market-card__specs span {
    min-width: 0;
    padding: 11px 8px;

    display: flex;
    align-items: center;
    flex-direction: column;

    color: var(--text-light);
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--surface);

    font-size: 7px;
    text-align: center;
}

.market-card__specs strong {
    margin-bottom: 3px;

    overflow: hidden;

    color: var(--navy);

    font-size: 9px;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* Giá và nút */

.market-card__footer {
    margin-top: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.market-card__price {
    display: flex;
    flex-direction: column;
}

.market-card__price small {
    color: var(--text-light);
    font-size: 7px;
}

.market-card__price strong {
    margin-top: 2px;

    color: var(--navy);

    font-size: 17px;
    line-height: 1.2;
}

.market-card__button {
    min-height: 42px;
    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: var(--white);
    border-radius: 11px;
    background: var(--primary);

    font-size: 9px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.market-card__button:hover {
    background: var(--primary-dark);

    box-shadow: 0 10px 22px rgba(23, 105, 255, 0.22);

    transform: translateY(-2px);
}


/* Không có kết quả */

.market-empty {
    grid-column: 1 / -1;

    padding: 60px 25px;

    border: 1px dashed #b9cceb;
    border-radius: 18px;
    background: var(--white);

    text-align: center;
}

.market-empty strong {
    color: var(--navy);
    font-size: 16px;
}

.market-empty p {
    margin-top: 7px;

    color: var(--text-soft);
    font-size: 10px;
}


/* Tablet */

@media (max-width: 980px) {
    .market-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .market-search {
        width: 100%;
    }

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


/* Điện thoại */

@media (max-width: 650px) {
    .destination-market {
        padding: 70px 0;
    }

    .market-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 7px;

        scrollbar-width: none;
    }

    .market-filters::-webkit-scrollbar {
        display: none;
    }

    .market-filter {
        flex-shrink: 0;
    }

    .market-grid {
        grid-template-columns: 1fr;
    }

    .market-card__media {
        height: 215px;
    }

    .market-card__body {
        padding: 19px;
    }
}

/* ==================================================
   CÁCH eSIM HOẠT ĐỘNG
================================================== */

.esim-process {
    padding: 100px 0;
    background: var(--white);
}

.esim-process__grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.esim-process__grid::before {
    content: "";

    position: absolute;
    top: 58px;
    right: 10%;
    left: 10%;

    border-top: 1px dashed #b4cbef;
}

.process-card {
    position: relative;
    z-index: 2;

    min-height: 250px;
    padding: 26px;

    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.process-card:hover {
    border-color: #a9c7ff;
    box-shadow: var(--shadow-medium);
    transform: translateY(-7px);
}

.process-card__number {
    position: absolute;
    top: 20px;
    right: 22px;

    color: #dce8f8;

    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.process-card__icon {
    width: 66px;
    height: 66px;

    display: grid;
    place-items: center;

    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            var(--primary-soft),
            #e7fbff
        );

    font-size: 27px;
}

.process-card h3 {
    margin-top: 25px;

    color: var(--navy);
    font-size: 17px;
}

.process-card p {
    margin-top: 10px;

    color: var(--text-soft);
    font-size: 10px;
    line-height: 1.75;
}

.process-note {
    margin-top: 30px;
    padding: 22px 25px;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 17px;

    border: 1px solid #cbdcff;
    border-radius: 17px;
    background: var(--surface-blue);
}

.process-note__icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 13px;
    background: var(--white);

    font-size: 20px;
}

.process-note strong {
    color: var(--navy);
    font-size: 11px;
}

.process-note p {
    margin-top: 4px;

    color: var(--text-soft);
    font-size: 9px;
}

.process-note a {
    color: var(--primary);

    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}


/* ==================================================
   VÌ SAO CHỌN GOVRA
================================================== */

.why-govra {
    padding: 100px 0;

    color: var(--white);

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(23, 105, 255, 0.35),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 90%,
            rgba(11, 185, 215, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0c3273,
            var(--navy) 65%
        );
}

.why-govra__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(50px, 7vw, 90px);
}

.why-govra__content h2 {
    margin-top: 13px;

    font-size: clamp(34px, 4vw, 51px);
    line-height: 1.12;
    letter-spacing: -1.7px;
}

.why-govra__content > p {
    margin-top: 20px;

    color: #c7d5e8;
    font-size: 12px;
    line-height: 1.85;
}

.why-govra__stats {
    margin-top: 35px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.why-govra__stats div {
    padding: 18px 15px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
}

.why-govra__stats strong {
    font-size: 22px;
}

.why-govra__stats span {
    margin-top: 5px;

    color: #98abc5;
    font-size: 7px;
}

.why-govra__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.govra-feature {
    padding: 20px;

    display: flex;
    align-items: flex-start;
    gap: 14px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(12px);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.govra-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.govra-feature__icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 13px;
    background: rgba(255, 255, 255, 0.1);

    font-size: 19px;
}

.govra-feature h3 {
    font-size: 12px;
}

.govra-feature p {
    margin-top: 6px;

    color: #aebed2;
    font-size: 8px;
    line-height: 1.65;
}


/* ==================================================
   FAQ
================================================== */

.faq-section {
    padding: 100px 0;
    background: var(--surface);
}

.faq-section__layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: clamp(45px, 7vw, 90px);
}

.faq-section__intro {
    position: sticky;
    top: 135px;
}

.faq-section__intro h2 {
    margin-top: 13px;

    color: var(--navy);

    font-size: clamp(32px, 3.5vw, 45px);
    line-height: 1.15;
    letter-spacing: -1.4px;
}

.faq-section__intro p {
    margin-top: 18px;

    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.8;
}

.faq-section__intro .button {
    width: fit-content;
    margin-top: 27px;
}

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

.faq-item {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
}

.faq-question {
    width: 100%;
    min-height: 68px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    color: var(--navy);
    background: transparent;

    font-size: 11px;
    font-weight: 800;
    text-align: left;
}

.faq-question__icon {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--primary);
    border-radius: 50%;
    background: var(--primary-soft);

    font-size: 17px;

    transition: transform 0.25s ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 20px 0;

    color: var(--text-soft);

    font-size: 10px;
    line-height: 1.8;

    transition: padding 0.3s ease;
}

.faq-item.is-open {
    border-color: #aac7ff;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
    padding-bottom: 20px;
}

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


/* Tablet */

@media (max-width: 900px) {
    .esim-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .esim-process__grid::before {
        display: none;
    }

    .why-govra__layout,
    .faq-section__layout {
        grid-template-columns: 1fr;
    }

    .faq-section__intro {
        position: static;
    }
}


/* Điện thoại */

@media (max-width: 650px) {
    .esim-process,
    .why-govra,
    .faq-section {
        padding: 70px 0;
    }

    .esim-process__grid {
        grid-template-columns: 1fr;
    }

    .process-note {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .process-note a {
        grid-column: 1 / -1;
        padding-left: 62px;
    }

    .why-govra__stats {
        grid-template-columns: 1fr;
    }

    .why-govra__features {
        grid-template-columns: 1fr;
    }

    .faq-question {
        min-height: 64px;
        padding: 0 16px;

        font-size: 10px;
    }

    .faq-answer p {
        padding-right: 16px;
        padding-left: 16px;
    }
}
