/**
 * Modern Service Page Style
 * Clean, professional layout for service pages
 */

/* Service Content Container */
.service-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Typography */
.service-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 3rem 0 1.5rem;
    color: #FF8C42;
    letter-spacing: -0.01em;
}

.service-content h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    margin: 2.5rem 0 1rem;
    color: #2d3748;
}

.service-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 2rem 0 0.75rem;
    color: #FF8C42;
}

.service-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin: 1.25rem 0;
    color: #4a5568;
}

.service-content p strong {
    font-weight: 600;
    color: #2d3748;
}

/* Lists - Clean style without emojis */
.service-content ul,
.service-content ol {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.service-content li {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin: 0.875rem 0;
    color: #4a5568;
    padding-left: 1.75rem;
    position: relative;
}

.service-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: #FF8C42;
    border-radius: 50%;
}

/* Highlight Box */
.service-highlight {
    background: linear-gradient(135deg, #fff9f5 0%, #fff3eb 100%);
    border-left: 4px solid #FF8C42;
    padding: 1.75rem 2rem;
    margin: 2.5rem 0;
    border-radius: 0 8px 8px 0;
}

.service-highlight p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2d3748;
}

/* Info Box */
.service-box {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 1.75rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.service-box h4 {
    margin-top: 0;
    color: #FF8C42;
}

.service-box p {
    margin-bottom: 0;
}

/* Step Box */
.service-step {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #FF8C42;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-step:hover {
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.15);
    transform: translateX(4px);
}

.service-step h4 {
    margin-top: 0;
}

.service-step p {
    margin-bottom: 0;
}

/* Price Table */
.service-price-table {
    width: 100%;
    margin: 2.5rem 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-price-table thead {
    background: linear-gradient(135deg, #FF8C42 0%, #FFA94D 100%);
    color: white;
}

.service-price-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-price-table tbody tr {
    background: white;
    transition: background 0.2s ease;
}

.service-price-table tbody tr:nth-child(even) {
    background: #f7fafc;
}

.service-price-table tbody tr:hover {
    background: #fff9f5;
}

.service-price-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
    color: #4a5568;
}

.service-price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #FF8C42;
    font-size: 1.125rem;
}

/* FAQ Items */
.service-faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.75rem 2rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.service-faq-item:hover {
    border-color: #FF8C42;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.1);
}

.service-faq-item h3 {
    margin-top: 0;
    color: #FF8C42;
    font-size: 1.125rem;
}

.service-faq-item p {
    margin-bottom: 0;
}

/* Note/Warning Box */
.service-note {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.service-note p {
    margin: 0;
    color: #78350f;
}

/* Section Divider */
.service-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 3rem 0;
}

/* Orange Text Accent */
.text-orange {
    color: #FF8C42;
    font-weight: 600;
}

/* CTA Section - Small, elegant orange banner */
.service-content .cta-section {
    background: linear-gradient(135deg, #FF6B3D 0%, #FF8C42 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 107, 61, 0.2);
}

.service-content .cta-content {
    flex: 1;
}

.service-content .cta-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: white;
}

.service-content .cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin: 0;
}

.service-content .cta-btn {
    background: white;
    color: #FF6B3D;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.service-content .cta-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .service-content {
        padding: 0 1rem 3rem;
    }
    
    .service-content h2 {
        margin: 2rem 0 1rem;
    }
    
    .service-highlight,
    .service-box,
    .service-step {
        padding: 1.25rem 1.5rem;
    }
    
    .service-price-table th,
    .service-price-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .service-content .cta-section {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        gap: 1rem;
    }
}
