/* Payment Hero Section */
.payment-hero {
    background: var(--gradient-blue);
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payment-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.partner-logos-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tslgc-logo, .quickpay-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.partner-plus {
    font-size: 24px;
    font-weight: 700;
    opacity: 0.8;
}

.payment-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    opacity: 0.9;
    transition: var(--transition);
}

.feature:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.feature img {
    width: 24px;
    height: 24px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Payment Features */
.payment-features {
    padding: 100px 0;
    background: var(--background-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--background-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 87, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.feature-icon img {
    width: 35px;
    height: 35px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon img {
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Payment Methods */
.payment-methods {
    padding: 100px 0;
    background: var(--background-light);
}

.methods-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.methods-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.methods-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.methods-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--background-white);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.method-item:hover {
    background: var(--primary-color);
    transform: translateX(10px);
}

.method-item:hover span {
    color: white;
}

.method-item img {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.method-item:hover img {
    filter: brightness(0) invert(1);
}

.method-item span {
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.methods-visual {
    position: relative;
}

.methods-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

.transaction-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: var(--background-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.stat {
    text-align: center;
    padding: 0 20px;
}

.stat:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat .number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Integration Process */
.integration-process {
    padding: 100px 0;
    background: var(--background-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.step:hover .step-number {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Partner Section */
.partner-section {
    padding: 100px 0;
    background: var(--background-light);
}

.partner-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.partner-info {
    text-align: center;
}

.partner-info img {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
}

.partner-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.partner-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat {
    text-align: center;
    padding: 25px 15px;
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat .number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-support {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-card {
    background: var(--background-white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.support-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.support-card .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.support-card .btn img {
    width: 20px;
    height: 20px;
}

/* Payment CTA */
.payment-cta {
    padding: 100px 0;
    background: var(--gradient-blue);
    color: white;
    text-align: center;
}

.payment-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.payment-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methods-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .partner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partner-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .payment-hero {
        padding: 150px 0 80px;
    }
    
    .payment-hero h1 {
        font-size: 2.5rem;
    }
    
    .payment-hero p {
        font-size: 1.1rem;
    }
    
    .partner-logos-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .feature {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .methods-list {
        grid-template-columns: 1fr;
    }
    
    .transaction-stats {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin-top: 30px;
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .partner-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-cta h2 {
        font-size: 32px;
    }
    
    .payment-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .payment-hero h1 {
        font-size: 2rem;
    }
    
    .tslgc-logo, .quickpay-logo {
        height: 50px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .methods-list {
        grid-template-columns: 1fr;
    }
    
    .transaction-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 15px;
    }
    
    .partner-stats {
        grid-template-columns: 1fr;
    }
    
    .support-card {
        padding: 25px 20px;
    }
}