/*
Theme Name: Porto Child
Theme URI: https://www.portotheme.com/wordpress/porto
Author: P-THEMES
Author URI: https://www.portotheme.com/
Description: Porto Responsive WordPress + eCommerce Theme.
Version: 1.1
Template: porto
License: Commercial
License URI: http://themeforest.net/licenses/regular_extended
Tags: woocommerce, corporate, ecommerce, responsive, blue, black, green, white, light, dark, red, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
*/

/*************** IT SERVICE PAGE STYLES ***************/

/* CSS Variables for easy customization */
:root {
    --its-primary-color: #0066cc;
    --its-primary-dark: #004d99;
    --its-primary-light: #e6f2ff;
    --its-secondary-color: #1a1a2e;
    --its-accent-color: #00b894;
    --its-text-dark: #2d3436;
    --its-text-light: #636e72;
    --its-text-white: #ffffff;
    --its-bg-light: #f8f9fa;
    --its-bg-gray: #f1f3f5;
    --its-border-radius: 8px;
    --its-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --its-transition: all 0.3s ease;
}

/* Page Container */
.it-service-page {
    overflow-x: hidden;
}

/* Section Label (used across sections) */
.its-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--its-primary-color);
    margin-bottom: 12px;
}

/* Section Heading (used across sections) */
.its-section-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--its-text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

/* ============================================
   SECTION 1: HERO BANNER
   ============================================ */
.its-hero-section {
    background: linear-gradient(135deg, var(--its-primary-color) 0%, var(--its-primary-dark) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.its-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.its-hero-content {
    position: relative;
    z-index: 2;
}

.its-hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--its-text-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.its-hero-headline {
    font-size: 48px;
    font-weight: 800;
    color: var(--its-text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.its-hero-subheadline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 540px;
}

.its-hero-cta {
    background: var(--its-text-white);
    color: var(--its-primary-color);
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--its-border-radius);
    transition: var(--its-transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.its-hero-cta:hover {
    background: var(--its-text-white);
    color: var(--its-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.its-hero-image-col {
    position: relative;
    z-index: 2;
}

.its-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--its-border-radius);
    box-shadow: var(--its-box-shadow);
}

/* ============================================
   SECTION 2: KEY STATS BAR
   ============================================ */
.its-stats-section {
    background: var(--its-secondary-color);
    padding: 50px 0;
}

.its-stats-row {
    display: flex;
    justify-content: center;
    text-align: center;
}

.its-stat-item {
    padding: 20px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.its-stat-item:last-child {
    border-right: none;
}

.its-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--its-text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.its-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SECTION 3: WHAT IS [SERVICE NAME]
   ============================================ */
.its-what-is-section {
    background: var(--its-text-white);
    padding: 80px 0;
}

.its-what-is-content {
    font-size: 16px;
    color: var(--its-text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.its-what-is-content p {
    margin-bottom: 16px;
}

.its-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.its-feature-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--its-text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.its-feature-list li i {
    color: var(--its-accent-color);
    font-size: 18px;
    margin-top: 3px;
}

.its-what-is-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--its-border-radius);
    box-shadow: var(--its-box-shadow);
}

/* ============================================
   SECTION 4: HOW IT WORKS (PROCESS STEPS)
   ============================================ */
.its-process-section {
    background: var(--its-bg-gray);
    padding: 80px 0;
}

.its-process-header {
    margin-bottom: 50px;
}

.its-process-steps {
    position: relative;
}

.its-process-steps .row {
    position: relative;
}

/* Connecting line */
.its-process-steps .row::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--its-primary-color), var(--its-accent-color));
    z-index: 0;
}

.its-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.its-step-number {
    width: 80px;
    height: 80px;
    background: var(--its-primary-color);
    color: var(--its-text-white);
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    position: relative;
}

.its-step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--its-text-dark);
    margin-bottom: 12px;
}

.its-step-desc {
    font-size: 14px;
    color: var(--its-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SECTION 5: WHY CHOOSE US / BENEFITS
   ============================================ */
.its-benefits-section {
    background: var(--its-text-white);
    padding: 80px 0;
}

.its-benefits-header {
    margin-bottom: 50px;
}

.its-benefits-grid {
    margin-top: 20px;
}

.its-benefit-item {
    margin-bottom: 30px;
}

.its-benefit-card {
    background: var(--its-text-white);
    border: 1px solid #e9ecef;
    border-radius: var(--its-border-radius);
    padding: 30px;
    height: 100%;
    transition: var(--its-transition);
}

.its-benefit-card:hover {
    border-color: var(--its-primary-color);
    box-shadow: var(--its-box-shadow);
    transform: translateY(-5px);
}

.its-benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--its-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.its-benefit-icon i {
    font-size: 24px;
    color: var(--its-primary-color);
}

.its-benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--its-text-dark);
    margin-bottom: 12px;
}

