/* Custom Overrides */
.ai-illustration-bubble {
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    top: -60px !important;
    width: max-content !important;
    background: #fff !important;
    border: 3px solid #0060ff !important;
    border-radius: 100px !important;
    box-shadow: 0 12px 30px rgba(0, 96, 255, 0.3) !important;
    padding: 18px 40px !important;
    font-size: 1.6rem !important;
    letter-spacing: 0.05em !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute !important;
}

.ai-illustration-container {
    overflow: visible !important;
    margin-top: 60px !important;
    position: relative !important;
}

/* Operator Image Adjustment */
.operator-img-container {
    width: 450px !important;
    height: auto !important;
    right: -80px !important;
    bottom: -80px !important;
}

/* Contact Section Rebalance & Simplification */
.contact-title {
    color: #fff !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

.contact-desc {
    color: #fff !important;
    margin-bottom: 30px !important;
    line-height: 1.8 !important;
}

.contact-content {
    justify-content: center !important;
    flex-direction: column !important;
    display: flex !important;
}

.contact-left {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    z-index: 10 !important;
    position: relative !important;
}

.contact-btn-area {
    justify-content: center !important;
    width: 100% !important;
    display: flex !important;
}

/* FAQ Fix */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 !important;
    /* Critical fix for whitespace */
    border: none !important;
    margin: 0 !important;
}

.faq-answer-content {
    padding: 20px 30px;
    /* Padding moved to inner content */
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* FAQ V2 Rebuild */
.faq-box-v2 {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-q-v2 {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    color: #333;
    position: relative;
    background: #fff;
    z-index: 2;
}

.faq-a-v2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f9f9f9;
    padding: 0 30px;
    opacity: 0;
}

.faq-box-v2.active .faq-a-v2 {
    padding: 20px 30px;
    opacity: 1;
    /* Max-height handled by JS */
}

.faq-icon-q-v2 {
    width: 30px;
    height: 30px;
    background: #0088ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-toggle-v2 {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-toggle-v2::before,
.faq-toggle-v2::after {
    content: '';
    position: absolute;
    background: #0088ff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-toggle-v2::before {
    width: 100%;
    height: 2px;
}

.faq-toggle-v2::after {
    width: 2px;
    height: 100%;
}

.faq-box-v2.active .faq-toggle-v2 {
    transform: rotate(45deg);
}

/* Force Min-Height Reset */
.faq-answer {
    min-height: 0 !important;
}

/* Extra FAQ Reset */
.faq-item {
    height: auto !important;
    min-height: 0 !important;
}

/* Trouble Images Resize */
.trouble-img img {
    height: 240px !important;
    width: auto !important;
    object-fit: contain !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
}

.trouble-img {
    height: 250px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

/* Pricing Basic Services Spacing */
.basic-services-grid {
    gap: 30px !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

/* CTA Section Bottom Padding (Global) */
.cta-section-blue {
    padding-bottom: 80px !important;
    margin-top: 60px !important;
}

/* Page Header - Clean Style (No Underline) */
.page-title-jp {
    position: relative;
    display: block;
}

.page-title-jp::after,
.page-title-jp::before {
    display: none !important;
    content: none !important;
}

/* Page Header Top Spacing */
.page-header {
    padding-top: 220px !important;
    padding-bottom: 100px !important;
}

/* Section Title Centering */
.section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
    padding-bottom: 20px !important;
}

.section-title::after {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    margin-top: 15px !important;
}

/* Also center text-center section-title combo */
.section-title.text-center::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 auto !important;
    bottom: 0 !important;
}