/* ===== SERVICE TEMPLATE CSS ===== */
.service-hero { position: relative; min-height: 85vh; display: flex; align-items: center; background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #5eead4 100%); overflow: hidden; border-radius: 0 0 60px 60px; }
.service-hero::before { content: ''; position: absolute; top: 10%; right: 5%; width: 300px; height: 300px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.service-hero::after { content: ''; position: absolute; bottom: 10%; left: 10%; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.service-hero-content { position: relative; z-index: 2; }
.service-hero-title { font-family: var(--heading-font); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.service-hero-subtitle { font-family: var(--body-font); font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 500px; }
.service-btn { font-family: var(--heading-font); padding: 16px 40px; border-radius: 50px; font-weight: 700; transition: all 0.3s ease; border: none; }
.service-btn-primary { background: #fff; color: #0f766e; }
.service-btn-primary:hover { background: #f0fdfa; transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.2); }
.service-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.service-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.service-section { padding: 80px 0; }
.service-section-title { font-family: var(--heading-font); font-size: 2rem; font-weight: 800; color: var(--primary-color); margin-bottom: 3rem; text-align: center; }
.service-section-title span { color: var(--accent-color); }
.service-card { background: #fff; border-radius: 20px; padding: 40px 30px; text-align: center; border: 2px solid #f0fdfa; transition: all 0.3s ease; height: 100%; position: relative; overflow: hidden; }
.service-card:hover { border-color: var(--accent-color); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(13,148,136,0.1); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #0f766e, #14b8a6); opacity: 0; transition: opacity 0.3s ease; }
.service-card:hover::before { opacity: 1; }
.service-card-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: var(--accent-color); transition: all 0.3s ease; }
.service-card:hover .service-card-icon { background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%); color: #fff; }
.service-card-title { font-family: var(--heading-font); font-size: 1.2rem; font-weight: 700; color: var(--primary-color); margin-bottom: 10px; }
.service-card-desc { font-family: var(--body-font); color: #64748b; font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.service-card-price { font-family: var(--heading-font); font-size: 1.5rem; font-weight: 800; color: var(--accent-color); margin-bottom: 15px; }
.service-card-btn { padding: 10px 28px; border-radius: 50px; background: var(--accent-color); color: #fff; border: none; font-family: var(--heading-font); font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; }
.service-card-btn:hover { background: #0f766e; transform: scale(1.05); }
.service-steps { background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%); border-radius: 30px; padding: 60px 40px; }
.service-step { text-align: center; padding: 20px; position: relative; }
.service-step-number { width: 60px; height: 60px; background: linear-gradient(135deg, #0f766e, #14b8a6); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #fff; font-family: var(--heading-font); font-size: 1.5rem; font-weight: 800; }
.service-step-title { font-family: var(--heading-font); font-weight: 700; color: var(--primary-color); margin-bottom: 8px; }
.service-step-desc { font-family: var(--body-font); color: #64748b; font-size: 0.9rem; }
.service-testimonial { background: #fff; border-radius: 20px; padding: 35px; border: 1px solid #e2e8f0; height: 100%; position: relative; }
.service-testimonial::before { content: '"'; position: absolute; top: 20px; start: 25px; font-size: 4rem; color: #ccfbf1; font-family: serif; line-height: 1; }
.service-testimonial-text { font-family: var(--body-font); color: #555; line-height: 1.8; margin-bottom: 20px; position: relative; z-index: 1; }
.service-testimonial-author { font-family: var(--heading-font); font-weight: 700; color: var(--primary-color); }
.service-faq-item { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; margin-bottom: 15px; overflow: hidden; }
.service-faq-question { padding: 20px 25px; font-family: var(--heading-font); font-weight: 700; color: var(--primary-color); cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: all 0.3s ease; }
.service-faq-question:hover { background: #f0fdfa; }
.service-faq-answer { padding: 0 25px 20px; font-family: var(--body-font); color: #64748b; line-height: 1.7; display: none; }
.service-faq-item.active .service-faq-answer { display: block; }
.service-faq-item.active .service-faq-question { color: var(--accent-color); }
@media (max-width: 768px) { .service-section { padding: 50px 0; } .service-hero { min-height: 70vh; border-radius: 0 0 30px 30px; } .service-steps { padding: 40px 20px; } }