/* Solutions Page Specific Styles */

/* ========================================
   Scroll Progress & Floating Elements
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.12;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-purple);
    top: 10%;
    left: -10%;
    animation: floatShape1 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    top: 50%;
    right: -5%;
    animation: floatShape2 25s ease-in-out infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-yellow);
    bottom: 10%;
    left: 30%;
    animation: floatShape3 18s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.1); }
    66% { transform: translate(50px, -30px) scale(0.95); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, -60px) scale(1.15); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.1); }
    75% { transform: translate(-40px, 30px) scale(0.9); }
}

/* ========================================
   Page Hero Section - Like Homepage
   ======================================== */
.page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 120px 0 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-yellow);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.page-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    font-size: 1.6rem;
}

.highlight-item strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-light {
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-purple);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* Hero Visual */
.page-hero-visual {
    position: relative;
    z-index: 2;
}

.page-hero-visual img,
.hero-illustration {
    width: 100%;
    max-width: 550px;
    height: auto;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--white);
    transform: translateY(5px);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Industry Navigation */
.industry-nav-section {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 70px;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.industry-nav-section.compact {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.industry-nav {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
    transition: all 0.3s ease;
}

.industry-nav-section.compact .industry-nav {
    padding: 8px 0;
    gap: 12px;
}

.industry-nav::-webkit-scrollbar {
    display: none;
}

.industry-nav-link {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.industry-nav-section.compact .industry-nav-link {
    padding: 7px 18px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
}

.industry-nav-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.industry-nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.5);
    animation: pulseGlow 2s ease-in-out infinite;
}

.industry-nav-section.compact .industry-nav-link:hover,
.industry-nav-section.compact .industry-nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.02);
    box-shadow: 0 3px 10px rgba(108, 99, 255, 0.4);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(108, 99, 255, 0.5);
    }
    50% {
        box-shadow: 0 6px 30px rgba(108, 99, 255, 0.7);
    }
}

/* Section Styling */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: white;
}

.solution-section.alt-bg {
    background: var(--bg-light);
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-illustration {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin: 40px auto 0;
    display: block;
    animation: floatIllustration 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@keyframes floatIllustration {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.solution-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.healthcare-icon {
    background: linear-gradient(135deg, #EF4444, #F87171);
}

.finance-icon {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.retail-icon {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.manufacturing-icon {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.logistics-icon {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
}

.education-icon {
    background: linear-gradient(135deg, #6366F1, #818CF8);
}

/* Solution Content */
.solution-content {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-overview {
    margin-bottom: 60px;
}

.solution-overview h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.solution-overview p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 15px;
}

/* Offerings Grid */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.offering-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.solution-section.alt-bg .offering-card {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(108, 99, 255, 0.1);
    border-color: var(--primary-color);
}

.offering-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.offering-card > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.offering-card ul {
    list-style: none;
    padding: 0;
}

.offering-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.offering-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Solution Stats */
.solution-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-violet) 100%);
    border-radius: 20px;
    padding: 50px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Cross-Industry Section */
.cross-industry {
    padding: 100px 0;
    background: #0F172A;
}

.cross-industry .section-header {
    text-align: center;
}

.cross-industry .section-badge {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.cross-industry .section-title {
    color: white;
}

.cross-industry .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.cross-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cross-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1E293B 0%, #1E1B4B 100%);
    border: 1px solid rgba(99, 102, 241, 0.4);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cross-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #2D3A52 0%, #312E81 100%);
    border-color: rgba(129, 140, 248, 0.6);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.cross-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

.cross-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.cross-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cross-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .page-hero-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .page-hero-content {
        order: 1;
    }
    
    .page-hero-visual {
        order: 2;
    }
    
    .hero-highlights {
        align-items: center;
    }
    
    .highlight-item {
        justify-content: flex-start;
        max-width: 400px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .page-hero-visual img,
    .hero-illustration {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .floating-shapes .shape {
        opacity: 0.08;
    }
    
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cross-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .floating-shapes {
        display: none;
    }
    
    .highlight-item {
        padding: 12px 15px;
    }
    
    .highlight-item strong {
        font-size: 0.9rem;
    }
    
    .highlight-item p {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-light,
    .btn-outline-light {
        text-align: center;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-stats {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px 30px;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .cross-industry-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-nav {
        padding: 10px 0;
    }
    
    .industry-nav-link {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .offering-card {
        padding: 25px 20px;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
    }
    
    .solution-icon svg {
        width: 28px;
        height: 28px;
    }
}
