/* Services Page Styles */

/* Full width reset */
.page-template-template-services .site-content,
.page-template-template-services .content-area,
.page-template-template-services #primary {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.site-content {
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.services-hero {
    background: #0A0E27;
    padding: 150px 40px 100px 40px;
    text-align: center;
    position: relative;
}

.services-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.services-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-hero-title {
    font-size: 4rem;
    font-weight: 500;
    color: white;
    line-height: 1.1;
    margin: 0 0 24px 0;
}

.services-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.services-hero-btn {
    display: inline-block;
    background: white;
    color: #0A0E27 !important;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-hero-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Services Cards Section */
.services-cards-section {
    background: white;
    padding: 80px 40px;
}

.services-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #00D9FF;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.15);
    transform: translateY(-4px);
}

.service-badge {
    display: inline-block;
    background: #E0F7FF;
    color: #00D9FF;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #00D9FF;
    margin-top: 2px;
}

.service-features li strong {
    color: #1a1a1a;
}

.service-btn {
    display: inline-block;
    background: #0a0e27;
    color: white !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #00C4E6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 217, 255, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 30px 80px 30px;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-description {
        font-size: 1.125rem;
    }
    
    .services-cards-section {
        padding: 60px 30px;
    }
    
    .services-cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 32px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 100px 20px 60px 20px;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-description {
        font-size: 1rem;
    }
    
    .services-hero-btn {
        width: 100%;
        padding: 14px 32px;
    }
    
    .services-cards-section {
        padding: 40px 20px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-title {
        font-size: 1.375rem;
    }
    
    .service-btn {
        width: 100%;
    }
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
}

.faq-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    align-items: start;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-question span {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.5;
    flex: 1;
}

.faq-question:hover span {
    color: #00D9FF;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #00D9FF;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
}

.faq-question[aria-expanded="true"] {
    background: #ffffff;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

/* For JS toggling compatibility if needed */
.faq-item.active .faq-question {
    background: #ffffff;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px 28px;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4a5568;
}

.faq-footer {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px dashed #e5e7eb;
}

.faq-footer p {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00D9FF;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-link:hover {
    gap: 12px;
    color: #00C4E6;
}

@media (max-width: 968px) {
    .faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 30px;
    }
    
    .faq-title {
        font-size: 2.25rem;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-answer p {
        padding: 0 24px 20px 24px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-title {
        font-size: 1.875rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px 20px;
    }
}
