/* ========================================
   Complete Service Page Styles - Performance Optimized
   All issues addressed for pixel-perfect design
   ======================================== */

/* Font Loading Optimization */
@font-face {
    font-display: swap;
}

/* Global Section Spacing */
.section-padding {
    padding: 80px 0;
}

/* Performance: Reduce repaints */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Image Fix - Prevent Breaking */
.service-hero-banner img,
.service-intro-section img,
.service-quote-section img,
.service-why-choose-section img,
.service-help-section img,
.service-companies-section img,
.service-benefits-section img,
.service-stats-section img,
.service-services-cards-section img,
.service-faq-section img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   1. HERO BANNER - FIXED OVERLAY ISSUE
   ======================================== */
.service-hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 92, 226, 0.15) 0%, rgba(78, 84, 200, 0.2) 100%);
    z-index: 1;
}

.service-hero-banner .container {
    position: relative;
    z-index: 2;
}

.service-hero-content {
    color: #fff;
}

.service-hero-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
    opacity: 0.95;
}

.service-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.service-hero-description {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.service-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-hero-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-hero-btn.primary-btn {
    background-color: #fff;
    color: #025ce2;
    border: 2px solid #fff;
}

.service-hero-btn.primary-btn:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
}

.service-hero-btn.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.service-hero-btn.secondary-btn:hover {
    background-color: #fff;
    color: #025ce2;
    text-decoration: none;
}

/* ========================================
   2. QUOTE SECTION - FIXED ALIGNMENT
   ======================================== */
.service-intro-section {
    padding: 80px 0;
    background: #fff;
}

.service-intro-section .row {
    align-items: center;
}

.service-intro-image {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
    display: block;
}

.service-intro-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.service-intro-content p {
    margin-bottom: 15px;
    text-align: left;
}

/* Quote Box - Fixed Quotation Marks */
.service-quote-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.quote-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.quote-box {
    background: linear-gradient(135deg, #025ce2 0%, #4e54c8 100%);
    padding: 35px 40px;
    border-radius: 15px;
    position: relative;
    color: #fff;
    box-shadow: 0 15px 50px rgba(2, 92, 226, 0.3);
    flex: 1;
}

.quote-icon-top,
.quote-icon-bottom {
    font-size: 48px;
    color: rgba(255,255,255,0.2);
    line-height: 1;
    font-family: Georgia, serif;
}

.quote-icon-top {
    margin-bottom: 12px;
}

.quote-icon-bottom {
    text-align: right;
    margin-top: 12px;
}

.quote-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.quote-description-wrapper {
    flex: 1;
    background: #fff;
    padding: 35px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.quote-description-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1E1E1E;
    line-height: 1.3;
}

.quote-description-wrapper p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 8px;
}

.quote-description-wrapper p:last-child {
    margin-bottom: 0;
}

/* ========================================
   3. HOW CAN HELP - ADDED OVERLAY IMAGE
   ======================================== */
.service-help-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.service-help-section::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 92, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.service-help-section .container {
    position: relative;
    z-index: 2;
}

.help-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.help-content p {
    margin-bottom: 20px;
    text-align: left;
}

.help-stats-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.help-stat-item {
    text-align: center;
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #025ce2;
    min-width: 180px;
}

.help-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(2, 92, 226, 0.2);
}

