/* ========================================
   ITR FILING SERVICE PAGE STYLES
======================================== */

/* Page Hero */
.service-hero {
    background: linear-gradient(135deg, #0D47A1 0%, #1976D2 50%, #42A5F5 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-breadcrumb a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.hero-breadcrumb a:hover {
    color: #FBC02D;
}

.hero-breadcrumb span {
    color: rgba(255,255,255,0.6);
}

.hero-breadcrumb .current {
    color: #FBC02D;
}

.service-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero h1 .text-gold {
    color: #FBC02D;
}

.service-hero .lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.hero-feature i {
    color: #FBC02D;
}

/* Quote Card */
.quote-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #F9A825, #FBC02D);
    border-radius: 20px 20px 0 0;
}

.quote-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 5px;
}

.quote-card-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.quote-card .form-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.quote-card .form-control,
.quote-card .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus {
    border-color: #1976D2;
    box-shadow: 0 0 0 4px rgba(25,118,210,0.1);
}

.btn-quote-submit {
    width: 100%;
    background: linear-gradient(135deg, #1A237E 0%, #1976D2 100%);
    color: #fff;
    font-weight: 700;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-quote-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25,118,210,0.3);
    color: #fff;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border: 2px solid #e8e8e8;
    transition: all 0.4s;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: #1976D2;
}

.pricing-card.featured {
    border-color: #F9A825;
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #F9A825, #FBC02D);
    color: #1A237E;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
    border-color: #F9A825;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(25,118,210,0.1), rgba(66,165,245,0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #1976D2;
}

.pricing-card.featured .pricing-icon {
    background: linear-gradient(135deg, #F9A825, #FBC02D);
    color: #1A237E;
}

.pricing-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 8px;
}

.pricing-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-amount {
    margin-bottom: 25px;
}

.pricing-amount .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A237E;
}

.pricing-amount .period {
    color: #888;
    font-size: 14px;
}

.pricing-amount .original {
    text-decoration: line-through;
    color: #aaa;
    font-size: 1rem;
    margin-left: 8px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #00C853;
    margin-top: 3px;
}

.btn-pricing {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, #1A237E, #1976D2);
    color: #fff;
    border: none;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25,118,210,0.3);
    color: #fff;
}

.btn-pricing-gold {
    background: linear-gradient(135deg, #F9A825, #FBC02D);
    color: #1A237E;
    border: none;
}

.btn-pricing-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249,168,37,0.4);
    color: #1A237E;
}

/* ITR Forms Section */
.itr-forms-section {
    padding: 100px 0;
    background: #fff;
}

.itr-form-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e8e8e8;
    height: 100%;
    transition: all 0.3s;
}

.itr-form-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-color: #1976D2;
}

.itr-form-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.itr-form-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 12px;
}

.itr-form-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* Documents Section */
.documents-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1A237E 0%, #0D47A1 100%);
}

.doc-category {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
}

.doc-category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F9A825, #FBC02D);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #1A237E;
}

.doc-category h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.doc-list li {
    color: rgba(255,255,255,0.9);
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-list li i {
    color: #69F0AE;
    font-size: 12px;
}

/* Process Timeline */
.process-timeline {
    padding: 100px 0;
    background: #f8f9fa;
}

.timeline-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 10px 30px rgba(25,118,210,0.3);
    position: relative;
    z-index: 2;
}

.timeline-connector {
    position: absolute;
    top: 40px;
    left: 55%;
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, #1976D2, #42A5F5);
    opacity: 0.3;
}

.timeline-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 10px;
}

.timeline-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-section {
    padding: 100px 0;
    background: #fff;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #fff;
}

.benefit-card:nth-child(2) .benefit-icon { background: linear-gradient(135deg, #F9A825, #FBC02D); color: #1A237E; }
.benefit-card:nth-child(3) .benefit-icon { background: linear-gradient(135deg, #00C853, #69F0AE); }
.benefit-card:nth-child(4) .benefit-icon { background: linear-gradient(135deg, #FF6F00, #FFB300); }

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* Tax Slabs Table */
.tax-slabs-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.tax-table-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.tax-table-header {
    background: linear-gradient(135deg, #1A237E, #1976D2);
    padding: 25px 30px;
}

.tax-table-header h4 {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
}

.tax-table {
    width: 100%;
}

.tax-table th {
    background: #f8f9fa;
    padding: 15px 20px;
    font-weight: 600;
    color: #1A237E;
    font-size: 14px;
    text-align: left;
}

.tax-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #444;
}

.tax-table tr:last-child td {
    border-bottom: none;
}

.tax-table .highlight-row {
    background: rgba(249,168,37,0.1);
}

/* FAQ Accordion */
.faq-section-page {
    padding: 100px 0;
    background: #fff;
}

.faq-accordion .accordion-item {
    border: 2px solid #e8e8e8;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: #1A237E;
    padding: 20px 25px;
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(25,118,210,0.05), rgba(66,165,245,0.05));
    color: #1976D2;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 0 25px 25px;
    color: #555;
    line-height: 1.8;
}

/* Related Services */
.related-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.related-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 100%;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card-body {
    padding: 25px;
}

.related-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 10px;
}

.related-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.related-card .read-more {
    color: #1976D2;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.related-card:hover .read-more {
    gap: 10px;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #0D47A1, #1976D2, #42A5F5);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

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

/* Responsive */
@media (max-width: 991.98px) {
    .service-hero { padding: 120px 0 80px; }
    .quote-card { margin-top: 40px; }
    .timeline-connector { display: none; }
    .timeline-step { margin-bottom: 40px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-10px); }
}

@media (max-width: 767.98px) {
    .service-hero h1 { font-size: 1.8rem; }
    .hero-features { gap: 10px; }
    .hero-feature { padding: 8px 15px; font-size: 13px; }
    .pricing-card { padding: 30px 20px; }
    .cta-banner h2 { font-size: 1.8rem; }
}
