/* Services Page Specific Styles */

/* ==============================================
   SERVICES HERO SECTION
   ============================================== */

.services-hero {
    background: linear-gradient(135deg, var(--kloud-charcoal) 0%, var(--darker-bg) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 2px solid var(--kloud-cyan);
    box-shadow: 0 4px 20px rgba(47, 243, 224, 0.1);
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button styles now handled by unified button system in components.css */
/* Removed redundant .cta-button definitions */

/* ==============================================
   SERVICES OVERVIEW SECTION
   ============================================== */

.services-overview {
    background: var(--dark-bg);
    padding: var(--section-padding-desktop) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--kloud-cyan);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--kloud-cyan), rgba(47, 243, 224, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
}

.service-icon i {
    font-size: 2rem;
    color: var(--kloud-white);
}

.service-card h3 {
    color: var(--kloud-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(47, 243, 224, 0.3);
}

.service-card p {
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    color: var(--light-text);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--kloud-cyan);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ==============================================
   TECH STACK SECTION
   ============================================== */

.tech-stack-section {
    background: var(--dark-bg);
    padding: var(--section-padding-desktop) 0;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: var(--card-bg);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--kloud-cyan);
}

.tech-category h3 {
    color: var(--kloud-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(47, 243, 224, 0.3);
}

.tech-category h3 i {
    color: var(--kloud-cyan);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag {
    background: var(--gray-300);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--gray-400);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--kloud-cyan);
    color: var(--kloud-charcoal);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* ==============================================
   PRICING SECTION
   ============================================== */

.pricing-section {
    background: var(--dark-bg);
    padding: var(--section-padding-desktop) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--kloud-cyan);
}

.pricing-card.featured {
    border-color: var(--kloud-cyan);
    box-shadow: 0 0 30px rgba(47, 243, 224, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kloud-cyan);
    color: var(--kloud-charcoal);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header h3 {
    color: var(--kloud-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(47, 243, 224, 0.3);
}

.price {
    margin-bottom: 2rem;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--kloud-cyan);
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--kloud-white);
}

.price .period {
    font-size: 0.9rem;
    color: var(--medium-text);
    display: block;
    margin-top: 0.5rem;
}

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

.pricing-features li {
    color: var(--light-text);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: var(--kloud-cyan);
    font-size: 0.9rem;
}

.pricing-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--medium-text);
    font-size: 0.9rem;
}

.pricing-timeline i {
    color: var(--kloud-cyan);
}

.pricing-button {
    /* Button styles now handled by unified button system in components.css */
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--kloud-cyan), rgba(47, 243, 224, 0.8));
    color: var(--kloud-charcoal);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(47, 243, 224, 0.9), var(--kloud-cyan));
}

/* ==============================================
   PROCESS SECTION
   ============================================== */

.process-section {
    background: var(--dark-bg);
    padding: var(--section-padding-desktop) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    justify-items: center;
    align-items: start;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 140px;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--kloud-cyan);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--kloud-cyan), rgba(47, 243, 224, 0.8));
    color: var(--kloud-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.step-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h3 {
    color: var(--kloud-white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(47, 243, 224, 0.3);
    line-height: 1.3;
    margin-top: 0;
}

.step-content p {
    color: var(--medium-text);
    line-height: 1.4;
    margin: 0;
    font-size: 0.85rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ==============================================
   CONTACT SECTION
   ============================================== */

.contact-section {
    background: var(--dark-bg);
    padding: var(--section-padding-desktop) 0;
    margin-bottom: 4rem;
}

.services-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .services-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info h3 {
    color: var(--kloud-white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(47, 243, 224, 0.3);
}

.benefits-list {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.benefit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--kloud-cyan);
}

.benefit i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--kloud-cyan), rgba(47, 243, 224, 0.8));
    color: var(--kloud-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: var(--shadow-glow);
}

.benefit h4 {
    color: var(--kloud-white);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.benefit p {
    color: var(--medium-text);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==============================================
   SERVICES FORM
   ============================================== */

.services-form-container {
    /* Form styling now handled by unified form system */
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-300);
    box-shadow: var(--shadow-md);
}

.services-form h3 {
    color: var(--kloud-white);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(47, 243, 224, 0.3);
}

/* Form styling now handled by unified form system in components.css */
/* Removed redundant .form-row, .form-group, .submit-btn definitions */

/* ==============================================
   ARCHITECTURE BUTTON
   ============================================== */

.tech-architecture-button-container {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.giant-architecture-button {
    /* Enhanced enticing button design */
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--kloud-cyan), rgba(47, 243, 224, 0.9));
    color: var(--kloud-charcoal);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(47, 243, 224, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.giant-architecture-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.giant-architecture-button:hover::before {
    left: 100%;
}

.giant-architecture-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(47, 243, 224, 0.5), 0 0 30px rgba(47, 243, 224, 0.3);
    background: linear-gradient(135deg, rgba(47, 243, 224, 0.95), var(--kloud-cyan));
    color: var(--kloud-charcoal);
    border-color: rgba(255, 255, 255, 0.3);
}

.giant-architecture-button:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.giant-architecture-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.giant-architecture-button:hover i {
    transform: translateX(3px);
}

/* Pulsing glow animation */
@keyframes architectureGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(47, 243, 224, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(47, 243, 224, 0.5), 0 0 20px rgba(47, 243, 224, 0.2);
    }
}

.giant-architecture-button {
    animation: architectureGlow 3s ease-in-out infinite;
}

/* ==============================================
   RESPONSIVE ADJUSTMENTS
   ============================================== */

@media (max-width: 768px) {
    .services-hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services-grid,
    .tech-categories,
    .pricing-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card,
    .tech-category,
    .pricing-card,
    .process-step {
        padding: 1.5rem;
    }
    
    .benefit {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit i {
        margin: 0 auto 1rem;
    }
    
    .services-form-container {
        padding: 1.5rem;
    }
}
