/* Header & Banner Helper Styles */
:root {
    --black: #000000;
    --description: #636366;
    --site-bg: #FAFAFE;
    --btn-text: #FFFFFF;
}
@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-SemiBold.eot');
    src: url('../fonts/Geist-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Geist-SemiBold.woff2') format('woff2'),
        url('../fonts/Geist-SemiBold.woff') format('woff'),
        url('../fonts/Geist-SemiBold.ttf') format('truetype'),
        url('../fonts/Geist-SemiBold.svg#Geist-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Light.eot');
    src: url('../fonts/Geist-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Geist-Light.woff2') format('woff2'),
        url('../fonts/Geist-Light.woff') format('woff'),
        url('../fonts/Geist-Light.ttf') format('truetype'),
        url('../fonts/Geist-Light.svg#Geist-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Bold.eot');
    src: url('../fonts/Geist-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Geist-Bold.woff2') format('woff2'),
        url('../fonts/Geist-Bold.woff') format('woff'),
        url('../fonts/Geist-Bold.ttf') format('truetype'),
        url('../fonts/Geist-Bold.svg#Geist-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Medium.eot');
    src: url('../fonts/Geist-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Geist-Medium.woff2') format('woff2'),
        url('../fonts/Geist-Medium.woff') format('woff'),
        url('../fonts/Geist-Medium.ttf') format('truetype'),
        url('../fonts/Geist-Medium.svg#Geist-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Regular.eot');
    src: url('../fonts/Geist-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Geist-Regular.woff2') format('woff2'),
        url('../fonts/Geist-Regular.woff') format('woff'),
        url('../fonts/Geist-Regular.ttf') format('truetype'),
        url('../fonts/Geist-Regular.svg#Geist-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body,html{
    height: 100%;
}
body {
    font-family: "Geist", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: background-color 0.4s, color 0.4s;
    -webkit-transition: background-color 0.4s, color 0.4s;
    -moz-transition: background-color 0.4s, color 0.4s;
    -ms-transition: background-color 0.4s, color 0.4s;
    -o-transition: background-color 0.4s, color 0.4s;
    display: flex;
    flex-direction: column;
    background-color: var(--site-bg);
    overflow-x: hidden !important;
}


P {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
a {
    text-decoration: none;
    cursor: pointer;
}
h1 {
    font-size: 54px;
    line-height: 68px;
    font-weight: 600;
}
h2 {
    font-size: 34px;
    line-height: 41px;
    font-weight: 600;
    margin-bottom: 12px;
}
h1, h2 {
    background: -webkit-linear-gradient(180deg, #007AFF, #000000 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.img_boxx img {
    width: 100%;
}
/* nav.navbar .container {
    width: 1150px;
} */
.banner-section {
    position: relative;
    min-height: 850px;
    background-image: url('../images/hero-bg.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    padding-top: 130px !important;
    padding-bottom: 70px !important;
}
.banner-section::before, .banner-section::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 991px) {
    .banner-section {
        height: auto !important;
        min-height: 600px;
        padding-top: 160px !important;
        padding-bottom: 60px !important;
        background-position: center center !important;
    }
}

/* Hero content aligns with the main page content container below (text stays left-aligned) */
.banner-section .section-wrap {
    width: 100%;
}
.hero-left-section {
    flex: 0 1 auto !important;   /* override Bootstrap col flex-basis */
    max-width: 520px !important; /* content block width around 520px */
    width: 100% !important;
    padding-left: 0 !important;
    margin-left: 0 !important;   /* Align hero content block to the left edge of the container */
    margin-right: auto !important;
    transform: translateY(-10px);
}

@media (max-width: 1024px) {
    .banner-section .section-wrap {
        width: 100% !important;
    }
    .hero-left-section {
        max-width: 500px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        transform: none !important;
    }
    .hero-search-container {
        max-width: 100% !important;
        width: 100% !important;
    }
}

.hero-left-section h1 {
    font-size: 68px !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    max-width: 650px !important;
    margin-bottom: 24px !important;
}

@media (max-width: 991px) {
    .hero-left-section h1 {
        font-size: 48px !important;
        line-height: 1.1 !important;
    }
}

@media (max-width: 767px) {
    .hero-left-section h1 {
        font-size: 38px !important;
        line-height: 1.2 !important;
    }
}

.hero-desc {
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
    max-width: 520px !important;
    margin-bottom: 36px !important;
    font-weight: 400 !important;
}

/* Hero Search Pill */
.hero-search-container {
    max-width: 480px;
    width: 100%;
    margin-top: 0 !important;
    position: relative;
    z-index: 20;
}
.hero-search-wrapper {
    background: #ffffff !important;
    border-radius: 9999px !important;
    height: 58px !important;
    padding: 4px 6px 4px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    position: relative;
}
.hero-search-wrapper::after {
    content: none !important;
    display: none !important;
}
.hero-search-pill {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 16px !important;
    color: #1c1c1e !important;
    height: 100% !important;
    width: calc(100% - 60px) !important;
    outline: none !important;
}
.hero-search-pill::placeholder {
    color: #8e8e93 !important;
}
.hero-search-btn {
    background-color: #007AFF !important;
    border: none !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease, transform 0.1s ease !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}
.hero-search-btn:hover {
    background-color: #0056b3 !important;
    transform: scale(1.03) !important;
}
.hero-search-btn:active {
    transform: scale(0.97) !important;
}

/* Hero inline search dropdown */
.hero-search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-height: 300px;
    overflow-y: auto;
    padding: 6px;
    z-index: 60;
    -webkit-overflow-scrolling: touch;
}
.hero-search-dropdown.open {
    display: block;
}
.hero-search-result {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 56px;
    padding: 0 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #1c1c1e;
    transition: background-color 0.15s ease;
}
.hero-search-result:hover,
.hero-search-result:focus {
    background: #f2f2f5;
    color: #1c1c1e;
    text-decoration: none;
}
.hero-search-result-flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.hero-search-result-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}
.hero-search-empty {
    padding: 18px 14px;
    color: #8e8e93;
    font-size: 15px;
}
.hero-search-dropdown::-webkit-scrollbar {
    width: 8px;
}
.hero-search-dropdown::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 8px;
}

.hero-connectivity {
    margin-top: 35px !important;
}
.hero-connectivity .secure span {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.4) !important;
}
/* .banner-bg img {
    width: 100%;
} */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #ffffff !important;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05) !important;
    border-radius: 60px !important; /* soft radius suited to full-width bar */
    padding: 0 24px !important;
    height: 70px; /* Refined desktop height 70px */
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    position: relative;
}
.header a {
    padding: 0px;
}
.header .navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
}
.header .navbar-brand img {
    display: block;
    height: 32px; /* Proportional logo size to fit comfortably in 70px header */
}
.header-top {
    padding: 0 !important; /* Managed dynamically via margins */
    z-index: 1020;
    transition: top 0.3s ease;
}
.header-top .container {
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    padding-top: 24px;
}
@media (max-width: 992px) {
    .header-top .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}


