/* ============================================================
   STYLE.CSS — Jan Seva Kendra JP Nagar 7th Phase
   Full design system — mobile first, performance optimized
   ============================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  --saffron:       #E8560A;
  --saffron-light: #FF7535;
  --ink:           #17100A;
  --cream:         #FDF6EE;
  --warm-white:    #FFFCF8;
  --teal:          #0B6E72;
  --gold:          #D4920A;
  --muted:         #7A6050;
  --border:        #EAE0D5;
  --green:         #2E7D32;
  --white:         #FFFFFF;
  --red:           #C62828;

  --font-display: 'Baloo 2', cursive;
  --font-body:    'Noto Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.12);

  --container: 1180px;
  --section-pad: 64px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--warm-white); color: var(--ink); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--saffron); }
a:hover { text-decoration: underline; }

/* --- ACCESSIBILITY --- */
.skip-link { position: absolute; top: -100px; left: 0; background: var(--saffron); color: white; padding: 8px 16px; border-radius: 0 0 8px 0; z-index: 9999; font-weight: 700; font-size: 0.9rem; transition: top .3s; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; border-radius: 4px; }

/* --- LAYOUT --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-header h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.section-header p { color: var(--muted); font-size: 0.95rem; max-width: 560px; margin: 0 auto; }

/* --- TOP BAR --- */
.topbar { background: var(--ink); color: rgba(255,255,255,0.6); font-size: 0.72rem; display: flex; justify-content: space-between; align-items: center; padding: 7px 20px; gap: 8px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-link { color: rgba(255,255,255,0.7); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color .2s; }
.topbar-link:hover { color: var(--saffron); text-decoration: none; }
.topbar-location { display: flex; align-items: center; gap: 5px; }
.topbar-sep { opacity: 0.4; }
.live-badge { display: flex; align-items: center; gap: 6px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #4CAF50; animation: blink 1.8s infinite; display: inline-block; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

/* --- NAVBAR --- */
.site-header { background: var(--cream); border-bottom: 2px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.navbar { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: var(--container); margin: 0 auto; padding: 0 20px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.logo:hover { text-decoration: none; }
.logo-icon { width: 40px; height: 40px; background: var(--saffron); border-radius: 11px; display: flex; align-items: center; justify-content: center; box-shadow: 3px 3px 0 var(--ink); flex-shrink: 0; }
.logo-icon svg { width: 20px; height: 20px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name-kn { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); display: block; }
.logo-name-en { font-size: 0.78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.85rem; font-weight: 600; color: var(--muted); padding: 6px 10px; border-radius: var(--radius-sm); transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--saffron); background: rgba(232,86,10,0.06); text-decoration: none; }
.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: white; border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 8px; min-width: 220px; box-shadow: var(--shadow-md); z-index: 50; list-style: none; }
.dropdown a { display: block; padding: 8px 12px; font-size: 0.83rem; color: var(--muted); border-radius: var(--radius-sm); }
.dropdown a:hover { background: var(--cream); color: var(--saffron); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-call { background: var(--saffron); color: white; text-decoration: none; padding: 9px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.83rem; box-shadow: 3px 3px 0 var(--ink); transition: transform .15s, box-shadow .15s; display: flex; align-items: center; gap: 7px; }
.btn-call:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); text-decoration: none; color: white; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; display: block; }
.mobile-nav { display: none; background: var(--cream); border-bottom: 2px solid var(--border); padding: 16px 20px 20px; }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin-bottom: 16px; }
.mobile-nav a { display: block; padding: 11px 0; font-size: 0.95rem; font-weight: 600; color: var(--muted); border-bottom: 1px solid var(--border); text-decoration: none; }
.mobile-nav a:hover { color: var(--saffron); }
.mobile-cta { display: flex; flex-direction: column; gap: 10px; }

