/* ============================================
   Services Page - Stylesheet
   ============================================ */

.services-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00ff88 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero p {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto;
}

.service-main-section {
    padding: 80px 0;
}

.service-accordion {
    margin-bottom: 2rem;
    background: #111827;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.service-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.service-accordion-header:hover {
    background: rgba(0, 255, 136, 0.05);
}

.service-accordion-header:focus {
    outline: none;
}

.service-accordion-header h2 {
    font-size: 2.5rem;
    margin: 0;
    color: #ffffff;
    background: linear-gradient(90deg, #00ff88 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.accordion-icon {
    font-size: 2.5rem;
    color: #00d4ff;
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 2rem;
    line-height: 1;
    display: inline-block;
}

.service-accordion-content {
    padding: 0 3rem 3rem 3rem;
    animation: slideDown 0.3s ease-out;
    background: transparent;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-main-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
}

.service-main-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.service-main-card h3 {
    color: #ffffff;
}

.service-main-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.payment-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-mode-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.payment-mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.payment-mode-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.payment-mode-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-mode-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-mode-icon svg {
    color: #ffffff;
}

.payment-mode-card p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    color: #d1d5db;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.features-list li::before {
    content: '✓';
    color: #00ff88;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-box {
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid #00d4ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.highlight-box strong {
    color: #00d4ff;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cta-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    padding: 60px 0;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .service-accordion-header {
        padding: 1.5rem 2rem;
    }
    
    .service-accordion-header h2 {
        font-size: 1.75rem;
    }
    
    .accordion-icon {
        font-size: 2rem;
        margin-left: 1rem;
    }
    
    .service-accordion-content {
        padding: 0 2rem 2rem 2rem;
    }
    
    .service-main-card {
        padding: 0;
    }
    
    .service-main-card h2 {
        font-size: 2rem;
    }
    
    .payment-modes {
        grid-template-columns: 1fr;
    }
}

