/* Services Page Specific Styles */
.services-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 120px;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--black);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2rem;
}

.card span {
    font-weight: 600;
    color: var(--black);
    font-size: 0.875rem;
    text-align: center;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: float-1 6s ease-in-out infinite;
}

.card-2 {
    top: 30%;
    right: 15%;
    animation: float-2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation: float-3 8s ease-in-out infinite;
}

.card-4 {
    bottom: 10%;
    right: 10%;
    animation: float-4 9s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0px) rotate(3deg); }
    50% { transform: translateY(-25px) rotate(-3deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes float-4 {
    0%, 100% { transform: translateY(0px) rotate(4deg); }
    50% { transform: translateY(-30px) rotate(-4deg); }
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-category {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-10px);
    border-color: var(--black);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-header {
    background: var(--gray-50);
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    font-size: 2.5rem;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.service-list {
    padding: 0;
}

.service-item {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: var(--gray-50);
}

.service-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.875rem;
}

.service-price {
    background: var(--black);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-300);
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step-number {
    background: var(--black);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.step-features li {
    color: var(--gray-600);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: bold;
}

/* Technology Stack */
.tech-stack-section {
    padding: 100px 0;
    background: var(--white);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    border-color: var(--black);
}

.tech-category h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.tech-item {
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--gray-300);
    text-align: center;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--black);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.pricing-card.featured .price {
    color: var(--white);
}

.pricing-card.featured .pricing-features li {
    color: var(--gray-300);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card.featured .popular-badge {
    background: var(--white);
    color: var(--black);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.price-description {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.pricing-card.featured .price-description {
    color: var(--gray-400);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.pricing-card.featured .btn-primary {
    background: var(--white);
    color: var(--black);
}

.pricing-card.featured .btn-primary:hover {
    background: var(--gray-200);
}

/* CTA Section */
.services-cta {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.services-cta .cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.services-cta .cta-content p {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .btn-primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.services-cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
}

.services-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.services-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps::before {
        left: 30px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-features {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .services-cta .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        min-width: 100px;
        padding: 1rem;
    }
    
    .service-item {
        padding: 1rem 1.5rem;
    }
    
    .tech-items {
        grid-template-columns: 1fr;
    }
    
    .services-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}