* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Mulish", sans-serif !important;
    background-color: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ===========================
   HEADER
=========================== */
.esim-header {
    position: relative;
    top: 0; left: 0; right: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.esim-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.esim-logo img {
    height: 70px;
    width: auto;
    display: block;
}

/* Desktop Nav */
.esim-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.esim-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

.esim-nav a:hover { color: #1d9cd8; }
.esim-nav a.esim-nav-active { color: #1d9cd8; font-weight: 700; }

/* Header Right */
.esim-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* CTA Button */
.esim-cta-btn {
    background: linear-gradient(92deg, #12edf0, #12b3ff);
    color: white;
    padding: 0.65rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    white-space: nowrap;
}

.esim-cta-btn:hover {
        background: linear-gradient(92deg, #04cbcd, #047db7);
    transform: translateY(-2px);
    color: white;
}

/* Hamburger Toggle */
.esim-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.esim-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s;
    display: block;
}

/* Hamburger → X Animation */
.esim-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.esim-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.esim-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Dropdown Nav */
.esim-mobile-nav {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid #eee;
    padding: 0.75rem 1.5rem 1.25rem;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
}

.esim-mobile-nav.open {
    display: flex;
}

.esim-mobile-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.esim-mobile-nav a:last-child { border-bottom: none; }
.esim-mobile-nav a:hover { color: #1d9cd8; }

/* Mobile CTA */
.esim-mobile-cta {
    background: linear-gradient(92deg, #12edf0, #12b3ff) !important;
    color: white !important;
    text-align: center;
    border-radius: 8px;
    font-weight: 700 !important;
    margin-top: 0.5rem;
    justify-content: center !important;
    padding: 0.85rem !important;
    border-bottom: none !important;
}

.esim-mobile-cta:hover {
    opacity: 0.9;
    color: white !important;
}

/* ===========================
   HERO SLIDER
=========================== */
.esim-hero-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.esim-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.esim-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
    background-color: #0044aa;
}

.esim-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.esim-slide.esim-active { opacity: 1; }

.esim-slide-content {
    text-align: center;
    color: white;
    z-index: 10;
    padding: 2rem;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.esim-slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow:
        0 1px 0 rgba(255,255,255,0.15),
        0 2px 6px rgba(0,0,0,0.4),
        0 8px 24px rgba(0,0,0,0.25),
        0 16px 48px rgba(0,0,0,0.15),
        0 0 80px rgba(0,200,255,0.2);
}

.esim-slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow:
        0 1px 3px rgba(0,0,0,0.35),
        0 4px 12px rgba(0,0,0,0.2);
}

.esim-slide-btn {
    background: white;
    color: #1d9cd8;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.esim-slide-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: #1d9cd8;
}

/* Dots */
.esim-slider-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.esim-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.esim-dot.esim-active {
    background: white;
    width: 28px;
    border-radius: 6px;
}

/* Arrow Buttons */
.esim-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 20;
}

.esim-slider-arrow:hover {
    background: rgba(255,255,255,0.4);
}

.esim-slider-arrow.esim-prev { left: 1.5rem; }
.esim-slider-arrow.esim-next { right: 1.5rem; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    /* Header */
    .esim-nav { display: none; }
    .esim-menu-toggle { display: flex; }
    .esim-cta-btn { display: none; }
    .esim-header-container { padding: 0.1rem 1.25rem; }

    /* Slider */
    .esim-hero-slider { height: 400px; }
    .esim-slide-content { padding: 1.25rem 1rem; }
    .esim-slide-content h2 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    .esim-slide-content p {
        font-size: 0.92rem;
        margin-bottom: 1.25rem;
    }
    .esim-slide-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.875rem;
    }
    .esim-slider-arrow { display: none; }
    .esim-dot { width: 7px; height: 7px; }
    .esim-dot.esim-active { width: 18px; }
}

@media (max-width: 480px) {
    .esim-hero-slider { height: 300px; }
    .esim-slide-content h2 { font-size: 1.3rem; }
    .esim-slide-content p { display: none; }
    .esim-logo img { height: 75px; }
}

@media (min-width: 769px) {
    .esim-mobile-nav { display: none !important; }
    .esim-menu-toggle { display: none; }
}



/* ====================================
   DESTINATION SECTION
==================================== */

.esim-destinations-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 20px;
}

.esim-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    color: #1a1a1a;
}

.esim-search-bar {
    margin-bottom: 2rem;
    position: relative;
}