.its-benefit-desc {
    font-size: 14px;
    color: var(--its-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SECTION 6: PRICING OVERVIEW
   ============================================ */
.its-pricing-section {
    background: var(--its-primary-light);
    padding: 80px 0;
}

.its-pricing-card {
    background: var(--its-text-white);
    border-radius: var(--its-border-radius);
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--its-box-shadow);
}

.its-pricing-text {
    font-size: 18px;
    color: var(--its-text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.its-pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
    display: inline-block;
}

.its-pricing-includes li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--its-text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.its-pricing-includes li i {
    color: var(--its-accent-color);
    font-size: 16px;
}

.its-pricing-cta {
    background: var(--its-primary-color);
    color: var(--its-text-white);
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--its-border-radius);
    transition: var(--its-transition);
}

.its-pricing-cta:hover {
    background: var(--its-primary-dark);
    color: var(--its-text-white);
    transform: translateY(-2px);
}

/* ============================================
   SECTION 7: GUARANTEE / TRUST SECTION
   ============================================ */
.its-guarantee-section {
    background: var(--its-secondary-color);
    padding: 80px 0;
}

.its-guarantee-content {
    max-width: 700px;
    margin: 0 auto;
}

.its-guarantee-icon {
    margin-bottom: 24px;
}

.its-guarantee-icon i {
    font-size: 64px;
    color: var(--its-accent-color);
}

.its-guarantee-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--its-text-white);
    margin-bottom: 16px;
}

.its-guarantee-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   SECTION 8: TESTIMONIAL
   ============================================ */
.its-testimonial-section {
    background: var(--its-text-white);
    padding: 80px 0;
}

.its-testimonial-card {
    max-width: 800px;
    margin: 0 auto;
}

.its-testimonial-quote {
    position: relative;
    margin-bottom: 32px;
}

.its-quote-icon {
    font-size: 48px;
    color: var(--its-primary-light);
    margin-bottom: 16px;
}

.its-testimonial-quote p {
    font-size: 22px;
    font-style: italic;
    color: var(--its-text-dark);
    line-height: 1.7;
    margin: 0;
}

.its-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.its-testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--its-primary-light);
}

.its-testimonial-info {
    text-align: left;
}

.its-testimonial-name {
    display: block;
    font-size: 18px;
    color: var(--its-text-dark);
    margin-bottom: 4px;
}

.its-testimonial-title {
    font-size: 14px;
    color: var(--its-text-light);
}

/* ============================================
   SECTION 9: FAQ SECTION
   ============================================ */
.its-faq-section {
    background: var(--its-bg-gray);
    padding: 80px 0;
}

.its-faq-header {
    margin-bottom: 40px;
}

.its-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.its-faq-item {
    background: var(--its-text-white);
    border-radius: var(--its-border-radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.its-faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--its-transition);
}

.its-faq-question:hover {
    background: var(--its-bg-light);
}

.its-faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--its-text-dark);
}

.its-faq-question i {
    color: var(--its-primary-color);
    transition: var(--its-transition);
}

.its-faq-question[aria-expanded="true"] i,
.its-faq-question:not(.collapsed) i {
    transform: rotate(180deg);
}

.its-faq-answer {
    padding: 0 24px;
}

.its-faq-answer p {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--its-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   SECTION 10: FINAL CTA BANNER
   ============================================ */
.its-final-cta-section {
    background: linear-gradient(135deg, var(--its-primary-color) 0%, var(--its-primary-dark) 100%);
    padding: 80px 0;
}

.its-final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.its-final-cta-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--its-text-white);
    margin-bottom: 16px;
}

