/* Home Page Styles */

/* General Styles */
section {
    position: relative;
}

.subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0d6efd;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    color: #212529;
}

    .section-title::after {
        content: '';
        display: block;
        width: 70px;
        height: 4px;
        background: #0d6efd;
        margin: 15px auto 0;
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 30, 80, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%), none no-repeat center center;
    background-size: cover;
    padding: 3.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    background-color: rgba(13, 110, 253, 0.2);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-cta .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.hero-stats {
    margin-top: 3rem;
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* Trusted By Section */
.trusted-by-section {
    background-color: #fff;
    padding: 4rem 0;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

    .client-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }

    .client-logo img {
        max-height: 60px;
        max-width: 100%;
    }

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

    .service-icon i {
        font-size: 2rem;
        color: #0d6efd;
    }

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
}

.service-features {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .btn-link i {
        margin-left: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-link:hover {
        color: #0a58ca;
    }

        .btn-link:hover i {
            transform: translateX(5px);
        }

/* Background colors */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1);
}

.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.1);
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-secondary-soft {
    background-color: rgba(108, 117, 125, 0.1);
}

.bg-purple-soft {
    background-color: rgba(111, 66, 193, 0.1);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
}

.why-choose-image {
    position: relative;
}

.experience-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 2;
}

.experience-years {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #0d6efd;
}

    .experience-years .plus {
        font-size: 1.5rem;
        vertical-align: super;
    }

.experience-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: #6c757d;
}

.feature-box {
    position: absolute;
    top: 30px;
    right: -20px;
    z-index: 2;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.why-choose-items {
    margin-top: 2rem;
}

.why-choose-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 1.5rem;
}
/* Enhanced Process Section Styles */
.process-timeline-enhanced {
    padding: 30px 0;
}

.process-connector {
    position: absolute;
    top: 120px;
    left: 50%;
    width: 4px;
    height: calc(100% - 240px);
    background: linear-gradient(180deg, #0d6efd 0%, rgba(13, 110, 253, 0.3) 100%);
    transform: translateX(-50%);
    z-index: 0;
    border-radius: 4px;
}

.process-item-enhanced {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}

.process-step-enhanced {
    width: 80px;
    height: 80px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.1);
}

.process-step-inner {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.process-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.process-icon-container {
    margin-bottom: 15px;
    position: relative;
}

.process-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background-color: #0d6efd;
    color: white;
    transform: rotateY(180deg);
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
}

.process-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Animation for process cards */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
}

.process-card:hover {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .process-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-step-enhanced {
        width: 70px;
        height: 70px;
    }

    .process-step-inner {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .process-card {
        padding: 20px;
    }

    .process-item-enhanced {
        margin-bottom: 30px;
    }
}
/* Enhanced FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.faq-wrapper {
    margin-bottom: 2rem;
}

.faq-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230d6efd' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

/* Floating Badges */
.faq-badge {
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d6efd;
    z-index: 3;
    display: flex;
    align-items: center;
}

    .faq-badge i {
        margin-right: 8px;
    }

.faq-badge-1 {
    top: 30px;
    right: -10px;
}

.faq-badge-2 {
    bottom: 40px;
    left: -15px;
}

/* FAQ Container */
.faq-container {
    position: relative;
    z-index: 2;
}

/* FAQ Item Styling */
.faq-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .faq-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

.faq-button {
    position: relative;
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    border: none;
    background-color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
    color: #212529;
}

    .faq-button:not(.collapsed) {
        background-color: #0d6efd;
        color: white;
    }

.faq-question-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #0d6efd;
}

.faq-button:not(.collapsed) .faq-question-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.faq-question-text {
    flex-grow: 1;
    font-size: 1.1rem;
}

.faq-arrow {
    margin-left: 15px;
    transition: all 0.3s ease;
    color: #6c757d;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-button:not(.collapsed) .faq-arrow {
    transform: rotate(-180deg);
    color: white;
}

/* FAQ Answer Styling */
.faq-answer {
    padding: 1.5rem;
    background-color: white;
    color: #555;
}

.faq-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

    .faq-list li {
        padding: 0.5rem 0;
        display: flex;
        align-items: start;
    }

        .faq-list li i {
            margin-right: 10px;
            margin-top: 5px;
            font-size: 0.9rem;
        }

