﻿
.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.service-category {
    margin-bottom: 70px;
}

    .service-category h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 30px;
    }

        .service-category h3 i {
            margin-right: 10px;
        }

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0,0,0,.04);
    transition: all .3s ease;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

    .service-card i {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .service-card h4 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .service-card p {
        color: #6b7280;
        line-height: 1.7;
        margin: 0;
    }

@media (max-width:991px) {

    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:576px) {

    .services-section {
        padding: 70px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}
.page-hero {
    padding: 40px 0;
    background: linear-gradient(135deg, #A10F3C 0%, #7D0C2F 100%);
    color: white;
}

.page-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: .95;
    margin-bottom: 30px;
}

.page-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-hero .btn {
    min-width: 180px;
}

@media (max-width: 768px) {

    .page-hero {
        padding: 70px 0;
    }

        .page-hero h1 {
            font-size: 2.5rem;
        }

        .page-hero p {
            font-size: 1rem;
        }
}

/* ===================================
   Individual Service Section
=================================== */

.service-section {
    padding: 90px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(161,15,60,.10);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #E5E7EB;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .service-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 25px 60px rgba(0,0,0,.08);
    }

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(161,15,60,.10);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

    .service-card a i {
        margin-left: 8px;
        transition: .3s;
    }

.service-card:hover a i {
    transform: translateX(6px);
}

@media (max-width: 991px) {

    .service-grid {
        grid-template-columns: 1fr;
    }
}
/*==================================
  Services Overview
==================================*/

.services-overview {
    padding: 90px 0;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
}

.overview-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
    transition: .30s;
}

    .overview-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 20px 55px rgba(0,0,0,.08);
    }

.overview-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(161,15,60,.10);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.overview-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.overview-card p {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 25px;
}

.overview-card ul {
    padding-left: 18px;
    margin-bottom: 30px;
}

.overview-card li {
    margin-bottom: 10px;
    color: #374151;
}

@media(max-width:991px) {

    .overview-grid {
        grid-template-columns: 1fr;
    }
}
.hero-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}
.service-overview {
    padding: 90px 0;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

    .service-checklist li {
        margin-bottom: 18px;
        font-size: 1.05rem;
    }

    .service-checklist i {
        color: var(--primary);
        margin-right: 10px;
    }
/*==================================
  Included Services
==================================*/

.included-services {
    padding: 100px 0;
    background: #F8FAFC;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.included-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .3s;
}

    .included-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 25px 55px rgba(0,0,0,.08);
    }

.included-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(161,15,60,.10);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.included-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.included-card p {
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

@media(max-width:991px) {

    .included-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .included-grid {
        grid-template-columns: 1fr;
    }
}
/*==================================
    Who We Help
==================================*/

.who-we-help {
    padding: 100px 0;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.who-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #E5E7EB;
    transition: .3s;
}

    .who-card:hover {
        transform: translateY(-6px);
        border-color: var(--primary);
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

    .who-card i {
        font-size: 40px;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .who-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .who-card p {
        color: #6B7280;
        line-height: 1.7;
        margin: 0;
    }

@media(max-width:991px) {

    .who-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .who-grid {
        grid-template-columns: 1fr;
    }
}
/*==================================
    Tax Process
==================================*/

.tax-process {
    padding: 100px 0;
    background: #F8FAFC;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: .3s;
}

    .process-card:hover {
        transform: translateY(-6px);
        border-color: var(--primary);
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.process-card p {
    color: #6B7280;
    line-height: 1.7;
}

@media(max-width:991px) {

    .process-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .process-grid {
        grid-template-columns: 1fr;
    }
}
/*==================================
    Why Choose
==================================*/

.why-choose {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 35px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    transition: .3s;
    background: #fff;
}

    .why-item:hover {
        transform: translateY(-6px);
        border-color: var(--primary);
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

    .why-item i {
        font-size: 42px;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .why-item h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .why-item p {
        color: #6B7280;
        line-height: 1.7;
    }

@media(max-width:991px) {

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================
   Service Breadcrumb
========================================== */
.breadcrumb-nav {
    margin-bottom: 2rem;
}

    .breadcrumb-nav .breadcrumb {
        background: transparent;
        margin-bottom: .5rem;
    }

    .breadcrumb-nav .breadcrumb-item {
        color: rgba(255,255,255,.70);
    }

        .breadcrumb-nav .breadcrumb-item a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
        }

            .breadcrumb-nav .breadcrumb-item a:hover {
                color: #ffffff;
                text-decoration: underline;
            }

        .breadcrumb-nav .breadcrumb-item.active {
            color: #ffffff;
        }

        .breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255,255,255,.50);
        }

.breadcrumb-back {
    display: inline-block;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    margin-top: 2rem;
}

    .breadcrumb-back:hover {
        color: #ffffff;
        text-decoration: underline;
    }