/* ===== FONT DECLARATIONS ===== */
@font-face {
    font-family: "Sunsive";
    src: url("../fonts/Sunsive-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sunsive";
    src: url("../fonts/Sunsive-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sunsive";
    src: url("../fonts/Sunsive-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sunsive";
    src: url("../fonts/Sunsive-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ===== GLOBAL STYLES ===== */
* {
    font-family: "Sunsive", "IBM Plex Sans Arabic", "Montserrat", sans-serif;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f8fafc;
    color: #1e293b;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* ===== ARABIC/RTL SUPPORT ===== */
.rtl {
    direction: rtl;
}

.font-arabic,
.ar-text {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    line-height: 1.8;
}

/* ===== VARIABLES ===== */
:root {
    --primary-green: #016701;
    --primary-50: #f2f9f6;
    --primary-100: #dff2ea;
    --primary-200: #bfe5d6;
    --primary-300: #99d5bd;
    --primary-400: #66c2a0;
    --primary-500: #016701;
    --primary-600: #198754;
    --primary-700: #016701;
    --primary-800: #0f4d3f;
    --primary-900: #0a352c;
    --primary-gradient: linear-gradient(135deg, #016701 0%, #198754 100%);
}

/* ===== UTILITY CLASSES ===== */
.gradient-text {
    background: linear-gradient(90deg, #016701, #198754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-bg {
    background: linear-gradient(135deg, #016701 0%, #198754 50%, #0f4d3f 100%);
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
}

.gradient-bg-light {
    background: linear-gradient(135deg, #66c2a0 0%, #016701 100%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== CARD STYLES ===== */
.card-hover,
.plan-card,
.product-card,
.kpi-card,
.ticket-card,
.stat-card,
.review-card {
    transition: all 0.3s ease;
}

.card-hover:hover,
.plan-card:hover,
.product-card:hover,
.kpi-card:hover,
.ticket-card:hover,
.stat-card:hover,
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(1, 103, 1, 0.15);
}

.card-shadow {
    box-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.05),
        0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

/* Destination Card */
.destination-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.destination-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(1, 103, 1, 0.2);
}

.destination-card.hidden {
    display: none;
}

.destination-card.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

.destination-card:focus {
    outline: 2px solid #016701;
    outline-offset: 2px;
}

.destination-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

/* Plan Card */
.plan-card {
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(1, 103, 1, 0.1),
        rgba(25, 135, 84, 0.1),
        transparent
    );
    transition: left 0.7s ease;
}

.plan-card:hover::before {
    left: 100%;
}

.plan-card.selected {
    border-color: #016701;
    background-color: #f2f9f6;
    box-shadow: 0 10px 25px -5px rgba(1, 103, 1, 0.3);
    transform: scale(1.02);
}

/* Team Card */
.team-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(1, 103, 1, 0.1),
        rgba(25, 135, 84, 0.1),
        transparent
    );
    transition: left 0.7s ease;
}

.team-card:hover::before {
    left: 100%;
}

/* Value & Award Cards */
.value-card,
.award-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::after,
.award-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #016701, #198754);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.award-card::after {
    height: 3px;
}

.value-card:hover::after,
.award-card:hover::after {
    transform: scaleX(1);
}

/* Data Type & Duration Cards */
.data-type-card,
.duration-option,
.device-option {
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    cursor: pointer;
}

.data-type-card:hover,
.duration-option:hover,
.device-option:hover {
    border-color: #016701;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(1, 103, 1, 0.1);
}

.data-type-card.selected,
.duration-option.selected,
.device-option.selected {
    border-color: #016701;
    background-color: #f2f9f6;
    box-shadow: 0 10px 30px rgba(1, 103, 1, 0.2);
    transform: translateY(-5px);
}

.duration-option.selected .text-gray-900,
.device-option.selected .text-gray-900 {
    color: #016701;
}

/* Download Card */
.download-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.download-card:hover {
    transform: translateY(-4px);
    border-color: #016701;
    box-shadow: 0 20px 40px -15px rgba(1, 103, 1, 0.15);
}

/* Feature Card */
.feature-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(1, 103, 1, 0.15);
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-radius: 26px;
    padding: 34px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(1, 103, 1, 0.15);
    border-color: #99d5bd;
}

.testimonial-card-premium p {
    font-size: 16px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 26px;
    font-style: italic;
}

.testimonial-card-premium .user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-card-premium img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #dff2ea;
    object-fit: cover;
}

.testimonial-card-premium h4 {
    font-weight: 700;
    color: #111827;
    font-size: 16px;
}

.testimonial-card-premium span {
    font-size: 13px;
    color: #6b7280;
}

/* Featured Card */
.testimonial-card-premium.featured {
    background: linear-gradient(135deg, #016701, #198754);
    color: white;
    border: none;
    box-shadow: 0 35px 80px rgba(1, 103, 1, 0.3);
    transform: scale(1.02);
}

.testimonial-card-premium.featured p,
.testimonial-card-premium.featured h4,
.testimonial-card-premium.featured span {
    color: white;
}

.testimonial-card-premium.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 40px 90px rgba(1, 103, 1, 0.4);
}

/* ===== BADGES ===== */
.badge {
    position: absolute;
    top: -14px;
    right: 22px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.best-choice-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.save-badge {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.mapians-badge {
    background: linear-gradient(135deg, #016701 0%, #198754 100%);
}

/* Compatibility Badges */
.compatible-badge,
.limited-badge,
.not-compatible-badge,
.compatibility-badge,
.ios-badge,
.android-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
}

.compatible-badge {
    background-color: #dff2ea;
    color: #016701;
}

.limited-badge {
    background-color: #fef3c7;
    color: #92400e;
}

.not-compatible-badge {
    background-color: #fee2e2;
    color: #991b1b;
}

.ios-badge {
    background-color: #000;
    color: white;
}

.android-badge {
    background-color: #3ddc84;
    color: #000;
}

/* Status Badges */
.status-badge,
.badge-primary,
.badge-active,
.status-open {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-success,
.status-active,
.status-open,
.badge-active,
.badge-primary {
    background-color: #dff2ea;
    color: #016701;
}

.status-pending,
.status-progress {
    background-color: #fef3c7;
    color: #92400e;
}

.status-failed,
.status-inactive {
    background-color: #fee2e2;
    color: #dc2626;
}

.status-resolved {
    background-color: #dcfce7;
    color: #15803d;
}

.status-closed {
    background-color: #e5e7eb;
    color: #4b5563;
}

.status-processing {
    background-color: #dbeafe;
    color: #1e40af;
}

.priority-high {
    background-color: #fee2e2;
    color: #dc2626;
}

.priority-medium {
    background-color: #fef3c7;
    color: #d97706;
}

.priority-low {
    background-color: #dff2ea;
    color: #016701;
}

/* ===== FORM ELEMENTS ===== */
.form-input,
.form-textarea,
.filter-select,
.search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-input:focus,
input:focus,
.form-textarea:focus,
.filter-select:focus,
.search-input:focus {
    outline: none;
    border-color: #016701;
    box-shadow: 0 0 0 3px rgba(1, 103, 1, 0.1);
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #016701;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* File upload */
.file-upload-area {
    border: 2px dashed #bfe5d6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    background: #f2f9f6;
    transition: all 0.2s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: #016701;
    background: #e8f5e9;
}

.file-upload-area i {
    font-size: 2rem;
    color: #198754;
    margin-bottom: 0.5rem;
}

.file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f2f9f6;
    border-radius: 0.75rem;
    margin-top: 0.75rem;
    border: 1px solid #bfe5d6;
}

.file-remove {
    color: #ef4444;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.file-remove:hover {
    background: #fee2e2;
}

/* ===== BUTTONS ===== */
.btn-primary,
.submit-btn {
    background-color: #198754;
    color: white;
    transition: all 0.2s ease;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover,
.submit-btn:hover {
    background-color: #016701;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(1, 103, 1, 0.2);
}

.proceed-btn,
.continue-btn {
    width: 100%;
    background: linear-gradient(135deg, #016701 0%, #198754 100%);
    color: white;
    font-weight: 700;
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.proceed-btn:hover,
.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(1, 103, 1, 0.4);
}

.select-btn {
    width: 100%;
    background: #016701;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 0;
    border-radius: 0.75rem;
    margin-top: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.select-btn:hover {
    background: #198754;
    transform: scale(1.02);
    box-shadow: 0 4px 6px -1px rgba(1, 103, 1, 0.4);
}

.search-btn {
    background: #016701;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.search-btn:hover {
    background: #198754;
}

.clear-btn {
    background: white;
    color: #0f4d3f;
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #bfe5d6;
    cursor: pointer;
}

.clear-btn:hover {
    background: #f2f9f6;
    border-color: #99d5bd;
}

.download-btn {
    border: 1px solid #bfe5d6;
    transition: all 0.2s ease;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.download-btn:hover {
    background-color: #f2f9f6;
    border-color: #66c2a0;
}

/* ===== FILTERS ===== */
.filter-bar {
    background: white;
    border: 1px solid #bfe5d6;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.filter-select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23016701' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    appearance: none;
}

.search-input {
    padding: 0.5rem 1rem 0.5rem 2.5rem;
}

.filter-btn {
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active {
    background-color: #016701;
    color: white;
}

.filter-btn:not(.active):hover {
    background-color: #dff2ea;
    color: #016701;
}

.filter-chip {
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #bfe5d6;
}

.filter-chip.active {
    background-color: #198754;
    color: white;
    border-color: #198754;
}

/* ===== TIMELINE ===== */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    transition: all 0.4s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #016701, #198754);
    box-shadow: 0 0 15px rgba(1, 103, 1, 0.5);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover:before {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(1, 103, 1, 0.8);
}

.timeline-item:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 14px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: linear-gradient(to bottom, #198754, #d1d5db);
}

.timeline-item:last-child:after {
    display: none;
}

/* ===== FAQ STYLES ===== */
.faq-item,
details {
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    border: 1px solid #e5e7eb;
}

.faq-item:hover,
details:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(1, 103, 1, 0.1);
}

details[open],
.faq-item.active {
    border-color: #016701;
    box-shadow: 0 20px 25px -5px rgba(1, 103, 1, 0.15);
}

details[open] summary,
.faq-item.active .faq-question {
    color: #016701;
    background: linear-gradient(to right, #f2f9f6, #ffffff);
    border-bottom: 1px solid #dff2ea;
}

.faq-question,
details summary {
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-question:hover,
details summary:hover {
    background: #f9fafb;
}

details summary::-webkit-details-marker {
    display: none;
}

.faq-answer,
.answer-content {
    padding: 0 1.5rem 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

details[open] .plus,
details .minus {
    display: none;
}

details[open] .minus {
    display: inline;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon,
details[open] .faq-icon {
    transform: rotate(180deg);
}

details[open] .faq-icon,
.faq-item.active .faq-icon {
    background: #016701;
    color: white;
}

details[open] .faq-icon i,
.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

/* ===== FAQ NEW SECTION ===== */
#faq-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-overline {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 16px;
}

.faq-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2.5px;
    line-height: 0.92;
    margin-bottom: 16px;
}

.faq-headline span {
    color: #016701;
}

.faq-sub {
    font-size: 16px;
    color: #777;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: start;
    margin-top: 56px;
}

/* FAQ Item New */
.faq-item-new {
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    position: relative;
}

.faq-item-new[open] {
    border-color: #016701;
    box-shadow: 0 8px 32px rgba(45, 90, 61, 0.1);
}

.faq-sum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    transition: background 0.15s;
    gap: 16px;
}

.faq-sum::-webkit-details-marker {
    display: none;
}

.faq-sum:hover {
    background: #faf9f7;
}

.faq-sum-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-num-badge {
    font-size: 10px;
    font-weight: 700;
    color: #016701;
    background: #e8f4ec;
    padding: 5px 10px;
    border-radius: 8px;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.faq-item-new[open] .faq-num-badge {
    background: #016701;
    color: white;
}

.faq-q-text {
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #f5f4f2;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        background 0.2s,
        transform 0.3s;
    color: #888;
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.faq-item-new[open] .faq-toggle {
    background: #016701;
    color: white;
}

.faq-item-new[open] .faq-toggle svg {
    transform: rotate(45deg);
}

.faq-ans {
    padding: 0 22px 20px;
    animation: fadeDown 0.25s ease;
}

.faq-ans p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 12px;
}

.faq-ans p:last-child {
    margin-bottom: 0;
}

/* FAQ Check List */
.faq-check-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.faq-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.faq-check-ic {
    width: 18px;
    height: 18px;
    background: #e8f4ec;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.faq-check-ic svg {
    width: 9px;
    height: 9px;
    color: #016701;
}

.faq-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 12px 0;
}

.faq-mini-card {
    background: #faf9f7;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
}

.faq-mini-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.faq-mini-card-title svg {
    width: 13px;
    height: 13px;
    color: #016701;
}

.faq-mini-card p {
    font-size: 12px;
    color: #888;
}

.faq-topup-row {
    display: flex;
    gap: 10px;
    margin: 12px 0;
}

.faq-topup {
    flex: 1;
    text-align: center;
    background: #faf9f7;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 14px 10px;
}

.faq-topup-val {
    font-family: "Clash Display", serif;
    font-size: 22px;
    font-weight: 700;
    color: #016701;
    letter-spacing: -1px;
}

.faq-topup-label {
    font-size: 11px;
    font-weight: 600;
    color: #0a0a0a;
    margin-top: 3px;
}

.faq-topup-sub {
    font-size: 10px;
    color: #aaa;
}

.faq-security-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.faq-sec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #faf9f7;
    border-radius: 10px;
}

.faq-sec-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
}

.faq-sec-icon svg {
    width: 14px;
    height: 14px;
    color: #016701;
}

.faq-sec-title {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
}

.faq-sec-desc {
    font-size: 11px;
    color: #888;
}

/* FAQ Sidebar */
.faq-sidebar {
    background: #f5eee9;
    border: 1.5px solid rgba(45, 90, 61, 0.1);
    border-radius: 20px;
    padding: 32px 28px;
    position: sticky;
    top: 24px;
}

.faq-sidebar-icon {
    width: 56px;
    height: 56px;
    background: #016701;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.faq-sidebar-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.faq-sidebar-title {
    font-family: "Clash Display", serif;
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.8px;
    margin-bottom: 6px;
}

.faq-sidebar-sub {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 28px;
}

.faq-support-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.faq-support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.faq-support-item:hover {
    border-color: #016701;
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(45, 90, 61, 0.08);
}

.faq-support-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-support-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

.faq-support-label {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
}

.faq-support-sub {
    font-size: 11px;
    color: #aaa;
}

.faq-support-arrow {
    margin-left: auto;
    color: #ccc;
    width: 14px;
    height: 14px;
    transition:
        color 0.2s,
        transform 0.2s;
}

.faq-support-item:hover .faq-support-arrow {
    color: #016701;
    transform: translateX(2px);
}

.faq-help-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #016701;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

.faq-help-btn:hover {
    background: #0a0a0a;
    transform: scale(1.02);
}

/* ===== DOWNLOAD APP SECTION ===== */
#dl-app {
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#dl-app::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(45, 90, 61, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.dl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 28px;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    padding: 60px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

.dl-overline {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 16px;
}

.dl-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(38px, 4vw, 60px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2px;
    line-height: 0.95;
    margin-bottom: 20px;
}

.dl-headline span {
    color: #016701;
}

.dl-body {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 36px;
}

.dl-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dl-store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: #0a0a0a;
    color: white;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid transparent;
}

.dl-store-btn:hover {
    background: #016701;
    transform: scale(1.04);
}

.dl-store-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.dl-store-label {
    font-size: 10px;
    opacity: 0.7;
    display: block;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dl-store-name {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-top: 1px;
    font-family: "DM Sans", sans-serif;
}

.dl-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dl-visual img {
    width: 280px;
    max-width: 100%;
}

/* ===== MAIN CTA SECTION ===== */
#main-cta {
    background: #f5eee9;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: #016701;
    border-radius: 28px;
    padding: 64px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(200, 230, 160, 0.12) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.cta-card::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.15) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.cta-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8e6a0;
    animation: dpulse 2s infinite;
}

.cta-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 700;
    color: white;
    letter-spacing: -2px;
    line-height: 0.95;
    margin-bottom: 18px;
}

.cta-headline span {
    color: #c8e6a0;
}

.cta-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 36px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-btn-main {
    padding: 15px 34px;
    background: #c8e6a0;
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-main:hover {
    background: white;
    transform: scale(1.04);
}

.cta-btn-out {
    padding: 15px 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-out:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.cta-stats {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cta-stat-val {
    font-family: "Clash Display", serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
}

.cta-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.cta-visual {
    position: relative;
}

.cta-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 400px;
}

.cta-float {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.cta-float.top-right {
    top: -16px;
    right: -16px;
}

.cta-float.bot-left {
    bottom: -16px;
    left: -16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-float-val {
    font-family: "Clash Display", serif;
    font-size: 24px;
    font-weight: 700;
    color: #016701;
    letter-spacing: -1px;
    line-height: 1;
}

.cta-float-label {
    font-size: 10px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 2px;
}

.cta-float-icon {
    width: 36px;
    height: 36px;
    background: #e8f4ec;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-float-icon svg {
    width: 16px;
    height: 16px;
    color: #016701;
}

/* ===== BRAND PARTNERS SECTION ===== */
#partners {
    background: #ffffff;
    padding: 72px 0;
    overflow: hidden;
}

.partners-overline {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
}

.partners-title {
    font-family: "Clash Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.8px;
    margin-top: 8px;
}

.logo-viewport {
    position: relative;
    overflow: hidden;
    margin-top: 36px;
}

.logo-viewport::before,
.logo-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.logo-viewport::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-viewport::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll 28s linear infinite;
    padding: 8px 0;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-track img {
    height: 48px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(1);
    transition:
        opacity 0.3s,
        filter 0.3s;
}

.logo-track img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ===== NEWS SECTION ===== */
#news-section {
    background: #f5eee9;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
}

.news-overline {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 14px;
}

.news-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2px;
    line-height: 0.95;
}

.news-headline span {
    color: #016701;
}

.news-sub {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

.news-view-btn {
    padding: 12px 24px;
    background: #016701;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.news-view-btn:hover {
    background: #0a0a0a;
    transform: scale(1.04);
}

.news-view-btn svg {
    width: 13px;
    height: 13px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.news-card {
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 28px 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition:
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s,
        border-color 0.2s;
    text-decoration: none;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(45, 90, 61, 0.1);
    border-color: rgba(45, 90, 61, 0.2);
}

.news-card-logo {
    height: 44px;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(1);
    transition:
        opacity 0.25s,
        filter 0.25s;
    width: 100%;
}

.news-card:hover .news-card-logo {
    opacity: 1;
    filter: grayscale(0);
}

.news-divider {
    width: 100%;
    height: 1.5px;
    background: linear-gradient(to right, #016701, rgba(45, 90, 61, 0.1));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.news-card:hover .news-divider {
    transform: scaleX(1);
}

.news-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: #016701;
    color: white;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    width: 100%;
    justify-content: center;
    transition: background 0.2s;
}

.news-card:hover .news-read-btn {
    background: #0a0a0a;
}

.news-read-btn svg {
    width: 12px;
    height: 12px;
}

/* ===== TABLES ===== */
.transaction-table {
    border-collapse: separate;
    border-spacing: 0;
}

.transaction-table th {
    background-color: #f2f9f6;
    font-weight: 600;
    color: #016701;
    border-bottom: 1px solid #bfe5d6;
    position: sticky;
    top: 0;
    z-index: 10;
}

.transaction-table tbody tr:hover,
table tr:hover {
    background-color: #f2f9f6;
}

.table-container {
    max-height: 500px;
    overflow-y: auto;
}

/* ===== SIDEBAR ===== */
.sidebar-item,
.sidebar-link {
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    padding: 0.625rem 0.75rem;
}

.sidebar-item:hover,
.sidebar-link:hover {
    background-color: rgba(1, 103, 1, 0.05);
    border-left: 3px solid #016701;
    transform: translateX(5px);
}

.sidebar-item.active,
.sidebar-link.active {
    background-color: rgba(1, 103, 1, 0.1);
    border-left: 3px solid #016701;
    color: #198754;
}

.sidebar-item.active i,
.sidebar-item.active span {
    color: #198754;
}

/* ===== STICKY ELEMENTS ===== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(1, 103, 1, 0.1);
    backdrop-filter: blur(10px);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(1, 103, 1, 0.15);
}

.sticky-cta.visible {
    transform: translateY(0);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    color: #6b7280;
    transition: color 0.2s;
}

.mobile-nav-item.active {
    color: #198754;
}

.mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

/* ===== CHECKOUT STYLES ===== */
.checkout-container {
    max-width: 1280px;
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #bfe5d6;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #dff2ea;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #016701;
}

.tabs-header {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid #bfe5d6;
    margin-bottom: 1.5rem;
}

.tab-btn,
.tab-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f4d3f;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab-btn:hover,
.tab-button:hover {
    color: #016701;
}

.tab-btn.active,
.tab-button.active {
    color: #016701;
    border-bottom-color: #016701;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* ===== COUNTRY LIST ===== */
.country-list,
.country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
    background: #f2f9f6;
    border-radius: 0.75rem;
    border: 1px solid #bfe5d6;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #0f4d3f;
    padding: 0.375rem 0.5rem;
    border-radius: 0.375rem;
}

.country-item:hover {
    background: #dff2ea;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #f2f9f6;
    color: #016701;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ===== QUANTITY STEPPER ===== */
.quantity-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f2f9f6;
    border: 1px solid #bfe5d6;
    border-radius: 1rem;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
}

.stepper-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border: 1px solid #bfe5d6;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f4d3f;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stepper-btn:hover {
    background: #016701;
    color: white;
    border-color: #016701;
}

/* ===== AMOUNT INPUT ===== */
.amount-input {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border: 1px solid #bfe5d6;
    border-radius: 12px;
    width: 100%;
    transition: all 0.2s ease;
}

.amount-input::placeholder {
    color: #cbd5e1;
    font-weight: 400;
    font-size: 1rem;
}

/* ===== QUICK AMOUNT ===== */
.quick-amount {
    background-color: #f2f9f6;
    border: 1px solid #dff2ea;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.quick-amount:hover {
    background-color: #dff2ea;
    border-color: #99d5bd;
}

/* ===== REFERRAL LINK ===== */
.referral-link {
    background: #f8fafc;
    border: 1px solid #bfe5d6;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: "Monaco", "Menlo", monospace;
}

/* ===== QR CODE ===== */
.qr-code-container {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 20px;
    display: inline-block;
    position: relative;
}

.qr-code-container::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.qr-code-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f2f9f6 0%, #dff2ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qr-code-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(1, 103, 1, 0.1);
}

/* ===== DROPDOWN ANIMATION ===== */
.dropdown-enter {
    opacity: 0;
    transform: scale(0.95);
}

.dropdown-enter-active {
    opacity: 1;
    transform: scale(1);
    transition:
        opacity 0.1s ease,
        transform 0.1s ease;
}

/* ===== API STYLES ===== */
.api-code {
    font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
    background: #1e293b;
    border-radius: 8px;
    padding: 20px;
}

.api-endpoint {
    font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
    background: #f8fafc;
    border: 1px solid #bfe5d6;
    border-radius: 8px;
    padding: 12px 16px;
}

.method-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.method-get {
    background: #dbeafe;
    color: #1d4ed8;
}

.method-post {
    background: #dcfce7;
    color: #016701;
}

.method-put {
    background: #fef3c7;
    color: #92400e;
}

.method-delete {
    background: #fee2e2;
    color: #dc2626;
}

/* ===== SUPPORT SECTION ===== */
.support-box,
.support-gradient {
    background: linear-gradient(135deg, #f2f9f6 0%, #dff2ea 100%);
    border: 1px dashed #99d5bd;
    border-radius: 12px;
    padding: 1.25rem;
}

/* ===== REVOLUT CARD ===== */
.revolut-card {
    background: linear-gradient(135deg, #dff2ea 0%, #bfe5d6 100%);
    border: 1px solid #99d5bd;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.revolut-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    transform: rotate(30deg);
}

.revolut-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #0a352c;
}

.revolut-logo i {
    font-size: 1.5rem;
    color: #016701;
}

/* ===== E-SIM CARD ===== */
.esim-card {
    background: linear-gradient(135deg, #016701 0%, #198754 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(1, 103, 1, 0.2);
    position: relative;
    overflow: hidden;
}

.esim-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
    transform: rotate(30deg);
}

/* ===== EMPTY STATE ===== */
.empty-state-illustration {
    width: 200px;
    height: 160px;
    margin: 0 auto;
    position: relative;
}

.empty-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease forwards;
}

.empty-circle {
    transform: scale(0);
    transform-origin: center;
    animation: scaleIn 0.5s ease forwards 0.5s;
}

/* ===== HIGHLIGHTED PLAN ===== */
.highlighted-plan {
    position: relative;
    border: 2px solid #016701;
    transform: scale(1.02);
}

.highlighted-plan::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 15px;
    right: -35px;
    background: #016701;
    color: white;
    padding: 5px 35px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 1;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #016701;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(1, 103, 1, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
}

.back-to-top:hover {
    background: #198754;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(1, 103, 1, 0.4);
}

/* ===== SWIPER STYLES ===== */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: #016701;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #016701;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* ===== RANGE INPUT ===== */
input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 3px solid #016701;
}

input[type="range"]::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 3px solid #016701;
}

/* ===== UTILITY CLASSES ===== */
.highlight-text {
    background: linear-gradient(120deg, #dff2ea 0%, #dff2ea 100%);
    padding: 2px 8px;
    border-radius: 4px;
    color: #016701;
    font-weight: 500;
}

.step-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #016701 0%, #198754 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    background: #016701;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #016701, #198754);
    border-radius: 2px;
}

.star-glow {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.clip-path-polygon {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.counter {
    font-variant-numeric: tabular-nums;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
}

.success-box {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 4px solid #0dcaf0;
}

.coverage-dot {
    animation: pulse 2s infinite;
}

.compatibility-check {
    background: linear-gradient(135deg, #016701 0%, #198754 100%);
}

.active {
    background-color: #016701;
    color: white;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #016701, #198754);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #198754;
}

#suggestionsList::-webkit-scrollbar {
    width: 6px;
}

#suggestionsList::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#suggestionsList::-webkit-scrollbar-thumb {
    background: #99d5bd;
    border-radius: 3px;
}

#suggestionsList::-webkit-scrollbar-thumb:hover {
    background: #66c2a0;
}

/* ===== HOVER EFFECTS ===== */
.hover-lift {
    transition: transform 0.3s ease;
}

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

.glow {
    box-shadow: 0 0 15px rgba(1, 103, 1, 0.3);
    transition: box-shadow 0.3s ease;
}

.glow:hover {
    box-shadow: 0 0 25px rgba(1, 103, 1, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawRoad {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

@keyframes starPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes dpulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

/* Animation Classes */
.floating,
.float-animation,
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.floating-delay-1,
.float-delay-1 {
    animation: float 7s ease-in-out infinite 1s;
}

.floating-delay-2,
.float-delay-2 {
    animation: float 8s ease-in-out infinite 2s;
}

.pulse,
.pulse-animation,
.pulse-glow,
.animate-pulse-slow {
    animation: pulse 2s ease-in-out infinite;
}

.animate-fade-in,
.fade-in-up,
.animate-fadeInUp {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.road-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawRoad 3s ease-in-out forwards;
}

.featured .fa-star {
    animation: starPulse 2s infinite ease-in-out;
}

.featured .fa-star:nth-child(2) {
    animation-delay: 0.2s;
}
.featured .fa-star:nth-child(3) {
    animation-delay: 0.4s;
}
.featured .fa-star:nth-child(4) {
    animation-delay: 0.6s;
}
.featured .fa-star:nth-child(5) {
    animation-delay: 0.8s;
}

.map-dot::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: ripple 2s infinite;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1000px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .dl-inner,
    .cta-card {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        gap: 40px;
    }

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

    .faq-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .testimonial-card-premium {
        padding: 24px;
    }

    .testimonial-card-premium.featured {
        transform: scale(1);
    }

    .testimonial-card-premium.featured:hover {
        transform: translateY(-8px) scale(1.02);
    }

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

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

    .tabs-header {
        flex-wrap: wrap;
    }

    .tab-btn,
    .tab-button {
        padding: 0.5rem 1rem;
    }

    .mobile-stack {
        flex-direction: column;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

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

    .payment-card {
        position: static;
    }

    .two-column-form,
    .two-column-layout,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .cta-img {
        height: 260px;
    }

    .dl-visual img {
        width: 200px;
    }
}

@media (max-width: 640px) {
    .duration-option {
        padding: 12px 8px;
    }

    .plan-card {
        padding: 16px 12px;
    }

    .country-list,
    .country-grid {
        grid-template-columns: 1fr;
    }

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

    .empty-state-illustration {
        width: 160px;
        height: 140px;
    }

    .transaction-table th,
    .transaction-table td {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .form-container {
        padding: 0;
    }

    .action-area {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

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

/* ===== CONTAINER ===== */
.s3-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .s3-container {
        padding: 0 20px;
    }
}

/* ===== FOCUS REMOVAL ===== */
*:focus,
*:focus-visible,
button:focus,
a:focus,
.faq-question:focus,
details summary:focus {
    outline: none;
    outline-width: 0;
    box-shadow: none;
}

/* ===== MISC ===== */
#mainNav,
#mainNavBox {
    transform: translateY(0px);
    transition: none;
}