.faq-note {
    padding: 1rem;
    background-color: rgba(13, 110, 253, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: start;
    border-left: 4px solid #0d6efd;
}

    .faq-note i {
        margin-right: 10px;
        margin-top: 3px;
    }

.faq-highlight {
    padding: 1rem;
    background-color: rgba(25, 135, 84, 0.05);
    border-radius: 8px;
    font-weight: 600;
    border-left: 4px solid #198754;
    margin-top: 1rem;
}

/* FAQ Timeline Component */
.faq-timeline {
    position: relative;
    margin: 20px 0 30px;
    padding-left: 30px;
}

    .faq-timeline:before {
        content: '';
        position: absolute;
        left: 10px;
        top: 15px;
        height: calc(100% - 30px);
        width: 2px;
        background: linear-gradient(180deg, #0d6efd 0%, rgba(13, 110, 253, 0.3) 100%);
    }

.faq-timeline-item {
    position: relative;
    margin-bottom: 20px;
    display: flex;
}

.faq-timeline-icon {
    position: absolute;
    left: -30px;
    width: 20px;
    height: 20px;
    background-color: #0d6efd;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    z-index: 1;
}

.faq-timeline-content {
    padding-left: 15px;
}

    .faq-timeline-content h6 {
        margin-bottom: 0.3rem;
        font-weight: 600;
        color: #0d6efd;
    }

    .faq-timeline-content p {
        margin-bottom: 0;
        font-size: 0.9rem;
    }

/* FAQ Result Time Component */
.faq-result-time {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    text-align: center;
}

.faq-time {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
}

    .faq-time span {
        font-size: 1rem;
        font-weight: 500;
    }

.faq-time-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* FAQ Warranty Cards */
.faq-warranty-cards {
    margin: 1.5rem 0;
}

.faq-warranty-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

    .faq-warranty-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

.warranty-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.warranty-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.warranty-duration {
    color: #198754;
    font-size: 0.9rem;
}

/* FAQ Process Steps */
.faq-process {
    counter-reset: process-steps;
    position: relative;
    margin: 1.5rem 0;
}

.faq-process-step {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.step-content {
    padding-top: 2px;
}

    .step-content h6 {
        margin-bottom: 0.3rem;
        font-weight: 600;
    }

    .step-content p {
        margin-bottom: 0;
        font-size: 0.9rem;
    }

/* FAQ CTA */
.faq-cta {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-cta-text {
    font-weight: 500;
}

@media (max-width: 767px) {
    .faq-badge {
        display: none;
    }

    .faq-button {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-question-icon {
        margin-bottom: 10px;
    }

    .faq-arrow {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .faq-result-time {
        flex-direction: column;
    }

    .faq-result-time-item {
        margin-bottom: 15px;
    }

    .faq-cta {
        flex-direction: column;
    }

    .faq-cta-text {
        margin-bottom: 15px;
    }
}
.knowledge-card {
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    overflow: hidden;
}

    .knowledge-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
    }

.knowledge-image {
    position: relative;
    overflow: hidden;
}

    .knowledge-image img {
        transition: transform 0.5s ease;
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

.knowledge-card:hover .knowledge-image img {
    transform: scale(1.05);
}

.knowledge-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.knowledge-content {
    background: #fff;
    border-radius: 0 0 10px 10px;
}

    .knowledge-content h3 {
        font-weight: 700;
        line-height: 1.4;
    }

.knowledge-meta {
    font-size: 0.85rem;
    color: #777;
}

.btn-link.disabled {
    color: #aaa;
    pointer-events: none;
}

    .btn-link.disabled i {
        display: none;
    }

@media (max-width: 992px) {
    .knowledge-image img {
        height: 180px;
    }
}

/* Solannseo GEO & Search Everywhere Custom CSS Extensions */
.text-gradient-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
}

.bg-dark-soft {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #ffffff !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-gradient-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #0F172A !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-gold:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.border-top-primary {
    border-top: 4px solid #2563EB !important;
}

.border-top-gold {
    border-top: 4px solid #F59E0B !important;
}

.border-top-success {
    border-top: 4px solid #10B981 !important;
}

.border-top-info {
    border-top: 4px solid #0EA5E9 !important;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1) !important;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-900 {
    max-width: 900px;
}

.fs-7 {
    font-size: 0.875rem;
}

.fs-8 {
    font-size: 0.775rem;
}

.fw-extrabold {
    font-weight: 800;
}

.text-hero-sub {
    color: rgba(241, 245, 249, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

/* Fast Track High Contrast & Sharp Text */
.fast-track-container {
    background: rgba(15, 23, 42, 0.92) !important;
    border: 1px solid rgba(245, 158, 11, 0.35) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.fast-track-title {
    color: #F59E0B !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

.fast-track-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #FFFFFF !important;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-decoration: none;
    transition: all 0.25 ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.fast-track-chip i {
    font-size: 1rem;
}

.fast-track-chip:hover {
    background: #2563EB !important;
    border-color: #60A5FA !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.max-w-700 {
    max-width: 700px;
}

.placeholder-light::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.placeholder-light:focus {
    color: #ffffff;
    background: transparent !important;
    box-shadow: none !important;
}

/* Pain Points & Helper Soft Badges */
.pain-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.card:hover .pain-icon {
    transform: scale(1.1);
}

.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.12) !important;
}
.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.15) !important;
}
.bg-secondary-soft {
    background-color: rgba(108, 117, 125, 0.15) !important;
}
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.12) !important;
}
.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.12) !important;
}
.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.12) !important;
}

