/* ============================================
   SOLUTIONS PAGE STYLES - PROFESSIONAL, CLEAN & SMOOTH
   ============================================ */

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SOLUTIONS INDEX PAGE STYLES
   ============================================ */

/* Main Background */
.solutions-main-bg {
    background: linear-gradient(135deg, #f2f7fc 0%, #e3edfa 100%);
    min-height: 100vh;
    padding-top: 120px; /* Account for fixed header (40px mini-header + 80px navbar) */
    padding-bottom: 3rem;
    position: relative;
}

/* Hero Section */
.solutions-hero-bg {
    min-height: 400px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-radius: 0 0 3rem 3rem;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.2);
    display: flex;
    align-items: center;
    margin-top: -120px;
    margin-bottom: 0;
    padding-top: 120px;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.solutions-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.solutions-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out;
}

.solutions-hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 0;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.solutions-container {
    margin-top: -60px;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.solutions-listing {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.12);
    padding: 3.5rem 3rem 3rem 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
    border: 1.5px solid rgba(23, 96, 187, 0.1);
}

/* Solution Card */
.solution-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(23, 96, 187, 0.1);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1.5px solid #e3edfa;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.2);
    transform: translateY(-8px);
    border-color: #1760bb;
}

.solution-card:nth-child(1) {
    animation-delay: 0.1s;
}

.solution-card:nth-child(2) {
    animation-delay: 0.2s;
}

.solution-card:nth-child(3) {
    animation-delay: 0.3s;
}

.solution-card:nth-child(4) {
    animation-delay: 0.4s;
}

.solution-card:nth-child(5) {
    animation-delay: 0.5s;
}

.solution-card:nth-child(6) {
    animation-delay: 0.6s;
}

.solution-icon {
    font-size: 3.5rem;
    color: #1760bb;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    background: rgba(23, 96, 187, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.15);
}

.solution-card:hover .solution-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(23, 96, 187, 0.3);
}

.solution-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.solution-desc {
    color: #6c757d;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex: 1 1 auto;
    line-height: 1.7;
}

.solution-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #fff !important;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    border: none;
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
    width: 100%;
    margin-top: auto;
}

.solution-card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.solution-card-btn:hover::before {
    width: 300px;
    height: 300px;
}

