/* --- UNIVERSAL SERVICE PAGE STYLING --- */

/* Fix: Header ke niche chipakne se rokne ke liye */
main .service-hero { padding-top: 200px; }

/* BACK BUTTON HOVER ANIMATION (ORANGE GLOW) */
.back-btn { background: transparent; color: #fff; padding: 10px 22px; border-radius: 50px; font-weight: 700; transition: 0.3s; text-decoration: none; border: 2px solid var(--primary); display: flex; align-items: center; gap: 8px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.back-btn i { font-size: 1.1rem; color: var(--primary); transition: 0.3s; }
.back-btn:hover { background: var(--primary); color: #000; box-shadow: 0 0 20px var(--primary-glow); transform: scale(1.05); }
.back-btn:hover i { color: #000; }

.service-hero { text-align: center; max-width: 1000px; margin: auto; padding-bottom: 100px; }
.service-hero h1 { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 25px; letter-spacing: -2px; }
.service-hero p { font-size: 1.2rem; color: var(--text-muted); line-height: 1.7; max-width: 800px; margin: 0 auto 40px auto; }
.hero-btn { display: inline-block; background: var(--primary); color: #000; padding: 18px 45px; font-size: 1.1rem; text-decoration: none; font-weight: 700; border-radius: 50px; transition: 0.3s; box-shadow: 0 10px 30px var(--primary-glow); border: none; cursor: pointer; }
.hero-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 40px var(--primary-glow); }

.service-content { max-width: 1200px; margin: auto; padding: 50px 20px; }

.info-box { background: rgba(255, 106, 0, 0.05); border: 1px solid rgba(255, 106, 0, 0.2); border-left: 5px solid var(--primary); border-radius: 20px; padding: 40px; margin-bottom: 80px; text-align: left; }
.info-box h2 { font-size: 2rem; color: #fff; margin-bottom: 15px; font-weight: 700; }
.info-box p { color: #d4d4d8; font-size: 1.1rem; line-height: 1.7; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px; }
.feature-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 25px; padding: 40px 30px; transition: 0.4s; }
.feature-card:hover { border-color: var(--primary); transform: translateY(-10px); box-shadow: 0 15px 35px rgba(255,106,0,0.1); background: rgba(255,255,255,0.08); }
.f-icon { width: 60px; height: 60px; background: rgba(255, 106, 0, 0.1); color: var(--primary); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }
.feature-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 15px; font-weight: 700; }
.feature-card p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

.why-us { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 30px; padding: 60px; text-align: center; }
.why-us h2 { font-size: 2.5rem; color: #fff; margin-bottom: 40px; font-weight: 800; }
.benefit-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; text-align: left; }
.benefit-item { display: flex; align-items: flex-start; gap: 15px; }
.benefit-item i { color: #4ade80; font-size: 1.5rem; margin-top: 3px; }
.benefit-item div h4 { color: #fff; font-size: 1.2rem; margin-bottom: 5px; }
.benefit-item div p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

.cta-banner { margin: 100px 20px; background: linear-gradient(135deg, rgba(255, 106, 0, 0.15) 0%, rgba(10, 10, 10, 0.95) 100%); border: 1px solid var(--primary); border-radius: 30px; padding: 60px 40px; text-align: center; box-shadow: 0 10px 40px rgba(255,106,0,0.1); max-width: 1160px; margin-left: auto; margin-right: auto; scroll-margin-top: 100px;}
.cta-banner h2 { color: #fff; font-size: 2.5rem; margin-bottom: 20px; font-weight: 800; }
.cta-banner p { color: #d4d4d8; font-size: 1.1rem; margin-bottom: 35px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }

@media (max-width: 768px) {
    main .service-hero { padding: 150px 15px 60px 15px; }
    .info-box { padding: 30px 20px; }
    .why-us { padding: 40px 20px; }
    .cta-banner { padding: 40px 20px; }
}