.border-top-danger {
    border-top: 4px solid #dc3545 !important;
}
.border-top-warning {
    border-top: 4px solid #ffc107 !important;
}
.border-top-secondary {
    border-top: 4px solid #6c757d !important;
}

.hover-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
}

/* Announcement Bar Static Styling */
.announcement-bar {
    background: linear-gradient(90deg, #1e1b4b 0%, #311b92 50%, #1e1b4b 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.announcement-link {
    transition: opacity 0.2s ease;
}
.announcement-link:hover {
    opacity: 0.9;
}

/* Purple & Color helper styles */
.text-purple {
    color: #8e44ad !important;
}
.text-cyan {
    color: #0891b2 !important;
}
.text-amber {
    color: #d97706 !important;
}
.border-purple {
    border-color: #8e44ad !important;
}
.bg-purple-soft {
    background-color: rgba(142, 68, 173, 0.12) !important;
}

/* ==========================================================================
   Standardized 5-Step Process Pipeline Section (V2)
   ========================================================================== */

.process-pipeline-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.process-pipeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 350px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Process Timeline Wrapper */
.process-pipeline-wrapper {
    position: relative;
    z-index: 1;
}

/* Card Styles */
.process-step-v2-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.25rem;
    padding: 1.75rem 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.process-step-v2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--step-accent, #0d6efd);
    opacity: 0.85;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.process-step-v2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(13, 110, 253, 0.12);
    border-color: rgba(13, 110, 253, 0.25);
}

.process-step-v2-card:hover::before {
    height: 6px;
    opacity: 1;
}

/* Step Color Variants */
.step-theme-blue {
    --step-accent: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%);
    --step-color: #0d6efd;
    --step-bg: rgba(13, 110, 253, 0.08);
}
.step-theme-cyan {
    --step-accent: linear-gradient(135deg, #0891b2 0%, #0284c7 100%);
    --step-color: #0891b2;
    --step-bg: rgba(8, 145, 178, 0.08);
}
.step-theme-emerald {
    --step-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --step-color: #059669;
    --step-bg: rgba(16, 185, 129, 0.08);
}
.step-theme-amber {
    --step-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --step-color: #d97706;
    --step-bg: rgba(245, 158, 11, 0.08);
}
.step-theme-purple {
    --step-accent: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    --step-color: #7c3aed;
    --step-bg: rgba(139, 92, 246, 0.08);
}

/* Step Header */
.step-header-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.step-num-pill {
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    background: var(--step-accent, #0d6efd);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.step-phase-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--step-color, #0d6efd);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Step Icon Box */
.step-icon-squircle {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--step-bg, rgba(13, 110, 253, 0.08));
    color: var(--step-color, #0d6efd);
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.process-step-v2-card:hover .step-icon-squircle {
    transform: scale(1.08) rotate(4deg);
    background: var(--step-accent, #0d6efd);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Card Typography */
.step-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 0.65rem;
}

.step-card-desc {
    font-size: 0.825rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* Deliverable Output Tags */
.step-deliverables-box {
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.deliverable-chip {
    font-size: 0.75rem;
    font-weight: 600;
    color: #334155;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}

.deliverable-chip i {
    color: var(--step-color, #0d6efd);
    font-size: 0.8rem;
}

.process-step-v2-card:hover .deliverable-chip {
    background: #ffffff;
    border-color: rgba(13, 110, 253, 0.2);
}

/* Conversion Summary Banner */
.process-summary-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0369a1 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
    position: relative;
    overflow: hidden;
}

.process-summary-banner::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Modern FAQ Accordion V2 */
.faq-accordion-v2 .accordion-item {
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 1rem !important;
    background: #ffffff;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
    overflow: hidden;
}

.faq-accordion-v2 .accordion-item:hover {
    border-color: rgba(13, 110, 253, 0.25) !important;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.06);
}

.faq-accordion-v2 .accordion-button {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    box-shadow: none !important;
    border-radius: 1rem !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-accordion-v2 .accordion-button:not(.collapsed) {
    background-color: #f8fafc;
    color: #0d6efd;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.faq-accordion-v2 .accordion-body {
    padding: 1.25rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #475569;
    background: #f8fafc;
}

.faq-tag-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    display: inline-block;
}


