/**
 * Main Stylesheet
 * CA Website Clone - MeraProfit Style
 * Modern gradient design with green theme
 */

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
    --primary-color: #28a745;
    --primary-dark: #1e7e34;
    --primary-light: #48c76a;
    --secondary-color: #2c3e50;
    --accent-color: #17a2b8;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --gradient-hero: linear-gradient(135deg, rgba(40, 167, 69, 0.95) 0%, rgba(32, 201, 151, 0.9) 100%);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* ============================================================
   Base Styles
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   Logo Styles
   ============================================================ */
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-green {
    color: var(--primary-color);
}

.logo-black {
    color: var(--text-dark);
}

/* ============================================================
   Top Bar
   ============================================================ */
.top-bar {
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
    padding: 0.75rem 0;
    transition: var(--transition);
}

.navbar-brand {
    padding: 0;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1rem !important;
    color: var(--text-dark) !important;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
    min-width: 280px;
}

.dropdown-header {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
}

.dropdown-item {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 600px;
    background: var(--bg-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-feature-item i {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

/* Hero Callback Form */
.hero-form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.hero-form-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.hero-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.hero-form .btn-success {
    padding: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   Quick Services Icons
   ============================================================ */
.quick-services {
    padding: 2rem 0;
    background: var(--bg-white);
}

.quick-service-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.quick-service-item:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.quick-service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

.quick-service-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* ============================================================
   Section Styles
   ============================================================ */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ============================================================
   Services Section with Tabs
   ============================================================ */
.services-section {
    background: var(--bg-light);
}

.services-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
    justify-content: center;
}

.services-tabs .nav-link {
    border: none;
    color: var(--text-muted) !important;
    font-weight: 500;
    padding: 1rem 1.5rem !important;
    position: relative;
}

.services-tabs .nav-link::after {
    display: none;
}

.services-tabs .nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.services-tabs .nav-link.active::before,
.services-tabs .nav-link:hover::before {
    width: 100%;
}

.services-tabs .nav-link.active {
    color: var(--primary-color) !important;
    background: transparent;
    font-weight: 600;
}

/* Service Cards */
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.service-card-badge {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-card-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.service-card-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.75rem;
}

.service-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-price small {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.service-card .btn {
    width: 100%;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 0.625rem;
}

/* ============================================================
   About Section
   ============================================================ */
.about-section {
    background: var(--bg-white);
}

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================================
   Why Choose Us
   ============================================================ */
.why-us-section {
    background: var(--bg-light);
}

.feature-box {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.75rem;
}

.feature-box-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-box-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   Certifications Section
   ============================================================ */
.certifications-section {
    background: var(--bg-white);
    padding: 3rem 0;
}

.certification-item {
    text-align: center;
    padding: 1rem;
}

.certification-item img {
    max-height: 80px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.certification-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
    background: var(--bg-light);
}

.accordion-item {
    border: none;
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background: var(--bg-white);
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background: rgba(40, 167, 69, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(40, 167, 69, 0.25);
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================================
   Blog Section
   ============================================================ */
.blog-section {
    background: var(--bg-white);
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-category {
    display: inline-block;
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-dark);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card-meta i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* ============================================================
   Footer Styles
   ============================================================ */
.footer {
    font-size: 0.95rem;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1rem;
}

.newsletter-form .btn-success {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* ============================================================
   Floating Buttons
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--text-light);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   Service Detail Page
   ============================================================ */
.service-hero {
    background: var(--gradient-hero);
    padding: 4rem 0;
    color: var(--text-light);
}

.service-hero h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-content h2,
.service-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-content li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-price-box {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-price small {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* ============================================================
   Blog Detail Page
   ============================================================ */
.blog-hero {
    background: var(--bg-light);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.blog-content h2,
.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.blog-content img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-muted);
}

.blog-content table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}

.blog-content th,
.blog-content td {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
}

.blog-content th {
    background: var(--bg-light);
    font-weight: 600;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-info-box {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

.contact-info-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--text-light);
    font-size: 1.5rem;
}

/* ============================================================
   Flash Messages
   ============================================================ */
.flash-messages {
    margin-bottom: 1rem;
}

.alert {
    border-radius: var(--radius-sm);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-success {
    background: var(--gradient-primary);
    border: none;
    transition: var(--transition);
}

.btn-success:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-outline-success {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-success:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ============================================================
   Responsive Styles
   ============================================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .navbar-collapse {
        background: var(--bg-white);
        padding: 1rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        margin-top: 1rem;
    }
    
    .dropdown-menu {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
    
    .service-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-form {
        margin-top: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        left: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575.98px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
}

/* ============================================================
   Print Styles
   ============================================================ */
@media print {
    .top-bar,
    .navbar,
    .footer,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
}

/* ============================================================
   Animation Keyframes
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}


/* ============================================================
   NEW SERVICE PAGE STYLES - MeraProfit Style
   ============================================================ */

/* Service Hero Section V2 */
.service-hero-v2 {
    background: var(--gradient-hero);
    padding: 60px 0 80px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.service-hero-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.service-hero-v2 .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-hero-v2 .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.service-hero-v2 .breadcrumb-item a:hover {
    color: var(--text-light);
}

.service-hero-v2 .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.service-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.service-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    font-size: 1.1rem;
    color: #ffd700;
}

/* Service Hero Card */
.service-hero-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.price-tag {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-original {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 10px;
}

.btn-enquire {
    display: block;
    width: 100%;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: var(--transition);
    margin-bottom: 15px;
}

.btn-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
    color: var(--text-light);
}

.guarantee-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guarantee-text i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Key Highlights */
.key-highlights {
    padding: 50px 0;
    background: var(--bg-light);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.highlight-box {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.highlight-box h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.highlight-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Service Content Section */
.service-content-section {
    padding: 60px 0;
}

.content-box {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.section-heading {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
}

.service-description {
    line-height: 1.8;
    color: var(--text-dark);
}

.service-description p {
    margin-bottom: 15px;
}

.service-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-description li {
    margin-bottom: 8px;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.document-item:hover {
    background: #e8f5e9;
}

.document-item i {
    font-size: 1.2rem;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    font-size: 1.3rem;
}

/* FAQ Accordion */
.faq-accordion {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--bg-white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question span {
    font-weight: 600;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    background: var(--bg-light);
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    color: var(--text-muted);
}

/* Enquiry Box */
.enquiry-box {
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
}

.enquiry-form .form-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.enquiry-form .form-control {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
}

.enquiry-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    width: 100%;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
    color: var(--text-light);
}

/* Service Sidebar V2 */
.service-sidebar-v2 {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.price-card {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.price-card .price-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-card .price-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-card .price-strike {
    font-size: 1.2rem;
    opacity: 0.7;
    text-decoration: line-through;
    margin-left: 10px;
}

.price-features {
    margin-bottom: 20px;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.price-feature i {
    color: #ffd700;
}

.btn-sidebar {
    display: block;
    width: 100%;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 15px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-sidebar:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.sidebar-list i {
    font-size: 1.1rem;
}

.contact-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-call,
.btn-email {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-call {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-call:hover {
    background: var(--primary-dark);
    color: var(--text-light);
}

.btn-email {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-email:hover {
    background: var(--border-color);
    color: var(--text-dark);
}

.secure-card {
    text-align: center;
    background: #e8f5e9;
}

.secure-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.secure-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.secure-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.secure-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Related Services Section */
.related-services-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.related-service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.related-service-card:hover .related-icon {
    background: var(--gradient-primary);
}

.related-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.related-service-card:hover .related-icon i {
    color: var(--text-light);
}

.related-service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.related-service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.related-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-view {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-view:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Service CTA Section */
.service-cta-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 50px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-box h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.btn-cta {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .service-hero-v2 {
        padding: 40px 0 60px;
    }
    
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-card {
        margin-top: 30px;
    }
    
    .service-sidebar-v2 {
        position: static;
        margin-top: 40px;
    }
    
    .cta-box {
        padding: 30px;
        text-align: center;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .service-hero-title {
        font-size: 1.6rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-badge {
        justify-content: center;
    }
    
    .documents-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .highlight-box {
        padding: 20px 15px;
    }
    
    .related-service-card {
        padding: 25px 20px;
    }
}

/* ============================================================
   CLEAN SERVICE PAGE STYLES
   ============================================================ */

/* Service Page Specific Styles */
.service-page .hero-section {
    padding: 60px 0;
}

.service-content-wrapper {
    line-height: 1.8;
}

.service-content-wrapper h1,
.service-content-wrapper h2,
.service-content-wrapper h3,
.service-content-wrapper h4,
.service-content-wrapper h5,
.service-content-wrapper h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-content-wrapper p {
    margin-bottom: 1rem;
}

.service-content-wrapper ul,
.service-content-wrapper ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.service-content-wrapper li {
    margin-bottom: 0.5rem;
}

/* Card Improvements */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

/* Form Improvements */
.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Button Improvements */
.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
}

.btn-success:hover {
    background: linear-gradient(135deg, #218838 0%, #1ba87e 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Responsive Improvements */
@media (max-width: 991.98px) {
    .display-5 {
        font-size: 1.8rem;
    }
}

/* ============================================================
   MERAPROFIT EXACT STYLE - SERVICE PAGE
   ============================================================ */

/* Hero Section - Dark Background */
.service-hero-meraprofit {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920') center/cover;
    padding: 80px 0;
    position: relative;
    color: #fff;
}

.service-hero-meraprofit .hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.service-hero-meraprofit .hero-subtitle {
    font-size: 1.3rem;
    color: #7CB342;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-hero-meraprofit .hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    max-width: 500px;
}

.service-hero-meraprofit .ratings {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-hero-meraprofit .rating-label {
    color: rgba(255,255,255,0.6);
}

.service-hero-meraprofit .rating-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-hero-meraprofit .rating-source {
    color: #2196F3;
    font-weight: 500;
}

.service-hero-meraprofit .rating-value {
    color: #fff;
    font-weight: 600;
}

/* Callback Form Box */
.callback-form-box {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.callback-form-box h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.callback-form-box .form-control {
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 0.95rem;
}

.callback-form-box .btn-submit {
    background: #7CB342;
    color: #fff;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.callback-form-box .btn-submit:hover {
    background: #689F38;
}

/* Service Content Area */
.service-content-meraprofit {
    padding: 50px 0;
    background: #f5f5f5;
}

/* Left Sidebar Navigation */
.service-nav-sidebar {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-nav-sidebar .nav-link {
    color: #666;
    padding: 15px 20px;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.service-nav-sidebar .nav-link:hover,
.service-nav-sidebar .nav-link.active {
    background: #f8f9fa;
    color: #7CB342;
    border-left-color: #7CB342;
}

/* Content Sections */
.content-section {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-section .section-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #7CB342;
}

.content-section .section-intro {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.content-section .section-content {
    color: #555;
    line-height: 1.8;
}

.content-section .section-content p {
    margin-bottom: 15px;
}

/* Process Steps */
.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.process-step .step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-right: 20px;
}

.process-step .step-content {
    flex: 1;
    padding-top: 12px;
}

.process-step .step-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Lists */
.document-list,
.benefits-list,
.checklist {
    padding-left: 20px;
}

.document-list li,
.benefits-list li,
.checklist li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

/* Sticky Form */
.sticky-form-wrapper {
    position: sticky;
    top: 100px;
}

/* Why Meraprofit Section */
.why-meraprofit-section {
    padding: 60px 0;
    background: #fff;
}

.why-meraprofit-section .section-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.why-meraprofit-section .section-subtitle {
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-item .why-icon {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-item .why-icon i {
    font-size: 1.8rem;
    color: #7CB342;
}

.why-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Certifications Section */
.certifications-section {
    padding: 50px 0;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.cert-item {
    padding: 20px;
}

.cert-item i {
    color: #666;
}

.cert-item h5 {
    font-size: 0.9rem;
    color: #333;
    margin: 10px 0 5px;
}

.cert-item p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(rgba(124,179,66,0.1), rgba(124,179,66,0.05));
}

.testimonials-section .section-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: #7CB342;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.5;
}

.testimonial-card .testimonial-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card .author-avatar {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card .author-avatar i {
    font-size: 1.5rem;
    color: #999;
}

.testimonial-card .author-name {
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 991px) {
    .service-hero-meraprofit {
        padding: 50px 0;
    }
    
    .service-hero-meraprofit .hero-title {
        font-size: 1.8rem;
    }
    
    .service-nav-sidebar {
        margin-bottom: 30px;
    }
    
    .sticky-form-wrapper {
        display: none;
    }
    
    .why-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .service-hero-meraprofit .hero-title {
        font-size: 1.5rem;
    }
    
    .callback-form-box {
        margin-top: 30px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .process-step .step-circle {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}
