/*
 * Copyright (c) 2026 PayNnet. All rights reserved.
 * Unauthorized copying, modification, or distribution of this file is strictly prohibited.
 * This software is proprietary and confidential.
 */

/* Intro / About */
.section-padding { padding: 100px 0; }
.section-header .section-tag {
    display: block; font-size: 14px; color: var(--primary-color); font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px;
}
.section-header h2 { font-size: 42px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.section-header p { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; }

.feature-grid-small { 
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; 
}
.feature-item { 
    background: #fff; padding: 24px; border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex; align-items: flex-start; gap: 16px;
    transition: all 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.0);
}
.feature-item i { 
    width: 48px; height: 48px; border-radius: 14px;
    background: #f8f9fa; color: var(--primary-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
    transition: all 0.3s ease;
}
.feature-item:hover i {
    background: var(--primary-color); color: #fff;
}
.feature-item div { flex: 1; }
.feature-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: #111; letter-spacing: -0.5px; }
.feature-item p { font-size: 14px; color: #666; line-height: 1.5; margin: 0; word-break: keep-all; }

/* Visual Card */
.floating-card-visual { width: 100%; max-width: 350px; height: 500px; position: relative; perspective: 1000px; margin: 0 auto; }
.card-visual-front {
    width: 100%; height: 220px;
    background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
    border-radius: 15px; position: absolute; top: 30%; left: 0;
    box-shadow: 0 30px 60px rgba(12, 36, 97, 0.3);
    padding: 25px; color: #fff;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}
.card-visual-front:hover { transform: rotateY(0deg) rotateX(0deg) scale(1.05); }
.logo-mark { display: block; font-weight: 800; font-size: 18px; margin-bottom: 30px; letter-spacing: 1px; }
.card-chip-sim { width: 45px; height: 35px; background: #dcdde1; border-radius: 5px; margin-bottom: 25px; position: relative; }
.card-chip-sim::after { content:''; position: absolute; border: 1px solid #bdc3c7; top: 20%; left: 20%; right: 20%; bottom: 20%; }
.vc-num { display: block; font-family: 'Krona One', sans-serif; font-size: 18px; margin-bottom: 20px; letter-spacing: 1px; }
.vc-name { font-size: 12px; opacity: 0.7; }

/* Premium VS Container */
.premium-vs-container {
    display: flex; align-items: stretch; justify-content: center;
    max-width: 900px; margin: 50px auto 0;
    position: relative; gap: 20px;
}

/* Common Card Styles */
.vs-card {
    flex: 1; border-radius: 30px; padding: 40px;
    position: relative; overflow: hidden;
    transition: all 0.4s ease;
}

/* Left: Competitor */
.vs-card.competitor {
    background: #f8f9fa; border: 1px solid #eee;
    color: #868e96;
}
.vs-card.competitor .card-label { font-size: 18px; font-weight: 700; margin-bottom: 30px; color: #adb5bd; }
.vs-card.competitor .num { font-size: 32px; font-weight: 700; color: #ced4da; }
.vs-card.competitor .bar { background: #dee2e6; }
.vs-card.competitor .time-line { background: #eee; color: #ced4da; }

/* Right: PayNnet */
.vs-card.paynnet {
    background: #fff;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-origin: border-box; background-clip: padding-box, border-box;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.2);
    transform: scale(1.05); z-index: 10;
}
/* VS Card content */
.vs-card .card-label { font-size: 24px; font-weight: 700; color: #333; margin-bottom: 30px; }
.vs-card.competitor .card-label { color: #868e96; }

/* PayNnet Logo in Card */
.card-logo-wrap { margin-bottom: 30px; text-align: center; }
.vs-logo { max-height: 50px; width: auto; display: inline-block; }
.text-logo {
    font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    margin: 0;
}

.best-badge {
    position: absolute; top: 0; right: 0;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white; font-weight: 800; font-size: 14px;
    padding: 8px 16px; border-radius: 0 30px 0 20px;
    box-shadow: -5px 5px 15px rgba(255,107,107,0.3);
    letter-spacing: 1px;
}

/* Content Groups */
.vs-row { margin-bottom: 30px; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.premium-vs-container.animate .vs-row { opacity: 1; transform: translateY(0); }
.premium-vs-container.animate .vs-row:nth-child(1) { transition-delay: 0.2s; }
.premium-vs-container.animate .vs-row:nth-child(2) { transition-delay: 0.4s; }
.premium-vs-container.animate .vs-row:nth-child(3) { transition-delay: 0.6s; }

.vs-row:last-child { margin-bottom: 0; }
.label { display: block; font-size: 14px; margin-bottom: 8px; opacity: 0.6; }

/* [Feature] Color Mode Overrides */
.premium-vs-container.color-mode .vs-card.competitor .card-label {
    color: #e74c3c !important; /* Red for 'General PG' */
}
.premium-vs-container.color-mode .label {
    color: #2980b9 !important; /* Strong Blue for labels */
    opacity: 1; font-weight: 700;
}
.premium-vs-container.color-mode .vs-badge-center {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
    border: 2px solid #fff;
}

/* Fee Split Styles */
.fee-split-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.fee-split-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.sub-badge { 
    background: #e9ecef; color: #555; font-size: 12px; padding: 4px 10px; border-radius: 6px; font-weight: 600; 
}
.sub-badge.paynnet-badge { background: rgba(52, 152, 219, 0.1); color: var(--primary-color); }

.num-sm { font-family: 'Krona One', sans-serif; font-size: 20px; color: #868e96; font-weight: 700; }
.num-md { 
    font-family: 'Krona One', sans-serif; font-size: 36px; line-height: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Typography */
.value-box { display: flex; align-items: baseline; gap: 2px; }
.value-box .num { font-family: 'Krona One', sans-serif; line-height: 1; }
.value-box .unit { font-size: 16px; font-weight: 600; }
.value-box .text { font-size: 20px; font-weight: 700; }

.highlight .num {
    font-size: 48px; 
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.highlight .unit { color: #333; }

/* Visual Bars Animation */
.bar-chart .bar { 
    width: 0; transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1); 
}
.premium-vs-container.animate .bar-chart .bar { 
    animation: growBar 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes growBar { from { max-width: 0; } to { max-width: 100%; } }


/* PayNnet Card Special Effects */
.vs-card.paynnet {
    animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
    0%, 100% { transform: scale(1.05) translateY(0); }
    50% { transform: scale(1.05) translateY(-10px); }
}

/* Shimmer */
.vs-card.paynnet::after {
    content: ''; position: absolute; top: 0; left: -150%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: shimmer 6s infinite;
}
@keyframes shimmer {
    0% { left: -150%; }
    20% { left: 150%; } /* Fast pass */
    100% { left: 150%; } /* Wait */
}

/* Visual Bars */
.bar-chart { width: 100%; height: 8px; background: #f1f3f5; border-radius: 4px; margin-top: 10px; overflow: hidden; }
.bar-chart .bar { height: 100%; border-radius: 4px; }
.bar-chart.active .bar { background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); }

.time-line { 
    margin-top: 10px; padding: 5px 10px; border-radius: 8px; font-size: 12px; font-weight: 700; 
    display: inline-flex; align-items: center; gap: 5px;
}
.time-line.active { background: rgba(52, 152, 219, 0.1); color: var(--secondary-color); }

/* Badge */
.vs-badge-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 50%; z-index: 20;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-style: italic; color: #ddd; font-size: 18px;
}


/* Target Grid */
.target-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 991px) { .target-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .target-grid { grid-template-columns: 1fr; } }
.target-item { background: #fff; padding: 30px 20px; border-radius: 15px; text-align: center; border: 1px solid #eee; transition: var(--transition); }
.target-item:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: var(--hover-shadow); }
.target-item h4 { margin-bottom: 10px; } /* Kept relevant reset */
.target-item p { margin: 0; }


/* Documents */
.docs-list { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 40px; }
.doc-item { display: flex; flex-direction: column; align-items: center; text-align: center; color: #ccc; width: 150px; }
.doc-item i { font-size: 40px; color: var(--accent-color); margin-bottom: 15px; opacity: 0.8; }
.doc-item span { font-size: 16px; line-height: 1.4; font-weight: 500; }

/* --- Infinite Review Section --- */
.review-section { position: relative; background: #fafafa; }
.review-container-mask { overflow: hidden; position: relative; }

.review-marquee-wrapper {
    display: flex; flex-direction: column; gap: 24px;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    padding: 20px 0;
}

.review-track {
    display: flex; gap: 24px; width: max-content;
}

/* Animations */
.review-track.left { animation: scrollLeft 60s linear infinite; }
.review-track.right { animation: scrollRight 70s linear infinite; transform: translateX(-50%); }
.review-track.slow { animation-duration: 90s; }

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Review Card Styles */
.review-card {
    width: 320px; flex-shrink: 0;
    background: #fff; padding: 24px; border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    user-select: none;
}
.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    z-index: 10;
}

.rc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.rc-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    color: #555; font-weight: 700; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
}
.rc-info { flex: 1; display: flex; flex-direction: column; }
.rc-biz { font-size: 11px; color: #888; margin-bottom: 2px; }
.rc-name { font-size: 14px; font-weight: 700; color: #333; }
.rc-rating { font-size: 13px; font-weight: 700; color: #f1c40f; display: flex; align-items: center; gap: 2px; }

.rc-body {
    font-size: 15px; color: #444; line-height: 1.5; margin-bottom: 15px;
    height: 46px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
}
.rc-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; color: #27ae60; font-weight: 600;
    background: rgba(39, 174, 96, 0.1); padding: 4px 8px; border-radius: 4px;
}
.solution-section { background: #fdfdfd; position: relative; overflow: hidden; }

/* 1. Problem & Solution Split */
.sol-container { 
    display: flex; align-items: stretch; justify-content: center; gap: 40px; 
    margin-bottom: 80px; position: relative;
}

.sol-card {
    flex: 1; max-width: 500px;
    padding: 40px; border-radius: 24px; position: relative;
    display: flex; flex-direction: column;
}

/* Problem Card (Dark) */
.sol-card.problem {
    background: #1e293b; color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.sol-card.problem .bad-badge {
    background: #ef4444; color: #fff; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 20px; text-transform: uppercase;
}
.sol-card.problem h3 { font-size: 24px; margin-top: 15px; margin-bottom: 25px; color: #f1f5f9; }
.check-list.bad li { 
    display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 16px; color: #cbd5e1;
}
.check-list.bad li i { color: #ef4444; font-size: 20px; flex-shrink: 0; }

/* Arrow */
.change-arrow {
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--primary-color);
    animation: slideArrow 2s infinite ease-in-out;
}
@keyframes slideArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Solution Card (Premium) */
.sol-card.solution {
    background: #fff; color: #333;
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.15);
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-origin: border-box; background-clip: padding-box, border-box;
}
.sol-card.solution .good-badge {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
    color: #fff; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 20px; text-transform: uppercase;
}
.sol-card.solution h3 { font-size: 24px; margin-top: 15px; margin-bottom: 25px; font-weight: 800; }
.check-list.good li { 
    display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 18px; font-weight: 500; color: #333;
}
.check-list.good li i { color: var(--primary-color); font-size: 22px; flex-shrink: 0; }
.check-list.good li strong { color: var(--primary-color); font-weight: 700; border-bottom: 2px solid rgba(52, 152, 219, 0.2); }

/* 2. Promise Banner */
.promise-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px; padding: 40px;
    border: 1px solid #e9ecef;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.promise-header h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.promise-header p { font-size: 15px; color: #666; margin-bottom: 40px; }

.promise-grid { 
    display: flex; justify-content: space-around; gap: 30px; flex-wrap: wrap; text-align: left;
}
.promise-item { display: flex; align-items: flex-start; gap: 15px; max-width: 320px; }
.promise-item .icon-box {
    width: 60px; height: 60px; border-radius: 12px;
    background: rgba(52, 152, 219, 0.1); color: var(--primary-color);
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    flex-shrink: 0; margin-top: -5px;
}
.promise-item .text-box strong { display: block; font-size: 18px; font-weight: 700; margin-bottom: 4px; color: #333; }
.promise-item .text-box span { font-size: 14px; color: #666; word-break: keep-all; }

/* Contact Lux (tweaked) */
.contact-section-lux { padding-bottom: 100px; }
.contact-info-box { background: var(--secondary-color); }

/* Animation Utils */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.fade-left { opacity: 0; transform: translateX(30px); transition: all 0.8s ease-out; }
.fade-right { opacity: 0; transform: translateX(-30px); transition: all 0.8s ease-out; }
.visible { opacity: 1; transform: translate(0, 0) !important; }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* =========================================
   Modern Footer
   ========================================= */
.paynnet-footer {
    background: #0f172a; /* Deep Navy/Slate Styling */
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
    font-size: 14px;
    font-weight: 300;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

/* Logo Area */
.f-logo {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Info Rows */
.f-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    line-height: 1.6;
}

.f-item strong { color: #fff; font-weight: 600; }
.f-item.ceo { margin-left: 15px; position: relative; }
.f-item.ceo::before {
    content: ''; position: absolute; left: -15px; top: 50%; transform: translateY(-50%);
    width: 4px; height: 4px; background: var(--accent-color); border-radius: 50%;
}

.f-divider { color: rgba(255, 255, 255, 0.2); font-size: 10px; }
.f-addr { font-size: 13px; opacity: 0.5; }

/* Copyright */
.footer-bottom {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    display: flex; justify-content: center;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    display: flex; align-items: center; gap: 5px;
}

.copyright .symbol {
    font-size: 16px;
    font-family: 'Georgia', serif; /* Classic serif fits copy symbol well */
    margin-right: 2px;
}

.copyright strong { color: #fff; font-weight: 600; }

/* Mobile */
@media (max-width: 768px) {
    .paynnet-footer { padding: 60px 0 30px; }
    .f-info { flex-direction: column; gap: 5px; }
    .f-divider { display: none; }
    .f-item.ceo { margin-left: 0; }
    .f-item.ceo::before { display: none; }
}


/* Target Card Backgrounds (Fixed) */
.target-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    z-index: 1; /* Stacking context */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4; /* Much more visible now */
    z-index: 0;
    filter: grayscale(100%);
    transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
}

.target-item:hover .target-bg {
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 0.7; /* Clearer on hover */
}

.target-content {
    position: relative;
    z-index: 2; /* Text strictly on top */
    background: rgba(255, 255, 255, 0.2); /* Glass effect barely visible */
    backdrop-filter: blur(1px);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.target-item:hover .target-content {
    background: rgba(255, 255, 255, 0.5); /* Slightly more opaque on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.target-item h4 {
    font-size: 20px;
    font-weight: 800;
    color: #1e3a8a; /* Title Blue as requested */
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.8); /* Stronger shadow for readability */
}

.target-item p {
    font-size: 15px;
    font-weight: 800; /* Max boldness */
    color: #000 !important; /* Force Pure Black */
    line-height: 1.5;
    word-break: keep-all;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.7); /* Clear outline to separation from bg */
}

.target-item .icon {
    width: 60px; height: 60px;
    background: #fff; /* White icon bg to stand out on glass */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Specific Images (Unsplash Realistic Fallbacks) */
#target-cafe .target-bg { background-image: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80'); }
#target-service .target-bg { background-image: url('https://images.unsplash.com/photo-1585421514284-efb74c2b69ba?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80'); } /* Confirmed Cleaning Service image */
#target-edu .target-bg { background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80'); }
#target-delivery .target-bg { background-image: url('https://images.unsplash.com/photo-1526367790999-0150786686a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80'); } /* Changed to clearer delivery image */
#target-hospital .target-bg { background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80'); }
#target-event .target-bg { background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80'); } /* Changed to clearer event image */



/* Footer Visibility Override */
.f-item.ceo, .f-addr { color: #fff !important; opacity: 1 !important; font-weight: 500; }
