﻿/* ZiacPay Unique Styles */
:root {
    --zp-primary: #4361ee;
    --zp-secondary: #3f37c9;
    --zp-accent: #4cc9f0;
    --zp-dark: #2b2d42;
    --zp-light: #f8f9fa;
    --zp-gray: #6c757d;
    --zp-success: #28a745;
    --zp-warning: #ffc107;
    --zp-danger: #dc3545;
    --zp-body-font: 'Inter', sans-serif;
    --zp-heading-font: 'Poppins', sans-serif;
    --zp-shadow: 0 10px 30px rgba(67, 97, 238, 0.1);
    --zp-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.zp-body {
    font-family: var(--zp-body-font);
    color: var(--zp-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.zp-heading {
    font-family: var(--zp-heading-font);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Hero Section Styles */
.zp-hero-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

    .zp-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%234361ee;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%234361ee;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="300" r="150" fill="url(%23a)"/><circle cx="800" cy="200" r="100" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>');
        z-index: 1;
    }

.zp-hero-content {
    position: relative;
    z-index: 2;
}

.zp-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--zp-primary), var(--zp-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zp-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--zp-gray);
}

.zp-hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.zp-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--zp-transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .zp-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s;
    }

    .zp-btn:hover::before {
        left: 100%;
    }

.zp-btn-primary {
    background: linear-gradient(45deg, var(--zp-primary), var(--zp-secondary));
    color: white;
    box-shadow: var(--zp-shadow);
}

    .zp-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(67, 97, 238, 0.3);
    }

.zp-hero-image {
    position: relative;
    z-index: 2;
}

    .zp-hero-image img {
        border-radius: 20px;
        box-shadow: var(--zp-shadow);
        transition: var(--zp-transition);
    }

    .zp-hero-image:hover img {
        transform: scale(1.02);
    }

/* Features Section */
.zp-features-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

    .zp-features-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    }

.zp-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--zp-dark);
}

.zp-section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--zp-gray);
    margin-bottom: 4rem;
}

.zp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zp-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--zp-shadow);
    transition: var(--zp-transition);
    position: relative;
    overflow: hidden;
}

    .zp-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--zp-primary), var(--zp-accent));
    }

    .zp-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
    }

.zp-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--zp-primary), var(--zp-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.zp-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--zp-dark);
}

.zp-feature-description {
    color: var(--zp-gray);
    line-height: 1.6;
}

/* Start Section */
.zp-start-section {
    background: linear-gradient(135deg, #fbf5df 0%, #f8f3e6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .zp-start-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="startGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffc107;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23ff6b35;stop-opacity:0.05"/></linearGradient></defs><circle cx="150" cy="150" r="100" fill="url(%23startGrad)"/><circle cx="850" cy="300" r="80" fill="url(%23startGrad)"/><circle cx="400" cy="700" r="120" fill="url(%23startGrad)"/></svg>');
        z-index: 1;
    }

.zp-start-content {
    position: relative;
    z-index: 2;
}

.zp-start-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--zp-transition);
}

    .zp-start-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

.zp-start-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffc107, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    animation: pulse 2s infinite;
}

/* CTA Section */
.zp-cta-section {
    background: linear-gradient(135deg, var(--zp-primary) 0%, var(--zp-secondary) 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .zp-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="ctaGrad" cx="50%" cy="50%"><stop offset="0%" style="stop-color:white;stop-opacity:0.15"/><stop offset="100%" style="stop-color:white;stop-opacity:0"/></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23ctaGrad)"/><circle cx="900" cy="200" r="120" fill="url(%23ctaGrad)"/><circle cx="700" cy="800" r="100" fill="url(%23ctaGrad)"/><circle cx="300" cy="600" r="90" fill="url(%23ctaGrad)"/></svg>');
        z-index: 1;
    }

    .zp-cta-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
        animation: shimmer 3s infinite;
        z-index: 1;
    }

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.zp-cta-content {
    position: relative;
    z-index: 2;
}

.zp-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zp-cta-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.zp-cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.zp-cta-stat {
    text-align: center;
}

.zp-cta-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.zp-cta-stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.zp-btn-light {
    background: white;
    color: var(--zp-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

    .zp-btn-light::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.1), transparent);
        transition: left 0.5s;
    }

    .zp-btn-light:hover::before {
        left: 100%;
    }

    .zp-btn-light:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        color: var(--zp-primary);
    }

.zp-cta-note {
    margin-top: 1.5rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

    .zp-cta-note a {
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        transition: var(--zp-transition);
    }

        .zp-cta-note a:hover {
            border-bottom-color: white;
        }

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.zp-floating {
    animation: float 6s ease-in-out infinite;
}

    .zp-floating:nth-child(2) {
        animation-delay: -2s;
    }

    .zp-floating:nth-child(3) {
        animation-delay: -4s;
    }

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.zp-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Gradient Animation */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.zp-gradient-animate {
    background: linear-gradient(-45deg, var(--zp-primary), var(--zp-secondary), var(--zp-accent), var(--zp-primary));
    background-size: 400% 400%;
    animation: gradient 4s ease infinite;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .zp-hero-title {
        font-size: 2.5rem;
    }

    .zp-hero-section {
        padding: 100px 0 60px;
    }

    .zp-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .zp-hero-title {
        font-size: 2rem;
    }

    .zp-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .zp-btn {
        width: 100%;
        max-width: 300px;
    }

    .zp-section-title {
        font-size: 2rem;
    }

    .zp-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .zp-hero-title {
        font-size: 1.8rem;
    }

    .zp-feature-card {
        padding: 1.5rem;
    }
}


.zoom-container {
    overflow: hidden;
    display: inline-block;
    width: 120%;
}

.zoom-image {
    transition: transform 0.4s ease;
    width: 120%;
    height: auto;
    display: block;
}

.zoom-container:hover .zoom-image {
    transform: scale(1.05);
}