/* --- BUTTONS --- */
.btn-primary { background: var(--saffron); color: white; padding: 13px 26px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.92rem; border: none; cursor: pointer; box-shadow: 4px 4px 0 var(--ink); font-family: var(--font-body); transition: transform .15s, box-shadow .15s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); text-decoration: none; color: white; }
.btn-wa { background: #25D366; color: white; padding: 13px 26px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.92rem; border: none; cursor: pointer; box-shadow: 4px 4px 0 var(--ink); font-family: var(--font-body); transition: transform .15s, box-shadow .15s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-wa:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); text-decoration: none; color: white; }
.btn-block { display: flex; justify-content: center; width: 100%; margin-bottom: 10px; }

/* --- BREADCRUMB --- */
.breadcrumb { background: var(--cream); padding: 10px 20px; border-bottom: 1px solid var(--border); }
.breadcrumb ol { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; gap: 4px; list-style: none; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--saffron); }
.bc-sep { color: var(--border); font-size: 1rem; }

/* --- PAGE HERO --- */
.page-hero { background: var(--cream); padding: var(--section-pad) 0; }
.area-hero-inner { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.location-pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(232,86,10,0.09); border: 1.5px solid rgba(232,86,10,0.2); color: var(--saffron); font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1.12; color: var(--ink); margin-bottom: 14px; }
.text-accent { color: var(--saffron); }
.hero-subtitle { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 22px; max-width: 520px; }
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 0.81rem; color: var(--muted); font-weight: 500; }
.trust-badge svg { color: var(--green); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* INFO CARD */
.area-info-card { background: white; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-md); position: sticky; top: 88px; }
.info-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.info-card-service { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); }
.info-card-badge { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; background: #E8F5E9; color: #2E7D32; padding: 3px 9px; border-radius: 100px; }
.info-card-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.info-card-list li { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.info-card-list li:last-child { border-bottom: none; }
.info-label { color: var(--muted); }
.info-value { font-weight: 600; color: var(--ink); text-align: right; }
.info-price { color: var(--green); font-size: 1rem; font-weight: 700; }
.info-card-cta { display: flex; align-items: center; justify-content: center; margin-top: 16px; background: var(--saffron); color: white; padding: 12px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.88rem; text-decoration: none; box-shadow: 3px 3px 0 var(--ink); transition: transform .15s, box-shadow .15s; }
.info-card-cta:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); text-decoration: none; color: white; }

