/* Elijah IT - Software Development Page - Modern Design */

/* Hero Section */
.software-hero {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    color: var(--white);
    padding: 120px 0 80px 0;
    overflow: hidden;
}
.software-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/Home/home2.png') center/cover no-repeat;
    opacity: 0.08;
    z-index: 1;
}
.software-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(126, 34, 206, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(30, 60, 114, 0.3) 0%, transparent 50%);
}
.software-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.software-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    font-family: var(--font-heading);
    line-height: 1.1;
}
.software-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}
.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.hero-cta-group .btn-primary {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: var(--white);
    color: #1e3c72;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.hero-cta-group .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
.hero-cta-group .btn-secondary {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}
.hero-cta-group .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.software-services {
    background: #f8f9fa;
    padding: 80px 0;
}
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}
.section-intro p {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(30, 60, 114, 0.15);
    border-color: #7e22ce;
}
.service-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}
.service-icon svg {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    stroke: var(--white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 16px;
    margin-top: 0;
    font-family: var(--font-heading);
    line-height: 1.3;
    clear: both;
    position: relative;
    z-index: 2;
}
.service-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 0.95rem;
    color: #495057;
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7e22ce;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tech Stack Section */
.tech-stack {
    background: var(--white);
    padding: 80px 0;
}
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}
.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tech-badge {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e3c72;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    cursor: default;
}
.tech-badge:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    color: var(--white);
    border-color: #7e22ce;
    transform: translateY(-2px);
}

/* Development Process Section */
.development-process {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--white);
    padding: 60px 0;
}
.development-process .section-intro h2,
.development-process .section-intro p {
    color: var(--white);
}
.development-process .section-intro {
    margin-bottom: 40px;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.process-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.process-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}
.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7e22ce 0%, #9333ea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 auto 16px;
}
.process-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    line-height: 1.3;
}
.process-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #f8f9fa;
    padding: 80px 0;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.why-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 60, 114, 0.15);
}
.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.why-icon svg {
    width: 36px;
    height: 36px;
    stroke: #7e22ce;
}
.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.why-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Testimonials Section */
.software-testimonials {
    background: var(--white);
    padding: 80px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0 60px;
}
.testimonial-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 16px;
    border-left: 4px solid #7e22ce;
}
.testimonial-rating {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #1e3c72;
    margin-bottom: 4px;
}
.testimonial-author span {
    font-size: 0.9rem;
    color: #6c757d;
}
.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.client-logos img {
    max-height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}
.client-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Industries Section */
.industries-served {
    background: #f8f9fa;
    padding: 80px 0;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}
.industry-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}
.industry-item:hover {
    transform: translateY(-5px);
    border-color: #7e22ce;
    box-shadow: 0 8px 25px rgba(126, 34, 206, 0.15);
}
.industry-item svg {
    width: 50px;
    height: 50px;
    stroke: #7e22ce;
    margin-bottom: 16px;
}
.industry-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72;
    font-family: var(--font-heading);
}

/* Software Project Form Section */
.software-project-form {
    background: #f8f9fa;
    padding: 80px 0;
}
.form-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}
.form-header p {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
}
.project-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 8px;
    font-size: 1rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7e22ce;
    box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    color: #495057;
    cursor: pointer;
    font-size: 0.95rem;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #7e22ce;
}
.consent-checkbox {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 10px;
}
.consent-checkbox a {
    text-decoration: underline;
}
.form-actions {
    text-align: center;
    margin-top: 30px;
}
.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.form-note {
    margin-top: 16px;
    color: #6c757d;
    font-size: 0.95rem;
}

/* CTA Section */
.software-cta {
    background: var(--white);
    color: #1e3c72;
    padding: 80px 0;
    text-align: center;
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}
.software-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}
.software-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.cta-buttons .btn-primary {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: var(--white);
    color: #1e3c72;
    font-weight: 600;
    transition: all 0.3s ease;
}
.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
.cta-buttons .btn-secondary {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: #1e3c72;
}
.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cta-feature svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}
.cta-feature span {
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .software-hero {
        padding: 80px 0 60px 0;
    }
    .software-hero h1 {
        font-size: 2.2rem;
    }
    .software-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-stats {
        gap: 30px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .section-intro h2 {
        font-size: 2rem;
    }
    .services-grid,
    .tech-categories,
    .why-grid,
    .testimonials-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hero-cta-group,
    .cta-buttons {
        flex-direction: column;
    }
    .cta-features {
        gap: 25px;
        flex-direction: column;
    }
    
    /* Form responsive */
    .project-form {
        padding: 30px 20px;
    }
    .form-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    .form-header h2 {
        font-size: 2rem;
    }
    .btn-large {
        width: 100%;
        padding: 16px 30px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
    color: var(--gradient-start);
    margin-bottom: 36px;
    font-size: 2.2rem;
    font-family: var(--font-heading);
}
.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.why-card {
    background: var(--gray-100);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30,60,114,0.06);
    padding: 32px 24px;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
}
.why-card h3 {
    color: var(--gradient-end);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}
.why-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.software-testimonials {
    background: var(--secondary-color);
    padding: 40px 0 30px 0;
    text-align: center;
}
.software-testimonials h2 {
    color: var(--gradient-end);
    margin-bottom: 24px;
    font-size: 2rem;
    font-family: var(--font-heading);
}
.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.client-logos img {
    height: 56px;
    width: auto;
    transition: transform 0.2s;
}
.client-logos img:hover {
    transform: scale(1.05);
}

.software-cta {
    background: linear-gradient(135deg, var(--gradient-end) 0%, var(--gradient-start) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 0 50px 0;
}
.software-cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}
.software-cta p {
    font-size: 1.1rem;
    margin-bottom: 28px;
}
.software-cta .btn-primary {
    background: var(--white);
    color: var(--gradient-end);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 1.1rem;
    border: none;
    transition: background 0.2s;
}
.software-cta .btn-primary:hover {
    background: #ffe0f0;
    color: var(--gradient-start);
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .feature-row, .feature-row.reverse {
        flex-direction: column !important;
        gap: 18px;
        text-align: center;
    }
    .feature-icon-col, .feature-content-col {
        flex: 1 1 100%;
    }
    .why-grid {
        flex-direction: column;
        gap: 18px;
    }
    .client-logos {
        gap: 18px;
    }
}

@media (max-width: 500px) {
    .features-grid {
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .feature-content-col h2 {
        font-size: 1.6rem;
    }
    
    .feature-content-col ul {
        font-size: 1rem;
    }
}