.its-final-cta-subtext {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.its-final-cta-btn {
    background: var(--its-text-white);
    color: var(--its-primary-color);
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--its-border-radius);
    transition: var(--its-transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.its-final-cta-btn:hover {
    background: var(--its-text-white);
    color: var(--its-primary-dark);
    transform: translateY(-2px);
}

.its-final-cta-phone {
    margin-top: 24px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.its-final-cta-phone a {
    color: var(--its-text-white);
    font-weight: 600;
    text-decoration: underline;
}

.its-final-cta-phone a:hover {
    color: var(--its-text-white);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .its-hero-section {
        padding: 60px 0 80px;
    }

    .its-hero-headline {
        font-size: 36px;
    }

    .its-hero-image-col {
        margin-top: 40px;
    }

    .its-section-heading {
        font-size: 30px;
    }

    .its-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
    }

    .its-stat-item:last-child {
        border-bottom: none;
    }

    .its-process-steps .row::before {
        display: none;
    }

    .its-process-step {
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .its-hero-section {
        padding: 50px 0 60px;
        text-align: center;
    }

    .its-hero-headline {
        font-size: 28px;
    }

    .its-hero-subheadline {
        font-size: 16px;
        max-width: 100%;
    }

    .its-stats-section {
        padding: 30px 0;
    }

    .its-stat-number {
        font-size: 32px;
    }

    .its-stat-label {
        font-size: 12px;
    }

    .its-what-is-section,
    .its-process-section,
    .its-benefits-section,
    .its-pricing-section,
    .its-guarantee-section,
    .its-testimonial-section,
    .its-faq-section,
    .its-final-cta-section {
        padding: 50px 0;
    }

    .its-section-heading {
        font-size: 26px;
    }

    .its-pricing-card {
        padding: 30px 20px;
    }

    .its-testimonial-quote p {
        font-size: 18px;
    }

    .its-final-cta-heading {
        font-size: 28px;
    }

    .its-guarantee-heading {
        font-size: 26px;
    }

    .its-guarantee-icon i {
        font-size: 48px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .its-hero-headline {
        font-size: 24px;
    }

    .its-hero-cta,
    .its-pricing-cta,
    .its-final-cta-btn {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
    }

    .its-step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .its-benefit-card {
        padding: 20px;
    }
}


/*************** SERVICE PAGE STYLES (single-event.php) ***************/

/* CSS Variables */
:root {
    --sp-primary-color: #0066cc;
    --sp-primary-dark: #004d99;
    --sp-primary-light: #e6f2ff;
    --sp-secondary-color: #1a1a2e;
    --sp-accent-color: #00b894;
    --sp-text-dark: #2d3436;
    --sp-text-light: #636e72;
    --sp-text-white: #ffffff;
    --sp-bg-light: #f8f9fa;
    --sp-bg-gray: #f1f3f5;
    --sp-border-radius: 8px;
    --sp-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --sp-transition: all 0.3s ease;
}

/* Page Container */
.service-page {
    overflow-x: hidden;
}

/* Section Label */
.sp-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sp-primary-color);
    margin-bottom: 12px;
}

/* Section Heading */
.sp-section-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--sp-text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

/* HERO SECTION */
.sp-hero-section {
    background: linear-gradient(135deg, var(--sp-primary-color) 0%, var(--sp-primary-dark) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.sp-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.sp-hero-content {
    position: relative;
    z-index: 2;
}

.sp-hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--sp-text-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sp-hero-headline {
    font-size: 48px;
    font-weight: 800;
    color: var(--sp-text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sp-hero-subheadline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 540px;
}

.sp-hero-cta {
    background: var(--sp-text-white) !important;
    color: var(--sp-primary-color) !important;
    border: none !important;
    padding: 16px 36px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: var(--sp-border-radius) !important;
    transition: var(--sp-transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sp-hero-cta:hover {
    background: var(--sp-text-white) !important;
    color: var(--sp-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.sp-hero-image-col {
    position: relative;
    z-index: 2;
}

.sp-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--sp-border-radius);
    box-shadow: var(--sp-box-shadow);
}

/* STATS SECTION */
.sp-stats-section {
    background: var(--sp-secondary-color);
    padding: 50px 0;
}

.sp-stats-row {
    display: flex;
    justify-content: center;
    text-align: center;
}

.sp-stat-item {
    padding: 20px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-stat-item:last-child {
    border-right: none;
}

.sp-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--sp-text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.sp-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* WHAT IS SECTION */
.sp-what-is-section {
    background: var(--sp-text-white);
    padding: 80px 0;
}

.sp-what-is-content {
    font-size: 16px;
    color: var(--sp-text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.sp-what-is-content p {
    margin-bottom: 16px;
}

.sp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-feature-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--sp-text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sp-feature-list li i {
    color: var(--sp-accent-color);
    font-size: 18px;
    margin-top: 3px;
}

.sp-what-is-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--sp-border-radius);
    box-shadow: var(--sp-box-shadow);
}

/* PROCESS SECTION */
.sp-process-section {
    background: var(--sp-bg-gray);
    padding: 80px 0;
}

.sp-process-header {
    margin-bottom: 50px;
}

.sp-process-steps {
    position: relative;
}

.sp-process-steps .row {
    position: relative;
}

.sp-process-steps .row::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--sp-primary-color), var(--sp-accent-color));
    z-index: 0;
}

.sp-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.sp-step-number {
    width: 80px;
    height: 80px;
    background: var(--sp-primary-color);
    color: var(--sp-text-white);
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    position: relative;
}

.sp-step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--sp-text-dark);
    margin-bottom: 12px;
}

.sp-step-desc {
    font-size: 14px;
    color: var(--sp-text-light);
    line-height: 1.6;
    margin: 0;
}

/* BENEFITS SECTION */
.sp-benefits-section {
    background: var(--sp-text-white);
    padding: 80px 0;
}

.sp-benefits-header {
    margin-bottom: 50px;
}

.sp-benefits-grid {
    margin-top: 20px;
}

.sp-benefit-item {
    margin-bottom: 30px;
}

.sp-benefit-card {
    background: var(--sp-text-white);
    border: 1px solid #e9ecef;
    border-radius: var(--sp-border-radius);
    padding: 30px;
    height: 100%;
    transition: var(--sp-transition);
}

.sp-benefit-card:hover {
    border-color: var(--sp-primary-color);
    box-shadow: var(--sp-box-shadow);
    transform: translateY(-5px);
}

.sp-benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--sp-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sp-benefit-icon i {
    font-size: 24px;
    color: var(--sp-primary-color);
}

.sp-benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--sp-text-dark);
    margin-bottom: 12px;
}

.sp-benefit-desc {
    font-size: 14px;
    color: var(--sp-text-light);
    line-height: 1.6;
    margin: 0;
}

/* PRICING SECTION */
.sp-pricing-section {
    background: var(--sp-primary-light);
    padding: 80px 0;
}

.sp-pricing-card {
    background: var(--sp-text-white);
    border-radius: var(--sp-border-radius);
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--sp-box-shadow);
}

