/* Pricing Page - Dark Glass Morphic Theme */
/* Base styles for the pricing/* Base Styles */
.pricing-page {
    background: linear-gradient(135deg, #0a0f1a 0%, #141c2e 100%);
    color: #e2e8f0;
    font-family: 'Tajawal', sans-serif;
    line-height: 1.7;
    min-height: 100vh;
    padding: 1rem 0 3rem;
    background-attachment: fixed;

    /* sizing variables for pricing cards - tweak these to 240px or 280px */
    --pricing-card-basis: 240px; /* smaller cards for compact row layout */
    --pricing-card-small-basis: 180px; /* compact cards like Nutrition */
}

/* Container Styling */
.pricing-page .container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem auto;
    max-width: 1200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Allow a full-bleed container variant for sections that need to span the page */
.pricing-page .container.full-bleed {
    max-width: none; /* span full width */
    width: 100%;
    margin: 0 auto;
    padding-left: 2.25rem; /* add comfortable horizontal padding */
    padding-right: 2.25rem;
    box-sizing: border-box;
    background: transparent; /* let section background show through */
    border: none;
    box-shadow: none;
}

/* Section Title Styling */
.pricing-page .section-title {
    color: #f8fafc;
    margin: 0 auto 2.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    display: table;
    text-align: center;
    padding: 0.8rem 3rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.pricing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(var(--pricing-card-basis), 1fr)); /* two columns => 2x2 layout */
    gap: 2rem; /* comfortable gap between cards */
    margin: 2rem auto;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 1200px;
    justify-items: center;
    scroll-behavior: smooth;
}


.pricing-page .section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border-radius: 50px;
    z-index: -1;
}

.pricing-page .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Responsive adjustments for pricing grid */
@media (max-width: 1024px) {
    .pricing-page .pricing-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 1rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .pricing-page .pricing-grid {
        grid-template-columns: 1fr; /* single column on small screens */
        gap: 1rem;
        padding: 0.8rem 1rem;
    }
}

/* nicer thin scrollbar for horizontal list */
.pricing-page .pricing-grid::-webkit-scrollbar {
    height: 8px;
}
.pricing-page .pricing-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

/* each card should have a fixed width so they align on one row */
.pricing-page .pricing-card {
    width: 100%; /* Fill the grid column */
    padding: 0.85rem; /* reduced padding for compact look */
    display: flex;
    margin-bottom: 2rem;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px; /* ensure consistent card heights for tidy row */
}

/* smaller variant for compact packages */
.pricing-page .pricing-card.small {
    width: 100%;
    padding: 0.6rem;
    min-height: 300px;
}

/* Pricing Plans Section */
.pricing-page .pricing-plans {
    padding: 2rem 0;
    position: relative;
    background: none;
    margin: 0;
    border-radius: 0;
}

/* Pricing Card */
.pricing-page .pricing-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    /* provide a small logical margin to guarantee visual separation in all layouts */
    margin-inline: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35); /* stronger shadow to separate visually */
}

/* smaller variant for compact packages */
.pricing-page .pricing-card.small {
    padding: 0.9rem;
    margin-inline: 0.5rem;
}

.pricing-page .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: -1;
}

.pricing-page .pricing-card:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Package Header */
.pricing-page .package-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    background: rgba(0, 0, 0, 0.18);
    /* ensure header is fully inside the card and not touching adjacent cards */
    margin: 0 0 0.8rem 0;
    padding: 1rem 1rem 0.9rem 1rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.package-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* Package title styles */
.pricing-page .package-header h3 {
    margin: 0 0 0.35rem;
    font-size: 1.12rem; /* slightly smaller title */
    color: #f8fafc;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-page .package-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.package-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    transition: all 0.3s ease;
}