/* Header Links styling */
.header ul.header-nav-links li {
    padding: 0px !important;
    display: flex;
    align-items: center;
    height: 100%;
}
.header ul.header-nav-links li a.nav-link {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #3a3a3c !important;
    padding: 6px 14px !important;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}
.header ul.header-nav-links li a.nav-link:hover {
    color: #1fa2f9 !important;
}

/* Get Started Button Desktop */
.btn-get-started {
    background: #000000;
    color: #ffffff !important;
    height: 42px;
    padding: 0 26px !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-get-started:hover {
    background: #1fa2f9;
    color: #ffffff !important;
    transform: translateY(-1px);
}
.btn-get-started:active {
    transform: translateY(0);
}

/* Get Started Button Mobile */
.btn-get-started-mobile {
    background: #000000;
    color: #ffffff !important;
    height: 46px;
    padding: 0 32px !important;
    font-size: 15px;
    font-weight: 700;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    transition: background-color 0.2s ease;
}
.btn-get-started-mobile:hover {
    background: #1fa2f9;
    color: #ffffff !important;
}

@media (min-width: 992px) {
    .header-nav-links {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        margin: 0 !important;
        height: 100%;
        align-items: center;
    }
    .header-action-btn-container {
        margin-left: auto !important;
        display: flex;
        align-items: center;
    }
}
@media (max-width: 992px) {
    .header {
        height: auto !important;
        padding: 14px 24px !important;
    }
    .header-nav-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    .header-nav-links li {
        width: 100%;
        text-align: center;
        padding: 0 !important;
        display: block;
    }
    .header-nav-links li.nav-item {
        border-bottom: 1px solid rgba(17, 24, 39, 0.06);
    }
    .header-nav-links li.nav-item:nth-last-child(2),
    .header-nav-links li.nav-item:last-child {
        border-bottom: none;
    }
    .header-nav-links li.nav-item:last-child {
        margin-top: 16px !important;
    }
    .header ul.header-nav-links li a.nav-link {
        justify-content: center;
        padding: 11px 14px !important;
        font-size: 15px;
        border-radius: 10px;
    }
    .header ul.header-nav-links li a.nav-link:hover,
    .header ul.header-nav-links li a.nav-link:focus {
        background: rgba(0, 122, 255, 0.06);
        color: #1fa2f9 !important;
    }
}
.hero-left-section {
    display: flex;
    flex-direction: column;
    row-gap: 0;
}
.search-container {
    margin-top: 20px;
}
.hero-left-section .search-container p {
    font-size: 16px;
    line-height: 21px;
    color: var(--black);
    margin-bottom: 12px;
}
.hero-left-section p {
    font-size: 18px;
    line-height: 24px;
    color: var(--description);
}
input.search-box {
    background: #fff;
    border: 1px solid #3C3C432E;
    padding: 18px;
    border-radius: 10px;
    cursor: pointer;
}
.input-wrapper {
    position: relative;
    cursor: pointer;
}
.input-wrapper::after {
    content: "";
    position: absolute;
    background-image: url(../img/search-icon.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 24px;
    height: 24px;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}
.connectivity {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    margin-top: 30px;
    gap: 15px;
}
.secure {
    display: flex;
    align-items: center;
    gap: 5px;
}
.secure img {
    width: 25px;
    height: 25px;
}
a.arrow-right {
    position: relative;
}
a.arrow-right::after {
    content: "";
    position: absolute;
    background: url(../img/arrow-right.svg);
    background-repeat: no-repeat;
    width: 12px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
    transition: 0.3s ease-in;
}
a.arrow-right:hover::after {
    margin-left: 13px;
    transition: 0.3s ease-in;
}
a.arrow-right::before {
    content: "";
    position: absolute;
    width: 0%;
    background: rgba(255, 255, 255, 0.2);
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 36px;
    transition: 0.3s ease-in;
}
a.arrow-right:hover::before {
    width: 100%;
    transition: 0.3s ease-in;
}
.main-text p.banner-top {
    background: #FFFFFFB2;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 36px;
    margin-bottom: 24px;
}
.main-text p.banner-desc-text {
    margin-top: 24px;
    color: var(--description);
}
.app-btn {
    margin-top: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.main-text {
    padding-bottom: 146px;
}
.plans {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 60%, #FAFAFE 100%);
    padding: 24px;
    border-radius: 24px;
}
.country h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: var(--black);
    text-align: left;
    margin-bottom: 0px;
}
.country p {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: var(--black);
}
.plan-description {
    background: linear-gradient(214.15deg, #EEF6FD 0%, #FAFAFE 64.22%);
    padding: 16px;
    border-radius: 10px;
}
.plan-description ul li {
    list-style: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black);
    text-align: left;
    margin: 16px 0px;
    position: relative;
}
.plan-description ul li:last-child {
    margin-bottom: 0px;
}
.plan-description ul li::before {
    content: "";
    position: absolute;
    background-image: url(../img/check.svg);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    left: -32px;
}
.plan-description ul {
    margin-bottom: 12px;
}
.plan-description p {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: var(--black);
}
.active-plan-btn a {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: var(--btn-text);
    background-color: var(--black);
    display: block;
    padding: 10px;
    border-radius: 36px;
    position: relative;
}
.active-plan-btn a::before {
    content: "";
    position: absolute;
    width: 0%;
    background: rgba(255, 255, 255, 0.2);
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 36px;
    transition: 0.4s ease-in;
}
.active-plan-btn a:hover:before {
    width: 100%;
    transition: 0.4s ease-in;
}
.validity {
    margin: 12px 0px;
}
.validity p {
    font-size: 34px;
    line-height: 41px;
    font-weight: 700;
    background: -webkit-linear-gradient(180deg, #007AFF, #000000 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}
.validity p span.day-time {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.country-plan {
    padding-bottom: 100px;
}
.usa-plan {
    transform: scale(1.2);
    z-index: 1;
}
.france-plan {
    transform: rotate(-6deg);
    opacity: 0.7;
}
.canada-plan {
    transform: rotate(6deg);
    opacity: 0.7;
}
.user-review {
    max-width: 462px;
    margin: 0 auto;
    position: relative;
}
.user-review::before {
    content: "";
    position: absolute;
    background: url(../img/global-user-1.svg);
    background-repeat: no-repeat;
    top: 0;
    left: -88px;
    width: 90px;
    height: 100%;
}
.user-review::after {
    content: "";
    position: absolute;
    background: url(../img/global-user-2.svg);
    background-repeat: no-repeat;
    top: 0;
    right: -88px;
    width: 90px;
    height: 100%;
}
.digital-sim {
    padding: 80px 0px;
}
.digital-sim img {
    width: 100%;
}
.digital-sim p {
    font-size: 18px;
    line-height: 24px;
    color: var(--description);
    margin-top: 24px;
}
.destination-section {
    padding: 80px 0;
}
.card-destination {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    background-color: #f7f7f8;
    color: inherit !important;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
    position: relative;
}
.card-destination:hover {
    background-color: #e2e2e4;
    text-decoration: none;
}
.card-destination::after {
    position: absolute;
    content: "";
    background-image: url(../img/right-arrow.svg);
    background-size: 100%;
    width: 24px;
    height: 24px;
    right: 16px;
}
.destination-btn {
    text-align: left;
    margin-top: 36px;
}
.destination-btn a {
    background: var(--black);
    color: var(--btn-text);
    padding: 10px 45px 10px 20px;
    display: inline-block;
    border-radius: 36px;
}
.flag-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #e3e3e3;
}
.global-users {
    padding: 80px 0px;
}
.user-review h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    color: var(--black);
    margin-top: 16px;
}
.user-review p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--description);
}
.global-users span.customer-review {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: var(--description);
}
.global-users p {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 24px;
    background: -webkit-linear-gradient(240deg, #007AFF, #000000 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.benefits {
    padding: 80px 0px;
}
.data-structure p.connect {
    background: #78788014;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 36px;
    color: var(--black);
}
.data-structure h2 {
    margin: 12px 0px;
}
.data-structure p {
    color: var(--description);
}
/* Destination section — header row with duration tabs */
.destination-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}
.destination-head-text {
    max-width: 760px;
}
.destination-head-text h2 {
    margin-top: 0;
}
.duration-tabs {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    background: #78788014;
    border-radius: 9999px;
    margin-top: 6px;
}
.duration-tab {
    border: none;
    background: transparent;
    color: var(--black);
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 9px 18px;
    border-radius: 9999px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.duration-tab:hover {
    background: rgba(0, 122, 255, 0.10);
    color: #007AFF;
}
.duration-tab.active {
    background: #007AFF;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.30);
}
.duration-tab.active:hover {
    background: #007AFF;
    color: #ffffff;
}
@media (max-width: 991px) {
    .destination-head {
        flex-direction: column;
        gap: 20px;
    }
    .duration-tabs {
        margin-top: 0;
        align-self: flex-start;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
.plan-benefits {
    display: flex;
    flex-wrap: wrap;
    column-gap: 36px;
    row-gap: 48px;
    margin-top: 48px;
}
.plan-info {
    width: calc(50% - 18px);
    padding: 36px;
    border-radius: 24px;
    color: var(--black);
}
.plan-img {
    width: 96px;
    height: 96px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan-info h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    margin: 36px 0px 12px;
}
.plan-info p {
    color: var(--description);
}
.unlimited-data {
    background: linear-gradient(114.06deg, #FFFFFF 17.42%, #FFFFFF 42.21%, #FFE7C4 100.05%);
}
.unlimited-data .plan-img {
    background: #FF95001A;
}
.favorite-apps {
    background: linear-gradient(114.06deg, #FFFFFF 17.42%, #FFFFFF 42.21%, #EAD3FF 100.05%);
}
.favorite-apps .plan-img {
    background: #AF52DE1A;
}
.customer-support {
    background: linear-gradient(114.06deg, #FFFFFF 17.42%, #FFFFFF 42.21%, #AAD3FF 100.05%);
}
.customer-support .plan-img {
    background: #007AFF1A;
}
.fast-internet {
    background: linear-gradient(114.06deg, #FFFFFF 17.42%, #FFFFFF 42.21%, #99FFB3 100.05%);
}
.fast-internet .plan-img {
    background: #34C7591A;
}
.step span {
    width: 30px;
    height: 30px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    color: var(--btn-text);
}
.slick-slide > div, .testimonial-slide, .testimonial_box, .testimonial_box-inner  {
    height: 100%;
}
.testimonial-section {
    padding: 80px 0px;
    overflow: hidden;
}
.choose-sim p {
    color: var(--description);
}
.user-info-section {
    display: flex;
    align-items: center;
    column-gap: 6px;
    width: 100%;
    border-bottom: 1px solid #78788029;
    padding: 24px 24px;
}
.testimonial_box-job {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.testimonial {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.testimonial-slider {
    position: unset !important;
}
.testimonial > .container {
    padding: 0px 12px;
}
.testimonial-section .row .col {
    padding: 0px;
}
.testimonial-slider .slick-track {
    display: flex;
}
.testimonial-slider .slick-list {
    overflow: visible;
}
.testimonial__inner {
    padding: 48px 0px;
}
.testimonial_box-top{
    background-color: var(--btn-text);
    /* padding: 24px; */
    border-radius: 15px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    text-align: center;
    border: 1px solid #78788029;
    height: 100%;
}
.testimonial_box-text{
    padding: 24px;
}
.testimonial_box-text p{
    color: var(--description);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0;
}
.testimonial_box-img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.testimonial_box-job h4{
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
    text-align: left;
}
.testimonial_box-job p {
    color: #293241;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 0;
}
.testimonial__inner .slick-initialized .slick-slide {
    margin-right: 18px;
    height: auto;
    width: 360px !important;
}
.testimonial__inner .slick-initialized .slick-slide:last-child {
    margin-right: 0px;
}
.next-arrow {
    width: 50px;
    height: 40px;
    border-radius: 36px;
    border: 1px solid #78788033;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 4px;
    right: 265px;
    transition: 0.3s ease-in;
}
.next-arrow:hover {
    width: 60px;
    transition: 0.3s ease-in;
}
.prev-arrow a.arrow-right {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: var(--btn-text);
    background: var(--black);
    padding: 10px 45px 10px 20px !important;
    border-radius: 36px;
    position: absolute;
    bottom: 4px;
    right: 12px;
}
.feedback {
    display: flex;
    align-items: center;
    gap: 16px;
}
p.user-rating {
    font-size: 34px;
    line-height: 41px;
    font-weight: 700;
    background: -webkit-linear-gradient(210deg, #007AFF, #000000 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feedback p {
    color: var(--description);
}
.footer-section {
    position: relative;
}
.footer-section::after {
    content: "";
    position: absolute;
    background-image: url(../img/footer-bg.webp);
    background-repeat: no-repeat;
    background-position: 0% 40%;
    background-size: cover;
    width: 100%;
    height: 811px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.footer {
    padding: 80px 0px;
}
.footer .app-btn {
    margin-top: 36px;
}
.footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0px;
}
.footer-link p {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: var(--description);
}
.links ul {
    margin-bottom: 0px;
    padding-left: 0px;
}
.links ul li {
    list-style: none;
    display: inline-block;
    padding: 0 12px;
    position: relative;
}
.links ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: var(--description);
}
.links ul li a:hover {
    color: #1fa2f9;
}
.links ul li::after {
    content: "•";
    position: absolute;
    right: -4px;
    color: var(--description);
}
.links ul li:last-child:after {
    content: none;
}
.links ul li:first-child {
    padding-left: 0px;
}
.links ul li:last-child {
    padding-right: 0px;
}
.privacy-section, .policy-section, .contact-section {
    padding-top: 160px;
}
.info-text p {
    color: var(--description);
    margin: 10px 0;
}
.info-text h2 {
    margin: 25px 0px 12px;
}
.info-text h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
}
.footer-border {
    border-top: 1px solid #d3d3d3;
}
/* Homepage footer — simple centered dark navy */
.home-footer {
    background: #15172a;
    padding: 40px 0;
}
.home-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.home-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.home-footer-links a {
    font-size: 15px;
    line-height: 1.4;
    color: #aeb4c7;
    text-decoration: none;
    transition: color 0.2s ease;
}
.home-footer-links a:hover {
    color: #ffffff;
}
.home-footer-copy {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #8b91a5;
}
@media (max-width: 575px) {
    .home-footer-links {
        gap: 14px 22px;
    }
}
.form-group {
    display: flex;
    gap: 15px;
}
label {
    width: 100%;
    margin-bottom: 4px;
}
input, textarea {
    width: 100%;
    border: 1px solid #dedfdf;
    background: transparent;
    padding: 6px 12px;
    border-radius: 6px;
}
input[type="submit"] {
    width: auto;
    background: var(--black);
    color: #ffffff;
    padding: 10px 20px 10px 20px;
    border-radius: 36px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
input:focus-visible, textarea:focus-visible {
    outline: none;
}
.form-part {
    max-width: 760px;
}
.form-detail {
    width: 84%;
}
.form-label-name {
    width: 16%;
}
span.error {
    color: #ff3333;
}

/* Modal Style */
body :has(.modal-popup-open) {
  overflow: hidden;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.modal-content {
      background: #fff;
      width: 960px;
      height: 70vh;
      padding: 20px 24px;
      overflow-y: auto;
      position: relative;
    }

    .modal-content h2 {
      margin-top: 0;
      margin-bottom: 0;
      font-size: 20px;
    }

    .modal-input-wrapper {
      position: relative;
      margin: 16px 0;
    }

    .modal-input {
      width: 100%;
      padding: 12px 36px 12px 14px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 16px;
    }

    .modal-input:focus {
      outline: none;
      border-color: #aaa;
    }

    .destinations {
      margin-top: 10px;
    }

    .destination {
      display: flex;
      align-items: center;
      padding: 12px 0;
      cursor: pointer;
    }
    .destination .card-destination {
        display: flex;
        width: 100%;
    }

    .destination img {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      margin-right: 14px;
    }

    .destination-info {
      display: flex;
      flex-direction: column;
    }

    .destination-name {
      font-weight: 600;
    }

    .destination-price {
      font-size: 13px;
      color: #555;
    }

    .close-modal {
      position: absolute;
      top: 16px;
      right: 20px;
      font-size: 30px;
      color: #555;
      cursor: pointer;
    }

    /* qiuck guide Page css Start */

.banner_main{
    padding: 192px 0 100px 0;
    background: url(../img/qiuck_bg.png) no-repeat;
    background-size: cover;
    background-position: center center;
}
.banner_main p{
    margin-top: 24px;
    color: var(--description);
}

.purchase_main{
    padding: 80px 0;
}
.purchase_main p{
    color: var(--description);
    margin-top: 12px;
}
.purchase_main .step_box_main{
    gap: 36px;
    margin-top: 48px;
}
.purchase_main .step_box{
    background-color: #f2f2f7;
    padding: 60px 24px 0;
    border: 1px solid #78788014;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.purchase_main .step_number{
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #78788014;
    border-radius: 0 50% 50%;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    text-align: center;
    padding: 12px 20px;
}
.purchase_main .step_box h3{
    font-size: 22px;
}
.purchase_main .step_box .box_inside{
    padding: 23px 40px 0;
}
.activate_esim_main p{
    margin-top: 12px;
    color: var(--description);
}
.activate_esim_main .box_alternet{
    margin-top: 48px;
    gap: 48px;
}
.activate_esim_main .box_alternet .img_boxx{
    padding: 24px 50px 0;
    background-color: #f2f2f7;
    border: 1px solid #78788014;
    border-radius: 10px;
    text-align: center;
}
.activate_esim_main .box_alternet .content_boxx{
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
}
.activate_esim_main .box_alternet .content_boxx p{
    margin: 0;
}
.activate_esim_main .box_alternet .content_boxx ul{
    padding: 0;
    list-style: none;
}
.activate_esim_main .box_alternet .content_boxx ul li{
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--description);
}
.activate_esim_main .box_alternet .content_boxx ul li img{
    margin-right: 10px;
}
.activate_esim_main .box_alternet .content_boxx .nummber_cir{
    border-radius: 50%;
    background-color: #f2f2f7;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.activate_esim_main .note_popup{
    display: flex;
    justify-content: center;
    margin-top: 48px;
}
.activate_esim_main .note_popup p{
    padding: 8px 18px;
    border-radius: 36px;
    color: #000000;
    text-align: center;
    background: #78788014;
    border: 1px solid;
    border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

/* qiuck guide Page css end */



@media (min-width: 1400px) {
    .container {
        max-width: 1150px;
    }
}
@media only screen and (max-width: 1400px){
    .purchase_main .step_box.box_2 .box_inside a {
        padding: 6px 15px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 1200px) {
    h1 {
        font-size: 52px;
        line-height: 60px;
    }
    h2 {
        font-size: 32px;
        line-height: 38px;
    }
    P {
        font-size: 16px;
    }
    .country-plan {
        padding-bottom: 80px;
    }
    .global-users {
        padding: 80px 0px;
    }
    .benefits {
        padding: 80px 0px;
    }
    .process {
        padding: 80px 0px;
    }
    .testimonial-section {
        padding: 80px 0px;
    }
    .footer {
        padding: 80px 0px;
    }
    .country h3 {
        font-size: 20px;
    }
    .validity p {
        font-size: 26px;
        line-height: 38px;
    }
    .validity p span.day-time {
        font-size: 18px;
        line-height: 26px;
    }
    .plan-description p {
        font-size: 18px;
        line-height: 24px;
    }
    .plan-description ul li {
        font-size: 16px;
    }
    .plan-description ul li::before {
        width: 20px;
        height: 20px;
        background-size: contain;
        top: 3px;
    }
    .sim-details h3 {
        font-size: 20px;
    }
    .header .download-btn a {
        padding: 10px 38px 10px 18px !important;
    }
    .header ul li a {
        font-size: 13px;
    }
    .purchase_main .step_box.box_2 .box_inside a {
        padding: 6px 15px;
        font-size: 18px;
    }
    .purchase_main .step_box .box_inside{
        padding: 0px 0px;
    }
    .header ul li {
        padding: 0px 8px !important;
    }
    .hero-right-section img {
        width: 100%;
    }
    .digital-sim img {
        width: 100%;
    }
    .header a img {
        width: 165px;
    }
}

@media only screen and (max-width: 1024px) {
    .country-plan {
        padding-bottom: 60px;
    }
    .global-users {
        padding: 60px 0px;
    }
    .benefits {
        padding: 60px 0px;
    }
    .process {
        padding: 60px 0px;
    }
    .testimonial-section {
        padding: 60px 0px;
    }
    .footer {
        padding: 60px 0px;
    }
    /* .form-label-name {
        width: 15%;
    }
    .form-detail {
        width: 85%;
    } */
    .destination-section {
        padding: 60px 0;
    }
    .secure span {
        font-size: 14px;
    }
    .connectivity {
        gap: 12px;
    }
    .digital-sim {
        padding: 60px 0px;
    }
    .purchase_main .step_box h3 {
        font-size: 16px;
    }
    .purchase_main .step_box .box_inside{
        margin: 20px 10px 0;
    }
    .scan-code {
        padding: 33px 24px;
    }
}

.navbar-nav .nav-link,
.header ul li a {
    white-space: nowrap !important;
}

@media only screen and (max-width: 1199px) {
    .navbar-content {
        position: absolute;
        top: 35px;
        background: #fff;
        width: 100%;
        left: 0;
        padding: 44px 16px 16px;
        z-index: -1;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
    }
    .header {
        background: #fff;
        backdrop-filter: unset;
        box-shadow: unset;
        position: relative;
    }
    .header button:focus:not(:focus-visible) {
        box-shadow: unset;
    }
    .header ul li {
        padding: 0px 0px 12px 0px !important;
    }
}

@media only screen and (max-width: 992px) {
    h1 {
        font-size: 36px;
        line-height: 50px;
    }
    br {
        display: none;
    }
    .qr-code-manage {
        margin-bottom: 40px;
    }
    .footer-link {
        flex-direction: column;
        row-gap: 8px;
    }
    .footer-link p {
        text-align: center;
    }
    .prev-arrow a.arrow-right {
        bottom: 85px;
    }
    .next-arrow {
        bottom: 85px;
    }
    .testimonial__inner {
        padding: 48px 0px 110px 0px;
    }
    .country-plan {
        padding-bottom: 40px;
    }
    .global-users {
        padding: 40px 0px;
    }
    .benefits {
        padding: 40px 0px;
    }
    .process {
        padding: 40px 0px;
    }
    .testimonial-section {
        padding: 40px 0px;
    }
    .footer {
        padding: 60px 0px;
    }
    .country h3 {
        font-size: 18px;
    }
    .country p {
        font-size: 13px;
        line-height: 18px;
        text-align: left;
    }
    .validity p {
        font-size: 18px;
        line-height: 24px;
    }
    .validity p span.day-time {
        font-size: 16px;
        line-height: 22px;
    }
    .plans {
        padding: 20px;
    }
    .plan-description {
        padding: 10px;
    }
    .plan-description p {
        font-size: 16px;
        line-height: 22px;
    }
    .plan-description ul li {
        font-size: 13px;
        line-height: 18px;
        margin: 12px 0px;
    }
    .active-plan-btn a {
        font-size: 14px;
        line-height: 19px;
        padding: 8px;
    }
    .plan-description ul li::before {
        top: 1px;
    }
    .country-plan {
        gap: 0 !important;
    }
    .main-text {
        padding-bottom: 120px;
    }
    .testimonial-section .row .col {
        padding: 0 12px;
    }
    .testimonial_box-job {
        flex-direction: column;
    }
    .user-info-section {
        column-gap: 10px;
        padding: 20px 20px;
    }
    .testimonial_box-job img {
        width: fit-content;
    }
    .testimonial_box-text p {
        font-size: 16px;
        line-height: 22px;
    }
    .testimonial_box-text {
        padding: 20px;
    }
    .plan-benefits {
        column-gap: 35px;
        row-gap: 35px;
    }
    .testimonial__inner {
        padding: 48px 0px 50px 0px;
    }
    .plan-info h3 {
        margin: 26px 0px 12px;
    }
    .form-label-name {
        width: 18%;
    }
    .form-detail {
        width: 82%;
    }
    .hero-left-section p {
        font-size: 16px;
    }
    .hero-left-section {
        row-gap: 0px;
    }
    input.search-box {
        padding: 12px;
    }
    .input-wrapper::after {
        right: 12px;
        width: 20px;
        height: 20px;
    }
    .destination-section {
        padding: 40px 0;
    }
    .secure img {
        width: 16px;
        height: 16px;
    }
        .secure span {
        font-size: 10px;
    }
    .connectivity {
        gap: 7px;
    }
    .digital-sim {
        padding: 40px 0px;
    }
    .modal {
        padding: 0 20px;
    }
    .activate_esim_main .content_boxx h3{
        font-size: 16px;
        line-height: 24px;
    }
    .activate_esim_main .box_alternet .content_boxx{
        gap: 10px;
    }
    .purchase_main .step_box_main {
        gap: 20px;
    }
    .purchase_main .step_box{
        padding: 60px 10px 0;
    }
    .header ul li a {
        font-size: 15px;
    }
    .discount-badge {
        padding: 2px 6px;
        min-width: 40px;
        border-radius: 10px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 32px;
        line-height: 42px;
    }
    h2 {
        font-size: 24px;
        line-height: 34px;
    }
    .main-text {
        padding-bottom: 60px;
    }
    .user-review::before {
        content: none;
    }
    .user-review::after {
        content: none;
    }
    .global-users p {
        font-size: 18px;
        line-height: 26px;
    }
    .plan-info {
        width: 100%;
        padding: 24px;
        border: 1px solid #ededed;
    }
    .plan-benefits {
        row-gap: 20px;
    }
    .country-plan {
        flex-wrap: wrap;
        gap: 20px !important;
    }
    .france-plan {
        transform: unset;
        opacity: 1;
    }
    .usa-plan {
        transform: unset;
    }
    .canada-plan {
        transform: unset;
        opacity: 1;
    }
    .plans {
        max-width: 400px;
        width: 100%;
        box-shadow: 0px 2px 2px 2px #afafaf4f;
    }
    .plan-benefits {
        margin-top: 35px;
    }
    .plan-info h3 {
        margin: 20px 0px 12px;
    }
    .qr-code-manage {
        padding: 20px;
    }
    .scan-code {
        padding: 20px 18px;
    }
    .active-sim-btn {
        margin-top: 24px;
    }
    .banner-section {
        padding-top: 150px;
    }
    .country-plan {
        padding-bottom: 30px;
    }
    .global-users {
        padding: 30px 0px;
    }
    .benefits {
        padding: 30px 0px;
    }
    .process {
        padding: 30px 0px;
    }
    .testimonial-section {
        padding: 30px 0px;
    }
    .footer {
        padding: 30px 0px;
    }
    .app-data {
        padding: 20px;
        align-items: baseline;
    }
    .step span {
        width: 24px;
        height: 24px;
    }
    .sim-details h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .testimonial__inner .slick-initialized .slick-slide {
        margin-right: 24px;
    }
    .prev-arrow a.arrow-right {
        bottom: 105px;
    }
    .next-arrow {
        bottom: 105px;
    }
    .links ul li a {
        font-size: 14px;
        line-height: 20px;
    }
    .links ul li {
        padding: 0 6px;
    }
    .app-btn {
        gap: 16px;
        margin-top: 25px;
    }
    .app-btn a img {
        max-width: 120px;
        width: 100%;
    }
    .footer .app-btn {
        margin-top: 25px;
    }
    .header button.navbar-toggler {
        font-size: 16px;
    }
    .footer-link p {
        font-size: 15px;
    }
    .plan-info h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .process-detail {
        margin-top: 35px;
    }
    .qr-code-manage {
        margin-bottom: 35px;
    }
    .plan-img {
        width: 70px;
        height: 70px;
    }
    .plan-img img {
        width: 50px;
        height: 50px;
    }
    .form-group {
        display: unset;
    }
    .form-label-name {
        width: 100%;
    }
    .form-detail {
        width: 100%;
    }
    .privacy-section, .policy-section, .contact-section {
        padding-top: 130px;
    }
    .section-wrap {
        flex-wrap: wrap;
    }
    .purchase_main .step_box{
        width: 90%;
    }
    .purchase_main .step_box .box_inside {
        margin: 20px 60px 0;
    }
    .purchase_main .step_box.box_2 .box_inside{
        margin-bottom: 20px;
    }
    .activate_esim_main{
        width: 90%;
        margin: auto;
    }
    .activate_esim_main .box_alternet .img_boxx{
        order: 2;
    }
    .activate_esim_main .box_alternet .content_boxx{
        order: 1;
    }
    .activate_esim_main .content_boxx h3 {
        font-size: 22px;
        line-height: 24px;
    }
    .activate_esim_main .box_alternet{
        gap: 24px;
        flex-direction: column;
    }
    .purchase_main .step_box h3 {
        font-size: 18px;
    }
    .purchase_main{
        padding: 20px 0 40px;
    }
    .activate_esim_main .box_alternet .content_boxx ul li {
        margin-bottom: 5px;
        font-size: 15px;
    }
    .step_box_main{
        flex-direction: column;
        align-items: center;
    }
    .scan-code h3 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 18px;
    }
    .digital-sim img {
        display: none;
    }
}

@media only screen and (max-width: 645px) {
    .header img {
        max-width: 150px;
        width: 100%;
    }
    .global-users span.customer-review {
        font-size: 15px;
        line-height: 22px;
    }
    .feedback {
        flex-direction: column;
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    .activate_esim_main .box_alternet .img_boxx img {
        width: 100%;
    }
}



.plans-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount-badge {
    display: inline-block;
    background: #f8e5a1;
    color: #212529;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(255, 243, 205, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    min-width: 45px;
    text-align: center;
    line-height: 1;
    font-family: 'Geist', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}



/* Home Stats / Trust strip */
.home-stats-section {
    background-color: #111827; /* dark navy */
    background-image: radial-gradient(circle at 50% 0%, rgba(0, 122, 255, 0.20), rgba(17, 24, 39, 0) 62%);
    padding: 56px 0;
}
.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
    text-align: center;
}
.home-stat-item {
    padding: 4px 12px;
}
.home-stat-number {
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}
.home-stat-label {
    color: #9db2d3; /* light gray-blue */
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .home-stats-section {
        padding: 48px 0;
    }
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-stat-number {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .home-stat-number {
        font-size: 32px;
    }
    .home-stat-label {
        font-size: 13px;
    }
}

/* Why eSIM Card — features section (replaces old benefits layout) */
.features-revamp {
    background: #eef3fa; /* pale blue-gray */
}
.features-revamp .features-header {
    max-width: 640px;
    margin-bottom: 48px;
    text-align: left;
}
.features-revamp .features-eyebrow {
    display: inline-block;
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #007AFF;
    margin-bottom: 16px;
}
.features-revamp .features-title {
    font-family: 'Geist', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: #111827; /* dark navy */
    margin: 0 0 16px;
}
.features-revamp .features-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #636366;
    margin: 0;
}
.features-revamp .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.features-revamp .feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(17, 24, 39, 0.04);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.features-revamp .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.10);
}
.features-revamp .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 122, 255, 0.10);
    color: #007AFF; /* brand blue stroke via currentColor */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.features-revamp .feature-card-title {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
    margin: 0 0 10px;
}
.features-revamp .feature-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #636366;
    margin: 0;
}

@media (max-width: 991px) {
    .features-revamp .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-revamp .features-title {
        font-size: 32px;
    }
}
@media (max-width: 575px) {
    .features-revamp .features-grid {
        grid-template-columns: 1fr;
    }
    .features-revamp .features-title {
        font-size: 28px;
    }
}

/* How does it work — 3-step layout */
.home-how-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 90px 0;
}
.home-how-shape {
    display: none;
}
.home-how-section .container {
    position: relative;
    z-index: 1;
}
.home-how-header {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}
.home-how-eyebrow {
    display: inline-block;
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #007AFF;
    margin-bottom: 16px;
}
.home-how-title {
    font-family: 'Geist', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: #111827;
    margin: 0 0 16px;
}
.home-how-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #636366;
    margin: 0;
}
.home-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.home-how-step {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}
.home-how-placeholder {
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
}
.home-how-placeholder img {
    display: block;
    width: 100%;
    height: auto;
}
.home-how-placeholder span {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #94a3b8;
}
.home-how-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #111827;
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 17px;
}
.home-how-text {
    max-width: 100%;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #111827;
}
.home-how-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.home-how-store {
    display: inline-flex;
    text-decoration: none;
}
.home-how-store img {
    display: block;
    height: 56px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 991px) {
    .home-how-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 44px;
    }
    .home-how-step {
        width: 100%;
        max-width: 300px;
    }
    .home-how-title {
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    .home-how-section {
        padding: 64px 0;
    }
    .home-how-title {
        font-size: 28px;
    }
    .home-how-subtitle {
        font-size: 16px;
    }
    .home-how-actions {
        flex-direction: column;
    }
}

/* Real customers — testimonials grid (replaces old Slick slider) */
.home-testimonials-section {
    background: #ffffff;
}
.home-testimonials-header {
    max-width: 640px;
    margin-bottom: 48px;
    text-align: left;
}
.home-testimonials-eyebrow {
    display: inline-block;
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #007AFF;
    margin-bottom: 16px;
}
.home-testimonials-title {
    font-family: 'Geist', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: #111827;
    margin: 0 0 16px;
}
.home-testimonials-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #636366;
    margin: 0;
}
.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.home-review-card {
    display: flex;
    flex-direction: column;
    background: #f4f7fb;
    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}
.home-review-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 16px;
}
.home-review-text {
    flex-grow: 1;
    color: #374151;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 24px;
}
.home-reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}
.home-reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #007AFF, #22D3EE);
}
.home-reviewer-meta {
    display: flex;
    flex-direction: column;
}
.home-reviewer-name {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}
.home-reviewer-date {
    font-size: 13px;
    line-height: 1.3;
    color: #8a8f98;
}
/* avatar color variety */
.home-review-card:nth-child(6n+2) .home-reviewer-avatar { background: linear-gradient(135deg, #FF2D92, #FF7EB3); }
.home-review-card:nth-child(6n+3) .home-reviewer-avatar { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.home-review-card:nth-child(6n+4) .home-reviewer-avatar { background: linear-gradient(135deg, #F97316, #FBBF24); }
.home-review-card:nth-child(6n+5) .home-reviewer-avatar { background: linear-gradient(135deg, #10B981, #34D399); }
.home-review-card:nth-child(6n+6) .home-reviewer-avatar { background: linear-gradient(135deg, #0EA5E9, #38BDF8); }

@media (max-width: 991px) {
    .home-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-testimonials-title {
        font-size: 32px;
    }
}
@media (max-width: 575px) {
    .home-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .home-testimonials-title {
        font-size: 28px;
    }
}

/* Unified homepage section title typography (Most popular destinations,
   Enjoy reliable..., Why People Are Choosing eSIM Card).
   Double-class selector keeps specificity high enough to override the
   existing per-section title rules without touching their other styles. */
.home-section-title.home-section-title {
    font-family: 'Geist', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #111827;
}
@media (max-width: 991px) {
    .home-section-title.home-section-title {
        font-size: 36px;
        line-height: 1.2;
    }
}
@media (max-width: 767px) {
    .home-section-title.home-section-title {
        font-size: 30px;
        line-height: 1.2;
    }
}

/* ==========================================================================
   Mobile Responsive Layout Fixes (Screens <= 576px)
   ========================================================================= */
@media (max-width: 576px) {
    /* Global mobile safety rules */
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        position: relative !important;
    }
    
    *, *::before, *::after {
        box-sizing: border-box !important;
    }
    
    /* Header / Navigation */
    .header-top .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
        padding-top: 14px !important;
    }
    .header {
        padding: 10px 16px !important;
        border-radius: 30px !important;
    }
    .header .navbar-brand img {
        height: 24px !important;
        width: auto !important;
    }
    .header button.navbar-toggler {
        padding: 4px 8px !important;
        font-size: 14px !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        border-radius: 8px !important;
        outline: none !important;
        box-shadow: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Hero Section */
    .banner-section {
        min-height: 530px !important;
        height: auto !important;
        padding-top: 110px !important;
        padding-bottom: 40px !important;
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-bg.png') !important;
        background-position: 85% bottom !important; /* Push background travelers to the right side out of text */
        background-attachment: scroll !important;
    }
    .banner-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .hero-left-section {
        width: calc(100% - 40px) !important;
        max-width: 420px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    .hero-left-section h1 {
        font-size: 28px !important;
        line-height: 1.15 !important;
        margin-bottom: 20px !important; /* Space between headline and subtitle */
        max-width: 100% !important;
        text-align: left !important;
    }
    .hero-left-section h1 br {
        display: none !important;
    }
    .hero-desc {
        font-size: 15px !important;
        line-height: 1.45 !important;
        margin-bottom: 28px !important; /* Space between subtitle and search bar */
        max-width: 100% !important;
        text-align: left !important;
    }

    /* Search Bar */
    .hero-search-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    .hero-search-wrapper {
        height: 52px !important;
        padding: 4px 4px 4px 18px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    .hero-search-pill {
        font-size: 15px !important;
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .hero-search-btn {
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }
    .hero-search-btn svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* Most Popular Destinations */
    .destination-section {
        padding: 56px 0 !important; /* Padding top/bottom 48px - 60px */
    }
    .destination-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .home-section-title.home-section-title,
    .destination-head-text h2 {
        font-size: 28px !important;
        line-height: 1.25 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }
    .home-section-title span,
    .home-section-title strong {
        white-space: normal !important;
        display: inline !important;
    }
    .destination-head-text p {
        font-size: 14px !important;
        line-height: 1.55 !important;
        max-width: 100% !important;
        margin-top: 8px !important;
        margin-bottom: 24px !important;
        color: #636366 !important;
    }
    .card-destination > div {
        padding-right: 48px !important; /* Prevent text overlap with right arrow */
    }
    
    /* Digital eSIM Section */
    .digital-sim h2 {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }
}

/* ==========================================================================
   Destinations Page Layout Fixes
   ========================================================================= */

/* Reserve scrollbar space so viewport width stays stable when modals lock scroll */
html {
    scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
    html {
        overflow-y: scroll;
    }
}

/* Bootstrap adds padding-right for scrollbar compensation, but with scrollbar-gutter
   the scrollbar space is already reserved — undo that padding to prevent layout shift */
body.modal-open {
    padding-right: 0 !important;
}

body.modal-open .fixed-top,
body.modal-open .fixed-bottom,
body.modal-open .is-fixed,
body.modal-open .sticky-top {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

/* Flexbox Sticky Footer Layout */
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
}
.main-section {
    flex: 1 0 auto !important;
}
.home-footer {
    flex-shrink: 0 !important;
}

/* Card Normalization & alignment */
.card-destination {
    display: flex !important;
    align-items: center !important;
    padding: 16px !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px !important;
    background-color: #f7f7f8 !important;
    color: inherit !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease-in-out !important;
    position: relative !important;
    height: 100% !important;
    min-height: 76px !important;
    box-sizing: border-box !important;
}

.card-destination:hover {
    background-color: #e2e2e4 !important;
}

.card-destination::after {
    position: absolute !important;
    content: "" !important;
    background-image: url(../images/right-arrow.svg) !important;
    background-size: 100% !important;
    width: 24px !important;
    height: 24px !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.card-destination > div {
    padding-right: 28px !important;
    flex-grow: 1 !important;
}

.flag-img {
    width: 36px !important;
    height: 36px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    margin-right: 12px !important;
    border: 1px solid #e3e3e3 !important;
    flex-shrink: 0 !important;
}

.plans-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 4px !important;
}

.country-name {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}

/* Smooth scroll behavior and navigation anchor margin to account for fixed navbar */
html {
    scroll-behavior: smooth;
}

#how-it-works {
    scroll-margin-top: 120px !important;
}

/* Header Progress Indicator */
.nav-progress {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    height: 20px; /* Matches top row height to align visually centered with logo and links */
    font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    user-select: none;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

.progress-main {
    display: flex;
    align-items: center;
    gap: 16px; /* gap: 12px–16px */
    height: 20px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.progress-step-completed {
    color: #16A34A; /* green */
    font-weight: 600;
}
.progress-step-completed .step-icon {
    font-weight: 800;
}

.progress-step-active {
    color: #1677FF; /* blue active */
    font-weight: 700;
}

.progress-step-upcoming {
    color: #9CA3AF; /* gray upcoming */
    font-weight: 600;
}

.progress-change {
    position: absolute;
    top: 100%;
    left: 0;
    margin-left: 22px; /* Align precisely under Destinations label text (icon width + gap) */
    margin-top: 3px;
    color: #6B7280;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto; /* enable click events specifically for this link */
    transition: all 0.2s ease;
    white-space: nowrap;
    opacity: 0.85; /* Helper action opacity */
}

.progress-change:hover {
    color: #1677FF;
    opacity: 1;
    text-decoration: underline;
}

.progress-separator {
    color: #D1D5DB;
    font-size: 14px;
    height: 20px;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .nav-progress {
        display: none !important;
    }
}

/* Destinations List Tab Content Wrapper Height Reservation */
.destinations-list-wrapper {
    min-height: 65vh !important; /* Reserves space to prevent page layout collapse when switching tabs */
    transition: min-height 150ms ease-out !important; /* Smooth transition for height adjustments */
}

/* Custom Tab Transition Tuning */
.country-region.tab-pane {
    transition: opacity 180ms ease !important; /* Slightly faster, smoother fade transition */
}

/* ==========================================
   LAPTOP & MACBOOK OPTIMIZATION
   1280px - 1600px
========================================== */
@media (min-width: 1280px) and (max-width: 1600px) {
    /* 1. Header Navigation Sizing */
    .header-top .container {
        padding-top: 16px !important;
    }
    .header {
        padding: 10px 20px !important;
        border-radius: 40px !important;
    }
    .header .navbar-brand img {
        height: 27px !important;
    }
    .header ul li a {
        font-size: 13.5px !important;
    }
    .header ul li {
        padding: 0px 8px !important;
    }
    .header .download-btn a {
        padding: 8px 30px 8px 16px !important;
        font-size: 13.5px !important;
    }
    .header .download-btn a::after {
        right: 12px !important;
        width: 10px !important;
        height: 8px !important;
    }

    /* 2. Homepage Hero Section Sizing */
    .banner-section {
        min-height: 640px !important;
        padding-top: 110px !important;
        padding-bottom: 45px !important;
    }
    .hero-left-section {
        max-width: 480px !important;
        transform: translateY(-5px) !important;
    }
    .hero-left-section h1 {
        font-size: 58px !important; /* 72px -> 58px (Requested: 56-60px) */
        line-height: 1.1 !important;
        margin-bottom: 16px !important;
    }
    .hero-desc {
        font-size: 18px !important; /* 24px -> 18px-20px (Requested: 18-20px) */
        line-height: 1.45 !important;
        margin-bottom: 24px !important;
        max-width: 460px !important;
    }
    .hero-search-wrapper {
        height: 50px !important; /* 58px -> 50px (about 14% reduction) */
        padding: 4px 6px 4px 20px !important;
    }
    .hero-search-pill {
        font-size: 14.5px !important;
    }
    .hero-search-btn {
        width: 40px !important;
        height: 40px !important;
    }
    .hero-search-btn svg {
        width: 16px !important;
        height: 16px !important;
    }
    .hero-search-dropdown {
        top: calc(100% + 6px) !important;
    }

    /* 3. Section Titles, Spacing & Container Paddings */
    .home-section-title.home-section-title {
        font-size: 38px !important; /* 46px -> 38px (about 17% reduction) */
        line-height: 1.2 !important;
    }
    .home-stats-section {
        padding: 50px 0 !important;
    }
    .digital-sim,
    .destination-section,
    .download-section {
        padding: 60px 0 !important;
    }
    .digital-sim h2 {
        font-size: 34px !important; /* 40px -> 34px (about 15% reduction) */
    }
    .digital-sim p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    /* 4. Homepage Revamped Features Sizing */
    .features-revamp {
        padding: 60px 0 !important;
    }
    .features-revamp .features-header {
        max-width: 580px !important;
        margin-bottom: 32px !important;
    }
    .features-revamp .features-title {
        font-size: 34px !important; /* 40px -> 34px */
    }
    .features-revamp .features-subtitle {
        font-size: 16px !important;
    }
    .features-revamp .features-grid {
        gap: 16px !important;
    }
    .features-revamp .feature-card {
        padding: 24px !important;
        border-radius: 16px !important;
    }
    .features-revamp .feature-icon {
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
        margin-bottom: 16px !important;
    }
    .features-revamp .feature-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    .features-revamp .feature-card-title {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    .features-revamp .feature-card-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    /* 5. Destination & Plan Cards Sizing */
    .card-destination {
        padding: 12px !important;
        border-radius: 10px !important;
        min-height: 66px !important; /* 76px -> 66px (about 13% reduction) */
    }
    .card-destination::after {
        right: 12px !important;
        width: 20px !important;
        height: 20px !important;
    }
    .card-destination > div {
        padding-right: 20px !important;
    }
    .country-name {
        font-size: 14.5px !important; /* 16px -> 14.5px */
    }
    .country-rate, .destination-price {
        font-size: 12.5px !important; /* 14px -> 12.5px */
    }
    .discount-badge {
        font-size: 10.5px !important;
        padding: 2px 6px !important;
    }
    .flag-img {
        width: 30px !important;
        height: 30px !important;
        margin-right: 10px !important;
    }
    
    /* Plans Page */
    .main-section {
        padding-top: 110px !important;
    }
    .flag-title {
        font-size: 1.6rem !important; /* 2rem -> 1.6rem */
    }
    .flag-title .flag-img {
        width: 40px !important;
        height: 40px !important;
    }
    .flag-title .btn {
        font-size: 12.5px !important;
        padding: 4px 10px !important;
    }
    .nav-pills .nav-link {
        padding: 8px 16px !important;
        font-size: 14px !important;
    }
    .plan {
        padding: 12px !important;
        max-width: 130px !important;
        border-radius: 12px !important;
    }
    .plan strong {
        font-size: 0.8rem !important;
        padding: 4px 10px !important;
    }
    .plan small {
        font-size: 0.8rem !important;
    }
    #image-section img {
        width: 250px !important;
        height: 375px !important;
    }

    /* 6. Checkout Page Sizing */
    .checkout-wrapper.main-section {
        padding-top: 115px !important;
        gap: 1.5rem !important;
    }
    .left-section,
    .right-section {
        padding: 1.2rem !important;
        border-radius: 12px !important;
    }
    .section-title {
        font-size: 1.05rem !important; /* 1.2rem -> 1.05rem */
        margin-bottom: 0.85rem !important;
    }
    .btn-auth {
        padding: 0.6rem !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
        margin-bottom: 0.85rem !important;
    }
    input[type="email"] {
        padding: 0.6rem !important;
    }
    .summary-item {
        font-size: 0.9rem !important;
    }
    .total {
        font-size: 1.1rem !important;
        margin-top: 0.85rem !important;
    }
    .discounted-price {
        font-size: 1.1rem !important;
    }
    .apply-btn {
        padding: 0.4rem 1rem !important;
        font-size: 0.85rem !important;
        margin-left: 0.75rem !important;
    }
    .discount-input {
        padding: 0.6rem !important;
        font-size: 0.9rem !important;
    }

    /* 7. Footer Sizing */
    .home-footer {
        padding: 30px 0 !important;
    }
    .home-footer-inner {
        gap: 15px !important;
    }
    .home-footer-links {
        gap: 24px !important;
    }
    .home-footer-links a {
        font-size: 14px !important;
    }
    .home-footer-copy {
        font-size: 13px !important;
    }
    .download-section h2 {
        font-size: 20px !important;
    }
    .qr-code {
        margin-top: 15px !important;
        max-width: 120px !important;
    }
}



