/* Service Hero Section */
.service-hero {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding-top: 150px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 0 0 30px 30px;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--primary-color);
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--dark-color);
    line-height: 1.2;
    position: relative;
}

.hero-content h1:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.hero-content .lead {
    color: #666;
    font-size: 1.25rem;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    z-index: 1;
    margin-bottom: -2rem;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.hero-img {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}

.hero-img:hover {
    transform: translateY(-10px);
}

.hero-shape {
    position: absolute;
    width: 22rem;
    height: 22rem;
    /* top: 50%;
    left: 50%; */
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 100%;
    height: 100%; */
    background: var(--primary-color);
    border-radius: 50%;
    /* border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; */
    opacity: 0.3;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    margin-top: -70px;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.stat-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: transform var(--transition-speed);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--dark-color);
    font-weight: 500;
}

/* Services Grid */
.service-box {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.service-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-box:hover::after {
    width: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.service-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '→';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-speed);
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link i {
    transition: transform var(--transition-speed);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 3rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--primary-color);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform var(--transition-speed);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    background: var(--primary-color);
}

.process-step:hover .process-icon i {
    color: var(--light-color);
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.process-step p {
    color: #666;
    margin: 0;
}

/* Quote Section */
.quote-box {
    background: var(--light-color);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.quote-form .form-control,
.quote-form .form-select {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid #e0e0e0;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.15);
}

/* Features Section */
.features-section {
    background: #fff;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
}

.feature-image {
    position: relative;
    overflow: hidden;
}

.feature-image img {
    object-fit: cover;
}

.col-lg-6 .row .feature-image {
    height: 294px;
}

/* Mobile Innovation Section */
.innovation-section {
    background-color: #fff;
    position: relative;
}

.innovation-section .section-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.innovation-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.innovation-section h5 {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.innovation-section .text-danger {
    color: var(--primary-color) !important;
}

.dark-banner-section{
    background-color: #313131;
    color: #fff;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-color);
}

.faq-section .accordion-button {
    background: #fff;
    font-weight: 500;
    padding: 1.25rem;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #fff;
    box-shadow: none;
}

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

.faq-section .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.2s ease-in-out;
}

.faq-section .accordion-body {
    background: #fff;
    padding: 1.25rem;
    color: #666;
    line-height: 1.6;
}

.faq-section .accordion-item {
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .service-hero {
        padding-top: 100px;
        margin-bottom: 0px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        padding: 1rem;
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        max-width: 300px;
        margin: 0 auto;
    }

    .quote-box {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .stats-section {
        margin-top: -50px;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-box {
        padding: 1.5rem;
    }
}
