/* ============================================ */
/* SERVICES PAGE STYLES */
/* ============================================ */

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #2878B6 0%, #1a5580 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.services-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero .hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 25px;
    line-height: 1.6;
}

.services-hero .hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0 50px;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .services-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-hero .hero-description {
        font-size: 1rem;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header .section-subtitle {
        font-size: 1.05rem;
    }
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #E9B01F;
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

/* Service icon background colors */
.service-icon-consulting {
    background: linear-gradient(135deg, #E9B01F 0%, #d4a01d 100%);
}

.service-icon-intelligence {
    background: linear-gradient(135deg, #2878B6 0%, #1a5580 100%);
}

.service-icon-training {
    background: linear-gradient(135deg, #28a745 0%, #208637 100%);
}

.service-icon-support {
    background: linear-gradient(135deg, #6c5ce7 0%, #5b4cdb 100%);
}

.service-icon-cloud {
    background: linear-gradient(135deg, #00b894 0%, #00a884 100%);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card .service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.service-card .service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

.service-card .service-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #28a745;
}

.service-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #2878B6 0%, #1a5580 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-btn:hover {
    background: linear-gradient(135deg, #1a5580 0%, #14456b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 120, 182, 0.3);
    color: white;
    text-decoration: none;
}

/* Why Our Services Section */
.why-services-section {
    padding: 80px 0;
    background: white;
}

.why-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .why-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-services-grid {
        grid-template-columns: 1fr;
    }
}

.why-item {
    text-align: center;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2878B6;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, #E9B01F 0%, #d4a01d 100%);
    color: white;
    transform: scale(1.1);
}

.why-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Statistics Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2878B6 0%, #1a5580 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #E9B01F;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: linear-gradient(to right, #E9B01F, #2878B6);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .process-timeline::before {
        top: 0;
        left: 40px;
        right: auto;
        bottom: 0;
        width: 4px;
        height: auto;
        background: linear-gradient(to bottom, #E9B01F, #2878B6);
    }
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .process-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
        padding-left: 20px;
    }
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid #E9B01F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #E9B01F;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, #E9B01F 0%, #d4a01d 100%);
    color: white;
}

@media (max-width: 768px) {
    .step-number {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        margin: 0;
        font-size: 1.4rem;
    }
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.services-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.services-cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #E9B01F 0%, #d4a01d 100%);
    color: #1a1a1a;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4a01d 0%, #c09019 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 176, 31, 0.4);
    color: #1a1a1a;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1a1a1a;
    text-decoration: none;
}

@media (max-width: 768px) {
    .services-cta-content h2 {
        font-size: 2rem;
    }

    .services-cta-content p {
        font-size: 1.05rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Explore Platform Section */
.explore-platform-section {
    padding: 80px 0;
    background: white;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .platform-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.platform-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2878B6;
}

.platform-icons {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.platform-icons img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.platform-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.platform-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.platform-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.platform-btn {
    display: inline-block;
    padding: 12px 28px;
    background: white;
    color: #2878B6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #2878B6;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    background: linear-gradient(135deg, #2878B6 0%, #1a5580 100%);
    color: white;
    text-decoration: none;
}
 