.sp-pricing-text {
    font-size: 18px;
    color: var(--sp-text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.sp-pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
    display: inline-block;
}

.sp-pricing-includes li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--sp-text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-pricing-includes li i {
    color: var(--sp-accent-color);
    font-size: 16px;
}

.sp-pricing-cta {
    background: var(--sp-primary-color) !important;
    color: var(--sp-text-white) !important;
    border: none !important;
    padding: 16px 40px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: var(--sp-border-radius) !important;
    transition: var(--sp-transition);
}

.sp-pricing-cta:hover {
    background: var(--sp-primary-dark) !important;
    color: var(--sp-text-white) !important;
    transform: translateY(-2px);
}

/* GUARANTEE SECTION */
.sp-guarantee-section {
    background: var(--sp-secondary-color);
    padding: 80px 0;
}

.sp-guarantee-content {
    max-width: 700px;
    margin: 0 auto;
}

.sp-guarantee-icon {
    margin-bottom: 24px;
}

.sp-guarantee-icon i {
    font-size: 64px;
    color: var(--sp-accent-color);
}

.sp-guarantee-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--sp-text-white);
    margin-bottom: 16px;
}

.sp-guarantee-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* TESTIMONIAL SECTION */
.sp-testimonial-section {
    background: var(--sp-text-white);
    padding: 80px 0;
}

.sp-testimonial-card {
    max-width: 800px;
    margin: 0 auto;
}

.sp-testimonial-quote {
    position: relative;
    margin-bottom: 32px;
}

.sp-quote-icon {
    font-size: 48px;
    color: var(--sp-primary-light);
    margin-bottom: 16px;
}

.sp-testimonial-quote p {
    font-size: 22px;
    font-style: italic;
    color: var(--sp-text-dark);
    line-height: 1.7;
    margin: 0;
}

.sp-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sp-testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sp-primary-light);
}

.sp-testimonial-info {
    text-align: left;
}

.sp-testimonial-name {
    display: block;
    font-size: 18px;
    color: var(--sp-text-dark);
    margin-bottom: 4px;
}

.sp-testimonial-title {
    font-size: 14px;
    color: var(--sp-text-light);
}

/* FAQ SECTION */
.sp-faq-section {
    background: var(--sp-bg-gray);
    padding: 80px 0;
}

.sp-faq-header {
    margin-bottom: 40px;
}

.sp-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.sp-faq-item {
    background: var(--sp-text-white);
    border-radius: var(--sp-border-radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sp-faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--sp-transition);
}

.sp-faq-question:hover {
    background: var(--sp-bg-light);
}

.sp-faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--sp-text-dark);
}

.sp-faq-question i {
    color: var(--sp-primary-color);
    transition: var(--sp-transition);
}

.sp-faq-question:not(.collapsed) i {
    transform: rotate(180deg);
}

.sp-faq-answer {
    padding: 0 24px;
}

.sp-faq-answer p {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--sp-text-light);
    line-height: 1.7;
    margin: 0;
}

