/* =========================
   PAYROLL HERO
========================= */

.payroll-hero{

    min-height:100vh;

    background:
    linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.75)
    ),

    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=1600");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:40px;

    position:relative;

    overflow:hidden;
}

.payroll-overlay{

    max-width:1000px;

    color:white;

    position:relative;

    z-index:2;
}

.payroll-badge{

    display:inline-block;

    padding:12px 24px;

    background:#00df9a;

    color:black;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;
}

.payroll-overlay h1{

    font-size:75px;

    line-height:1.2;

    margin-bottom:25px;
}

.payroll-overlay p{

    font-size:24px;

    color:#dbeafe;

    line-height:1.9;

    margin-bottom:45px;
}

/* BUTTONS */

.payroll-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;
}

.primary-btn,
.secondary-btn{

    padding:18px 36px;

    border:none;

    border-radius:14px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:0.4s;
}

.primary-btn{

    background:#00df9a;

    color:black;
}

.secondary-btn{

    background:transparent;

    border:2px solid white;

    color:white;
}

/* TRUST */

.payroll-trust{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;
}

.trust-card{

    width:220px;

    padding:28px;

    border-radius:25px;

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);
}

.trust-card h2{

    font-size:42px;

    color:#00df9a;

    margin-bottom:12px;
}

.trust-card p{

    color:white;

    font-size:18px;
}

/* MAIN */

.payroll-main{

    width:92%;

    margin:100px auto;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;
}

.payroll-left{

    display:flex;

    flex-direction:column;

    gap:35px;
}

.payroll-top-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;
}

.payroll-bottom-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.payroll-card,
.payroll-small-card{

    background:white;

    padding:40px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

.payroll-card h2,
.payroll-small-card h2{

    font-size:32px;

    margin-bottom:25px;

    color:#071a2f;
}

.payroll-card p,
.payroll-small-card ul li{

    font-size:18px;

    line-height:1.9;

    color:#555;
}

/* FORM */

.payroll-side-form{

    background:
    linear-gradient(
    135deg,
    #02111f,
    #003566
    );

    padding:40px;

    border-radius:30px;

    height:fit-content;

    position:sticky;

    top:120px;
}

.payroll-side-form h2{

    color:white;

    text-align:center;

    font-size:38px;

    margin-bottom:30px;
}

.payroll-side-form form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.payroll-side-form input,
.payroll-side-form select,
.payroll-side-form textarea{

    padding:18px;

    border:none;

    border-radius:15px;

    background:
    rgba(255,255,255,0.08);

    color:white;

    font-size:16px;

    outline:none;
}

.payroll-side-form button{

    padding:18px;

    border:none;

    border-radius:15px;

    background:
    linear-gradient(
    135deg,
    #00df9a,
    #00bfff
    );

    color:black;

    font-size:18px;

    font-weight:700;

    cursor:pointer;
}

/* SERVICES */

.payroll-services{

    padding:100px 8%;

    background:#f4f7fc;

    text-align:center;
}

.payroll-services h1{

    font-size:55px;

    color:#071a2f;

    margin-bottom:20px;
}

.payroll-subtitle{

    font-size:22px;

    color:#666;

    margin-bottom:60px;
}

.payroll-service-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}

.payroll-service-card{

    background:white;

    padding:45px 35px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

.service-icon{

    font-size:55px;

    margin-bottom:25px;
}

.payroll-service-card h2{

    font-size:30px;

    margin-bottom:20px;
}

.payroll-service-card p{

    line-height:1.9;

    color:#555;
}

/* MOBILE */

@media(max-width:1000px){

    .payroll-main{

        grid-template-columns:1fr;
    }

    .payroll-top-grid,
    .payroll-bottom-grid{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .payroll-overlay h1{

        font-size:42px;
    }

    .payroll-overlay p{

        font-size:18px;
    }

    .payroll-services h1{

        font-size:38px;
    }
}

/* =========================
   REVIEW SECTION
========================= */

.review-section{

    padding:100px 8%;

    background:#eef5f9;

    text-align:center;

    overflow:hidden;
}

.review-section h1{

    font-size:55px;

    margin-bottom:60px;

    color:#071a2f;
}

.review-slider{

    width:100%;

    overflow:hidden;
}

.review-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:slideReviews 25s linear infinite;
}

.review-card{

    min-width:340px;

    background:white;

    padding:40px 30px;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    transition:0.4s;
}

.review-card:hover{

    transform:
    translateY(-10px);
}

.review-card h2{

    margin-bottom:20px;
}

.review-card p{

    line-height:1.9;

    margin-bottom:20px;

    color:#555;

    font-size:17px;
}

.review-card h3{

    color:#00b894;

    font-size:20px;
}

/* SLIDER ANIMATION */

@keyframes slideReviews{

    0%{

        transform:translateX(0);
    }

    100%{

        transform:translateX(-50%);
    }
}

/* MOBILE */

@media(max-width:768px){

    .review-section h1{

        font-size:38px;
    }

    .review-card{

        min-width:280px;
    }

}

/* =========================
   QUICK LINKS SECTION
========================= */

.quick-links-section{

    padding:100px 8%;

    background:white;

    text-align:center;
}

.quick-links-section h1{

    font-size:55px;

    color:#071a2f;

    margin-bottom:20px;
}

.quick-link-subtitle{

    font-size:22px;

    color:#666;

    margin-bottom:60px;
}

/* GRID */

.quick-links-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}

