.white_font
{
	color: #ffffff !important;
}

/* =========================================================
   TRAVEL GUIDES – ESIM TRAVEL NET STYLE
   ========================================================= */

.tg-page {
    --tg-dark-blue: #0056A7;
    --tg-light-blue: #2789C4;
    --tg-pale-blue: #EEF7FC;
    --tg-soft-blue: #DCEFFA;
    --tg-yellow: #EEF46E;

    --tg-dark: #17202A;
    --tg-text: #38434D;
    --tg-muted: #687580;
    --tg-border: #DCE6EC;
    --tg-white: #FFFFFF;
    --tg-background: #F7FAFC;

    width: 100%;
    color: var(--tg-text);
    background: var(--tg-white);
}

.tg-page,
.tg-page * {
    box-sizing: border-box;
}

.tg-container {
    width: min(1180px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}


/* =========================================================
   HERO
   ========================================================= */

.tg-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 98px;
    background:
        radial-gradient(
            circle at 88% 14%,
            rgba(39, 137, 196, 0.24),
            transparent 29%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(0, 86, 167, 0.10),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #FFFFFF 0%,
            #F4FAFD 50%,
            #E7F5FC 100%
        );
}

.tg-hero-content {
    position: relative;
    z-index: 2;
    max-width: 870px;
    text-align: center;
}

.tg-eyebrow,
.tg-section-label {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 13px;
    margin-bottom: 15px;
    border: 1px solid rgba(39, 137, 196, 0.18);
    border-radius: 999px;
    color: var(--tg-dark-blue);
    background: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.tg-main-title {
    margin: 0 0 22px;
    color: var(--tg-dark-blue);
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.tg-main-description {
    max-width: 760px;
    margin: 0 auto;
    color: var(--tg-muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.68;
}

.tg-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.tg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.tg-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.tg-button-primary {
    color: #FFFFFF !important;
    background: linear-gradient(
        135deg,
        var(--tg-dark-blue),
        var(--tg-light-blue)
    );
    box-shadow: 0 12px 28px rgba(0, 86, 167, 0.22);
}

.tg-button-primary:hover {
    color: #FFFFFF;
    box-shadow: 0 16px 34px rgba(0, 86, 167, 0.30);
}

.tg-button-secondary {
    color: var(--tg-dark-blue);
    border-color: rgba(0, 86, 167, 0.17);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 8px 22px rgba(17, 54, 80, 0.07);
}

.tg-button-secondary:hover {
    color: var(--tg-dark-blue);
    border-color: var(--tg-light-blue);
    background: #FFFFFF;
}

.tg-hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.tg-hero-decoration-one {
    top: -110px;
    left: -95px;
    width: 290px;
    height: 290px;
    border: 55px solid rgba(39, 137, 196, 0.10);
}

.tg-hero-decoration-two {
    right: 4%;
    bottom: -120px;
    width: 240px;
    height: 240px;
    background: rgba(238, 244, 110, 0.24);
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.tg-section-heading {
    margin-bottom: 36px;
}

.tg-section-heading h2,
.tg-introduction-content h2,
.tg-cta-content h2 {
    margin: 0 0 14px;
    color: var(--tg-dark-blue);
    font-size: clamp(29px, 4vw, 43px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.tg-section-heading p {
    max-width: 730px;
    margin: 0;
    color: var(--tg-muted);
    font-size: 17px;
    line-height: 1.68;
}

.tg-section-heading-centered {
    max-width: 760px;
    margin-right: auto;
    margin-bottom: 42px;
    margin-left: auto;
    text-align: center;
}


/* =========================================================
   GUIDE CARDS
   ========================================================= */

.tg-guides-section {
    padding: 82px 0 92px;
    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F7FBFD 100%
        );
}

.tg-guides-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 23px;
}

.tg-guide-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--tg-border);
    border-radius: 20px;
    background: var(--tg-white);
    box-shadow: 0 10px 30px rgba(19, 56, 82, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.tg-guide-card:hover {
    transform: translateY(-6px);
    border-color: rgba(39, 137, 196, 0.42);
    box-shadow: 0 18px 42px rgba(19, 56, 82, 0.14);
}

.tg-guide-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.tg-guide-link:hover {
    color: inherit;
    text-decoration: none;
}

.tg-guide-image-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--tg-pale-blue);
}

.tg-guide-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.tg-guide-card:hover .tg-guide-image {
    transform: scale(1.04);
}

.tg-guide-number {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 9px;
    color: #FFFFFF;
    background: rgba(0, 86, 167, 0.88);
    box-shadow: 0 6px 17px rgba(0, 0, 0, 0.15);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.tg-guide-content {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px 21px 22px;
}

.tg-guide-content::before {
    position: absolute;
    top: 0;
    left: 21px;
    width: 50px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--tg-dark-blue),
        var(--tg-light-blue)
    );
    content: "";
}

.tg-guide-content h3 {
    margin: 8px 0 10px;
    color: var(--tg-dark-blue);
    font-size: 21px;
    font-weight: 750;
    line-height: 1.28;
}

.tg-guide-content p {
    margin: 0 0 20px;
    color: var(--tg-muted);
    font-size: 14px;
    line-height: 1.63;
}

.tg-read-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--tg-light-blue);
    font-size: 14px;
    font-weight: 750;
}

