/* Services Page Styles */
.services-hero {
    background-color: var(--primary-color);
    padding: 100px 0;
    color: white;
    text-align: left;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.5rem;
    max-width: 850px;
    opacity: 0.9;
}

.service-detail-section {
    padding: 100px 0;
}

.service-detail-section:nth-child(even) {
    background: #f8f9fa;
}

.service-detail-section:nth-child(odd) {
    background: #fff;
}

.service-detail-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-flex.reverse {
    direction: ltr;
}

.service-detail-flex.reverse .service-detail-header {
    order: 2;
}

.service-detail-flex.reverse .service-image {
    order: 1;
}

@media (max-width: 768px) {
    .service-detail-flex {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail-flex.reverse .service-detail-header,
    .service-detail-flex.reverse .service-image {
        order: unset;
    }
}

.service-detail-header {
    margin-bottom: 40px;
}

.service-detail-content {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.service-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.service-image img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon-box i {
    font-size: 2rem;
    color: #fff;
}

.service-icon-box.blue { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.service-icon-box.indigo { background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%); }
.service-icon-box.purple { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.service-icon-box.pink { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.service-icon-box.orange { background: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%); }

.underline {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 20px 0 30px;
}

.fintech-subtitle {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    word-wrap: break-word;
}

.fintech-description {
    margin-bottom: 20px;
    line-height: 1.7;
    word-wrap: break-word;
}

.fintech-services-title {
    margin-bottom: 15px;
    font-weight: 600;
}

.service-detail-list {
    list-style: none;
    padding: 0;
}

.service-detail-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    color: #444;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-detail-list li:last-child {
    margin-bottom: 0;
}

.service-detail-list i {
    color: #c0823e;
    font-size: 1.4rem;
    margin-top: 3px;
}

.why-choose-us {
    padding: 80px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon-box {
    background: #002333;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
}

.why-icon-box i {
    color: #c0823e;
    font-size: 1.5rem;
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Responsive */
@media (max-width: 768px) {
    .services-hero {
        text-align: center !important;
        padding: 60px 0 !important;
    }

    .services-hero h1 {
        font-size: 2rem;
        word-wrap: break-word;
    }

    .services-hero p {
        font-size: 1rem;
        word-wrap: break-word;
    }

    .service-detail-section {
        padding: 50px 0;
    }

    .service-detail-flex.reverse .service-detail-header,
    .service-detail-flex.reverse .service-image {
        order: unset;
    }

    .service-detail-header {
        text-align: center;
        width: 100%;
    }
    
    .service-detail-header h2 {
        font-size: 1.6rem;
        word-wrap: break-word;
    }

    .service-icon-box {
        margin: 0 auto 30px;
    }

    .service-detail-header .underline {
        margin: 0 auto 20px;
    }

    .service-detail-content {
        width: 100%;
        padding: 0;
    }

    .service-detail-list li {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .fintech-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .fintech-description,
    .fintech-services-title {
        text-align: center;
        font-size: 0.95rem;
    }

    .why-card {
        padding: 20px !important;
    }
    
    .service-image {
        height: 250px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.6rem;
    }
    
    .services-hero p {
        font-size: 0.95rem;
    }
    
    .service-detail-section {
        padding: 40px 0;
    }
    
    .service-detail-header h2 {
        font-size: 1.4rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-detail-list li {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .service-detail-list i {
        font-size: 1.2rem;
    }
    
    .service-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-box i {
        font-size: 1.5rem;
    }
    
    .fintech-subtitle {
        font-size: 1rem;
    }
    
    .fintech-description,
    .fintech-services-title {
        font-size: 0.9rem;
    }
}