.package-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.package-badge.basic {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.package-badge.standard {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.package-badge.premium {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.1));
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.3);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Package price section */
.pricing-page .package-price {
    padding: 1.5rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Price amount styling */
.pricing-page .price-amount {
    font-size: 1.6rem; /* reduced price size for readability */
    font-weight: 700;
    color: #f8fafc;
    margin: 0.35rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    line-height: 1.1;
}

/* Toggle switch styling */
.pricing-toggle {
    display: flex;
    justify-content: center; /* center the toggle */
    align-items: center;
    margin-bottom: 1rem;
}
.toggle-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    color: #e6eef8;
}
.toggle-switch input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-track {
    width: 48px;
    height: 26px;
    background: rgba(255,255,255,0.12);
    border-radius: 26px;
    position: relative;
    display: inline-block;
    transition: background 0.18s ease;
    flex-shrink: 0;
}
.toggle-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 3px; /* RTL: thumb on right when unchecked */
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.18s ease, right 0.18s ease;
}
.toggle-switch input[type="checkbox"]:checked + .toggle-track {
    background: linear-gradient(90deg,#f59e0b,#f97316);
}
.toggle-switch input[type="checkbox"]:checked + .toggle-track .toggle-thumb {
    right: auto;
    left: 3px; /* RTL: move thumb to left when checked */
}
.toggle-label-text {
    font-size: 0.95rem;
    color: #cfe6ff;
}

/* improve button compactness */
.pricing-page .select-package-btn {
    display: block;
    width: calc(100% - 1.4rem);
    margin: 0.8rem auto 0.2rem auto;
}

/* center the entire container visually on very wide screens */
@media (min-width: 1400px) {
    .pricing-page .container {
        max-width: 1400px;
    }
    .pricing-page .pricing-grid {
        gap: 1rem;
    }
}

/* Compact variant adjustments */
.pricing-page .pricing-card.small .price-amount {
    font-size: 1.2rem;
}
.pricing-page .pricing-card.small .package-header h3 {
    font-size: 1.1rem;
}
.pricing-page .pricing-card.small .package-features li {
    font-size: 0.95rem;
}

.pricing-page .price-amount .currency {
    font-size: 1rem;
    align-self: flex-start;
    margin-top: 0.5rem;
    color: #94a3b8;
}

.pricing-page .price-amount .period {
    font-size: 1rem;
    align-self: flex-end;
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

/* Features List */
.pricing-page .package-features {
    padding: 0.9rem;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(0, 0, 0, 0.22);
    margin: 0 0.6rem;
    border-radius: 6px;
}

.pricing-page .pricing-card .package-features li {
    padding: 0.35rem 0;
    color: #d1d5db;
    font-weight: 600;
    position: relative;
    padding-right: 1.2rem;
    line-height: 1.5;
    font-size: 0.98rem;
}

.pricing-page .package-features li::before {
    content: '•';
    color: #f59e0b;
    font-weight: bold;
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: 0.3rem;
}

.pricing-page .free-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    font-weight: 600;
}

/* Package meta information */
.pricing-page .package-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-page .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.pricing-page .meta-item i {
    color: #f59e0b;
}

/* Features list with checkmarks */
.pricing-page .features-list {
    padding: 1.5rem;
    margin: 0;
    list-style: none;
    background: rgba(0, 0, 0, 0.1);
}

.pricing-page .features-list li {
    padding: 0.6rem 0;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-page .features-list li i {
    color: #f59e0b;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

/* Action button */
.pricing-page .select-package-btn {
    display: block;
    width: calc(100% - 2rem);
    margin: 1rem auto;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #1e293b;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.15);
}

.pricing-page .select-package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* Limited Offer Ribbon */
.pricing-page .limited-offer-ribbon {
    background: linear-gradient(90deg, #f59e0b, #f97316);
    color: #1e293b;
    text-align: center;
    padding: 0.75rem 2rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 2rem;
    border-radius: 4px;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-page .limited-offer-ribbon::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f97316;
}

/* Features Comparison Section */
.pricing-page .features-comparison {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-page .features-comparison .section-title {
    margin: 0 auto 1.5rem;
}

.pricing-page .features-comparison .section-description {
    text-align: center;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.pricing-page .comparison-table-container {
    overflow-x: auto;
    padding: 1rem 0;
    margin: 0;
    border-radius: 12px;
    background: rgba(11, 15, 28, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-page .comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    background: transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.4);
    font-size: 0.95rem;
    min-width: 800px;
    color: #e2e8f0;
}

/* Table Header */
.pricing-page .comparison-table td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: #e2e8f0;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    border-bottom: 2px solid rgba(245, 158, 11, 0.2);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.6);
    position: relative;
    white-space: nowrap;
}

.pricing-page .comparison-table tr:last-child td {
    border-bottom: none;
}

.pricing-page .comparison-table tr:hover td:not(.feature-name) {
    background: rgba(255, 255, 255, 0.03);
}

.pricing-page .comparison-table .checkmark {
    color: #10b981;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.pricing-page .comparison-table .text-red-400 {
    color: #f87171;
}

/* Add subtle gradient border to table */
.pricing-page .comparison-table-container {
    position: relative;
    padding: 2px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.1));
}

.pricing-page .comparison-table-container > * {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-page .comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

/* Hover effect for rows */
.pricing-page .comparison-table tr:not(.action-row):hover td {
    background: rgba(255, 255, 255, 0.03);
    transition: background-color 0.2s ease;
}

/* All plan columns */
.pricing-page .comparison-table tr td:not(.feature-name) {
    background: rgba(15, 23, 42, 0.8);
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* Golden dividers between plan columns */
.pricing-page .comparison-table tr td:not(.feature-name) {
    position: relative;
}

.pricing-page .comparison-table tr td:not(.feature-name)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(245, 158, 11, 0.3), rgba(249, 115, 22, 0.3), rgba(245, 158, 11, 0.3));
}

/* Remove the divider from the last column */
.pricing-page .comparison-table tr td:last-child::after {
    display: none;
}

/* Checkmark and X icons */
.pricing-page .comparison-table .checkmark {
    color: #10b981;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    transition: transform 0.2s ease;
}

.pricing-page .comparison-table .checkmark:hover {
    transform: scale(1.2);
}

.pricing-page .comparison-table .text-red-400 {
    color: #f87171;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.pricing-page .comparison-table .text-red-400:hover {
    transform: scale(1.2);
}

.pricing-page .comparison-table .text-red-400 {
    color: #f87171;
    font-size: 1.1rem;
}

/* Action row */
.pricing-page .comparison-table .action-row td {
    padding: 1.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
}

.pricing-page .comparison-table .action-row .select-package-btn {
    display: inline-block;
    width: auto;
    min-width: 150px;
    margin: 0;
}

/* Feature name column */
.pricing-page .comparison-table .feature-name {
    background: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: #f8fafc;
    text-align: right;
    position: sticky;
    right: 0;
    z-index: 2;
    padding: 1.2rem 1.5rem;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.pricing-page .comparison-table .feature-name::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
    .pricing-page .comparison-table {
        min-width: 100%;
        font-size: 0.9rem;
    }
    
    .pricing-page .comparison-table th,
    .pricing-page .comparison-table td {
        padding: 1rem 0.8rem;
    }
    
    .pricing-page .comparison-table .feature-name {
        padding: 1rem 1.2rem 1rem 0.8rem;
    }
}

@media (max-width: 1024px) {
    .pricing-page .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        margin: 1rem 0;
        border-radius: 8px;
    }
    
    .pricing-page .comparison-table th,
    .pricing-page .comparison-table td {
        min-width: 180px;
        padding: 0.9rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .pricing-page .comparison-table .feature-name {
        min-width: 180px;
        position: sticky;
        right: 0;
        left: 0;
        z-index: 3;
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
    }
    
    .pricing-page .comparison-table .action-row .select-package-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}


    
    .pricing-page .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-page .section-description {
        font-size: 0.95rem;
    }
    
    .pricing-page .package-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .pricing-page .package-features li {
        padding-right: 1.25rem;
    }


@media (max-width: 480px) {
    .pricing-page .container {
        padding: 1rem;
    }
    
    .pricing-page .section-title {
        font-size: 1.6rem;
    }
    
    .pricing-page .package-header {
        padding: 1.5rem 1rem;
    }
    
    .pricing-page .package-features,
    .pricing-page .features-list {
        padding: 1rem;
    }
    
    .pricing-page .select-package-btn {
        width: calc(100% - 2rem);
        margin: 1rem;
        padding: 0.8rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-page .pricing-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.pricing-page .pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-page .pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-page .pricing-card:nth-child(3) { animation-delay: 0.3s; }

/* Payment Methods Section */
.payment-methods {
    padding: 4rem 0;
    background: rgba(15, 23, 42, 0.4);
    margin: 2rem 0;
}

.payment-methods .section-title {
    color: #f8fafc;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.payment-methods .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border-radius: 3px;
}

.payment-methods .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #94a3b8;
    line-height: 1.6;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-method-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(245, 158, 11, 0.3);
}

.payment-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.payment-details h3 {
    color: #f8fafc;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.account-details {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-top: auto;
}

.account-details p {
    margin: 0.5rem 0;
    color: #cbd5e1;
    font-size: 0.95rem;
    text-align: center;
    display: block;
}

.account-details .account-number {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    color: #f59e0b;
    text-align: center;
    margin: 1rem 0;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    direction: ltr;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.account-name {
    color: #94a3b8 !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 0.8rem !important;
    text-align: center;
}

.account-currency {
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    text-align: center;
}

.account-currency:last-child {
    border-bottom: none;
}

.account-currency span {
    font-weight: 600;
    color: #f59e0b;
    direction: ltr;
    display: inline;
    margin-right: 0.5rem;
}

.payment-instructions {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-instructions h3 {
    color: #f8fafc;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-right: 1.5rem;
}

.payment-instructions h3::before {
    content: '\f05a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: #f59e0b;
}

.payment-instructions ol {
    padding-right: 1.5rem;
    margin: 0;
}

.payment-instructions li {
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    position: relative;
    padding-right: 1.5rem;
}

.payment-instructions li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: #10b981;
    font-size: 0.8rem;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
}

.whatsapp-link i {
    font-size: 1.2em;
}

/* Responsive styles for payment methods */
@media (max-width: 768px) {
    .payment-methods {
        padding: 2rem 0;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 2rem;
    }
    
    .payment-method-card {
        max-width: 100%;
    }
    
    .payment-instructions {
        padding: 1.5rem;
    }
    
    .payment-instructions ol {
        padding-right: 1.2rem;
    }
    
    .payment-instructions li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .payment-methods .section-title {
        font-size: 1.6rem;
    }
    
    .payment-methods .section-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .payment-method-card {
        padding: 1.2rem;
    }
    
    .payment-logo {
        height: 85px;
        margin-bottom: 1.2rem;
    }
    
    .payment-logo img {
        max-height: 60px;
    }
    
    .payment-details h3 {
        font-size: 1.1rem;
    }
    
    .account-details {
        padding: 0.8rem;
    }
    
    .account-details p {
        font-size: 0.9rem;
    }
    
    .account-details .account-number {
        font-size: 1rem;
        padding: 0.4rem;
    }
    
    .payment-instructions {
        padding: 1.2rem;
    }
    
    .payment-instructions h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .payment-instructions li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}