/* FINAL CTA SECTION */
.sp-final-cta-section {
    background: linear-gradient(135deg, var(--sp-primary-color) 0%, var(--sp-primary-dark) 100%);
    padding: 80px 0;
}

.sp-final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.sp-final-cta-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--sp-text-white);
    margin-bottom: 16px;
}

.sp-final-cta-subtext {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.sp-final-cta-btn {
    background: var(--sp-text-white) !important;
    color: var(--sp-primary-color) !important;
    border: none !important;
    padding: 16px 40px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: var(--sp-border-radius) !important;
    transition: var(--sp-transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sp-final-cta-btn:hover {
    background: var(--sp-text-white) !important;
    color: var(--sp-primary-dark) !important;
    transform: translateY(-2px);
}

.sp-final-cta-phone {
    margin-top: 24px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.sp-final-cta-phone a {
    color: var(--sp-text-white);
    font-weight: 600;
    text-decoration: underline;
}

.sp-final-cta-phone a:hover {
    color: var(--sp-text-white);
}

/* SERVICE PAGE RESPONSIVE */
@media (max-width: 991px) {
    .sp-hero-section {
        padding: 60px 0 80px;
    }

    .sp-hero-headline {
        font-size: 36px;
    }

    .sp-hero-image-col {
        margin-top: 40px;
    }

    .sp-section-heading {
        font-size: 30px;
    }

    .sp-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
    }

    .sp-stat-item:last-child {
        border-bottom: none;
    }

    .sp-process-steps .row::before {
        display: none;
    }

    .sp-process-step {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .sp-hero-section {
        padding: 50px 0 60px;
        text-align: center;
    }

    .sp-hero-headline {
        font-size: 28px;
    }

    .sp-hero-subheadline {
        font-size: 16px;
        max-width: 100%;
    }

    .sp-stats-section {
        padding: 30px 0;
    }

    .sp-stat-number {
        font-size: 32px;
    }

    .sp-stat-label {
        font-size: 12px;
    }

    .sp-what-is-section,
    .sp-process-section,
    .sp-benefits-section,
    .sp-pricing-section,
    .sp-guarantee-section,
    .sp-testimonial-section,
    .sp-faq-section,
    .sp-final-cta-section {
        padding: 50px 0;
    }

    .sp-section-heading {
        font-size: 26px;
    }

    .sp-pricing-card {
        padding: 30px 20px;
    }

    .sp-testimonial-quote p {
        font-size: 18px;
    }

    .sp-final-cta-heading {
        font-size: 28px;
    }

    .sp-guarantee-heading {
        font-size: 26px;
    }

    .sp-guarantee-icon i {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .sp-hero-headline {
        font-size: 24px;
    }

    .sp-hero-cta,
    .sp-pricing-cta,
    .sp-final-cta-btn {
        padding: 14px 28px !important;
        font-size: 14px !important;
        width: 100%;
    }

    .sp-step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .sp-benefit-card {
        padding: 20px;
    }
}

/*************** FAQ PAGE STYLES - ENHANCED ***************/

/* FAQ Page Header - Stunning Gradient with Animation */
.post-type-archive-faq .page-title,
.tax-faq_cat .page-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 8s ease infinite;
    padding: 80px 0 !important;
    margin-bottom: 0 !important;
    position: relative;
    overflow: hidden;
}

.post-type-archive-faq .page-title::before,
.tax-faq_cat .page-title::before {
    content: '?';
    position: absolute;
    font-size: 300px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.post-type-archive-faq .page-title h1,
.post-type-archive-faq .page-title h2,
.tax-faq_cat .page-title h1,
.tax-faq_cat .page-title h2 {
    color: #fff !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.post-type-archive-faq .page-title .page-sub-title,
.tax-faq_cat .page-title .page-sub-title {
    color: rgba(255,255,255,0.9) !important;
    font-size: 18px !important;
}

/* FAQ Page Content Area */
.post-type-archive-faq .page-content,
.tax-faq_cat .page-content {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

/* FAQ Category Title Headers */
.post-type-archive-faq .faq-filter-cat-title,
.tax-faq_cat .faq-filter-cat-title,
.faq-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 50px 0 30px 0;
    padding: 20px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.post-type-archive-faq .faq-filter-cat-title:first-of-type {
    margin-top: 0;
}

.faq-category-header::before {
    content: '';
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Toggle Items - Modern Card Style */
.post-type-archive-faq .toggle,
.tax-faq_cat .toggle {
    background: #fff;
    border: none !important;
    border-radius: 16px !important;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.post-type-archive-faq .toggle::before,
.tax-faq_cat .toggle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-type-archive-faq .toggle:hover,
.tax-faq_cat .toggle:hover {
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    transform: translateY(-3px);
}

.post-type-archive-faq .toggle:hover::before,
.tax-faq_cat .toggle:hover::before,
.post-type-archive-faq .toggle.active::before,
.tax-faq_cat .toggle.active::before {
    opacity: 1;
}

/* FAQ Question Label */
.post-type-archive-faq .toggle > label,
.tax-faq_cat .toggle > label {
    padding: 25px 30px;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 16px;
    position: relative;
}

.post-type-archive-faq .toggle > label::before,
.tax-faq_cat .toggle > label::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    margin-right: 18px;
    flex-shrink: 0;
}

.post-type-archive-faq .toggle > label::after,
.tax-faq_cat .toggle > label::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: #667eea;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2ff;
    border-radius: 50%;
    flex-shrink: 0;
}

.post-type-archive-faq .toggle.active > label,
.tax-faq_cat .toggle.active > label {
    background: #f8f9ff;
    border-radius: 16px 16px 0 0;
}

.post-type-archive-faq .toggle.active > label::after,
.tax-faq_cat .toggle.active > label::after {
    content: '−';
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: rotate(180deg);
}

/* FAQ Answer Content */
.post-type-archive-faq .toggle > p,
.tax-faq_cat .toggle > p {
    padding: 25px 30px 30px 84px;
    margin: 0;
    line-height: 1.9;
    color: #555;
    font-size: 16px;
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
    border-radius: 0 0 16px 16px;
    position: relative;
}

.post-type-archive-faq .toggle > p::before,
.tax-faq_cat .toggle > p::before {
    content: 'A';
    position: absolute;
    left: 30px;
    top: 25px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Sidebar - Enhanced */
.post-type-archive-faq .sidebar .widget,
.tax-faq_cat .sidebar .widget {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    position: sticky;
    top: 120px;
}

.post-type-archive-faq .sidebar .widget-title,
.tax-faq_cat .sidebar .widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #667eea, #764ba2) 1;
}

.post-type-archive-faq .sidebar ul,
.tax-faq_cat .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-type-archive-faq .sidebar ul li,
.tax-faq_cat .sidebar ul li {
    margin-bottom: 8px;
}

.post-type-archive-faq .sidebar ul li a,
.tax-faq_cat .sidebar ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #444;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    background: #f8f9ff;
}

.post-type-archive-faq .sidebar ul li a::before,
.tax-faq_cat .sidebar ul li a::before {
    content: '→';
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.post-type-archive-faq .sidebar ul li a:hover,
.post-type-archive-faq .sidebar ul li.current-cat a,
.tax-faq_cat .sidebar ul li a:hover,
.tax-faq_cat .sidebar ul li.current-cat a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateX(5px);
}

.post-type-archive-faq .sidebar ul li a:hover::before,
.post-type-archive-faq .sidebar ul li.current-cat a::before,
.tax-faq_cat .sidebar ul li a:hover::before,
.tax-faq_cat .sidebar ul li.current-cat a::before {
    color: #fff;
    transform: translateX(3px);
}

/* Embedded FAQ Section for Service Pages */
.sp-faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.sp-faq-section .sp-section-label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.sp-faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.sp-faq-item:hover {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    border-left-color: #667eea;
}

.sp-faq-question {
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 16px;
}

.sp-faq-question::before {
    content: 'Q';
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.sp-faq-answer {
    padding: 0 25px 22px 72px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* General FAQ Section for About Page */
.about-faq-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-faq-section::before {
    content: '?';
    position: absolute;
    font-size: 400px;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.about-faq-section .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.about-faq-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-faq-section .section-title p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
}

.about-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-faq-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.about-faq-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-faq-card h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-faq-card h4::before {
    content: 'Q';
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.about-faq-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    padding-left: 40px;
}

/* FAQ Responsive */
@media (max-width: 991px) {
    .about-faq-grid {
        grid-template-columns: 1fr;
    }

    .post-type-archive-faq .sidebar .widget,
    .tax-faq_cat .sidebar .widget {
        position: static;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .post-type-archive-faq .page-title h1,
    .tax-faq_cat .page-title h1 {
        font-size: 28px !important;
    }

    .post-type-archive-faq .toggle > label,
    .tax-faq_cat .toggle > label {
        padding: 20px;
        font-size: 15px;
    }

    .post-type-archive-faq .toggle > label::before,
    .tax-faq_cat .toggle > label::before {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-right: 12px;
    }

    .post-type-archive-faq .toggle > p,
    .tax-faq_cat .toggle > p {
        padding: 20px 20px 25px 62px;
        font-size: 14px;
    }

    .post-type-archive-faq .toggle > p::before,
    .tax-faq_cat .toggle > p::before {
        left: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .about-faq-card {
        padding: 25px;
    }

    .about-faq-section {
        padding: 60px 0;
    }
}

/* Service Page FAQ Section Enhancement */
.sp-faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.sp-faq-header {
    margin-bottom: 50px;
}

.sp-faq-header .sp-section-label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-faq-intro {
    color: #666;
    font-size: 18px;
    margin-top: 15px;
}

.sp-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.sp-faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.sp-faq-item:hover,
.sp-faq-item.active {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    border-left-color: #667eea;
}

.sp-faq-question {
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sp-faq-question:hover {
    background: #f8f9ff;
}

.sp-faq-question span:first-child {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sp-faq-question span:first-child::before {
    content: 'Q';
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.sp-faq-toggle {
    width: 36px;
    height: 36px;
    background: #f0f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #667eea;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sp-faq-item.active .sp-faq-toggle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.sp-faq-answer {
    padding: 0 25px 25px 72px;
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    position: relative;
}

.sp-faq-answer::before {
    content: 'A';
    position: absolute;
    left: 25px;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.sp-faq-view-all {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sp-faq-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: #fff;
}

/* Home Page FAQ Section */
.home-faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 50%, #f0e6ff 100%);
    position: relative;
    overflow: hidden;
}

.home-faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.home-faq-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.home-faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.home-faq-label {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.home-faq-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.home-faq-header p {
    font-size: 18px;
    color: #666;
}

.home-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.home-faq-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.home-faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.home-faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.home-faq-card:hover::before {
    transform: scaleX(1);
}

.home-faq-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

.home-faq-pricing .home-faq-icon {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #fff;
}

.home-faq-start .home-faq-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.home-faq-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
}

.home-faq-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.home-faq-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.home-faq-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.home-faq-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.home-faq-btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.home-faq-btn-secondary:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    color: #764ba2;
}

@media (max-width: 991px) {
    .home-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-faq-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .home-faq-section {
        padding: 60px 0;
    }

    .home-faq-grid {
        grid-template-columns: 1fr;
    }

    .home-faq-header h2 {
        font-size: 26px;
    }

    .home-faq-cta {
        flex-direction: column;
        align-items: center;
    }

    .home-faq-btn,
    .home-faq-btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/*************** NON-CLICKABLE MENU PARENT STYLES ***************/

/* Our Services - Non-clickable parent menu item */
.non-clickable-parent > a {
    cursor: default !important;
    pointer-events: none;
}

.non-clickable-parent {
    position: relative;
}

/* Allow hover on the parent li to show dropdown */
.non-clickable-parent:hover > .sub-menu,
.non-clickable-parent:hover > ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Enable pointer events on the entire li for hover to work */
.non-clickable-parent {
    pointer-events: auto;
}

/* Style the dropdown items to open in new tab - visual indicator */
.non-clickable-parent .sub-menu a::after,
.non-clickable-parent ul a::after {
    content: " ↗";
    font-size: 10px;
    opacity: 0.6;
    margin-left: 5px;
}

/* Make dropdown items clickable */
.non-clickable-parent .sub-menu a,
.non-clickable-parent ul a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/*************** BRAND & HOMEPAGE REFRESH ***************/

:root {
    --tc-navy: #003366;
    --tc-teal: #4eaaaf;
}

/* Header & nav */
.header-main,
.header-builder .elementor-section,
.custom-header-main,
.header-wrapper .elementor-section {
    background-color: var(--tc-navy) !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    min-height: 64px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-main .elementor-container,
.custom-header-main .elementor-container {
    max-width: 100% !important;
    padding: 0 32px !important;
    align-items: center !important;
}

#header .main-menu > li,
.header-builder .main-menu > li {
    margin: 0 6px !important;
}

.header-main .main-menu > li > a,
.header-builder .main-menu > li > a,
.porto-header-menu a,
.main-menu-wrap .main-menu > li > a {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    padding: 10px 18px !important;
    letter-spacing: 0.2px !important;
}

.header-main .main-menu > li > a:hover,
.header-builder .main-menu > li > a:hover,
.porto-header-menu a:hover,
.main-menu-wrap .main-menu > li:hover > a,
.main-menu > li.active > a,
.main-menu > li.current-menu-item > a {
    color: var(--tc-teal) !important;
}

.main-menu > li.current-menu-item > a,
.main-menu > li.current_page_item > a {
    color: var(--tc-teal) !important;
}

/* Contact button */
.header-main .porto-btn,
.header-builder .porto-btn,
.custom-btn-style-1 {
    background-color: var(--tc-teal) !important;
    color: #ffffff !important;
    border: 2px solid var(--tc-teal) !important;
    border-radius: 4px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
}

.header-main .porto-btn:hover,
.header-builder .porto-btn:hover {
    background-color: transparent !important;
    color: var(--tc-teal) !important;
}

/* Hide search icon */
.porto-header-search,
.header-builder .porto-search-form,
.porto_hb_search_form,
[data-widget_type="porto_hb_search_form.default"],
.search-toggle,
.searchform-popup,
.porto-search-popup,
.elementor-widget-porto_hb_search_form {
    display: none !important;
}

/* Home: alternating light/dark hero bands */
.elementor-page-9 .elementor-element-3910226 {
    background-color: var(--tc-navy) !important;
}

.elementor-page-9 .elementor-element-3910226 .porto-u-main-heading *,
.elementor-page-9 .elementor-element-3910226 h1,
.elementor-page-9 .elementor-element-3910226 h2,
.elementor-page-9 .elementor-element-3910226 h3,
.elementor-page-9 .elementor-element-3910226 h4 {
    color: var(--tc-teal) !important;
}

.elementor-page-9 .elementor-element-3910226 p,
.elementor-page-9 .elementor-element-3910226 .porto-u-sub-heading,
.elementor-page-9 .elementor-element-3910226 .porto-u-sub-heading * {
    color: #ffffff !important;
}

/* Logo carousel cleanup */
.elementor-page-9 .elementor-element-c0040a6 {
    background-color: var(--tc-navy) !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    box-shadow: none !important;
    border: none !important;
    background-image: none !important;
}

.elementor-page-9 .elementor-element-c0040a6 .elementor-shape {
    display: none !important;
}

.elementor-page-9 .elementor-element-c0040a6 .elementor-background-overlay {
    display: none !important;
}

.elementor-page-9 .elementor-element-c0040a6 svg,
.elementor-page-9 .elementor-element-c0040a6 polygon {
    display: none !important;
    fill: var(--tc-navy) !important;
}

.elementor-page-9 .elementor-element-c0040a6 .elementor-container {
    background: var(--tc-navy) !important;
}

.elementor-page-9 .elementor-element-c0040a6 .porto-carousel .owl-stage-outer {
    padding: 12px 0;
}

.elementor-page-9 .elementor-element-c0040a6 .porto-carousel .owl-item img {
    max-width: 140px !important;
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

.elementor-page-9 .elementor-element-c0040a6 .porto-carousel .owl-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
}

.elementor-page-9 .elementor-element-c0040a6 .porto-carousel {
    background: var(--tc-navy) !important;
}

.elementor-page-9 .elementor-element-c0040a6 .porto-carousel .owl-dots,
.elementor-page-9 .elementor-element-c0040a6 .porto-carousel .owl-nav {
    display: none !important;
}

/* Transforming section: green headline, dark text */
.elementor-page-9 .elementor-element-5a6f5be h3 {
    color: var(--tc-teal) !important;
}

.elementor-page-9 .elementor-element-5a6f5be .porto-u-sub-heading,
.elementor-page-9 .elementor-element-5a6f5be .porto-u-sub-heading * {
    color: #000000 !important;
}

/* Split band: half teal, half navy */
.elementor-page-9 .elementor-element-7514ea0 {
    background: linear-gradient(90deg, var(--tc-teal) 0 50%, var(--tc-navy) 50% 100%) !important;
    color: #ffffff !important;
}

.elementor-page-9 .elementor-element-7514ea0 .elementor-shape,
.elementor-page-9 .elementor-element-7514ea0 .elementor-background-overlay,
.elementor-page-9 .elementor-element-7514ea0 .elementor-column.elementor-element-034dfdd {
    display: none !important;
}

.elementor-page-9 .elementor-element-0f34d18 h3,
.elementor-page-9 .elementor-element-0f34d18 h2 {
    color: var(--tc-teal) !important;
}

.elementor-page-9 .elementor-element-7514ea0 .porto-u-sub-heading,
.elementor-page-9 .elementor-element-7514ea0 .porto-u-sub-heading *,
.elementor-page-9 .elementor-element-7514ea0 p {
    color: #ffffff !important;
}

.elementor-page-9 .elementor-element-7514ea0 .porto-icon,
.elementor-page-9 .elementor-element-7514ea0 i {
    color: var(--tc-teal) !important;
}

/* Force old green (#00b2a9) inline styles to new teal */
.elementor-page-9 [style*="#00b2a9"] {
    color: var(--tc-teal) !important;
}
