/* 
Purpose: Services page specific styles
Author: AI Assistant
Last Modified: 2025-01-08
*/

/* Services Hero Section */
.services-header {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.services-header .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #64748b;
}

.services-header .breadcrumbs a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-header .breadcrumbs a:hover {
    color: #6366f1;
}

.services-header .breadcrumbs .separator {
    margin: 0 0.5rem;
    color: #475569;
}

.services-header .header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.services-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(99, 102, 241, 0.15);
    color: #cbd5e1;
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 999px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.services-header .header-content .subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
}

.stat-item i { color: #8b5cf6; }

.services-header .button-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.services-header .btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.services-header .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.services-header .btn-secondary {
    background: transparent;
    color: #e2e8f0;
    padding: 0.875rem 2rem;
    border: 1px solid rgba(226, 232, 240, 0.2);
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.services-header .btn-secondary:hover {
    background: rgba(226, 232, 240, 0.1);
    border-color: rgba(226, 232, 240, 0.3);
}

/* Services Background Icons */
.services-header .bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    pointer-events: none;
    overflow: hidden;
}

.services-header .bg-icon {
    position: absolute;
    font-size: 2rem;
    color: #6366f1;
    animation: float 6s ease-in-out infinite;
}

.services-header .bg-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.services-header .bg-icon:nth-child(2) { top: 30%; right: 15%; animation-delay: 1s; }
.services-header .bg-icon:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.services-header .bg-icon:nth-child(4) { top: 70%; right: 25%; animation-delay: 3s; }
.services-header .bg-icon:nth-child(5) { top: 40%; left: 50%; animation-delay: 4s; }
.services-header .bg-icon:nth-child(6) { top: 80%; left: 60%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Grid Section */
.services-grid-section {
    padding: 5rem 0;
    background-color: #1e293b;
}

.services-grid-section h2 {
    color: #f1f5f9;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(51, 65, 85, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-card h3 {
    color: #f1f5f9;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.service-features li {
    color: #e2e8f0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-features li:before {
    content: "•";
    color: #6366f1;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-card .btn-service {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card .btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Reusable service button */
.btn-service {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-service:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(99,102,241,0.3); }

/* Section shared styles */
.section-subtitle {
    color: #94a3b8;
    text-align: center;
    max-width: 900px;
    margin: 0.75rem auto 2.5rem;
}

/* Tracks Section */
.tracks-section { background: #0f172a; padding: 5rem 0; }
.tracks-section h2 { color: #f1f5f9; font-size: 2.3rem; text-align: center; }
.tracks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.track-card { background: rgba(51,65,85,0.8); border: 1px solid rgba(143,79,240,0.3); border-radius: 1rem; padding: 1.5rem; color: #e2e8f0; backdrop-filter: blur(10px); }
.track-card h3 { color: #ffffff; margin-bottom: 0.5rem; }
.track-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg,#6366f1,#8b5cf6); display:flex; align-items:center; justify-content:center; color:#fff; margin-bottom:0.75rem; }
.track-actions { margin-top: 1rem; }

/* Playbooks */
.playbooks-section { background: #1e293b; padding: 5rem 0; }
.section-header { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:1.5rem; }
.section-header h2 { color:#f1f5f9; font-size:2rem; }
.playbooks-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap:1.5rem; }
.playbook-card { background: rgba(51,65,85,0.8); border: 1px solid rgba(143,79,240,0.3); border-radius: 1rem; padding: 1.25rem; color:#e2e8f0; }
.playbook-header { display:flex; align-items:center; gap:0.6rem; margin-bottom:0.75rem; }
.playbook-header i { color:#8b5cf6; }
.playbook-card ul { list-style:none; padding:0; margin:0 0 1rem; }
.playbook-card ul li { color:#cbd5e1; margin:0.4rem 0; position:relative; padding-left:1rem; }
.playbook-card ul li::before { content:'\f058'; font-family:'Font Awesome 6 Free'; font-weight:900; position:absolute; left:0; color:#8b5cf6; font-size:0.85rem; }

/* Packages */
.packages-section { background:#0f172a; padding:5rem 0; }
.packages-section h2 { color:#f1f5f9; text-align:center; font-size:2.2rem; }
.packages-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap:1.5rem; margin-top:2rem; }
.package-card { background: rgba(51,65,85,0.85); border:1px solid rgba(143,79,240,0.3); border-radius:1rem; padding:1.5rem; color:#e2e8f0; }
.package-card h3 { color:#fff; margin-bottom:0.5rem; }
.package-icon { width:44px; height:44px; border-radius:12px; background: linear-gradient(135deg,#6366f1,#8b5cf6); display:flex; align-items:center; justify-content:center; color:#fff; margin-bottom:0.5rem; }
.package-card ul { list-style:none; padding:0; margin:0 0 1rem; }
.package-card ul li { color:#cbd5e1; margin:0.35rem 0; position:relative; padding-left:1rem; }
.package-card ul li::before { content:'\f105'; font-family:'Font Awesome 6 Free'; font-weight:900; position:absolute; left:0; color:#8b5cf6; }

/* Technology split */
.tech-section { background:#1e293b; padding:5rem 0; }
.tech-section h2 { color:#f1f5f9; text-align:center; font-size:2.2rem; margin-bottom:1.5rem; }
.tech-grid { display:grid; grid-template-columns: 1.2fr 1fr; gap:2rem; align-items:start; }
.tech-tiles { display:grid; grid-template-columns: repeat(3,1fr); gap:1rem; background: rgba(15,23,42,0.6); border:1px solid rgba(143,79,240,0.3); padding:1rem; border-radius:1rem; }
.tile { background: rgba(51,65,85,0.8); border:1px solid rgba(143,79,240,0.25); border-radius:0.75rem; color:#e2e8f0; padding:1.25rem; text-align:center; }
.tech-details { background: rgba(15,23,42,0.6); border:1px solid rgba(143,79,240,0.3); border-radius:1rem; padding:1rem 1.25rem; }
.tech-list { list-style:none; padding:0; margin:0 0 1rem; }
.tech-list li { color:#e2e8f0; padding:0.75rem 0.75rem; background: rgba(51,65,85,0.6); border:1px solid rgba(143,79,240,0.25); border-radius:0.75rem; margin-bottom:0.75rem; }
.tech-footnote { color:#94a3b8; text-align:center; margin-top:1rem; font-size:0.9rem; }

/* Creative */
.creative-section { background:#0f172a; padding:5rem 0; }
.creative-section h2 { color:#f1f5f9; text-align:center; font-size:2.2rem; }
.creative-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap:1.5rem; margin-top:2rem; }
.creative-card { background: rgba(51,65,85,0.8); border:1px solid rgba(143,79,240,0.3); border-radius:1rem; padding:1.25rem; color:#e2e8f0; text-align:left; }
.creative-icon { width:44px; height:44px; border-radius:12px; background: linear-gradient(135deg,#6366f1,#8b5cf6); display:flex; align-items:center; justify-content:center; color:#fff; margin-bottom:0.5rem; }

/* Process */
.process-section { background:#1e293b; padding:5rem 0; }
.process-section h2 { color:#f1f5f9; text-align:center; font-size:2.2rem; }
.process-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:1.25rem; margin-top:2rem; }
.process-item { background: rgba(51,65,85,0.8); border:1px solid rgba(143,79,240,0.3); border-radius:1rem; padding:1.25rem; color:#e2e8f0; text-align:left; }
.process-icon { width:44px; height:44px; border-radius:12px; background: linear-gradient(135deg,#6366f1,#8b5cf6); display:flex; align-items:center; justify-content:center; color:#fff; margin-bottom:0.5rem; }
.process-cta { text-align:center; margin-top:2rem; }

/* Bottom CTA Section */
.bottom-cta {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bottom-cta .container {
    position: relative;
    z-index: 2;
}

.bottom-cta h2 {
    color: #f1f5f9;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bottom-cta p {
    color: #94a3b8;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.bottom-cta .btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.bottom-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

/* Floating Icons Animation */
.bottom-cta .floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bottom-cta .floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: #6366f1;
    opacity: 0.3;
    animation: floatUp 8s infinite ease-in-out;
}

.bottom-cta .floating-icon:nth-child(1) { left: 10%; animation-delay: 0s; }
.bottom-cta .floating-icon:nth-child(2) { left: 20%; animation-delay: 1s; }
.bottom-cta .floating-icon:nth-child(3) { left: 30%; animation-delay: 2s; }
.bottom-cta .floating-icon:nth-child(4) { left: 40%; animation-delay: 3s; }
.bottom-cta .floating-icon:nth-child(5) { left: 50%; animation-delay: 4s; }
.bottom-cta .floating-icon:nth-child(6) { left: 60%; animation-delay: 5s; }
.bottom-cta .floating-icon:nth-child(7) { left: 70%; animation-delay: 6s; }
.bottom-cta .floating-icon:nth-child(8) { left: 80%; animation-delay: 7s; }

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .services-header .header-content h1 {
        font-size: 3rem;
    }
    
    .bottom-cta h2 {
        font-size: 2.5rem;
    }
    .tech-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .services-header {
        padding: 6rem 0 4rem;
    }
    
    .services-header .header-content h1 {
        font-size: 2.5rem;
    }
    
    .services-header .header-content .subtitle {
        font-size: 1.1rem;
    }
    
    .services-header .button-row {
        flex-direction: column;
        gap: 1rem;
    }
    .impact-stats { grid-template-columns: 1fr; }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .bottom-cta h2 {
        font-size: 2rem;
    }
    
    .bottom-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .services-header .header-content h1 {
        font-size: 2rem;
    }
    
    .services-header .button-row a {
        width: 100%;
        text-align: center;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .bottom-cta .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
