/* Services page styles */
/* Services Pages Specific Styles */

/* Overview Section */
.service-overview {
    padding: 5rem 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.overview-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    font-weight: 500;
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.overview-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Types */
.service-types {
    padding: 5rem 0;
    background: var(--light-gray);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.type-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

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

.type-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.type-list {
    list-style: none;
    padding: 0;
}

.type-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.type-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Process Section */
.process {
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(79, 195, 247, 0.1);
    z-index: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

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

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Industries Section */
.industries {
    padding: 5rem 0;
    background: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-item i {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.industry-item h3 {
    font-size: 1.125rem;
    color: var(--dark-color);
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

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

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Detailed Services Section */
.detailed-services {
    padding: 5rem 0;
    background: var(--white);
}

.accordion-list {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--light-gray);
}

.accordion-header i:first-child {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.accordion-header h3 {
    flex: 1;
    font-size: 1.25rem;
    margin: 0;
    color: var(--dark-color);
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content ul {
    padding: 0 2rem 1.5rem 3.5rem;
    list-style: none;
}

.accordion-content li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

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

/* Why Important Section */
.why-important {
    padding: 5rem 0;
    background: var(--light-gray);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

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

.reason-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 968px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-features {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .overview-text h2 {
        font-size: 2rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}
/* Pricing Cards (Packages) */
.pricing-card .price-tag{
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.75rem 0 0.75rem;
    line-height: 1.4;
}
.pricing-card .price-note{
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}
.pricing-card.popular{
    border: 2px solid rgba(79,195,247,0.35);
    position: relative;
    overflow: hidden;
}
.pricing-card .popular-badge{
    position: absolute;
    top: 18px;
    right: -40px;
    transform: rotate(35deg);
    background: var(--gradient);
    color: var(--white);
    padding: 8px 48px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
}


/* Quick Navigation */
.quick-nav{
    padding: 4rem 0;
    background: var(--light-gray);
}

.quick-nav-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-nav-card{
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.qnav-title{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.qnav-title i{
    font-size: 1.25rem;
    color: var(--primary-color);
}

.qnav-title h3{
    margin: 0;
    font-size: 1.25rem;
    color: var(--dark-color);
}

.quick-links{
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.75rem 0 0.75rem;
}

.quick-link{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(79,195,247,0.08);
    border: 1px solid rgba(79,195,247,0.18);
    color: var(--dark-color);
    font-weight: 700;
    transition: all 0.2s ease;
}

.quick-link:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.qnav-note{
    margin: 0.5rem 0 0;
    color: var(--text-light);
    line-height: 1.6;
}

.quick-nav-bottom{
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.related-links{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.related-label{
    font-weight: 800;
    color: var(--dark-color);
}

.related-pill{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.08);
    background: var(--white);
    color: var(--text-light);
    font-weight: 700;
    transition: all 0.2s ease;
}

.related-pill i{
    color: var(--primary-color);
}

.related-pill:hover{
    color: var(--dark-color);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.qnav-cta{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 968px){
    .quick-nav-grid{
        grid-template-columns: 1fr;
    }
    .quick-nav-bottom{
        padding: 1.1rem;
    }
}

/* Pricing Page – Professional pricing model cards */
.compare-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.compare-item{
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 1.25rem 1.25rem 1.1rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.compare-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    opacity: 0.9;
}

.compare-item h4{
    margin: 0 0 0.6rem;
    font-size: 1.15rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.compare-item ul{
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-light);
    line-height: 1.75;
}

.compare-item li{
    margin: 0.55rem 0;
}

.pricing-note{
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 1.25rem 1.25rem 1.1rem;
    box-shadow: var(--shadow);
}

.pricing-note strong{
    display: inline-block;
    font-size: 1.05rem;
}

.mini-cta{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

/* Contact CTA (no form) */
.contact-cta .cta-card{
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    align-items: center;
}

.contact-cta .cta-left h3{
    margin: 0;
    color: var(--dark-color);
    font-size: 1.35rem;
}

.cta-bullets{
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    color: var(--text-light);
    line-height: 1.75;
}

.cta-bullets li{ margin: 0.55rem 0; }

.contact-cta .cta-right{
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-cta .cta-note{
    margin-top: 0.35rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.98rem;
}

@media (max-width: 968px){
    .compare-grid{
        grid-template-columns: 1fr;
    }
    .contact-cta .cta-card{
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}
/* About Page Specific Styles */

/* Page Header */
.page-header {
    padding: 150px 0 100px;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* About Content */
.about-content {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission & Vision */
.mission-vision {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mv-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
    color: var(--white);
}

.mv-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.mv-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Core Values */
.core-values {
    padding: 5rem 0;
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Strengths */
.strengths {
    padding: 5rem 0;
}

.strengths-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.strength-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.strength-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.strength-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.strength-text p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 968px) {
    .page-header {
        padding: 120px 0 80px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .strengths-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .strength-item {
        flex-direction: column;
        gap: 1rem;
    }

    .mv-item {
        flex-direction: column;
        gap: 1rem;
    }
}/* Contact Page Specific Styles */

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

/* Contact Info */
.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.info-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.info-content a {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-content a:hover {
    text-decoration: underline;
}

/* Social Section */
.social-section {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.social-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--dark-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .contact-info-section h2,
    .form-container h2 {
        font-size: 1.75rem;
    }

    .info-items {
        gap: 1.5rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .social-links-contact {
        flex-wrap: wrap;
    }
}

/* Netlify form honeypot */
.hidden { display: none !important; }

/* Blog / Knowledge pages */
.blog-article {
  max-width: 860px;
  margin: 0 auto;
}

.blog-article h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.9rem;
}

.blog-article h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.7rem;
}

.blog-article p, .blog-article li {
  line-height: 1.8;
}

.blog-meta {
  color: rgba(0,0,0,0.65);
  font-size: 0.95rem;
  margin-top: 0.6rem;
}

.blog-callout {
  background: rgba(79, 195, 247, 0.12);
  border: 1px solid rgba(79, 195, 247, 0.25);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  margin: 1.2rem 0;
}

.blog-toc {
  background: rgba(255, 107, 107, 0.10);
  border: 1px solid rgba(255, 107, 107, 0.20);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  margin: 1.2rem 0;
}

@media (max-width: 768px) {
  .blog-article { padding: 0 6px; }
}

/* ===== FIX: Step number conflict (services pages vs homepage) ===== */
.process .process-step .step-number {
    position: absolute !important;
    top: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 5rem !important;
    font-weight: 800 !important;
    color: rgba(79, 195, 247, 0.1) !important;
    z-index: 0 !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    animation: none !important;
    display: block !important;
}

/* ===== FIX: FAQ items on landing pages (flat structure) ===== */
.service-faq .faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.service-faq .faq-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px 28px;
    transition: all 0.3s ease;
}

.service-faq .faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(79, 195, 247, 0.1);
}

.service-faq .faq-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.service-faq .faq-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===== FIX: Blog article readability ===== */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-article h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 2.5rem 0 1rem;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(79, 195, 247, 0.2);
}

.blog-article h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.75rem;
}

.blog-article p,
.blog-article li {
    font-size: 1rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 1rem;
}

.blog-article ul,
.blog-article ol {
    padding-left: 24px;
    margin-bottom: 1.5rem;
}

.blog-article li {
    margin-bottom: 0.5rem;
}

.blog-article strong {
    color: var(--dark-color);
}

.blog-toc {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-bottom: 2rem;
}

.blog-toc h3,
.blog-toc strong {
    font-size: 1rem;
    margin-bottom: 8px;
}

.blog-toc ul {
    padding-left: 20px;
    margin: 0;
}

.blog-toc li {
    font-size: 0.9rem;
    margin-bottom: 4px;
    line-height: 1.6;
}

.blog-callout {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.08), rgba(255, 107, 107, 0.05));
    border-radius: 12px;
    padding: 24px 28px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

/* ===== FIX: About page - Why Choose section fallback =====  */
.why-choose-about .feature-card div[style*="overflow: hidden"] {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.08), rgba(255, 107, 107, 0.05));
}

.why-choose-about .feature-card img {
    min-height: 100%;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(255, 107, 107, 0.08));
}

/* About page strength items */
.strengths-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.strength-item {
    position: relative;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.strength-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.strength-text {
    position: relative;
    z-index: 1;
}

.strength-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.strength-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .service-faq .faq-item {
        padding: 18px 20px;
    }
    .blog-article h2 {
        font-size: 1.4rem;
    }
    .strength-number {
        font-size: 2.5rem;
    }
}

/* ===== FIX: Process Timeline (landing pages) ===== */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline .process-step {
    position: relative;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px 32px 28px 100px;
    min-height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.process-timeline .process-step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(79, 195, 247, 0.12);
    transform: translateX(4px);
}

.process-timeline .process-step .step-number {
    position: absolute !important;
    top: 50% !important;
    left: 28px !important;
    transform: translateY(-50%) translateX(0) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: var(--gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    opacity: 0.35 !important;
    z-index: 0 !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    animation: none !important;
    display: block !important;
}

.process-timeline .step-content {
    position: relative;
    z-index: 1;
}

.process-timeline .step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--dark-color);
}

.process-timeline .step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .process-timeline .process-step {
        padding: 24px 20px 24px 80px;
    }
    .process-timeline .process-step .step-number {
        left: 16px !important;
        font-size: 2rem !important;
    }
}

/* ===== FIX v6.3: CTA section background for landing pages ===== */
section.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%) !important;
    padding: 80px 0 !important;
    color: white !important;
    text-align: center;
}

section.cta-section h2 {
    color: white !important;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

section.cta-section p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.15rem;
    margin-bottom: 32px;
}

section.cta-section .btn-primary {
    background: var(--gradient) !important;
    color: white !important;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
}

section.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 195, 247, 0.4);
}

section.cta-section .btn-outline {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.6) !important;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

section.cta-section .btn-outline:hover {
    border-color: white !important;
    background: rgba(255,255,255,0.1) !important;
}

section.cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FIX v6.3: Nuclear fix for step-number on ALL service pages ===== */
/* Override everything from bundle-core.css animations */
section.process .step-number,
.process-steps > .process-step > .step-number,
.process-timeline > .process-step > .step-number {
    position: absolute !important;
    top: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 5rem !important;
    font-weight: 800 !important;
    color: rgba(79, 195, 247, 0.12) !important;
    -webkit-text-fill-color: rgba(79, 195, 247, 0.12) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    z-index: 0 !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    animation: none !important;
    display: block !important;
    line-height: 1 !important;
}

/* Process step containers need relative positioning */
section.process .process-step,
.process-steps > .process-step {
    position: relative;
}

/* Step icon stays above the number */
section.process .step-icon,
.process-steps > .process-step > .step-icon {
    position: relative;
    z-index: 1;
}

section.process .process-step h3,
.process-steps > .process-step > h3 {
    position: relative;
    z-index: 1;
}

section.process .process-step p,
.process-steps > .process-step > p {
    position: relative;
    z-index: 1;
}

/* ===== FIX v7.1: Blog article typography - STRONGER selectors ===== */
.overview-text .blog-article {
    max-width: 820px !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: #333 !important;
}

.overview-text .blog-article h2 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 2rem 0 0.8rem !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid rgba(79, 195, 247, 0.15) !important;
    line-height: 1.3 !important;
}

.overview-text .blog-article h3 {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin: 1.2rem 0 0.5rem !important;
    line-height: 1.4 !important;
}

.overview-text .blog-article p {
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
    color: #444 !important;
    margin-bottom: 0.8rem !important;
}

.overview-text .blog-article ul,
.overview-text .blog-article ol {
    padding-left: 20px !important;
    margin-bottom: 1.2rem !important;
}

.overview-text .blog-article li {
    font-size: 0.95rem !important;
    line-height: 1.75 !important;
    color: #444 !important;
    margin-bottom: 0.4rem !important;
}

.overview-text .blog-article strong {
    color: #1a1a1a !important;
    font-weight: 600 !important;
}

.overview-text .blog-article a {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
}

.overview-text .blog-article a:hover {
    color: var(--secondary-color) !important;
}

/* Blog TOC */
.overview-text .blog-toc {
    background: #f7f9fb !important;
    border-left: 4px solid var(--primary-color) !important;
    border-radius: 0 10px 10px 0 !important;
    padding: 18px 22px !important;
    margin-bottom: 2rem !important;
}

.overview-text .blog-toc strong {
    font-size: 0.95rem !important;
    display: block !important;
    margin-bottom: 8px !important;
}

.overview-text .blog-toc ul {
    margin: 0 !important;
    padding-left: 18px !important;
}

.overview-text .blog-toc li {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2px !important;
    color: #555 !important;
}

/* Blog callout */
.overview-text .blog-callout {
    background: linear-gradient(135deg, rgba(79,195,247,0.06), rgba(255,107,107,0.04)) !important;
    border-left: 4px solid var(--primary-color) !important;
    border-radius: 0 10px 10px 0 !important;
    padding: 18px 22px !important;
    margin: 1.5rem 0 !important;
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
}

/* Service CTA buttons at bottom of blog */
.overview-text .service-cta {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    padding-top: 16px !important;
    border-top: 1px solid #eee !important;
}

@media (max-width: 768px) {
    .overview-text .blog-article h2 { font-size: 1.3rem !important; }
    .overview-text .blog-article h3 { font-size: 1.05rem !important; }
    .overview-text .blog-article p,
    .overview-text .blog-article li { font-size: 0.9rem !important; }
}