.stat-number-large {
    font-size: 56px;
    font-weight: 700;
    color: #025ce2;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* ========================================
   4. STATISTICS - SQUARE BOXES WITH HOVER
   ======================================== */
.service-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.service-stats-section::before {
    content: '';
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(2, 92, 226, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.service-stats-section .container {
    position: relative;
    z-index: 2;
}

.service-section-title {
    font-size: 38px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
}

.stat-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: left;
    border-left: 5px solid #025ce2;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(2, 92, 226, 0.2);
    border-left-color: #4e54c8;
}

.stat-percentage {
    font-size: 48px;
    font-weight: 700;
    color: #025ce2;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

/* ========================================
   5. COMPANIES - FIXED ALIGNMENT & SIZE
   ======================================== */
.service-companies-section {
    padding: 80px 0;
    background: #fff;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

.company-logo-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    text-align: center;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.company-logo-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(2, 92, 226, 0.15);
    border-color: #025ce2;
}

.company-logo-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.company-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

.company-name {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: color 0.3s ease;
}

.company-logo-item:hover .company-name {
    color: #025ce2;
}

/* ========================================
   6. FORM SECTION - FIXED WITH #025ce2
   ======================================== */
.service-benefits-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.service-contact-form-section {
    padding: 100px 0;
    background: #fff;
}

.benefits-content,
.help-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.benefits-content p,
.help-content p {
    margin-bottom: 20px;
}

.benefits-form-wrapper {
    background: linear-gradient(135deg, #025ce2 0%, #4e54c8 100%);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(2, 92, 226, 0.3);
}

.benefits-form-wrapper .form-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
    text-align: center;
}

.service-form input[type="text"],
.service-form input[type="email"],
.service-form input[type="tel"],
.service-form select,
.service-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 18px;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.service-form button[type="submit"],
.service-form .btn-submit {
    width: 100%;
    background: #fff;
    color: #025ce2;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-form button[type="submit"]:hover,
.service-form .btn-submit:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-contact-image {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
    display: block;
}

/* Why Choose Section Styles */
.service-why-choose-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.why-choose-items {
    margin-top: 30px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.why-choose-icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #025ce2 0%, #4e54c8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.why-choose-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 8px;
}

.why-choose-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.why-choose-image {
    text-align: center;
}

.why-choose-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Service Description Section */
.service-description-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-description-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.service-description-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 20px;
}

.service-description-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1E1E1E;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-description-content p {
    margin-bottom: 15px;
}

.service-description-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-description-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Icon Boxes Section */
.service-icon-boxes-section {
    padding: 80px 0;
    background: #fff;
}

.service-icon-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border-top: 4px solid #025ce2;
}

.service-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(2, 92, 226, 0.15);
}

.service-icon-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #025ce2 0%, #4e54c8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon-box-icon i {
    font-size: 38px;
    color: #fff;
}

.service-icon-box-title {
    font-size: 20px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 15px;
}

.service-icon-box-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Services List Section */
.service-services-list-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-list-item {
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(2, 92, 226, 0.12);
}

.service-list-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #025ce2 0%, #4e54c8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.service-list-title {
    font-size: 20px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 10px;
}

.service-list-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Workflow Section */
.service-workflow-section {
    padding: 80px 0;
    background: #fff;
}

.service-workflow-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.service-workflow-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(2, 92, 226, 0.15);
}

.workflow-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.workflow-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: #025ce2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(2, 92, 226, 0.4);
}

.workflow-icon {
    font-size: 48px;
    color: #025ce2;
}

.workflow-title {
    font-size: 18px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 12px;
}

.workflow-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Tech Stack Section */
.service-tech-stack-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.tech-item-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tech-item-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(2, 92, 226, 0.12);
}

.tech-icon {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.tech-name {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin: 0;
}

/* Services Cards Section - FIXED FOR SCREENSHOT ISSUE */
.service-services-cards-section {
    padding: 80px 0;
    background: #fff;
}

.service-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border-top: 5px solid #025ce2;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(2, 92, 226, 0.2);
    border-top-color: #4e54c8;
}

.service-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #025ce2 0%, #4e54c8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-icon i {
    font-size: 42px;
    color: #fff;
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 18px;
    line-height: 1.3;
}

.service-card-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Benefits Section */
.service-benefits-items-section {
    padding: 80px 0;
    background: #fff;
}

.service-benefit-item {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.service-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(2, 92, 226, 0.15);
}

.benefit-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #025ce2 0%, #4e54c8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 36px;
    color: #fff;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* FAQ Section */
.service-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.service-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.service-faq-question:hover {
    background: #f8f9fa;
}

.service-faq-question h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1E1E1E;
    margin: 0;
    flex: 1;
}

.service-faq-toggle {
    font-size: 28px;
    color: #025ce2;
    font-weight: 300;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.service-faq-item.active .service-faq-toggle {
    transform: rotate(45deg);
}

.service-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.service-faq-item.active .service-faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.service-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* CTA Section */
.service-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #025ce2 0%, #4e54c8 100%);
}

.service-cta-wrapper {
    text-align: center;
}

.service-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
    line-height: 1.3;
}

