/* ============================================
   PAYROLL OUTSOURCING PAGE STYLES
   ============================================ */

/* Hero Section */
.payroll-hero {
    background: linear-gradient(135deg, #001737 0%, #002855 50%, #001737 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.payroll-hero > .container {
    position: relative;
    z-index: 2;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(14, 156, 126, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 156, 126, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 60% 50%, rgba(14, 156, 126, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* DNA Helix Background */
.dna-helix-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.dna-helix-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.dna-strand {
    stroke-dasharray: 20 10;
    animation: dnaScroll 10s linear infinite;
}

.dna-strand-2 {
    animation-delay: -5s;
}

.dna-nodes circle {
    animation: dnaPulse 3s ease-in-out infinite;
}

.dna-nodes circle:nth-child(even) {
    animation-delay: -1.5s;
}

.dna-rungs line {
    opacity: 0.4;
}

.dna-rungs line:nth-child(odd) {
    opacity: 0.25;
}

@keyframes dnaScroll {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -60; }
}

@keyframes dnaPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.min-vh-60 {
    min-height: 60vh;
}

.hero-badge {
    display: inline-block;
    background: rgba(14, 156, 126, 0.2);
    color: #0E9C7E;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(14, 156, 126, 0.3);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary-glow {
    background: linear-gradient(135deg, #0E9C7E 0%, #0a7d65 100%);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 156, 126, 0.4);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 156, 126, 0.5);
    color: #fff;
}

.btn-outline-light-glow {
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline-light-glow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.hero-trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-badge i {
    color: #0E9C7E;
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-central-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #0E9C7E 0%, #0a7d65 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(14, 156, 126, 0.4);
    animation: float 3s ease-in-out infinite;
}

.hero-central-icon i {
    font-size: 3.5rem;
    color: #fff;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: #0E9C7E;
}

.floating-card span {
    font-weight: 600;
    color: #001737;
}

.card-1 {
    top: 50px;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 100px;
    right: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 80px;
    left: 20%;
    animation-delay: 2s;
}

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.hero-wave path {
    fill: #f8f9fa;
}

/* ============================================
   INCLUDED INTRO SECTION
   ============================================ */
.included-intro {
    background: #f8f9fa;
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: rgba(14, 156, 126, 0.1);
    color: #0E9C7E;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #001737;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
}

.included-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    background: #fff;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0E9C7E;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 5px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: #fff;
    padding: 100px 0;
}

.feature-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0E9C7E 0%, #0a7d65 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.category-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #001737;
    margin: 0;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

.feature-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(14, 156, 126, 0.2);
}

.feature-check {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #0E9C7E 0%, #0a7d65 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-check i {
    color: #fff;
    font-size: 0.9rem;
}

.feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #001737;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.feature-card.highlight {
    background: linear-gradient(135deg, #0E9C7E 0%, #0a7d65 100%);
}

.feature-card.highlight h4,
.feature-card.highlight p {
    color: #fff;
}

.feature-card.highlight .feature-check {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.why-points {
    margin-top: 40px;
}

.why-point {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-point:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.point-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(14, 156, 126, 0.1) 0%, rgba(14, 156, 126, 0.2) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    font-size: 1.4rem;
    color: #0E9C7E;
}

.point-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #001737;
    margin-bottom: 8px;
}

.point-content p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Testimonial Card */
.testimonial-card {
    background: #001737;
    border-radius: 24px;
    padding: 45px;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 156, 126, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.quote-icon {
    color: #0E9C7E;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0E9C7E 0%, #0a7d65 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: #fff;
    font-size: 1.3rem;
}

.author-info h5 {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 5px;
}

.rating i {
    color: #ffc107;
    font-size: 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.payroll-cta {
    background: linear-gradient(135deg, #0E9C7E 0%, #0a7d65 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -100px;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

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

.btn-cta-primary {
    background: #fff;
    color: #0E9C7E;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    background: #001737;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 50px;
    }
    
    .hero-central-icon {
        width: 120px;
        height: 120px;
    }
    
    .hero-central-icon i {
        font-size: 2.5rem;
    }
    
    .floating-card {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .included-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .stat-divider {
        width: 60px;
        height: 2px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .payroll-hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .why-point {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
