/* Solutions Page Styles */

.solution-hero-section {
    padding: 24px 24px 60px 24px; /* Padding matches navbar indentation */
}

.solution-hero-container {
    background: radial-gradient(circle at bottom left, #d3734a 0%, #442a2d 30%, #0b1328 65%, #0b1328 100%);
    border-radius: 24px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.solution-hero-content {
    flex: 1;
    max-width: 650px;
}





.solution-hero-title {
    color: white;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.solution-hero-title span {
    color: var(--primary-orange);
}

.solution-hero-desc {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 580px;
}

.solution-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.solution-hero-actions .hero-btn {
    padding: 16px 28px;
    font-size: 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
}

.solution-hero-actions .btn-outline {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.solution-hero-actions .btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.solution-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.solution-hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
}

/* Responsive */
@media (max-width: 1100px) {
    .solution-hero-container {
        padding: 50px;
    }
    .solution-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .solution-hero-container {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    
    .solution-hero-content {
        max-width: 100%;
    }
    
    
    
    .solution-hero-desc {
        margin: 0 auto 32px auto;
    }
    
    .solution-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .solution-hero-image {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .solution-hero-title {
        font-size: 36px;
    }
    .solution-hero-container {
        padding: 30px 20px;
    }
}

/* Solutions Cores Section */

.solutions-cores-section {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    margin-bottom: 60px;
}


.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title span {
    color: var(--primary-orange);
}

.section-desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 800px;
}

/* Top Grid */
.cores-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.core-card {
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    font-family: Georgia, serif;
}

.core-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.core-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tag {
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
}

.card-image {
    margin-top: auto;
    border-radius: 16px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Dark Card */
.dark-card {
    background-color: #0b1328;
    color: white;
}

.dark-card .card-number {
    color: rgba(242, 104, 34, 0.4); /* Faded orange */
}

.dark-card p {
    color: #cbd5e1;
}

.dark-card .tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Light Card */
.light-card {
    background-color: white;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
}

.light-card .card-number {
    color: rgba(242, 104, 34, 0.2);
}

.light-card p {
    color: var(--text-gray);
}

.light-card .tag {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
}

/* Middle Rows */
.cores-middle-rows {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.core-row-card {
    background-color: #f8fafc;
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.row-icon {
    width: 56px;
    height: 56px;
    background: rgba(242, 104, 34, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.row-content {
    flex: 1;
}

.row-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.row-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.row-number {
    font-size: 48px;
    font-weight: 900;
    color: #e2e8f0;
    font-family: Georgia, serif;
    flex-shrink: 0;
}

/* Bottom Grid */
.cores-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mini-card {
    background-color: #f8fafc;
    border-radius: 20px;
    padding: 32px 24px;
}

.mini-number {
    font-size: 36px;
    font-weight: 900;
    color: rgba(242, 104, 34, 0.2);
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.mini-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.mini-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .cores-top-grid {
        grid-template-columns: 1fr;
    }
    .cores-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .core-row-card {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }
    .row-number {
        position: absolute;
        top: 32px;
        right: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    .cores-bottom-grid {
        grid-template-columns: 1fr;
    }
    .core-card {
        padding: 32px 24px;
    }
}

/* Methodical Journey Section */
.methodical-journey-section {
  padding: 24px 24px 60px 24px;
    background-color: white;
}

.journey-container {
    background: #0d162a; /* Deep navy blue */
    background: radial-gradient(circle at top right, #1a2642 0%, #0d162a 40%, #090e1c 100%);
    border-radius: 32px;
    padding: 80px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.journey-header {
    margin-bottom: 60px;
}



.journey-title {
    color: white;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.journey-title span {
    color: var(--primary-orange);
}

.journey-desc {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    font-family: Georgia, serif;
    flex-shrink: 0;
    transition: all 0.3s ease;
    
    /* Inactive State by default */
    border: 2px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
}

.step-content {
    flex: 1;
    padding: 24px 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    
    /* Inactive State by default */
    background: transparent;
    border: 1px solid transparent;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    
    /* Inactive State by default */
    color: rgba(255, 255, 255, 0.3);
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s ease;
    margin: 0;
    
    /* Inactive State by default */
    color: rgba(255, 255, 255, 0.15);
}

/* Active State */
.journey-step.active .step-number {
    border-color: var(--primary-orange);
    color: white;
    box-shadow: 0 0 20px rgba(242, 104, 34, 0.2);
}

.journey-step.active .step-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-step.active .step-content h4 {
    color: white;
}

.journey-step.active .step-content p {
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 992px) {
    .journey-container {
        padding: 50px 30px;
    }
    .journey-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    .step-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .journey-title {
        font-size: 36px;
    }
}

/* Solution CTA Section */
.solution-cta-section {
    padding: 24px 24px 60px 24px;
}

.cta-container {
    /* Using a generic dark blend with an image. Replace the image name if there's a specific one for this! */
    background: linear-gradient(90deg, rgba(11, 19, 40, 0.7) 0%, rgba(11, 19, 40, 0.95) 50%, rgba(11, 19, 40, 1) 100%), url('../assets/Images/solution-cta.webp') no-repeat center left / cover;
    border-radius: 32px;
    padding: 120px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.cta-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}





.cta-title {
    color: white;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.cta-title span {
    color: var(--primary-orange);
}

.cta-desc {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-actions .hero-btn {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
}

.cta-actions .btn-outline {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-actions .btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive CTA */
@media (max-width: 992px) {
    .cta-container {
        padding: 80px 30px;
    }
    .cta-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 36px;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-actions .hero-btn,
    .cta-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
}