.tg-read-link span {
    font-size: 19px;
    transition: transform 0.2s ease;
}

.tg-guide-card:hover .tg-read-link span {
    transform: translateX(4px);
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.tg-introduction-section {
    padding: 92px 0;
    background:
        radial-gradient(
            circle at 4% 18%,
            rgba(39, 137, 196, 0.08),
            transparent 25%
        ),
        var(--tg-pale-blue);
}

.tg-introduction-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.82fr);
    gap: 58px;
    align-items: center;
}

.tg-introduction-content p {
    margin: 0 0 17px;
    color: var(--tg-muted);
    font-size: 17px;
    line-height: 1.76;
}

.tg-introduction-highlight {
    position: relative;
    overflow: hidden;
    padding: 39px;
    border-radius: 24px;
    color: #FFFFFF;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.20),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            var(--tg-dark-blue),
            var(--tg-light-blue)
        );
    box-shadow: 0 22px 48px rgba(0, 86, 167, 0.22);
}

.tg-introduction-highlight::after {
    position: absolute;
    right: -48px;
    bottom: -48px;
    width: 150px;
    height: 150px;
    border: 29px solid rgba(238, 244, 110, 0.20);
    border-radius: 50%;
    content: "";
}

.tg-highlight-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    border-radius: 18px;
    color: var(--tg-dark-blue);
    background: var(--tg-yellow);
    font-size: 28px;
}

.tg-introduction-highlight strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 14px;
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
}

.tg-introduction-highlight p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.67;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.tg-benefits-section {
    padding: 90px 0;
    background: #FFFFFF;
}

.tg-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.tg-benefit-card {
    padding: 29px 24px;
    border: 1px solid var(--tg-border);
    border-radius: 19px;
    background: #FFFFFF;
    text-align: center;
    box-shadow: 0 8px 26px rgba(19, 56, 82, 0.05);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.tg-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(39, 137, 196, 0.35);
    box-shadow: 0 15px 34px rgba(19, 56, 82, 0.10);
}

.tg-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 63px;
    margin: 0 auto 19px;
    border-radius: 18px;
    color: var(--tg-dark-blue);
    background: var(--tg-soft-blue);
    font-size: 27px;
}

.tg-benefit-card:nth-child(2) .tg-benefit-icon,
.tg-benefit-card:nth-child(4) .tg-benefit-icon {
    color: #FFFFFF;
    background: var(--tg-light-blue);
}

.tg-benefit-card:nth-child(3) .tg-benefit-icon {
    color: var(--tg-dark-blue);
    background: var(--tg-yellow);
}

.tg-benefit-card h3 {
    margin: 0 0 11px;
    color: var(--tg-dark-blue);
    font-size: 19px;
    font-weight: 750;
    line-height: 1.35;
}

.tg-benefit-card p {
    margin: 0;
    color: var(--tg-muted);
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   CTA
   ========================================================= */

.tg-cta-section {
    padding: 0 0 94px;
    background: #FFFFFF;
}

.tg-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    overflow: hidden;
    padding: 47px 51px;
    border-radius: 26px;
    color: #FFFFFF;
    background:
        radial-gradient(
            circle at 91% 14%,
            rgba(39, 137, 196, 0.50),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #003F7B 0%,
            var(--tg-dark-blue) 48%,
            #146FAE 100%
        );
    box-shadow: 0 22px 48px rgba(0, 70, 135, 0.22);
}

.tg-cta-label {
    display: block;
    margin-bottom: 9px;
    color: var(--tg-yellow);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tg-cta-content h2 {
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: clamp(28px, 4vw, 40px);
}

.tg-cta-content p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.65;
}

.tg-button-dark {
    flex-shrink: 0;
    color: var(--tg-dark-blue);
    background: var(--tg-yellow);
    box-shadow: 0 11px 26px rgba(0, 0, 0, 0.14);
}

.tg-button-dark:hover {
    color: var(--tg-dark-blue);
    background: #F4F88C;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .tg-guides-grid,
    .tg-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tg-introduction-grid {
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .tg-introduction-highlight {
        max-width: 700px;
    }

    .tg-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .tg-container {
        width: min(100% - 26px, 1180px);
    }

    .tg-hero {
        padding: 66px 0 72px;
    }

    .tg-main-title {
        font-size: 43px;
    }

    .tg-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tg-button {
        width: 100%;
    }

    .tg-guides-section,
    .tg-introduction-section,
    .tg-benefits-section {
        padding: 61px 0;
    }

    .tg-guides-grid,
    .tg-benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tg-guide-card {
        border-radius: 18px;
    }

    .tg-section-heading {
        margin-bottom: 28px;
    }

    .tg-introduction-highlight {
        padding: 30px 25px;
    }

    .tg-cta-section {
        padding-bottom: 66px;
    }

    .tg-cta-box {
        padding: 35px 25px;
        border-radius: 21px;
    }
}