/* --- CONTENT SECTION --- */
.content-section { padding: var(--section-pad) 0; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.main-content h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--ink); margin: 0 0 16px; }
.main-content h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin: 32px 0 12px; }
.main-content p { color: var(--muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 16px; }
.main-content a { color: var(--saffron); }
.content-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.content-list li { padding: 10px 14px; background: var(--cream); border-radius: var(--radius-sm); border-left: 3px solid var(--saffron); font-size: 0.88rem; color: var(--ink); line-height: 1.6; }

/* NEARBY AREAS */
.nearby-areas { margin: 28px 0; padding: 18px; background: #F0F9FF; border: 1.5px solid #B3D9F0; border-radius: var(--radius-md); }
.nearby-label { font-size: 0.78rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.nearby-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-tag { font-size: 0.8rem; padding: 5px 12px; background: white; border: 1px solid #B3D9F0; border-radius: 100px; color: var(--teal); text-decoration: none; font-weight: 500; transition: background .2s, color .2s; }
.nearby-tag:hover { background: var(--teal); color: white; text-decoration: none; }

/* SIDEBAR */
.content-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 88px; }
.sidebar-card { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.sidebar-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.sidebar-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.sidebar-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.sidebar-facts { list-style: none; display: flex; flex-direction: column; gap: 0; }
.sidebar-facts li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.83rem; }
.sidebar-facts li:last-child { border-bottom: none; }
.sidebar-facts span { color: var(--muted); }
.sidebar-facts strong { color: var(--ink); text-align: right; }
.sidebar-timings { list-style: none; }
.sidebar-timings li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.83rem; }
.sidebar-timings li:last-child { border-bottom: none; }
.sidebar-timings span { color: var(--muted); }
.closed { color: var(--red); }
.sidebar-other-link { display: inline-flex; color: var(--teal); font-weight: 700; font-size: 0.88rem; text-decoration: none; }
.sidebar-other-link:hover { text-decoration: underline; }

/* --- FAQ SECTION --- */
.faq-section { padding: var(--section-pad) 0; background: var(--cream); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color .2s; }
.faq-item.active { border-color: var(--saffron); }
.faq-question { width: 100%; background: none; border: none; padding: 18px 20px; text-align: left; font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; line-height: 1.5; }
.faq-question:hover { color: var(--saffron); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--saffron); transition: transform .3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 20px 18px; border-top: 1px solid var(--border); }
.faq-answer p { font-size: 0.87rem; color: var(--muted); line-height: 1.8; margin-top: 14px; }

/* --- REVIEWS --- */
.reviews-section { padding: var(--section-pad) 0; }
.rating-summary { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 8px; font-size: 0.88rem; color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.star { color: var(--gold); font-size: 1rem; }
.review-text { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; font-style: italic; quotes: "\201C" "\201D"; }
.review-text::before { content: open-quote; }
.review-text::after  { content: close-quote; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-av { width: 36px; height: 36px; border-radius: 50%; background: var(--saffron); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.reviewer strong { font-size: 0.85rem; color: var(--ink); display: block; }
.reviewer span { font-size: 0.75rem; color: var(--muted); display: block; }

/* --- CTA STRIP --- */
.cta-strip { background: var(--saffron); padding: 40px 0; }
.cta-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-strip-text h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 6px; }
.cta-strip-text p { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip .btn-primary { background: white; color: var(--saffron); box-shadow: 4px 4px 0 rgba(0,0,0,0.3); }
.cta-strip .btn-wa { box-shadow: 4px 4px 0 rgba(0,0,0,0.3); }

/* --- SEO LINKS SECTION --- */
.seo-links-section { background: #F5EEE6; border-top: 2px solid var(--border); padding: 40px 0; }
.seo-links-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.seo-links-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.seo-links-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.seo-links-list a { font-size: 0.8rem; color: var(--muted); text-decoration: none; padding: 2px 0; }
.seo-links-list a:hover { color: var(--saffron); }

/* --- FOOTER --- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.5); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { font-size: 1.5rem; }
.footer-logo strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: white; display: block; }
.footer-logo span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.82rem; line-height: 1.75; margin-bottom: 20px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color .2s; }
.footer-contact-item:hover { color: var(--saffron); }
.footer-heading { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--saffron); }
.footer-timings { list-style: none; display: flex; flex-direction: column; gap: 0; }
.footer-timings li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.8rem; }
.footer-timings li:last-child { border-bottom: none; }
.footer-timings strong { color: rgba(255,255,255,0.8); }
.footer-timings strong.closed { color: #EF9A9A; }
.footer-map-link { margin-top: 12px; }
.footer-map-link a { font-size: 0.8rem; color: var(--saffron); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.footer-bottom p { font-size: 0.78rem; line-height: 1.8; margin-bottom: 8px; }
.footer-bottom strong { color: var(--saffron); }
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-disclaimer { font-size: 0.72rem; opacity: 0.5; }
.footer-bottom-links { list-style: none; display: flex; gap: 16px; margin-top: 12px; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--saffron); }

/* --- WHATSAPP FLOAT --- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 500; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); animation: wa-pulse 2.5s infinite; text-decoration: none; transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); text-decoration: none; }
.wa-float svg { width: 28px; height: 28px; }
.wa-float-label { position: absolute; right: 66px; background: var(--ink); color: white; font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; white-space: nowrap; opacity: 0; transition: opacity .2s; pointer-events: none; }
.wa-float:hover .wa-float-label { opacity: 1; }
@keyframes wa-pulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.45);} 50%{box-shadow:0 4px 36px rgba(37,211,102,0.7);} }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-hero-inner { grid-template-columns: 1fr; }
  .area-info-card { position: static; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}
@media (max-width: 768px) {
  :root { --section-pad: 44px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .seo-links-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.85rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .seo-links-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 7px; }
  .hero-ctas { flex-direction: column; }
  .topbar-right { display: none; }
}
