/* tax_services.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.tax-page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(42, 52, 62, 0.75) 100%),
                url('https://images.unsplash.com/photo-1554224154-26032ffc0d07?w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.tax-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.tax-header-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.tax-page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.tax-page-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tax Services Section */
.tax-services-section {
    padding: 80px 0;
    background: #f5f7fa;
}

/* Introduction Section */
.tax-intro-section {
    margin-bottom: 80px;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tax-intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.tax-intro-icon i {
    font-size: 40px;
    color: white;
}

.tax-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 25px;
    text-align: center;
}

.tax-intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Tax Detail Sections */
.tax-detail-section {
    margin-bottom: 80px;
}

.tax-detail-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.tax-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tax-detail-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.3) 0%, rgba(102, 126, 234, 0.3) 100%);
}

.tax-detail-content {
    padding: 20px;
}

.tax-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tax-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    line-height: 1.3;
}

.tax-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Expanded Sections */
.tax-expanded-section {
    margin-bottom: 80px;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.tax-content-box {
    padding: 0;
}

.tax-content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.tax-content-title {
    font-size: 24px;
    font-weight: 600;
    color: #1e3c72;
    margin: 30px 0 15px 0;
}

.tax-content-title:first-child {
    margin-top: 0;
}

.tax-list {
    margin: 20px 0;
    padding-left: 25px;
}

.tax-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    position: relative;
}

.tax-list li::marker {
    color: #667eea;
}

/* Services Sidebar */
.tax-services-sidebar {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    position: sticky;
    top: 20px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 20px;
}

.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.sidebar-services-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.sidebar-services-list i {
    color: #667eea;
    margin-top: 3px;
    flex-shrink: 0;
}

.sidebar-note {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.sidebar-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* VAT Service Cards */
.vat-service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.vat-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.vat-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-left-color: #667eea;
}

.vat-service-card:hover::before {
    transform: scaleY(1);
}

.vat-service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.vat-service-card:hover .vat-service-icon {
    transform: rotateY(360deg);
}

.vat-service-icon i {
    font-size: 28px;
    color: white;
}

.vat-service-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 15px;
    line-height: 1.4;
}

.vat-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vat-service-list li {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.vat-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.tax-section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

/* Ready Section */
.tax-ready-section {
    margin-bottom: 80px;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tax-ready-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
}

.tax-ready-text:last-child {
    margin-bottom: 0;
}

/* Why Choose Section */
.tax-why-choose-section {
    padding: 80px 0;
    background: white;
}

.tax-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tax-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.tax-feature-box:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    transform: translateX(10px);
}

.tax-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tax-feature-icon i {
    font-size: 24px;
    color: white;
}

.tax-feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 8px;
}

.tax-feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* CTA Section */
.tax-cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tax-cta-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.tax-cta-content {
    position: relative;
    z-index: 2;
}

.tax-cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.tax-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tax-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: white;
    color: #1e3c72;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.tax-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #1e3c72;
}

/* Bootstrap Grid Classes */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.align-items-center {
    align-items: center;
}

.col-lg-4,
.col-lg-6,
.col-lg-8,
.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-lg-0 {
    margin-bottom: 0;
}

.order-lg-1 {
    order: 1;
}

.order-lg-2 {
    order: 2;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tax-page-title {
        font-size: 32px;
    }

    .tax-page-subtitle {
        font-size: 16px;
    }

    .tax-section-title {
        font-size: 28px;
    }

    .tax-intro-section,
    .tax-expanded-section,
    .tax-ready-section {
        padding: 40px 25px;
    }

    .tax-detail-title {
        font-size: 24px;
    }

    .tax-detail-image {
        height: 300px;
    }

    .vat-service-card {
        margin-bottom: 20px;
    }

    .tax-feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tax-services-sidebar {
        margin-top: 30px;
        position: relative;
    }

    .tax-cta-content h2 {
        font-size: 28px;
    }

    .tax-cta-content p {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .vat-service-card {
        margin-bottom: 20px;
    }
}