/* ===== GENERAL STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: rgb(5, 229, 236);
    font-family: 'Poppins', Arial, sans-serif;
    color: #000000;
    overflow-x: hidden;
    width: 100%;
}

.main-content {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ===== PAYMENT HERO SECTION ===== */
.payment-hero {
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 10px;
}

.payment-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.payment-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.security-badge {
    background: rgba(255,255,255,0.2);
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 1rem;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    background: #cce9f8;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.content-section h2 {
    text-align: center;
    color: #1E88E5;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

/* ===== PAYMENT OVERVIEW ===== */
.payment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #1E88E5;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

/* ===== PAYMENT METHODS GRID ===== */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: #1E88E5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.method-description {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.method-details {
    margin-top: 1.5rem;
}

.method-details h4 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

/* Bank Details Styles */
.bank-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.bank-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.transfer-instructions ul {
    list-style: none;
    padding: 0;
}

.transfer-instructions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.transfer-instructions li:before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.transfer-instructions li:last-child {
    border-bottom: none;
}

/* Card Types Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.card-type {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.card-type i {
    font-size: 2rem;
    color: #1E88E5;
    margin-bottom: 0.5rem;
    display: block;
}

/* Security Info */
.security-info {
    background: #d4edda;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.security-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.security-info p:last-child {
    margin-bottom: 0;
}

/* Cash Payment Styles */
.payment-location {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.cash-instructions ul {
    list-style: none;
    padding: 0;
}

.cash-instructions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.cash-instructions li:before {
    content: '•';
    color: #1E88E5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cash-instructions li:last-child {
    border-bottom: none;
}

.safety-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Mobile Payment Styles */
.apps-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.app-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.app-icon {
    width: 50px;
    height: 50px;
    background: #1E88E5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mobile-instructions ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.mobile-instructions li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

/* ===== PAYMENT PLANS ===== */
.plans-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.plan-option {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.plan-option:hover {
    transform: translateY(-5px);
}

.plan-option.featured {
    border: 2px solid #1E88E5;
    transform: scale(1.05);
}

.plan-option.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E88E5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-badge.popular {
    background: #ffc107;
    color: #000;
}

.payment-frequency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.plan-features {
    margin: 1.5rem 0;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.plan-features .fa-check {
    color: #28a745;
}

.plan-features .fa-times {
    color: #dc3545;
}

.plan-action {
    text-align: center;
}

/* ===== SECURITY FEATURES ===== */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.protection-features,
.fraud-prevention {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.protection-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.protection-item i {
    font-size: 1.5rem;
    color: #1E88E5;
    margin-top: 0.25rem;
}

.prevention-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.prevention-item h5 {
    color: #1E88E5;
    margin-bottom: 0.5rem;
}

/* ===== SUPPORT OPTIONS ===== */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: #1E88E5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
}

/* ===== PAYMENT REMINDERS ===== */
.reminders-content {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.reminder-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.reminder-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.reminder-item i {
    font-size: 1.5rem;
    color: #856404;
    margin-top: 0.25rem;
}

/* ===== PAYMENT CONTACT ===== */
.payment-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    text-align: center;
    padding: 1.5rem 1rem;
}

.contact-method i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-method a {
    color: white;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* ===== BUTTON STYLES ===== */
.cta-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-btn.primary {
    background-color: #1E88E5;
    color: white;
}

.cta-btn.secondary {
    background-color: transparent;
    color: #1E88E5;
    border: 2px solid #1E88E5;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.cta-btn.primary:hover {
    background-color: #1976D2;
}

.cta-btn.secondary:hover {
    background-color: #1E88E5;
    color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .payment-hero {
        padding: 3rem 1rem;
    }
    
    .payment-hero h1 {
        font-size: 2rem;
    }
    
    .payment-hero p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 1rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plans-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-option.featured {
        transform: none;
    }
    
    .plan-option.featured:hover {
        transform: translateY(-5px);
    }
    
    .payment-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-options {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .security-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .method-card {
        padding: 1.5rem;
    }
    
    .plan-option {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .payment-hero {
        padding: 2rem 1rem;
    }
    
    .payment-hero h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 1.5rem 1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .payment-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .method-card {
        padding: 1rem;
    }
    
    .apps-grid {
        gap: 0.75rem;
    }
    
    .app-option {
        padding: 0.75rem;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    .plan-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}