.esim-search-input {
    width: 100%;
    max-width: 500px;
    padding: 12px 16px 12px 42px;
    border: 2px solid #e5e5e7;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    color: #1a1a1a;
}

.esim-search-input:focus {
    outline: none;
    border-color: #1d9cd8;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.esim-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #1d9cd8;
    font-size: 1.1rem;
}

.esim-search-input::placeholder {
    color: #1d9cd8;
}

.esim-filter-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.esim-filter-btn {
    padding: 10px 20px;
    border: 1.5px solid #1d9cd8;
    background: #f5f5f5;
    color: #666;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.esim-filter-btn:hover {
    background: #e5e5e7;
}

.esim-filter-btn.esim-active {
    background: linear-gradient(135deg, #1d9cd8, #00fbff);
    color: white;
}

/* Cards Grid */
.esim-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* Country Card */
.esim-country-card {
    background: white;
    padding: 0px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.esim-country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Hidden cards (limit 24) */
.esim-country-card.esim-hidden-card {
    display: none !important;
}

.esim-card-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.esim-flag {
    font-size: 2rem;
    display: flex;
}

.esim-flag .fi {
    width: 2rem;
    height: 1.5rem;
    border-radius: 3px;
}

.esim-card-info h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.esim-card-info p {
    color: #666;
    font-size: 0.9rem;
}

.esim-card-arrow {
    font-size: 2.5rem;
    color: #1d9cd8;
}

/* Plan buttons */
.esim-plan-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    gap: 12px;
    padding: 4px;
    background: white;
    border-radius: 12px;
    z-index: 20;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.esim-country-card.esim-card-active .esim-plan-buttons {
    display: flex;
}

.esim-plan-btn {
    padding: 4px 10px;
    border: 1px solid #1d9cd8;
    background: white;
    color: #1d9cd8;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 115px;
}

.esim-plan-btn:hover {
    background: #1d9cd8;
    color: white;
}

.esim-card-active {
    z-index: 15 !important;
}

/* Offer Badge */
.esim-offer-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: linear-gradient(135deg, #ff4d4d, #ff0000);
    color: #ffffff;
    font-size: 0.70rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px 0px 0px 20px;
    letter-spacing: 0.05em;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.35);
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
    text-transform: uppercase;
    animation: esim-badge-pulse 2s infinite;
}

@keyframes esim-badge-pulse {
    0%   { box-shadow: 0 3px 10px rgba(255, 0, 0, 0.35); }
    50%  { box-shadow: 0 3px 18px rgba(255, 0, 0, 0.65); }
    100% { box-shadow: 0 3px 10px rgba(255, 0, 0, 0.35); }
}

/* View All Button */
.esim-view-all-wrap {
    text-align: right;
    margin-top: 1.5rem;
    padding-bottom: 2rem;
}

.esim-view-all-btn {
    background: none;
    border: none;
    color: #1d9cd8;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: gap 0.2s;
    font-family: "Mulish", sans-serif;
    text-decoration: none;
}

.esim-view-all-btn:hover {
    gap: 12px;
}

/* ====================================
   RESPONSIVE
==================================== */
@media (max-width: 768px) {
    .esim-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .esim-country-card {
        padding: 6px 8px;
    }

    .esim-card-info h3 {
        font-size: 0.88rem;
    }

    .esim-flag {
        font-size: 1.5rem;
    }

    .esim-flag .fi {
        width: 1.5rem;
        height: 1.2rem;
    }

    .esim-card-arrow {
        font-size: 1.8rem;
    }

    .esim-section-title {
        font-size: 1.5rem;
    }

    .esim-search-input {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .esim-cards-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.6rem;
    }

    .esim-card-info h3 {
        font-size: 0.82rem;
    }

    .esim-card-left {
        gap: 0.5rem;
    }
}




/* ── Destination Search Card (index page) ── */
.esim-search-card-wrap {
    max-width: 760px;
    margin: -7rem auto 2rem;
    padding: 0 1.25rem;
    position: relative;
    z-index: 10;
}
.esim-search-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 8px 32px rgba(0,102,255,0.15);
}
.esim-search-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.esim-search-card-title i { color: #1d9cd8; }
.esim-search-card-wrap .tk-input-wrap { display: flex; gap: 10px; }
.esim-search-card-wrap .tk-input {
    flex: 1;
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a1a;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}
.esim-search-card-wrap .tk-input:focus {
    border-color: #1d9cd8;
    box-shadow: 0 0 0 3px rgba(0,102,255,0.08);
}
.esim-search-card-wrap .tk-input::placeholder { color: #bbb; }
.esim-search-card-wrap .tk-search-btn {
    padding: 11px 22px;
    background: linear-gradient(135deg, #1d9cd8, #00fbff);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,102,255,0.3);
    transition: all 0.2s;
}
.esim-search-card-wrap .tk-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,102,255,0.38);
}
.esim-search-card-trust {
    display: flex;
  
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1rem 1rem 0;
}
.esim-search-card-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #6b7280;
}
.esim-search-card-trust i { color: #1d9cd8; font-size: 13px; }

/* Filter buttons inside card */
.esim-search-card-filters {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 560px) {
    .esim-search-card-wrap .tk-input-wrap { flex-direction: column; }
    .esim-search-card-wrap .tk-search-btn { justify-content: center; }
    .esim-search-card-trust { gap: 0.75rem; }
}
        /* =================================
        destinetion section :end
        ================================= */




/* Features Section */
.esim-features-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.esim-features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.esim-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.esim-feature-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    /*border: 1.5px solid #1d9cd8;*/
    box-shadow: 0px 0px 20px #e0e0e0;
}

