/* Paystreet Custom Black & White Theme */

:root {
    --paystreet-black: #1a1a1a;
    --paystreet-white: #FFFFFF;
    --paystreet-gray: #F8F9FA;
    --paystreet-dark-gray: #2d2d2d;
    --paystreet-light-gray: #E5E5E5;
    --paystreet-accent: #404040;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styling */
.header-section {
    background: var(--paystreet-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-section .navbar-nav .nav-link {
    color: var(--paystreet-black) !important;
    font-weight: 500;
}

.btn--base {
    background: var(--paystreet-black) !important;
    color: var(--paystreet-white) !important;
    border: 2px solid var(--paystreet-black) !important;
    transition: all 0.3s ease;
}

.btn--base:hover {
    background: var(--paystreet-white) !important;
    color: var(--paystreet-black) !important;
}

.btn-auth {
    background: var(--paystreet-white) !important;
    color: var(--paystreet-black) !important;
    border: 2px solid var(--paystreet-black) !important;
}

.btn-auth:hover {
    background: var(--paystreet-black) !important;
    color: var(--paystreet-white) !important;
}

/* Banner Section */
.banner-section {
    background: var(--paystreet-black) !important;
    padding: 120px 0 80px !important;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.03) 100%);
    pointer-events: none;
}

.banner-title {
    color: var(--paystreet-white) !important;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.banner-sub-titel {
    background: var(--paystreet-white) !important;
    color: var(--paystreet-black) !important;
    padding: 10px 24px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.banner-content p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.banner-thumb-area img {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* App Download Buttons */
.app-btn-area {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-btn {
    background: var(--paystreet-white);
    border: 2px solid var(--paystreet-white);
    border-radius: 16px;
    padding: 16px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.app-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,255,255,0.15);
    background: var(--paystreet-gray);
}

.app-btn .icon img {
    width: 32px;
    height: 32px;
}

.app-btn .content {
    text-align: left;
}

.app-btn .sub-title {
    font-size: 11px;
    color: #666;
    display: block;
    margin-bottom: 2px;
}

.app-btn .title {
    color: var(--paystreet-black);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Banner Floating Section */
.banner-floting-section {
    background: var(--paystreet-white);
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.banner-floting-right-area {
    background: var(--paystreet-white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--paystreet-light-gray);
    transition: all 0.3s ease;
}

.banner-floting-right-area:hover {
    box-shadow: 0 20px 80px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.banner-floting-right-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-floting-right-list li {
    color: var(--paystreet-black);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-floting-right-list li i {
    color: var(--paystreet-black);
    background: var(--paystreet-gray);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.banner-floting-right-content .title {
    color: var(--paystreet-black);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.banner-floting-right-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.link-area {
    color: var(--paystreet-black) !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--paystreet-black);
    color: var(--paystreet-white) !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.link-area:hover {
    background: var(--paystreet-accent);
    transform: translateX(5px);
}

/* How It Works Section */
.how-work-section {
    background: var(--paystreet-gray);
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--paystreet-black);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.how-work-item {
    background: var(--paystreet-white);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.how-work-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--paystreet-black);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.how-work-item:hover::before {
    transform: scaleX(1);
}

.how-work-item:hover {
    border-color: var(--paystreet-black);
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.how-work-item .icon {
    background: var(--paystreet-black);
    color: var(--paystreet-white);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.how-work-item:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.how-work-item .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--paystreet-black);
    margin-bottom: 12px;
}

.how-work-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about-section {
    background: var(--paystreet-white);
    color: var(--paystreet-black);
    padding: 100px 0;
}

.about-section .section-header .title {
    color: var(--paystreet-black);
}

.about-section p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Security Section */
.security-section {
    background: var(--paystreet-black);
    padding: 100px 0;
}

.security-section .section-header .title {
    color: var(--paystreet-white);
}

.security-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.security-item {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.security-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-10px);
}

.security-item .icon {
    color: var(--paystreet-white);
    font-size: 48px;
    margin-bottom: 20px;
}

.security-item .title {
    color: var(--paystreet-white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.security-item p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    background: var(--paystreet-white);
    padding: 80px 0;
}

/* Choose Section */
.choose-section {
    background: var(--paystreet-gray);
    padding: 100px 0;
}

.choose-item {
    background: var(--paystreet-white);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.choose-item:hover {
    background: var(--paystreet-black);
    color: var(--paystreet-white);
    border-color: var(--paystreet-black);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.choose-item .icon {
    font-size: 48px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.choose-item:hover .icon,
.choose-item:hover .title,
.choose-item:hover p {
    color: var(--paystreet-white) !important;
}

.choose-item .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.choose-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Testimonials */
.testimonial-section {
    background: var(--paystreet-white);
    padding: 100px 0;
}

.testimonial-item {
    background: var(--paystreet-gray);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--paystreet-light-gray);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    border-color: var(--paystreet-black);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Brand Section */
.brand-section {
    background: var(--paystreet-gray);
    padding: 60px 0;
}

/* Footer */
.footer-section {
    background: var(--paystreet-black);
    color: var(--paystreet-white);
}

.footer-section a {
    color: var(--paystreet-light-gray);
}

.footer-section a:hover {
    color: var(--paystreet-white);
}

/* Section Headers */
.section-header .title {
    color: var(--paystreet-black);
    font-weight: 700;
}

.section-header .sub-title {
    color: var(--paystreet-dark-gray);
}

/* Service Cards */
.service-item {
    background: var(--paystreet-white);
    border: 2px solid var(--paystreet-light-gray);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--paystreet-black);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-item .icon {
    background: var(--paystreet-black);
    color: var(--paystreet-white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

/* Stats Section */
.stats-section {
    background: var(--paystreet-black);
    padding: 80px 0;
    color: var(--paystreet-white);
}

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

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

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: var(--paystreet-black);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--paystreet-white);
    margin-bottom: 24px;
}

.cta-text {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-title {
        font-size: 42px;
    }
    
    .banner-section {
        padding: 80px 0 60px !important;
    }
    
    .banner-floting-right-area {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 36px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .banner-section {
        padding: 60px 0 40px !important;
    }
    
    .app-btn-area {
        flex-direction: column;
    }
    
    .app-btn {
        width: 100%;
        justify-content: center;
    }
    
    .banner-floting-right-area {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .how-work-section {
        padding: 60px 0;
    }
}
