* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    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: #ff0000; }
.esim-nav a.esim-nav-active { color: #ff0000; font-weight: 700; }

/* Header Right */
.esim-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* CTA Button */
.esim-cta-btn {
    background: #ff0000;
    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: #ff0000; }

/* Mobile CTA */
.esim-mobile-cta {
    background: #ff0000 !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: 460px;
    overflow: hidden;
    background: #003b8e;
}

.esim-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.esim-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 0.7s ease;
    background-size: cover;
    background-position: center;
    background-color: #003b8e;
}

.esim-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 40, 100, 0.72) 0%, rgba(0, 0, 0, 0.28) 100%);
    z-index: 1;
}

.esim-slide.esim-active { opacity: 1; }

.esim-slide-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 5rem;
    max-width: 680px;
    width: 100%;
    color: white;
    height: 100%;
    text-align: left;
}

.esim-slide-content h2 {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.esim-slide-content p {
    font-size: 1rem;
    margin-bottom: 1.6rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    text-shadow: none;
}

.esim-slide-btn {
    background: #fff;
    color: #ff0000;
    padding: 0.7rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.92rem;
}

.esim-slide-btn:hover {
    background: #ff0000;
    color: #fff;
    transform: translateY(-2px);
}

/* Dots */
.esim-slider-controls {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 20;
}

.esim-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.esim-dot.esim-active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

/* Arrow Buttons */
.esim-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    width: 70px;
    height: 46px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    z-index: 20;
}

.esim-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.32);
}

.esim-slider-arrow.esim-prev { left: 1.5rem; }
.esim-slider-arrow.esim-next { right: 1.5rem; }


/* ===========================
   DESTINATION SEARCH CARD
=========================== */
.esim-search-card-wrap {
    max-width: 760px;
    
    padding: 0 1.25rem;
    position: relative;
    z-index: 20;
}

.esim-search-card {
  
    border-radius: 20px;
    padding: 1.8rem 2rem;
}

/* Title row */
.esim-search-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.esim-search-card-title i {
    width: 36px;
    height: 36px;
    background: #ff0000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Input row */
.esim-search-card-wrap .tk-input-wrap {
    display: flex;
    gap: 10px;
}

.esim-search-card-wrap .tk-input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #1a1a1a;
    outline: none;
    background: #fafafa;
    transition: border 0.2s, box-shadow 0.2s;
}

.esim-search-card-wrap .tk-input:focus {
    border-color: #ff0000;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(29, 156, 216, 0.1);
}

.esim-search-card-wrap .tk-input::placeholder { color: #bbb; }

.esim-search-card-wrap .tk-search-btn {
    padding: 12px 22px;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: all 0.2s;
}

.esim-search-card-wrap .tk-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29, 156, 216, 0.4);
}

/* Filter buttons */
.esim-search-card-filters {
    display: flex;
    gap: 8px;
    margin-top: 1.1rem;
    flex-wrap: wrap;
}

/* Trust badges (agar kahin use ho) */
.esim-search-card-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1rem 0 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 1.1rem;
}

.esim-search-card-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 500;
}

.esim-search-card-trust i { color: #ff0000; font-size: 0.88rem; }


/* ====================================
   FILTER BUTTONS — used in both places
==================================== */
.esim-filter-btn {
    padding: 7px 18px;
    border: 1.5px solid #e5e7eb;
    background: #f9fafb;
    color: #6b7280;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
}

.esim-filter-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.esim-filter-btn.esim-active {
    background: #ff0000;
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(29, 156, 216, 0.3);
}


/* ====================================
   DESTINATION SECTION
==================================== */
.esim-destinations-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.25rem 3rem;
}

.esim-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
}

/* Cards Grid */
.esim-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

/* Country Card — Circular style */
.esim-country-card {
    background: white;
    border-radius: 16px;
    padding: 1.2rem 0.8rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    transition: all 0.25s;
    border: 1.5px solid #eef0f5;
    position: relative;
    text-align: center;
    justify-content: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.esim-country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(29, 156, 216, 0.15);
    border-color: #ff0000;
}

/* Hidden cards */
.esim-country-card.esim-hidden-card {
    display: none !important;
}

/* Card left — column layout for circular */
.esim-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

/* Flag / Image — circular */
.esim-flag {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e8f4fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
    transition: border-color 0.25s;
}

.esim-country-card:hover .esim-flag {
    border-color: #ff0000;
}

.esim-flag img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.esim-flag .fi {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.esim-card-info h3 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.esim-card-info p {
    color: #888;
    font-size: 0.75rem;
}

/* Arrow — hidden */
.esim-card-arrow { display: none; }

/* Plan buttons — bottom of card on hover */
.esim-plan-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 14px 14px;
    border-top: 1.5px solid #eef4fd;
    padding: 6px 7px;
    gap: 5px;
    display: none;
    flex-direction: column;
    z-index: 20;
    top: auto;
    transform: none;
    box-shadow: none;
}