.service-cta-btn {
    padding: 18px 50px;
    font-size: 17px;
    font-weight: 700;
    background: #fff;
    color: #025ce2;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-cta-btn:hover {
    background: transparent;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ======================================== */
@media (max-width: 991px) {
    .service-hero-title {
        font-size: 40px;
    }
    
    .service-section-title {
        font-size: 32px;
    }
    
    .quote-wrapper {
        flex-direction: column;
    }
    
    .help-stats-wrapper {
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .service-hero-banner {
        min-height: 500px;
        padding: 80px 0;
    }
    
    .service-hero-title {
        font-size: 32px;
    }
    
    .service-hero-description {
        font-size: 16px;
    }
    
    .service-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .service-section-title {
        font-size: 28px;
    }
    
    .quote-wrapper {
        flex-direction: column;
    }
    
    .quote-box {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
    
    .quote-text {
        font-size: 18px;
    }
    
    .quote-description-wrapper {
        padding: 25px 20px;
    }
    
    .help-stats-wrapper {
        justify-content: center;
        gap: 20px;
    }
    
    .help-stat-item {
        width: 100%;
        max-width: 280px;
    }
    
    .why-choose-items {
        margin-top: 20px;
    }
    
    .why-choose-item {
        margin-bottom: 20px;
    }
    
    .stat-number-large {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .company-logo-item {
        height: 140px;
        padding: 25px 15px;
    }
    
    .benefits-form-wrapper {
        padding: 35px 25px;
    }
    
    .service-cta-title {
        font-size: 28px;
    }
    
    /* Services Cards Mobile */
    .service-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .service-card-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 20px;
    }
    
    .service-card-icon i {
        font-size: 36px;
    }
    
    .service-card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    /* FAQ: tighten spacing and width */
    .service-faq-wrapper { max-width: 100%; padding: 0 16px; }
    .service-faq-item { margin-bottom: 12px; }
    .service-faq-question { padding: 16px 18px; }
    .service-faq-toggle { font-size: 20px; }
    .service-faq-item.active .service-faq-answer { padding: 0 18px 16px; }
    .service-faq-section { padding: 40px 0 !important; }

    /* Companies icons: larger, clean; remove grey lazy bg */
    .companies-grid { gap: 20px !important; grid-template-columns: repeat(2, minmax(120px, 1fr)) !important; }
    .company-logo-item { box-shadow: none !important; border: 0 !important; height: auto !important; padding: 16px 12px !important; background: transparent !important; border-radius: 12px !important; transition: transform .2s ease, box-shadow .2s ease !important; }
    .company-logo-item img { max-height: 90px !important; filter: none !important; opacity: 1 !important; background: transparent !important; display: block !important; margin: 0 auto !important; }
    .company-logo-item:hover { transform: translateY(-2px) scale(1.03) !important; box-shadow: 0 8px 20px rgba(0,0,0,.08) !important; }
    .company-name { font-size: 12px !important; color: #666 !important; margin-top: 6px !important; text-align: center !important; }
    .companies-grid img[loading="lazy"], .company-logo-item img[loading="lazy"] { background: transparent !important; }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 26px;
    }
    
    .service-section-title {
        font-size: 24px;
    }
    
    .stat-number-large {
        font-size: 36px;
    }
    
    .companies-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)) !important; gap: 16px !important; }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Critical rendering performance */
img {
    content-visibility: auto;
    contain: layout;
}

/* Only apply will-change on hover for better performance */
.service-icon-box:hover,
.service-faq-item:hover,
.company-logo-item:hover,
.service-workflow-item:hover,
.service-benefit-item:hover,
.stat-box:hover,
.service-card:hover {
    will-change: transform;
}

/* Contain repaints */
.service-hero-banner,
.service-quote-section,
.service-companies-section,
.service-stats-section,
.service-services-cards-section,
.service-faq-section {
    contain: layout style paint;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Lazy Loading */
img[loading="lazy"] {
    background: #f0f0f0;
}

/* ========================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   Remove heavy effects on mobile for 80+ score
   ======================================== */

@media (max-width: 768px) {
    
    /* ========================================
       MOBILE OPTIMIZATION - SMART NOT AGGRESSIVE
       Keep header/footer working, optimize content only
       ======================================== */
    
    /* REMOVE HERO BACKGROUND IMAGE ON MOBILE */
    .service-hero-banner {
        background-image: none !important;
        background: #f5f7fa !important;
        min-height: 350px !important;
        padding: 50px 15px !important;
    }
    
    .service-hero-overlay {
        display: none !important;
    }
    
    .service-hero-content {
        color: #1a1a1a !important;
    }
    
    .service-hero-title {
        color: #025ce2 !important;
        font-size: 32px !important;
        line-height: 1.3 !important;
        text-shadow: none !important;
    }
    
    .service-hero-subtitle {
        color: #666 !important;
    }
    
    .service-hero-description {
        color: #555 !important;
        font-size: 16px !important;
    }
    
    .service-hero-btn.primary-btn {
        background-color: #025ce2 !important;
        color: #fff !important;
        border: 2px solid #025ce2 !important;
    }
    
    .service-hero-btn.secondary-btn {
        background-color: #fff !important;
        color: #025ce2 !important;
        border: 2px solid #025ce2 !important;
    }
    
    /* DISABLE ALL TRANSITIONS/ANIMATIONS ON MOBILE */
    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
        will-change: auto !important;
    }
    
    /* REMOVE ALL BOX SHADOWS ON MOBILE */
    .service-intro-image,
    .quote-box,
    .quote-description-wrapper,
    .service-icon-box,
    .stat-box,
    .company-logo-item,
    .service-workflow-item,
    .service-benefit-item,
    .service-card,
    .service-faq-item,
    .form-group input,
    .form-group textarea,
    .form-group select {
        box-shadow: none !important;
    }
    
    /* SIMPLIFY GRADIENTS ON MOBILE */
    .quote-box {
        background: #025ce2 !important;
    }
    
    .stat-box {
        background: #fff !important;
        border: 2px solid #e0e0e0;
    }
    
    /* REDUCE PADDING ON MOBILE */
    .section-padding {
        padding: 40px 0 !important;
    }
    
    .service-quote-section {
        padding: 30px 0 !important;
    }
    
    .service-help-section,
    .service-companies-section,
    .service-benefits-section,
    .service-stats-section,
    .service-services-cards-section {
        padding: 40px 0 !important;
    }
    
    /* Keep all sections visible on mobile for full responsiveness */
    .service-intro-section,
    .service-quote-section,
    .service-why-choose-section,
    .service-help-section,
    .service-companies-section,
    .service-stats-section {
        display: block !important;
    }
    
    /* Show images on mobile; rely on optimized sizes above */
    .service-intro-image,
    .service-why-choose-section img,
    .help-section-image,
    .benefits-section-image,
    img {
        display: block !important;
    }
    
    /* OPTIMIZE REMAINING IMAGES ON MOBILE */
    img {
        max-width: 100% !important;
        height: auto !important;
        image-rendering: auto !important;
    }
    
    /* SIMPLIFY ALL SECTIONS BACKGROUND ON MOBILE */
    .service-benefits-section,
    .service-services-cards-section,
    .service-faq-section {
        background: #fff !important;
        padding: 30px 0 !important;
    }
    
    /* DISABLE HOVER EFFECTS ON MOBILE (TOUCH DEVICES) */
    .service-icon-box:hover,
    .service-card:hover,
    .company-logo-item:hover,
    .stat-box:hover,
    .service-faq-item:hover,
    .service-hero-btn:hover {
        transform: none !important;
        box-shadow: none !important;
        background: inherit !important;
    }
    
    /* SIMPLIFY TEXT SHADOWS ON MOBILE */
    .stat-number,
    h1, h2, h3, h4, h5, h6 {
        text-shadow: none !important;
    }
    
    /* REDUCE FONT SIZES ON MOBILE */
    .quote-text {
        font-size: 16px !important;
    }
    
    .stat-number {
        font-size: 42px !important;
    }
    
    /* REDUCE ALL HEADING SIZES ON MOBILE */
    h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }
    
    h4, h5, h6 {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }
    
    p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    
    /* SIMPLIFY QUOTE SECTION ON MOBILE */
    .quote-wrapper {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .quote-box,
    .quote-description-wrapper {
        padding: 25px 20px !important;
    }
    
    .quote-icon-top,
    .quote-icon-bottom {
        font-size: 36px !important;
    }
    
    /* SIMPLIFY ICON BOXES ON MOBILE */
    .service-icon-box {
        padding: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .service-icon-box i {
        font-size: 36px !important;
        margin-bottom: 12px !important;
    }
    
    .service-icon-box h3 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    
    .service-icon-box p {
        font-size: 14px !important;
    }
    
    /* SIMPLIFY STATS ON MOBILE */
    .stat-box {
        padding: 20px !important;
        margin-bottom: 15px !important;
    }
    
    /* SIMPLIFY SERVICES CARDS ON MOBILE */
    .service-card {
        padding: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .service-card-icon {
        font-size: 36px !important;
        margin-bottom: 12px !important;
    }
    
    .service-card h3 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    
    .service-card p {
        font-size: 14px !important;
    }
    
    /* SIMPLIFY COMPANIES LOGOS ON MOBILE */
    .company-logo-item {
        padding: 15px !important;
        filter: none !important;
    }
    
    .company-logo-item img {
        max-height: 40px !important;
    }
    
    /* REDUCE ICON SIZES (FONT AWESOME) ON MOBILE */
    .service-icon-box i,
    .service-card i,
    .service-card-icon,
    i.fa, i.fas, i.far, i.fab {
        font-size: 36px !important;
    }
    
    /* SIMPLIFY FORM ON MOBILE */
    .form-group {
        margin-bottom: 15px !important;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px !important;
        font-size: 16px !important;
    }
    
    .form-submit-btn {
        padding: 14px 30px !important;
        font-size: 16px !important;
    }
    
    /* SIMPLIFY FAQ ON MOBILE */
    .service-faq-item {
        padding: 15px !important;
        margin-bottom: 10px !important;
    }
    
    .faq-question {
        font-size: 16px !important;
        padding-right: 30px !important;
    }
    
    .faq-answer {
        font-size: 14px !important;
        padding-top: 10px !important;
    }
    
    /* REMOVE OVERLAY IMAGE ON MOBILE */
    .help-section-overlay {
        display: none !important;
    }
    
    /* DISABLE COMPLEX FILTERS ON MOBILE */
    .service-companies-section img,
    .company-logo-item {
        filter: none !important;
        -webkit-filter: none !important;
    }
    
    /* SIMPLIFY BUTTONS ON MOBILE */
    .service-hero-btn {
        padding: 12px 30px !important;
        font-size: 15px !important;
        border-radius: 30px !important;
    }
    
    .service-hero-buttons {
        gap: 12px !important;
        justify-content: center !important;
    }
    
    /* REDUCE BORDER RADIUS ON MOBILE */
    .service-icon-box,
    .stat-box,
    .service-card,
    .quote-box,
    .quote-description-wrapper,
    .service-faq-item,
    .form-group input,
    .form-group textarea,
    .form-group select {
        border-radius: 8px !important;
    }
    
    /* DISABLE CONTAIN AND CONTENT-VISIBILITY ON MOBILE */
    .service-hero-banner,
    .service-quote-section,
    .service-companies-section,
    .service-stats-section,
    .service-services-cards-section,
    .service-faq-section {
        contain: none !important;
    }
    
    img {
        content-visibility: auto !important;
        contain: none !important;
    }
    
    /* OPTIMIZE HERO BANNER FOR MOBILE */
    .service-hero-content {
        text-align: center !important;
    }
    
    /* SIMPLIFY TYPOGRAPHY ON MOBILE */
    .section-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .section-subtitle {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }
    
    /* REMOVE UNNECESSARY SPACING ON MOBILE */
    .service-help-section .row,
    .service-benefits-section .row {
        gap: 20px !important;
    }
    
    /* OPTIMIZE GRID LAYOUTS ON MOBILE */
    .service-icon-box,
    .stat-box,
    .service-card,
    .company-logo-item {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ========================================
   ADDITIONAL MOBILE OPTIMIZATIONS FOR TINY SCREENS
   ======================================== */

@media (max-width: 480px) {
    
    /* EVEN SMALLER TEXT ON VERY SMALL SCREENS */
    .service-hero-title {
        font-size: 26px !important;
    }
    
    .service-hero-description {
        font-size: 14px !important;
    }
    
    .quote-text {
        font-size: 15px !important;
    }
    
    .section-title {
        font-size: 24px !important;
    }
    
    /* FURTHER REDUCE PADDING */
    .section-padding {
        padding: 30px 0 !important;
    }
    
    .service-hero-banner {
        min-height: 350px !important;
        padding: 50px 0 !important;
    }
    
    /* STACK BUTTONS VERTICALLY ON VERY SMALL SCREENS */
    .service-hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .service-hero-btn {
        width: 100% !important;
        max-width: 280px !important;
    }
}