/* CARD */

.quick-link-card{

    background:
    linear-gradient(
    135deg,
    #02111f,
    #003566
    );

    padding:45px 35px;

    border-radius:30px;

    text-decoration:none;

    color:white;

    transition:0.4s;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.15);
}

.quick-link-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
    90deg,
    #00df9a,
    #00bfff
    );
}

/* HOVER */

.quick-link-card:hover{

    transform:
    translateY(-12px)
    scale(1.03);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.25);
}

/* ICON */

.quick-icon{

    font-size:55px;

    margin-bottom:25px;
}

/* TITLE */

.quick-link-card h2{

    font-size:28px;

    margin-bottom:18px;
}

/* TEXT */

.quick-link-card p{

    font-size:17px;

    line-height:1.9;

    color:#dbeafe;
}

/* MOBILE */

@media(max-width:768px){

    .quick-links-section{

        padding:80px 6%;
    }

    .quick-links-section h1{

        font-size:38px;
    }

}

/* =========================
   SELECT DROPDOWN FIX
========================= */

.payroll-side-form select{

    background:
    rgba(255,255,255,0.08) !important;

    color:white !important;

    border:
    1px solid rgba(255,255,255,0.08);

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;

    background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 18px center;

    padding-right:50px;
}

/* OPTIONS */

.payroll-side-form select option{

    background:#071a2f;

    color:white;
}

/* ===================================
   PAYROLL PRICING SECTION
=================================== */

.payroll-pricing-section{

    width:100%;

    padding:120px 8%;

    position:relative;

    overflow:hidden;
}

/* BACKGROUND GLOW */

.payroll-pricing-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(0,255,213,0.08);

    border-radius:50%;

    top:-200px;
    left:-150px;

    filter:blur(90px);
}

/* HEADING */

.pricing-heading{

    text-align:center;

    margin-bottom:70px;
}

.pricing-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:40px;

    background:
    rgba(0,255,213,0.12);

    border:
    1px solid rgba(0,255,213,0.25);

    color:#00ffd5;

    font-size:15px;

    letter-spacing:1px;

    margin-bottom:22px;
}

.pricing-heading h2{

    font-size:56px;

    color:white;

    margin-bottom:20px;
}

.pricing-heading p{

    max-width:850px;

    margin:auto;

    color:#cbd5e1;

    font-size:18px;

    line-height:1.9;
}

/* GRID */

.payroll-pricing-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;
}

/* CARD */

.payroll-price-card{

    position:relative;

    padding:55px 40px;

    border-radius:35px;

    overflow:hidden;

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.12);

    transition:0.45s;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.25);

    z-index:2;
}

/* CARD GLOW */

.price-glow{

    position:absolute;

    width:220px;
    height:220px;

    background:
    rgba(0,255,213,0.12);

    border-radius:50%;

    top:-100px;
    right:-100px;

    filter:blur(45px);

    z-index:-1;
}

/* HOVER */

.payroll-price-card:hover{

    transform:
    translateY(-15px)
    scale(1.03);

    border:
    1px solid rgba(0,255,213,0.35);

    box-shadow:
    0 0 30px rgba(0,255,213,0.15),
    0 25px 50px rgba(0,0,0,0.3);
}

/* ACTIVE CARD */

.active-price{

    border:
    1px solid rgba(0,255,213,0.4);

    transform:scale(1.04);
}

/* BADGE */

.popular-badge{

    position:absolute;

    top:25px;
    right:25px;

    padding:10px 18px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    #00ffd5,
    #0066ff
    );

    color:white;

    font-size:13px;

    font-weight:600;

    box-shadow:
    0 10px 25px rgba(0,255,213,0.25);
}

/* TITLE */

.payroll-price-card h3{

    font-size:30px;

    color:white;

    margin-bottom:18px;
}

/* PRICE */

.payroll-price-card h2{

    font-size:64px;

    color:#00ffd5;

    margin-bottom:10px;

    text-shadow:
    0 0 20px rgba(0,255,213,0.25);
}

/* DURATION */

.price-duration{

    display:block;

    color:#cbd5e1;

    margin-bottom:35px;

    font-size:16px;
}

/* LIST */

.payroll-price-card ul{

    list-style:none;

    margin-bottom:40px;
}

.payroll-price-card ul li{

    color:white;

    font-size:17px;

    padding:14px 0;

    border-bottom:
    1px solid rgba(255,255,255,0.08);
}

/* BUTTON */

.payroll-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:100%;

    padding:18px;

    border-radius:18px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    color:white;

    background:
    linear-gradient(
    135deg,
    #00ffd5,
    #0066ff
    );

    transition:0.4s;

    box-shadow:
    0 12px 30px rgba(0,255,213,0.2);
}

/* BUTTON HOVER */

.payroll-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 18px 40px rgba(0,255,213,0.35);
}

/* MOBILE */

@media(max-width:1000px){

    .payroll-pricing-grid{

        grid-template-columns:1fr;
    }

    .pricing-heading h2{

        font-size:42px;
    }

    .active-price{

        transform:none;
    }
}