.esim-country-card:hover .esim-plan-buttons,
.esim-country-card.esim-card-active .esim-plan-buttons {
    display: flex;
}

.esim-plan-btn {
    padding: 5px 8px;
    border: 1.5px solid #ff0000;
    background: #f0f8ff;
    color: #ff0000;
    border-radius: 7px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    display: block;
    min-width: unset;
}

.esim-plan-btn:hover {
    background: #ff0000;
    color: #fff;
}

.esim-card-active {
    z-index: 15 !important;
}

/* Offer Badge */
.esim-offer-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff4d4d, #e60000);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
    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 / Show Less Button */
.esim-view-all-wrap {
    display: flex;
    justify-content: left;
    margin-top: 1.8rem;
    padding-bottom: 2rem;
}

.esim-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 2.2rem;
    background: #fff;
    border: 2px solid #ff0000;
    color: #ff0000;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.esim-view-all-btn:hover {
    background: #ff0000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 156, 216, 0.3);
}


/* ====================================
   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: 380px; }
    .esim-slide-content {
        padding: 0 1.5rem;
        align-items: flex-start;
    }
    .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; }

    /* Search card */
    .esim-search-card-wrap { margin: -4rem auto 2rem; }
    .esim-search-card { padding: 1.3rem 1.2rem; }

    /* Cards */
    .esim-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .esim-country-card {
        padding: 0.9rem 0.5rem 2.8rem;
    }

    .esim-flag { width: 60px; height: 60px; }
    .esim-card-info h3 { font-size: 0.78rem; }
    .esim-section-title { font-size: 1.3rem; }
}

@media (max-width: 560px) {
    .esim-search-card-wrap .tk-input-wrap { flex-direction: column; }
    .esim-search-card-wrap .tk-search-btn { justify-content: center; }
}

@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; }

    .esim-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .esim-flag { width: 54px; height: 54px; }
    .esim-card-info h3 { font-size: 0.75rem; }
}

@media (min-width: 769px) {
    .esim-mobile-nav { display: none !important; }
    .esim-menu-toggle { display: none; }
}

/* ====================================
   FEATURES SECTION
==================================== */
.esim-features-section {
    padding: 3.5rem 2rem;
    background: #f4f7fb;
}

.esim-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.esim-features-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.esim-features-label span {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ff0000;
    background: #e8f4fd;
    padding: 4px 12px;
    border-radius: 20px;
}

.esim-features-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.esim-features-subtext {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 2.2rem;
}

.esim-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.esim-feature-card {
    background: white;
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.25s;
    border: 1.5px solid #eef0f5;
    position: relative;
    overflow: hidden;
}

.esim-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #00d4ff);
    opacity: 0;
    transition: opacity 0.25s;
}

.esim-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(29, 156, 216, 0.13);
    border-color: #ff0000;
}

.esim-feature-card:hover::before {
    opacity: 1;
}

/* Old class — keep for compatibility */
.esim-feature-card-contant {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s;
    border-left: 3px solid #ff0000;
}

.esim-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e8f4fd, #f0fbff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

.esim-feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.esim-feature-card p {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 1024px) {
    .esim-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .esim-features-section {
        padding: 2.5rem 1.25rem;
    }
    .esim-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .esim-features-heading {
        font-size: 1.3rem;
    }
    .esim-feature-card {
        padding: 1.2rem 1rem;
    }
    .esim-feature-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
    .esim-feature-card h3 {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .esim-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .esim-feature-card {
        padding: 1rem 0.75rem;
    }
    .esim-feature-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        border-radius: 10px;
    }
    .esim-feature-card h3 {
        font-size: 0.82rem;
        margin-bottom: 0.3rem;
    }
    .esim-feature-card p {
        font-size: 0.76rem;
    }
}


/* ====================================
   FOOTER
==================================== */
.esim-footer {
    background: #0f172a;
    color: #fff;
    padding: 4rem 2rem 0;
}

.esim-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.esim-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #1e293b;
    margin-bottom: 0;
}

/* Brand column */
.esim-footer-logo {
    margin-bottom: 0.6rem;
}

.esim-footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff0000;
    letter-spacing: -0.5px;
}

.esim-footer-tagline {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0.6rem 0 1.4rem;
    max-width: 240px;
}

/* Social links */
.esim-social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0;
}

.esim-social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #334155;
}

.esim-social-link:hover {
    background: #ff0000 !important;
    color: #fff;
    border-color: #ff0000;
    transform: translateY(-2px);
}

/* Footer columns */
.esim-footer-section h3 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff0000;
    margin-bottom: 1rem;
}

.esim-footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.esim-footer-section ul li {
    margin-bottom: 0.55rem;
}

.esim-footer-section a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.esim-footer-section a::before {
    content: '›';
    color: #ff0000;
    font-size: 1rem;
    line-height: 1;
}

