/* ==========================================================================
   SERVICE PAGE STYLES - SaaS Platform Development
   ========================================================================== */

/* Common Container */
.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.service-hero {
    background: linear-gradient(135deg, #0A1B4D 0%, #1a2d5f 100%);
    padding: 150px 40px 100px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.service-hero-blob-1 {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: #D4AF37;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    opacity: 0.05;
}

.service-hero-blob-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: #D4AF37;
    border-radius: 50%;
    opacity: 0.08;
}

.service-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-breadcrumb {
    color: #B8C5D6;
    font-size: 14px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-breadcrumb a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
    color: #F4C430;
}

.service-breadcrumb span {
    color: #8B98AD;
}

.service-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.service-hero-subtitle {
    font-size: 20px;
    color: #B8C5D6;
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-trust-line {
    color: #D4AF37;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SECTION 2: PROBLEMS
   ========================================================================== */
.service-problems {
    background: #F8F9FA;
    padding: 100px 40px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(10, 27, 77, 0.15);
    border-color: #D4AF37;
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    color: #0A1B4D;
    margin-bottom: 12px;
    font-weight: 700;
}

.problem-card p {
    font-size: 15px;
    color: #5A6C7D;
    line-height: 1.7;
}

.problems-closing {
    text-align: center;
    font-size: 20px;
    color: #0A1B4D;
    font-weight: 600;
    margin-top: 40px;
}

/* ==========================================================================
   SECTION 3: SOLUTIONS
   ========================================================================== */
.service-solutions {
    background: #0A1B4D;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.service-solutions-blob {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: #D4AF37;
    opacity: 0.05;
    border-radius: 50%;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
}

.solution-number {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    color: #0A1B4D;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-card ul li {
    color: #B8C5D6;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.solution-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* ==========================================================================
   SECTION 4: FEATURES
   ========================================================================== */
.service-features {
    background: #F8F9FA;
    padding: 100px 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.feature-check {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A1B4D;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 15px;
    color: #0A1B4D;
    font-weight: 500;
}

/* ==========================================================================
   SECTION 5: TECHNOLOGY STACK - BEAUTIFUL VERSION
   REPLACE ALL OLD .service-tech STYLES WITH THIS
   ========================================================================== */
.service-tech {
    background: #0A1B4D;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.service-tech-blob {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: #D4AF37;
    opacity: 0.05;
    border-radius: 50%;
}

/* Category Labels */
.tech-categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tech-category-label {
    color: #D4AF37;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
}

/* Main Grid - 4 columns for clean layout */
.tech-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

/* Individual Tech Item */
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-10px);
}

/* Logo Wrapper with Gradient Background */
.tech-logo-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-item:hover .tech-logo-wrapper::before {
    opacity: 1;
}

.tech-item:hover .tech-logo-wrapper {
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

/* Logo Images */
.tech-logo-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Tech Name */
.tech-name {
    color: #B8C5D6;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: color 0.3s ease;
}

.tech-item:hover .tech-name {
    color: #D4AF37;
}

/* Tech Note */
.tech-note {
    text-align: center;
    color: #B8C5D6;
    font-size: 17px;
    margin-top: 20px;
    font-style: italic;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .tech-mega-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .tech-logo-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .tech-logo-wrapper img {
        width: 55px;
        height: 55px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .tech-categories {
        gap: 15px;
    }
    
    .tech-category-label {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .tech-mega-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tech-logo-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }
    
    .tech-logo-wrapper img {
        width: 50px;
        height: 50px;
    }
    
    .tech-name {
        font-size: 13px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .tech-categories {
        display: none; /* Hide category labels on very small screens */
    }
    
    .tech-mega-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tech-logo-wrapper {
        width: 70px;
        height: 70px;
        border-radius: 12px;
    }
    
    .tech-logo-wrapper img {
        width: 45px;
        height: 45px;
    }
    
    .tech-name {
        font-size: 12px;
    }
    
    .tech-note {
        font-size: 15px;
    }
}

/* ==========================================================================
   SECTION 6: INDUSTRIES
   ========================================================================== */
.service-industries {
    background: #F8F9FA;
    padding: 100px 40px;
}

.industries-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.industry-simple-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.industry-simple-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(10, 27, 77, 0.15);
    border-color: #D4AF37;
}

.industry-simple-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.industry-simple-card h3 {
    font-size: 18px;
    color: #0A1B4D;
    font-weight: 700;
}

/* ==========================================================================
   SECTION 7: PROCESS
   ========================================================================== */
.service-process {
    background: #0A1B4D;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.service-process-blob {
    position: absolute;
    top: -80px;
    right: -120px;
    width: 450px;
    height: 450px;
    background: #D4AF37;
    opacity: 0.05;
    border-radius: 50%;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 35px 40px;
    border-radius: 16px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateX(10px);
}

.process-step-number {
    position: absolute;
    left: -15px;
    top: 35px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A1B4D;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.process-step h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
    padding-left: 50px;
}

.process-step p {
    color: #B8C5D6;
    font-size: 15px;
    line-height: 1.7;
    padding-left: 50px;
}

.process-note {
    text-align: center;
    color: #D4AF37;
    font-size: 18px;
    margin-top: 50px;
    font-weight: 600;
}

/* ==========================================================================
   SECTION 8: CASE STUDIES
   ========================================================================== */
.service-case-studies {
    background: #F8F9FA;
    padding: 100px 40px;
}

.case-studies-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.case-study-preview-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    border: 2px solid transparent;
}

.case-study-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(10, 27, 77, 0.15);
    border-color: #D4AF37;
}

.case-study-preview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 25px;
}

.case-study-preview-card h3 {
    font-size: 24px;
    color: #0A1B4D;
    margin-bottom: 15px;
    font-weight: 700;
}

.case-study-preview-card p {
    font-size: 15px;
    color: #5A6C7D;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-study-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.case-study-tech-tags span {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.case-study-cta {
    color: #D4AF37;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.case-study-preview-card:hover .case-study-cta {
    color: #0A1B4D;
    transform: translateX(5px);
}

.case-studies-view-all {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================================================
   SECTION 9: WHY CHOOSE US
   ========================================================================== */
.service-why-choose {
    background: #0A1B4D;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.service-why-blob {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: #D4AF37;
    opacity: 0.05;
    border-radius: 50%;
}

.why-choose-list {
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: start;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A1B4D;
    font-weight: bold;
    font-size: 28px;
    flex-shrink: 0;
}

.why-content h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-content p {
    font-size: 15px;
    color: #B8C5D6;
    line-height: 1.7;
}

/* ==========================================================================
   SECTION 10: FINAL CTA
   ========================================================================== */
.service-final-cta {
    background: #F8F9FA;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.service-cta-blob {
    position: absolute;
    top: -80px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #D4AF37;
    opacity: 0.08;
    border-radius: 50%;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #0A1B4D 0%, #1a2d5f 100%);
    padding: 80px 60px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(10, 27, 77, 0.3);
}

.final-cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 18px;
    color: #B8C5D6;
    margin-bottom: 40px;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-icon {
    font-size: 18px;
    margin-right: 8px;
}

.cta-trust-line {
    color: #D4AF37;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* ==========================================================================
   NEW SECTIONS - CONVERSION OPTIMIZATIONS
   Add these styles to your existing service-page-styles.css file
   ========================================================================== */

/* ==========================================================================
   MID-PAGE CTA (Optimization #3)
   ========================================================================== */
.service-mid-cta {
    background: #F8F9FA;
    padding: 80px 40px;
}

.mid-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.mid-cta-box h2 {
    font-size: 32px;
    color: #0A1B4D;
    margin-bottom: 15px;
    font-weight: 700;
}

.mid-cta-box > p {
    font-size: 17px;
    color: #2C3E50;
    margin-bottom: 30px;
    line-height: 1.6;
}

.mid-cta-box .btn-primary {
    background: #0A1B4D;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
}

.mid-cta-box .btn-primary:hover {
    background: #1a2d5f;
    transform: translateY(-2px);
}

.mid-cta-assurance {
    margin-top: 15px;
    font-size: 14px;
    color: #2C3E50;
    font-weight: 600;
    opacity: 0.9;
}

/* ==========================================================================
   CLIENT TESTIMONIAL (Optimization #1)
   ========================================================================== */
.service-testimonial {
    background: #F8F9FA;
    padding: 80px 40px;
}

.testimonial-box {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #D4AF37;
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 80px;
    color: #D4AF37;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-box blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial-box blockquote p {
    font-size: 19px;
    color: #2C3E50;
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 25px 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 17px;
    color: #0A1B4D;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 15px;
    color: #5A6C7D;
}

/* ==========================================================================
   FAQ SECTION (Optimization #2)
   ========================================================================== */
.service-faq {
    background: #F8F9FA;
    padding: 100px 40px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #E8EAF0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.faq-question {
    font-size: 18px;
    color: #0A1B4D;
    font-weight: 700;
    padding: 25px 30px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    color: #D4AF37;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 25px 30px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 16px;
    color: #5A6C7D;
    line-height: 1.8;
    margin: 0;
}

/* FAQ JavaScript Toggle - Add this at the end of the page */
/* This will be handled by JavaScript - see below */

/* ==========================================================================
   RESPONSIVE - NEW SECTIONS
   ========================================================================== */
@media (max-width: 768px) {
    .mid-cta-box {
        padding: 40px 30px;
    }

    .mid-cta-box h2 {
        font-size: 26px;
    }

    .mid-cta-box > p {
        font-size: 16px;
    }

    .testimonial-box {
        padding: 40px 30px;
    }

    .testimonial-box blockquote p {
        font-size: 17px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 25px;
    }

    .faq-answer {
        padding: 0 25px 20px 25px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .mid-cta-box {
        padding: 35px 25px;
    }

    .mid-cta-box h2 {
        font-size: 22px;
    }

    .testimonial-box {
        padding: 30px 20px;
    }

    .testimonial-quote-icon {
        font-size: 60px;
        left: 20px;
    }

    .testimonial-box blockquote p {
        font-size: 16px;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .service-container {
        padding: 0 20px;
    }

    .service-hero {
        padding: 120px 20px 80px;
    }

    .service-hero-title {
        font-size: 32px;
    }

    .service-hero-subtitle {
        font-size: 17px;
    }

    .service-hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    .problems-grid,
    .solutions-grid,
    .features-grid,
    .tech-stack-grid,
    .industries-simple-grid,
    .case-studies-preview-grid {
        grid-template-columns: 1fr;
    }

    .process-step-number {
        position: static;
        margin-bottom: 15px;
    }

    .process-step h3,
    .process-step p {
        padding-left: 0;
    }

    .final-cta-content {
        padding: 50px 30px;
    }

    .final-cta-content h2 {
        font-size: 28px;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* ==========================================================================
   TRUST MICROCOPY STYLES
   Add these styles to your service-page-styles.css
   ========================================================================== */

/* Base Trust Microcopy */
.trust-microcopy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 15px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.trust-item {
    color: #5A6C7D;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.trust-divider {
    color: #D4AF37;
    font-weight: bold;
    opacity: 0.5;
}

/* Trust Microcopy on Light Backgrounds (Hero, Final CTA on light sections) */
.trust-microcopy-light .trust-item {
    color: #B8C5D6;
}

.trust-microcopy-light .trust-divider {
    color: #D4AF37;
}

/* Trust Microcopy on Dark Backgrounds (Mid-CTA with gold background) */
.trust-microcopy-dark .trust-item {
    color: #2C3E50;
    font-weight: 600;
}

.trust-microcopy-dark .trust-divider {
    color: #0A1B4D;
}

/* Multi-row version for Final CTA */
.trust-microcopy-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 15px;
}

.trust-microcopy-light .trust-microcopy-row:first-child {
    margin-bottom: 8px;
}

/* Hero Section Trust Microcopy (after buttons) */
.service-hero .trust-microcopy {
    color: #B8C5D6;
}

.service-hero .trust-microcopy .trust-item {
    color: #B8C5D6;
}

/* Mid-CTA Trust Microcopy */
.mid-cta-box .trust-microcopy-dark {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(10, 27, 77, 0.2);
}

/* Final CTA Trust Microcopy */
.final-cta-content .trust-microcopy-light {
    margin-top: 25px;
}

/* Case Studies Trust Note (optional extra) */
.case-studies-trust-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.case-studies-trust-note p {
    margin: 0;
    color: #5A6C7D;
    font-size: 15px;
    line-height: 1.8;
}

.case-studies-trust-note strong {
    color: #0A1B4D;
    font-size: 17px;
    display: block;
    margin-bottom: 8px;
}

/* Hover Effect on Trust Items (subtle) */
.trust-item:hover {
    color: #D4AF37;
}

/* Checkmark styling */
.trust-item::before {
    content: attr(data-icon);
}

/* Alternative: Icon version (if you want colored checkmarks) */
.trust-microcopy.trust-with-icons .trust-item::before {
    content: '✔';
    color: #27ae60;
    margin-right: 5px;
    font-weight: bold;
}

/* ==========================================================================
   ADDITIONAL STYLES FOR AI USE CASES BY ROLE SECTION
   Add this to your existing service-page-styles.css file
   ========================================================================== */

/* ==========================================================================
   SECTION 6.5: AI USE CASES BY ROLE
   ========================================================================== */
.service-use-cases-by-role {
    background: #ffffff;
    padding: 100px 40px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #5A6C7D;
    margin-top: 15px;
    margin-bottom: 50px;
}

.role-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.role-use-case-card {
    background: #F8F9FA;
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid #E8EAF0;
    transition: all 0.4s ease;
}

.role-use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(10, 27, 77, 0.12);
    border-color: #D4AF37;
    background: #ffffff;
}

.role-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.role-use-case-card:hover .role-icon {
    transform: scale(1.1) rotate(5deg);
}

.role-use-case-card h3 {
    font-size: 20px;
    color: #0A1B4D;
    margin-bottom: 20px;
    font-weight: 700;
}

.role-examples {
    list-style: none;
    padding: 0;
    margin: 0;
}

.role-examples li {
    color: #5A6C7D;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.role-examples li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
    font-size: 16px;
}

.role-use-case-card:hover .role-examples li {
    color: #0A1B4D;
}

/* ==========================================================================
   RESPONSIVE - USE CASES BY ROLE
   ========================================================================== */

@media (max-width: 1024px) {
    .role-use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .service-use-cases-by-role {
        padding: 80px 20px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .role-use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .role-use-case-card {
        padding: 30px 25px;
    }
    
    .role-icon {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
    
    .role-use-case-card h3 {
        font-size: 18px;
    }
    
    .role-examples li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .role-use-case-card {
        padding: 25px 20px;
    }
    
    .role-icon {
        width: 55px;
        height: 55px;
        font-size: 28px;
        border-radius: 12px;
    }
    
    .role-use-case-card h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   RESPONSIVE - TRUST MICROCOPY
   ========================================================================== */

@media (max-width: 768px) {
    .trust-microcopy {
        font-size: 13px;
        gap: 6px 12px;
        margin-top: 15px;
    }
    
    .trust-item {
        font-size: 13px;
    }
    
    .trust-divider {
        display: none; /* Hide dots on mobile for cleaner look */
    }
    
    .trust-microcopy-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .case-studies-trust-note {
        padding: 20px;
    }
    
    .case-studies-trust-note p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .trust-microcopy {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .trust-item {
        font-size: 12px;
    }
}

/* ==========================================================================
   ADDITIONAL STYLES FOR BUSINESS WEBSITE DEVELOPMENT PAGE
   Add these to your existing service-page-styles.css
   ========================================================================== */

/* ==========================================================================
   SECTION 2: TARGET AUDIENCE / WHO THIS IS FOR
   ========================================================================== */
.service-target-audience {
    background: #ffffff;
    padding: 100px 40px;
}

.target-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.target-intro p {
    font-size: 18px;
    color: #5A6C7D;
    font-weight: 600;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.target-card {
    background: #F8F9FA;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #E8EAF0;
    transition: all 0.4s ease;
}

.target-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(10, 27, 77, 0.12);
    border-color: #D4AF37;
    background: #ffffff;
}

.target-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease;
}

.target-card:hover .target-icon {
    transform: scale(1.1) rotate(5deg);
}

.target-card h3 {
    font-size: 17px;
    color: #0A1B4D;
    font-weight: 600;
    line-height: 1.5;
}

.target-closing {
    text-align: center;
    font-size: 22px;
    color: #0A1B4D;
    font-weight: 700;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 196, 48, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid #D4AF37;
}

/* ==========================================================================
   RESPONSIVE - TARGET AUDIENCE SECTION
   ========================================================================== */

@media (max-width: 768px) {
    .service-target-audience {
        padding: 80px 20px;
    }
    
    .target-intro p {
        font-size: 16px;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .target-card {
        padding: 30px 25px;
    }
    
    .target-icon {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
    
    .target-card h3 {
        font-size: 16px;
    }
    
    .target-closing {
        font-size: 18px;
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .target-card {
        padding: 25px 20px;
    }
    
    .target-icon {
        width: 55px;
        height: 55px;
        font-size: 28px;
        border-radius: 12px;
    }
    
    .target-card h3 {
        font-size: 15px;
    }
    
    .target-closing {
        font-size: 17px;
        padding: 20px 15px;
    }
}