/* ===== Services Page - Complete Redesign ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 3px solid #FFD700;
}

.page-header h1 {
    color: #FFD700;
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    color: #e0e0e0;
    font-size: 18px;
}

/* Services Section */
.services-detail-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header .section-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    color: #1a1a1a;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Services Grid - 3 Columns */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Service Card */
.service-detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: #FFD700;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

/* Service Image */
.service-detail-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.05);
}

/* Service Content */
.service-detail-content {
    padding: 20px;
}

.service-detail-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-detail-icon i {
    font-size: 26px;
    color: #1a1a1a;
}

.service-detail-content h3 {
    color: #1a1a1a;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-detail-content>p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.service-features li {
    padding: 5px 0;
    color: #333;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: #FFD700;
    font-size: 13px;
    flex-shrink: 0;
}

/* Service Button */
.service-detail-content .btn {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.process-step {
    text-align: center;
    padding: 28px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.process-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.process-icon {
    margin: 18px 0 16px;
}

.process-icon i {
    font-size: 44px;
    color: #FFD700;
}

.process-step h3 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #FFD700;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    user-select: none;
}

.faq-question h4 {
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #FFD700;
    font-size: 18px;
    transition: transform 0.3s ease;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    padding: 0 24px 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #1a1a1a;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
}

.cta-content p {
    color: #1a1a1a;
    font-size: 17px;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #1a1a1a;
    color: #FFD700;
    border: 2px solid #1a1a1a;
}

.cta-buttons .btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-buttons .btn-outline:hover {
    background: #1a1a1a;
    color: #FFD700;
    transform: translateY(-2px);
}

/* ===== Responsive Design ===== */

/* Large Desktop */
@media (max-width: 1400px) {
    .services-detail-grid {
        gap: 24px;
    }
}

/* Medium Desktop */
@media (max-width: 1200px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .services-detail-section,
    .process-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .service-detail-content {
        padding: 18px;
    }

    .service-detail-image {
        height: 140px;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 14px;
    }
}