.esim-footer-section a:hover {
    color: #fff;
}

/* Footer bottom */
.esim-footer-bottom {
    padding: 1.4rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    border-top: 1px solid #1e293b;
    color: #475569;
    font-size: 0.8rem;
}

.esim-footer-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.esim-footer-badge {
    font-size: 0.7rem;
    color: #94a3b8;
    background: #1e293b;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid #334155;
}

/* CTA Section */
.esim-cta-section {
    background: linear-gradient(135deg, #ff0000 0%, #00a8ff 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 2rem;
    border-radius: 16px;
}

.esim-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.esim-cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.92;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .esim-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .esim-footer {
        padding: 3rem 1.25rem 0;
    }
    .esim-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .esim-cta-section {
        margin: 2rem 1rem;
        padding: 2rem 1.25rem;
    }
    .esim-cta-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .esim-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .esim-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .esim-footer-tagline {
        max-width: 100%;
    }
}
/* ====================================
   REVIEWS SECTION
==================================== */
.ys-reviews-section {
    padding: 3.5rem 0 4rem;
    background: #f4f7fb;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    box-sizing: border-box;
}

.ys-reviews-inner {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Header row ─────────────────────────── */
.ys-reviews-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Tag above heading */
.ys-reviews-tag {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ff0000;
    background: #e8f4fd;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.ys-reviews-headline {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.3px;
    margin-bottom: 0.3rem;
}

.ys-reviews-sub {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0;
    margin-bottom: 0;
}

/* ── Nav buttons ────────────────────────── */
.ys-nav-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
    padding-top: 0.3rem;
}

.ys-nav-btn {
    width: 92px;
    height: 42px;
    border-radius: 10px;
    border: 2px solid #ff0000;
    background: #fff;
    color: #ff0000;
    font-size: 2.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    user-select: none;
    padding-bottom: 0;
}

.ys-nav-btn:hover {
    background: #ff0000;
    color: #fff;
    transform: scale(1.05);
}

/* ── Trust pills ────────────────────────── */
.ys-trust-row {
    display: flex;
    gap: 8px;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.ys-trust-pill {
    background: #fff;
    border-radius: 20px;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a1a1a;
    border: 1.5px solid #eef0f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ys-trust-pill .ys-stars {
    color: #f59e0b;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ── Slider ─────────────────────────────── */
.ys-slider-outer {
    overflow: hidden;
    width: 100%;
}

.ys-slider-track {
    display: flex;
    gap: 16px;
    will-change: transform;
}

/* ── Review Card ────────────────────────── */
.ys-review-card {
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    padding: 1.4rem;
    border: 1.5px solid #eef0f5;
    box-sizing: border-box;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.ys-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #00d4ff);
    opacity: 0;
    transition: opacity 0.25s;
}

.ys-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(29, 156, 216, 0.12);
    border-color: #ff0000;
}

.ys-review-card:hover::before {
    opacity: 1;
}

/* ── Card header ────────────────────────── */
.ys-rv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9rem;
}

.ys-rv-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ys-rv-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.ys-rv-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.ys-rv-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* ── Quote icon ─────────────────────────── */
.ys-rv-quote {
    font-size: 2.5rem;
    color: #e8f4fd;
    font-family: Georgia, serif;
    line-height: 0.8;
    margin-bottom: 0.5rem;
    display: block;
}

.ys-rv-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.ys-rv-text {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Country tag */
.ys-rv-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #ff0000;
    background: #e8f4fd;
    padding: 3px 9px;
    border-radius: 10px;
    margin-top: 0.7rem;
}

/* ── Dots ───────────────────────────────── */
.ys-dots-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.5rem;
}

.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: #ff0000;
    width: 24px;
    border-radius: 4px;
}

/* ── Bottom badges ──────────────────────── */
.ys-badges-row {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.ys-badge {
    font-size: 0.72rem;
    color: #6b7280;
    padding: 5px 12px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eef0f5;
    font-weight: 500;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 768px) {
    .ys-reviews-inner {
        padding: 0 1.25rem;
    }

    .ys-reviews-headline {
        font-size: 1.3rem;
    }

    .ys-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .ys-trust-row {
        gap: 6px;
    }

    .ys-trust-pill {
        font-size: 0.74rem;
        padding: 6px 11px;
    }
}

@media (max-width: 480px) {
    .ys-reviews-section {
        padding: 2.5rem 0 3rem;
    }

    .ys-reviews-headline {
        font-size: 1.2rem;
    }

    .ys-reviews-top-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .ys-nav-buttons {
        padding-top: 0;
    }

    .ys-badges-row {
        justify-content: flex-start;
    }
}

/* ── Other page responsive (existing classes) ── */
@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 {
   
    border-radius: 12px;
    padding: 1.5rem 2rem;
 
}

.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: #ff0000;
    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;
    }
}