/* ========================================
   SOLUTION PAGE STYLES
   ======================================== */

/* Solution Hero Section - Matches Homepage */
.solution-hero {
    background: linear-gradient(180deg, var(--dark-blue) 0%, #2a3d52 100%);
    color: white;
    padding: 4rem 3rem;
    text-align: center;
    border-bottom: 3px solid var(--cyan);
    position: relative;
    overflow: hidden;
}

.solution-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--cyan);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
}

.solution-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--cyan);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Headline with Gradient */
.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.1;
}

.hero-headline .highlight {
    background: linear-gradient(135deg, var(--cyan) 0%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan) 0%, #00a8cc 100%);
    color: var(--dark-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--dark-blue);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

/* Problem Section */
.solution-problem {
    padding: 80px 0;
    background: var(--white);
}

.solution-problem .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.problem-content h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.problem-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-grey);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}

.problem-content em {
    color: var(--text-dark);
    font-style: italic;
}

.challenge-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.challenge-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--gray-100);
}

.challenge-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.challenge-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.challenge-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-grey);
    margin: 0;
}

/* Solution Overview Section */
.solution-overview {
    padding: 80px 0;
    background: var(--gray-50);
}

.solution-overview .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-overview h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-grey);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.solution-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.pillar {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
}

.pillar-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.pillar h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pillar p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-grey);
    margin: 0;
}

/* Benefits Section */
.solution-benefits {
    padding: 80px 0;
    background: var(--white);
}

.solution-benefits .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-benefits h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 16px;
}

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

.benefit-card {
    background: linear-gradient(135deg, #1a2a3a 0%, #0f1419 100%);
    border-radius: 12px;
    padding: 32px;
    color: var(--white);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--white);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.benefit-card strong {
    color: var(--cyan);
}

/* Services Section */
.solution-services {
    padding: 80px 0;
    background: var(--gray-50);
}

.solution-services .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-services h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.service-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
}

.service-duration {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

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

/* Team Section */
.solution-team {
    padding: 80px 0;
    background: var(--white);
}

.solution-team .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-team h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 16px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.4;
}

.team-credentials {
    text-align: center;
}

.team-credentials h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.credentials-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.credential {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1a2a3a 0%, #0f1419 100%);
    color: var(--white);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

/* CTA Section */
.solution-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2a3a 0%, #0f1419 100%);
    text-align: center;
}

.solution-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

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

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #f7fafc;
}

.contact-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}

.contact-details {
    background: linear-gradient(135deg, #1a2a3a 0%, #0f1419 100%);
    padding: 40px;
    border-radius: 12px;
    color: var(--white);
}

.contact-details h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-details > p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1rem;
    color: var(--white);
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--cyan);
    margin-top: 2px;
}

.contact-info-list li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-list li a:hover {
    color: var(--cyan);
}

.contact-info-list li address {
    font-style: normal;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #f7fafc;
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

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

.form-group-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-split .form-group {
    margin-bottom: 20px;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--cyan) 0%, #00a8cc 100%);
    color: var(--dark-blue);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.35);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .solution-hero {
        padding: 60px 0 80px;
    }
    
    .solution-hero h1,
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .problem-content h2,
    .solution-overview h2,
    .solution-benefits h2,
    .solution-services h2,
    .solution-team h2,
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .challenge-cards,
    .solution-pillars,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-details,
    .contact-form {
        padding: 32px;
    }
    
    .form-group-split {
        grid-template-columns: 1fr;
        gap: 0;
    }
}