.solution-card-btn:hover,
.solution-card-btn:focus:not(:focus-visible) {
    background: linear-gradient(135deg, #10509e 0%, #1760bb 100%);
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(23, 96, 187, 0.4);
    transform: translateY(-2px);
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
}

.solution-card-btn:focus-visible {
    outline: 2px solid #1760bb;
    outline-offset: 2px;
    border-radius: 4px;
}

.solution-card-btn i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.solution-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #fff !important;
    font-weight: 700;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    border: none;
    margin-top: 1.5rem;
    box-shadow: 0 6px 25px rgba(23, 96, 187, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

.solution-contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.solution-contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.solution-contact-btn:hover,
.solution-contact-btn:focus:not(:focus-visible) {
    background: linear-gradient(135deg, #10509e 0%, #1760bb 100%);
    color: #fff !important;
    box-shadow: 0 10px 35px rgba(23, 96, 187, 0.4);
    transform: translateY(-3px);
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
}

.solution-contact-btn:focus-visible {
    outline: 2px solid #1760bb;
    outline-offset: 2px;
    border-radius: 4px;
}

.solution-contact-btn i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   SOLUTION DETAIL PAGES STYLES
   ============================================ */

/* Main Background */
.solution-main-bg {
    background: linear-gradient(135deg, #f2f7fc 0%, #e3edfa 100%);
    min-height: 100vh;
    padding-top: 120px; /* Account for fixed header (40px mini-header + 80px navbar) */
    padding-bottom: 3rem;
    position: relative;
}

.solution-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.solution-hero {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.2);
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.solution-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.solution-hero-icon {
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    width: 140px;
    height: 140px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
}

.solution-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.solution-hero-desc {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Content Section */
.solution-content {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.12);
    padding: 3.5rem 3rem;
    margin-bottom: 3rem;
    border: 1.5px solid rgba(23, 96, 187, 0.1);
}

.solution-section {
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.6s ease-out both;
}

.solution-section:nth-child(1) {
    animation-delay: 0.1s;
}

.solution-section:nth-child(2) {
    animation-delay: 0.2s;
}

.solution-section:nth-child(3) {
    animation-delay: 0.3s;
}

.solution-section:nth-child(4) {
    animation-delay: 0.4s;
}

.solution-section:nth-child(5) {
    animation-delay: 0.5s;
}

.solution-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 32px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-radius: 2px;
}

.section-title i {
    color: #1760bb;
    font-size: 1.8rem;
}

.section-content {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    border: 1.5px solid #e3edfa;
    box-shadow: 0 8px 30px rgba(23, 96, 187, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.2);
    border-color: #1760bb;
}

.feature-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    display: inline-block;
    background: #1760bb;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.05) 0%, rgba(16, 80, 158, 0.03) 100%);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    border: 1.5px solid rgba(23, 96, 187, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.1) 0%, rgba(16, 80, 158, 0.08) 100%);
    transform: translateX(5px);
    border-color: rgba(23, 96, 187, 0.2);
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.1);
}

.benefit-item i {
    font-size: 1.75rem;
    color: #1760bb;
    flex-shrink: 0;
}

.benefit-item span {
    color: #495057;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.05) 0%, rgba(16, 80, 158, 0.03) 100%);
    border-radius: 16px;
    padding: 2rem 2rem;
    border: 1.5px solid rgba(23, 96, 187, 0.1);
    box-shadow: 0 8px 30px rgba(23, 96, 187, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
    border-radius: 0 4px 4px 0;
}

.process-step:hover::before {
    transform: scaleY(1);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(23, 96, 187, 0.15);
    border-color: rgba(23, 96, 187, 0.2);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1760bb;
    background: rgba(23, 96, 187, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.15);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #fff;
    transform: scale(1.1);
}

.step-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1.5px solid #e3edfa;
    box-shadow: 0 8px 30px rgba(23, 96, 187, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid #1760bb;
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(23, 96, 187, 0.2);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #fff;
    padding: 5px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.3);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.2);
    border-color: #1760bb;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1760bb;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #495057;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: #1760bb;
    font-size: 1.1rem;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #fff !important;
    font-weight: 700;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 6px 25px rgba(23, 96, 187, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    width: 100%;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pricing-btn:hover::before {
    width: 300px;
    height: 300px;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #10509e 0%, #1760bb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(23, 96, 187, 0.4);
    text-decoration: none !important;
}

/* CTA Section */
.solution-cta-section {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.2);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.solution-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.solution-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.solution-cta-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.solution-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.solution-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1760bb !important;
    font-weight: 700;
    border-radius: 12px;
    padding: 1.25rem 2.75rem;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.solution-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(23, 96, 187, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.solution-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.solution-cta-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
}

.solution-cta-btn.secondary {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.solution-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.solution-cta-btn i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   SOLUTION DETAIL PAGE STYLES
   ============================================ */

.solution-detail-main-bg {
    background: linear-gradient(135deg, #f2f7fc 0%, #e3edfa 100%);
    min-height: 100vh;
    padding-top: 120px !important; /* Account for fixed header (40px mini-header + 80px navbar) */
    padding-bottom: 3rem;
    position: relative;
    margin-top: 0 !important; /* Ensure no negative margin */
}

.solution-detail-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-top: 0; /* Ensure no negative spacing */
}

.solution-detail-hero {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.2);
    padding: 4rem 3rem;
    margin-top: 0; /* Ensure no negative margin */
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.solution-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.solution-detail-hero-icon {
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    width: 140px;
    height: 140px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
}

.solution-detail-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.solution-detail-hero-desc {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.solution-detail-content {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.12);
    padding: 3.5rem 3rem;
    margin-bottom: 3rem;
    border: 1.5px solid rgba(23, 96, 187, 0.1);
}

.solution-detail-section {
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.6s ease-out both;
}

.solution-detail-section:nth-child(1) {
    animation-delay: 0.1s;
}

.solution-detail-section:nth-child(2) {
    animation-delay: 0.2s;
}

.solution-detail-section:nth-child(3) {
    animation-delay: 0.3s;
}

.solution-detail-section:nth-child(4) {
    animation-delay: 0.4s;
}

.solution-detail-section:nth-child(5) {
    animation-delay: 0.5s;
}

.solution-detail-section:last-child {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .solutions-main-bg,
    .solution-main-bg,
    .solution-detail-main-bg {
        padding-top: 110px !important; /* Slightly less on tablets */
    }
    
    .solutions-hero-bg {
        margin-top: -110px; /* Offset the wrapper padding */
        padding-top: 110px; /* Account for fixed header on tablets */
    }
    
    .solutions-hero-title {
        font-size: 2.5rem;
    }
    .solutions-hero-desc {
        font-size: 1.1rem;
    }
    .solutions-listing {
        padding: 2.5rem 2rem;
    }
    .solutions-container {
        margin-top: -50px;
    }
    .solution-card {
        min-height: 360px;
        padding: 2rem 1.75rem;
    }
    .solution-icon {
        font-size: 3rem;
        width: 90px;
        height: 90px;
    }
    .solution-hero {
        padding: 3rem 2rem;
    }
    .solution-hero-title {
        font-size: 2.5rem;
    }
    .solution-content {
        padding: 2.5rem 2rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .benefits-list {
        grid-template-columns: 1fr;
    }
    .solution-detail-hero {
        padding: 3rem 2rem;
    }
    .solution-detail-hero-title {
        font-size: 2.5rem;
    }
    .solution-detail-content {
        padding: 2.5rem 2rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .solutions-main-bg,
    .solution-main-bg,
    .solution-detail-main-bg {
        padding-top: 120px !important; /* Account for mobile header (auto mini-header ~50px + 80px navbar) */
    }
    
    .solutions-hero-bg {
        margin-top: -100px; /* Offset the wrapper padding */
        padding-top: 100px; /* Account for fixed header on mobile */
        padding-bottom: 2.5rem;
        min-height: 300px;
        border-radius: 0 0 2rem 2rem;
    }
    .solutions-hero-title {
        font-size: 2rem;
    }
    .solutions-hero-desc {
        font-size: 1rem;
    }
    .solutions-container {
        margin-top: -40px;
        padding: 0 0.75rem;
    }
    .solutions-listing {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .solution-card {
        min-height: 340px;
        padding: 2rem 1.5rem;
    }
    .solution-title {
        font-size: 1.25rem;
    }
    .solution-desc {
        font-size: 1rem;
    }
    .solution-hero {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    .solution-hero-icon {
        font-size: 3.5rem;
        width: 120px;
        height: 120px;
    }
    .solution-hero-title {
        font-size: 2rem;
    }
    .solution-hero-desc {
        font-size: 1.15rem;
    }
    .solution-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    .step-number {
        margin: 0 auto;
    }
    .solution-cta-section {
        padding: 3rem 2rem;
        border-radius: 20px;
    }
    .solution-cta-title {
        font-size: 2rem;
    }
    .solution-cta-buttons {
        flex-direction: column;
    }
    .solution-cta-btn {
        width: 100%;
    }
    .solution-detail-hero {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    .solution-detail-hero-icon {
        font-size: 3.5rem;
        width: 120px;
        height: 120px;
    }
    .solution-detail-hero-title {
        font-size: 2rem;
    }
    .solution-detail-hero-desc {
        font-size: 1.15rem;
    }
    .solution-detail-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .solution-card {
        min-height: 320px;
        padding: 1.75rem 1.5rem;
    }
    .solution-icon {
        font-size: 2.5rem;
        width: 80px;
        height: 80px;
    }
    .solution-title {
        font-size: 1.15rem;
    }
    .solution-desc {
        font-size: 0.95rem;
    }
    .solution-card-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    .solution-contact-btn {
        padding: 0.875rem 2rem;
        font-size: 1.05rem;
        width: 100%;
    }
    .solution-hero {
        padding: 2rem 1.25rem;
    }
    .solution-hero-title {
        font-size: 1.75rem;
    }
    .solution-content {
        padding: 1.5rem 1.25rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .feature-item {
        padding: 1.5rem 1.25rem;
    }
    .process-step {
        padding: 1.5rem 1.25rem;
    }
    .solution-detail-hero {
        padding: 2rem 1.25rem;
    }
    .solution-detail-hero-title {
        font-size: 1.75rem;
    }
    .solution-detail-content {
        padding: 1.5rem 1.25rem;
    }
}

/* ============================================
   CSS OPTIMIZATION COMPLETE
   - Fixed focus outline issues (removed unwanted borders on click)
   - Added focus-visible for keyboard navigation accessibility
   - Optimized animations and transitions
   - Professional, clean & smooth design maintained
   ============================================ */