.esim-feature-card-contant {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s;
    border-left: 3px solid #1d9cd8;
}

.esim-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.1);
}

.esim-feature-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f0ff 0%, #f0f8ff 100%);
    color: #1d9cd8;
}

.esim-feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.esim-feature-card p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .esim-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .esim-features-section {
        padding: 2rem 1.25rem;
    }
    .esim-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .esim-feature-card {
        padding: 1.25rem 0.75rem;
    }
    .esim-feature-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
    .esim-feature-card h3 {
        font-size: 0.9rem;
    }
    .esim-feature-card p {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .esim-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .esim-feature-card {
        padding: 1rem 0.6rem;
    }
    .esim-feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    .esim-feature-card h3 {
        font-size: 0.82rem;
        margin-bottom: 0.3rem;
    }
    .esim-feature-card p {
        font-size: 0.78rem;
    }
}
        /* Footer */
        .esim-footer {
            background: #1a1a1a;
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .esim-footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .esim-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .esim-footer-section h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1d9cd8;
        }

        .esim-footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .esim-footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .esim-footer-section a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .esim-footer-section a:hover { color: #ffffff; }

        .esim-social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .esim-social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .esim-social-link:hover { background: #1d9cd8; }

        .esim-footer-bottom {
            border-top: 1px solid #333;
            padding-top: 2rem;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }



.esim-footer-logo {
    margin-bottom: 1rem;
}
.esim-footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1d9cd8;
    letter-spacing: -0.5px;
}
.esim-footer-tagline {
    color: #aaa;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}
.esim-social-link:hover {
    background: #1d9cd8 !important;
    transform: translateY(-3px);
}


        .esim-cta-section {
            background: linear-gradient(135deg, #1d9cd8 0%, #00a8ff 100%);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            margin: 4rem 2rem;
            border-radius: 12px;
        }

        .esim-cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .esim-cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        /* ===== REVIEWS SECTION ===== */
        .ys-reviews-section {
            padding: 2rem 0 3rem;
            background: white;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            box-sizing: border-box;
        }

        .ys-reviews-inner {
            padding: 0 2rem;
        }

        .ys-reviews-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4px;
        }

        .ys-reviews-headline {
            font-size: 28px;
            font-weight: 800;
            color: #1c1c1e;
            letter-spacing: -0.5px;
        }

        .ys-nav-buttons {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }

        .ys-nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1.5px solid #1d9cd8;
            background: #fff;
            color: #1d9cd8;
            font-weight: 600;
            font-size: 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08);
            user-select: none;
            padding-bottom: 2px;
        }
        .ys-nav-btn:hover { background: #f0f0f0; border-color: #0047b1; }

        .ys-reviews-sub {
            font-size: 14px;
            color: #636366;
            margin-bottom: 14px;
            margin-top: 4px;
        }

        .ys-trust-row {
            display: flex;
            gap: 8px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .ys-trust-pill {
            background: #fff;
            border-radius: 20px;
            padding: 8px 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: #1c1c1e;
            box-shadow: 0 1px 4px rgba(0,0,0,0.07);
        }
        .ys-trust-pill .ys-stars {
            color: #ffd711;
            font-size: 13px;
            letter-spacing: 1px;
        }

        .ys-slider-outer {
            overflow: hidden;
            width: 100%;
        }

        .ys-slider-track {
            display: flex;
            gap: 16px;
            will-change: transform;
        }

        .ys-review-card {
            flex-shrink: 0;
            background: #fff;
            border-radius: 16px;
            padding: 18px 16px;
            box-shadow: 0 1px 6px rgba(0,0,0,0.09);
            box-sizing: border-box;
        }

        .ys-rv-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .ys-rv-user {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ys-rv-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
        }

        .ys-rv-name { font-size: 13px; font-weight: 600; color: #1c1c1e; }
        .ys-rv-stars { color: #ffd711; font-size: 13px; letter-spacing: 1px; }

        .ys-rv-title {
            font-size: 14px;
            font-weight: 700;
            color: #1c1c1e;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .ys-rv-text { font-size: 12px; color: #636366; line-height: 1.6; }

        .ys-dots-row {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 20px;
        }

        .ys-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            padding: 0;
        }

        .ys-dot.active {
            background: #1c1c1e;
            width: 22px;
            border-radius: 4px;
        }

        .ys-badges-row {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .ys-badge {
            font-size: 12px;
            color: #636366;
            padding: 6px 12px;
            background: #f5f5f5;
            border-radius: 12px;
        }

        @media (min-width: 1024px) {
            .ys-reviews-headline { font-size: 32px; }
            .ys-nav-btn { width: 44px; height: 44px; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .esim-section-title { font-size: 1.5rem; margin-bottom: 2rem; }
            .esim-cards-gridws { grid-template-columns: 1fr; gap: 1rem; }
            .esim-cta-sectionws { margin: 2rem 1rem; padding: 2rem 1rem; }
            .esim-cta-sectionws h2 { font-size: 1.5rem; }
            .esim-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .esim-cards-gridws { grid-template-columns: repeat(2, 1fr); }
            .esim-features-gridws { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1025px) {
            .esim-cards-gridws { grid-template-columns: repeat(4, 1fr); }
            .esim-features-gridws { grid-template-columns: repeat(4, 1fr); }
        }


/* ============ contant design ============================ */

.rmc-wrap {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

.rmc-inner {
    position: relative;
}

.rmc-content {
    max-height: 160px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
}

.rmc-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    pointer-events: none;
}

.rmc-footer {
    padding-top: 0.85rem;
    text-align: right;
}

.rmc-btn {
    background: linear-gradient(135deg, #1d9cd8, #00fbff);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(29,156,216,0.25);
    transition: opacity 0.2s;
}

.rmc-btn:hover {
    opacity: 0.88;
}

/* ================= MOBILE RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .rmc-wrap {
        padding: 1.2rem 1.2rem;
    }

    .rmc-content {
        font-size: 14px;
        line-height: 1.7;
    }

    .rmc-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .rmc-wrap {
        padding: 1rem;
        border-radius: 10px;
    }

    .rmc-content {
        font-size: 9px;
        line-height: 1.6;
        max-height: 140px;
    }

    .rmc-footer {
        text-align: center; /* center button */
    }

    .rmc-btn {
        width: 100%; /* full width button */
        padding: 10px;
        font-size: 13px;
        border-radius: 6px;
    }

    .rmc-fade {
        height: 30px;
    }
}




/*================ faq section ========================*/

/* ================================================
   FAQ SECTION
   ================================================ */

.faq-section {
    padding: 30px 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1d9cd8;
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* 2-column grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
    align-items: start;
}

/* Single FAQ item */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

/* Question button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.93rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.5;
}

.faq-question span {
    flex: 1;
}

/* Plus icon */
.faq-icon {
    font-size: 1rem;
    color: #1d9cd8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 20px 18px;
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
    border-top: 1px solid #f3f4f6;
    padding-top: 14px;
}

/* Open state */
.faq-item.faq-open {
    border-color: #1d9cd8;
}

.faq-item.faq-open .faq-question {
    color: #1d9cd8;
}

/* ── Mobile Responsive ── */
@media (max-width: 768px) {
    .faq-section {
        padding: 48px 0;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-question {
        font-size: 0.875rem;
        padding: 15px 16px;
    }

    .faq-answer p {
        font-size: 0.825rem;
        padding: 0 16px 15px;
        padding-top: 12px;
    }
}

@media (max-width: 480px) {
    .faq-header {
        margin-bottom: 32px;
    }

    .faq-title {
        font-size: 1.3rem;
    }

    .faq-subtitle {
        font-size: 0.875rem;
    }
}


