/*
Theme Name: RISS - Real IT Solution and Services
Theme URI: https://realitsolution.in
Author: Real IT Solution and Services
Author URI: https://realitsolution.in
Description: Professional WordPress theme for Real IT Solution and Services - Digital Cyber Cafe at Rasulpur, Vaishali, Bihar. Includes all service pages, PAN Card, Aadhaar, Voter ID, PVC Card, Form Filling, Printing, Document Typing and Marriage Biodata services.
Version: 1.0.0
Requires at least: 5.5
Tested up to: 6.5
Requires PHP: 7.4
License: Private
Text Domain: riss
Tags: business, cyber-cafe, digital-services, bihar, elementor

*/

/* ============================================
   RISS THEME - GLOBAL STYLES
   Real IT Solution and Services, Rasulpur Bihar
   ============================================ */

:root {
  --riss-primary:      #1a237e;
  --riss-primary-dark: #0d1454;
  --riss-secondary:    #f59e0b;
  --riss-accent:       #10b981;
  --riss-green:        #2e7d32;
  --riss-green-l:      #e8f5e9;
  --riss-maroon:       #7b1426;
  --riss-dark:         #1f2937;
  --riss-light:        #f9fafb;
  --riss-text:         #374151;
  --riss-border:       #e5e7eb;
  --riss-muted:        #6b7280;
  --riss-white:        #ffffff;
  --riss-bg:           #f4f7fc;
  --riss-r:            12px;
  --riss-r-lg:         18px;
  --riss-shadow-sm:    0 1px 3px rgba(0,0,0,0.06);
  --riss-shadow-md:    0 4px 12px rgba(0,0,0,0.1);
  --riss-shadow-lg:    0 10px 30px rgba(0,0,0,0.15);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Poppins', sans-serif;
  color: var(--riss-text);
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
img { max-width: 100%; height: auto; }
a { color: var(--riss-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--riss-secondary); }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', 'DM Sans', serif;
  color: var(--riss-dark);
  line-height: 1.25;
  margin-bottom: .75rem;
}

/* UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }

/* ── HEADER / NAV ── */
.site-header {
  background: linear-gradient(135deg, var(--riss-primary) 0%, var(--riss-primary-dark) 100%);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.header-topbar {
  background: rgba(0,0,0,.15);
  padding: .5rem 0;
  font-size: .8rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.9);
}
.header-topbar a { color: rgba(255,255,255,.9); }
.header-topbar i { color: var(--riss-secondary); margin-right: .3rem; }
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.5px;
}
.logo-circle {
  width: 40px; height: 40px;
  background: var(--riss-secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
  color: var(--riss-primary);
  flex-shrink: 0;
}
.site-logo .logo-text span { color: var(--riss-secondary); }
.main-nav ul { display: flex; list-style: none; gap: 1.5rem; margin: 0; padding: 0; flex-wrap: wrap; }
.main-nav a { color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 600; padding: .3rem 0; position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--riss-secondary); transition: width .3s; }
.main-nav a:hover, .main-nav a.current-menu-item { color: var(--riss-secondary); }
.main-nav a:hover::after, .main-nav a.current-menu-item::after { width: 100%; }
.nav-cta {
  background: var(--riss-secondary);
  color: var(--riss-primary) !important;
  padding: .45rem 1.2rem !important;
  border-radius: 20px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #e08e00; color: #fff !important; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: .2rem;
}

/* ── TICKER ── */
.services-ticker {
  background: var(--riss-secondary);
  padding: .55rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: riss-ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes riss-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--riss-primary);
}
.ticker-sep { color: var(--riss-primary); opacity: .4; }

/* ── HERO SLIDER ── */
.riss-hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--riss-primary);
}
.slider-track {
  display: flex;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.slide {
  min-width: 100%;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.slide::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.slide-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.slide-content { max-width: 560px; }
.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: .9rem;
}
.slide h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.slide h1 span { color: var(--riss-secondary); }
.slide p {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.slide-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--riss-secondary); color: var(--riss-primary);
  font-size: .85rem; font-weight: 700;
  padding: .65rem 1.5rem; border-radius: 8px;
  text-decoration: none; transition: all .2s;
}
.btn-gold:hover { background: #e08e00; color: #fff; transform: translateY(-2px); }
.btn-wa {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #25d366; color: #fff;
  font-size: .85rem; font-weight: 700;
  padding: .65rem 1.5rem; border-radius: 8px;
  text-decoration: none; transition: all .2s;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.35);
  color: #fff; font-size: .85rem; font-weight: 700;
  padding: .65rem 1.5rem; border-radius: 8px;
  text-decoration: none; transition: all .2s;
}
.btn-outline:hover { background: #fff; color: var(--riss-primary); }
.btn-primary {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--riss-primary); color: #fff;
  font-size: .85rem; font-weight: 700;
  padding: .65rem 1.5rem; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s; font-family: inherit;
}
.btn-primary:hover { background: var(--riss-primary-dark); transform: translateY(-2px); color: #fff; }

.slide-emoji { font-size: 7rem; opacity: .2; flex-shrink: 0; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background .2s; line-height: 1;
}
.slider-arrow:hover { background: rgba(255,255,255,.3); }
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
.slider-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .4rem; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer;
  transition: all .3s;
}
.slider-dot.active { background: var(--riss-secondary); width: 26px; border-radius: 4px; }

/* HERO STATS (below slider) */
.hero-stats {
  background: var(--riss-primary-dark);
  padding: 1.2rem 0;
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800;
  color: var(--riss-secondary); display: block; line-height: 1;
}
.stat-lbl { font-size: .75rem; color: rgba(255,255,255,.7); }

/* ── SECTION STYLES ── */
.section { padding: 4.5rem 0; }
.section.bg-light { background: var(--riss-light); }
.section.bg-dark { background: var(--riss-dark); }
.section.bg-primary { background: var(--riss-primary); }

.section-head { text-align: center; margin-bottom: 3rem; }
.section-badge {
  display: inline-block;
  background: #eff6ff; border: 1px solid #bfdbfe;
  color: var(--riss-primary);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--riss-dark);
  margin-bottom: .5rem;
}
.section-title span { color: var(--riss-primary); }
.section-sub { font-size: .95rem; color: var(--riss-muted); max-width: 560px; margin: 0 auto; }

/* SECTION DIVIDER */
.sec-divider { height: 4px; background: linear-gradient(90deg, var(--riss-primary), var(--riss-secondary), var(--riss-primary)); }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.srv-card {
  background: #fff;
  border: 1.5px solid var(--riss-border);
  border-radius: var(--riss-r-lg);
  overflow: hidden;
  transition: all .3s;
  display: flex; flex-direction: column;
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--riss-shadow-lg);
  border-color: var(--riss-primary);
}
.srv-card-head {
  padding: 1.3rem 1.5rem 1rem;
  display: flex; align-items: flex-start; gap: 1rem;
  border-bottom: 1px solid var(--riss-border);
}
.srv-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.srv-card h3 { font-size: 1rem; font-weight: 700; color: var(--riss-dark); margin-bottom: .25rem; }
.srv-card p { font-size: .8rem; color: var(--riss-muted); margin: 0; }
.srv-card-body { padding: 1rem 1.5rem; flex: 1; }
.srv-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.srv-features li { font-size: .8rem; color: var(--riss-muted); display: flex; align-items: center; gap: .4rem; }
.srv-features li::before { content: '✓'; color: var(--riss-accent); font-weight: 700; }
.srv-card-foot {
  padding: .85rem 1.5rem;
  background: #f9fafb;
  border-top: 1px solid var(--riss-border);
  display: flex; align-items: center; justify-content: space-between;
}
.srv-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--riss-primary); }
.srv-link { font-size: .8rem; font-weight: 700; color: var(--riss-primary); }

/* ── WHY CHOOSE US CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  transition: background .25s;
}
.why-card:hover { background: rgba(255,255,255,.13); }
.why-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(245,158,11,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.why-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.why-card p { font-size: .82rem; color: rgba(255,255,255,.72); line-height: 1.65; margin: 0; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.step-card { background: #fff; border: 1px solid var(--riss-border); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; box-shadow: var(--riss-shadow-sm); }
.step-num {
  width: 54px; height: 54px;
  background: var(--riss-primary); color: #fff;
  border-radius: 50%; font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-card h4 { font-size: 1rem; font-weight: 700; color: var(--riss-dark); margin-bottom: .4rem; }
.step-card p { font-size: .82rem; color: var(--riss-muted); line-height: 1.6; margin: 0; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.4rem; }
.testi-card { background: #fff; border: 1px solid var(--riss-border); border-radius: 16px; padding: 1.5rem; }
.testi-stars { color: var(--riss-secondary); font-size: .9rem; margin-bottom: .6rem; }
.testi-text { font-size: .88rem; color: var(--riss-muted); line-height: 1.7; margin-bottom: .75rem; font-style: italic; }
.testi-author { font-size: .82rem; font-weight: 700; color: var(--riss-dark); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--riss-primary), var(--riss-primary-dark));
  border-radius: 18px;
  padding: 3rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.04) 1px,transparent 1px); background-size: 22px 22px; pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-content h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.cta-content h3 span { color: var(--riss-secondary); }
.cta-content p { font-size: .9rem; color: rgba(255,255,255,.75); margin: 0; }
.cta-btns { display: flex; gap: .75rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon-box {
  width: 46px; height: 46px;
  background: var(--riss-primary); color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.ci-text h4 { font-size: .9rem; font-weight: 700; color: var(--riss-dark); margin-bottom: .2rem; }
.ci-text p, .ci-text a { font-size: .85rem; color: var(--riss-muted); margin: 0; }
.social-links { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
.soc-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; border-radius: 8px;
  font-size: .78rem; font-weight: 700; text-decoration: none; transition: opacity .2s;
}
.soc-btn:hover { opacity: .88; transform: translateY(-2px); }
.sb-fb  { background: #1877f2; color: #fff; }
.sb-ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366); color: #fff; }
.sb-wa  { background: #25d366; color: #fff; }
.sb-mail{ background: #ea4335; color: #fff; }

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--riss-border);
  border-radius: 16px;
  padding: 2rem;
}
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--riss-dark); margin-bottom: 1.2rem; }
.riss-form { display: flex; flex-direction: column; gap: 1rem; }
.riss-form label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--riss-muted); display: block; margin-bottom: .3rem; }
.riss-form input, .riss-form select, .riss-form textarea {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--riss-border); border-radius: 9px;
  font-size: .9rem; font-family: inherit; color: var(--riss-text);
  background: #fff; outline: none; transition: border-color .2s;
}
.riss-form input:focus, .riss-form select:focus, .riss-form textarea:focus { border-color: var(--riss-primary); box-shadow: 0 0 0 3px rgba(26,35,126,.07); }
.riss-form textarea { resize: vertical; min-height: 100px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── MAP ── */
.map-wrap { border-radius: 14px; overflow: hidden; border: 1px solid var(--riss-border); margin-top: 1.2rem; }
.map-wrap iframe { width: 100%; height: 260px; border: none; display: block; }

/* ── PAGE HERO ── */
.page-hero-wrap {
  padding: 3.5rem 2rem;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative; overflow: hidden;
}
.page-hero-wrap::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.04) 1px,transparent 1px); background-size: 24px 24px; pointer-events: none; }
.page-hero-wrap h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; position: relative; z-index: 1; }
.page-hero-wrap h1 span { color: #ffcc02; }
.page-hero-wrap p { font-size: .95rem; color: rgba(255,255,255,.8); max-width: 560px; margin: .5rem auto 0; position: relative; z-index: 1; }

/* ── BREADCRUMB ── */
.riss-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--riss-muted);
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.riss-breadcrumb a { color: var(--riss-primary); font-weight: 600; }
.riss-breadcrumb .sep { color: #d1d5db; }
.riss-breadcrumb .current { color: var(--riss-primary); font-weight: 600; }

/* ── INFO CARDS ── */
.info-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.info-card {
  background: #fff; border: 1.5px solid var(--riss-border);
  border-radius: 14px; padding: 1.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.info-card:hover { border-color: var(--riss-primary); box-shadow: var(--riss-shadow-md); }
.info-card h4 { font-size: .95rem; font-weight: 700; color: var(--riss-dark); margin-bottom: .5rem; display: flex; align-items: center; gap: .4rem; }
.info-card p { font-size: .82rem; color: var(--riss-muted); line-height: 1.65; margin: 0; }
.info-card .price { font-size: .9rem; font-weight: 700; color: var(--riss-primary); margin-top: .5rem; }
.info-card ul { list-style: none; margin: .4rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.info-card ul li { font-size: .8rem; color: var(--riss-muted); display: flex; align-items: flex-start; gap: .4rem; }
.info-card ul li::before { content: '→'; color: var(--riss-primary); font-weight: 700; flex-shrink: 0; }

/* ── CHARGE CARDS ── */
.charge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; }
.charge-card {
  background: #fff; border: 1.5px solid var(--riss-border);
  border-radius: 14px; padding: 1.5rem; text-align: center;
  transition: all .25s; position: relative; overflow: hidden;
}
.charge-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--riss-primary); }
.charge-card.featured { border-color: var(--riss-primary); background: #eff6ff; }
.charge-card.featured::before { background: linear-gradient(90deg,var(--riss-primary),var(--riss-secondary)); }
.charge-card:hover { transform: translateY(-3px); box-shadow: var(--riss-shadow-md); }
.charge-icon { font-size: 2rem; margin-bottom: .6rem; }
.charge-card h4 { font-size: .9rem; font-weight: 700; color: var(--riss-dark); margin-bottom: .5rem; }
.charge-amount { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; color: var(--riss-primary); line-height: 1; margin-bottom: .4rem; }
.charge-sub { font-size: .75rem; color: var(--riss-muted); line-height: 1.5; }
.charge-badge { display: inline-block; margin-top: .6rem; background: var(--riss-primary); color: #fff; font-size: .68rem; font-weight: 700; padding: 2px 10px; border-radius: 10px; }

/* ── ALERT BOXES ── */
.alert-box { border-radius: 10px; padding: .9rem 1.2rem; display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1rem; }
.alert-box.blue  { background: #eff6ff; border: 1px solid #93c5fd; }
.alert-box.green { background: #f0fdf4; border: 1px solid #86efac; }
.alert-box.amber { background: #fffbeb; border: 1px solid #fcd34d; }
.alert-box.red   { background: #fff1f2; border: 1px solid #fda4af; }
.alert-box p { font-size: .82rem; margin: 0; line-height: 1.65; }
.alert-box.blue  p { color: #1e40af; }
.alert-box.green p { color: #166534; }
.alert-box.amber p { color: #92400e; }
.alert-box.red   p { color: #9f1239; }

/* ── TABLE ── */
.riss-table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--riss-border); }
.riss-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.riss-table thead { background: var(--riss-primary); }
.riss-table thead th { padding: .75rem 1rem; color: #fff; text-align: left; font-weight: 700; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.riss-table tbody tr { border-bottom: 1px solid var(--riss-border); transition: background .15s; }
.riss-table tbody tr:last-child { border-bottom: none; }
.riss-table tbody tr:hover { background: #f9fafb; }
.riss-table td { padding: .75rem 1rem; color: var(--riss-muted); vertical-align: top; line-height: 1.5; }
.riss-table td:first-child { font-weight: 600; color: var(--riss-dark); }
.tag-req { background: #d1fae5; color: #065f46; font-size: .7rem; font-weight: 700; padding: 2px 7px; border-radius: 6px; display: inline-block; }
.tag-opt { background: #fef9c3; color: #713f12; font-size: .7rem; font-weight: 700; padding: 2px 7px; border-radius: 6px; display: inline-block; }

/* ── PVC SELECTOR ── */
.pvc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: .75rem; }
.pvc-item {
  background: #fff; border: 2px solid var(--riss-border);
  border-radius: 12px; padding: 1rem .75rem; text-align: center;
  cursor: pointer; transition: all .2s; user-select: none;
  position: relative;
}
.pvc-item:hover { border-color: var(--riss-primary); transform: translateY(-2px); }
.pvc-item.selected { border-color: var(--riss-primary); background: #eff6ff; }
.pvc-item.selected::after { content: '✓'; position: absolute; top: 5px; right: 7px; width: 17px; height: 17px; border-radius: 50%; background: var(--riss-primary); color: #fff; font-size: .62rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.pvc-emoji { font-size: 1.8rem; display: block; margin-bottom: .4rem; }
.pvc-name { font-size: .72rem; font-weight: 700; color: var(--riss-dark); line-height: 1.3; margin-bottom: .3rem; }
.pvc-badge { font-size: .68rem; font-weight: 700; padding: 1px 7px; border-radius: 7px; display: inline-block; }
.pvc-std  { background: #dbeafe; color: #1e40af; }
.pvc-spec { background: #fce7f3; color: #9d174d; }
.pvc-apar { background: #fef3c7; color: #92400e; }

.pvc-sel-bar {
  display: none; background: #eff6ff; border: 1px solid #93c5fd;
  border-radius: 10px; padding: .85rem 1.2rem;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem; margin-top: 1rem;
}
.pvc-sel-bar.show { display: flex; }
.pvc-sel-text { font-size: .82rem; font-weight: 600; color: var(--riss-primary); }

/* ── BIODATA PACKAGES ── */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; }
.pkg-card {
  background: #fff; border: 1.5px solid var(--riss-border);
  border-radius: 14px; padding: 1.5rem; text-align: center;
  position: relative; overflow: hidden; transition: all .25s;
}
.pkg-card:hover { transform: translateY(-3px); box-shadow: var(--riss-shadow-md); }
.pkg-card.featured { border-color: var(--riss-maroon); background: #fff9f7; }
.pkg-popular { position: absolute; top: 10px; right: -22px; background: var(--riss-maroon); color: #fff; font-size: .62rem; font-weight: 700; padding: 3px 28px; transform: rotate(45deg); letter-spacing: .05em; }
.pkg-icon { font-size: 2rem; margin-bottom: .75rem; }
.pkg-card h4 { font-size: .9rem; font-weight: 700; color: var(--riss-dark); margin-bottom: .5rem; }
.pkg-amount { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--riss-primary); line-height: 1; margin-bottom: .4rem; }
.pkg-card.featured .pkg-amount { color: var(--riss-maroon); }
.pkg-sub { font-size: .75rem; color: var(--riss-muted); line-height: 1.55; }
.pkg-badge { display: inline-block; margin-top: .75rem; font-size: .68rem; font-weight: 700; padding: 2px 10px; border-radius: 10px; background: var(--riss-primary); color: #fff; }
.pkg-card.featured .pkg-badge { background: var(--riss-maroon); }

/* ── PRIVACY POLICY SECTIONS ── */
.pp-section {
  background: #fff; border: 1px solid var(--riss-border);
  border-radius: 14px; padding: 1.8rem;
  margin-bottom: 1.2rem;
}
.pp-head {
  display: flex; align-items: center; gap: .75rem;
  padding-bottom: .85rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--riss-border);
}
.pp-num {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--riss-primary); color: #fff;
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pp-head h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--riss-primary); margin: 0; }
.pp-section p { font-size: .88rem; color: var(--riss-muted); line-height: 1.8; margin-bottom: .75rem; }
.pp-section p:last-child { margin-bottom: 0; }
.pp-list { list-style: none; margin: .4rem 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.pp-list li { font-size: .85rem; color: var(--riss-muted); display: flex; gap: .5rem; align-items: flex-start; }
.pp-list li::before { content: '→'; color: var(--riss-primary); font-weight: 700; flex-shrink: 0; }

/* ── ABOUT PAGE ── */
.about-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.about-visual { border-radius: 20px; background: linear-gradient(135deg,var(--riss-primary),var(--riss-secondary)); height: 360px; display: flex; align-items: center; justify-content: center; font-size: 5rem; color: #fff; box-shadow: var(--riss-shadow-lg); }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; margin-bottom: 1rem; color: var(--riss-dark); }
.about-text p { font-size: .9rem; color: var(--riss-muted); line-height: 1.8; margin-bottom: .85rem; }
.stat-boxes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.5rem; }
.stat-box-item { background: var(--riss-light); border-radius: 12px; padding: 1rem; text-align: center; }
.stat-box-item .num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--riss-primary); display: block; line-height: 1; }
.stat-box-item .lbl { font-size: .72rem; color: var(--riss-muted); }

/* ── FOOTER ── */
.site-footer { background: var(--riss-dark); color: #fff; padding: 3.5rem 0 1.2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-col h4 span { color: var(--riss-secondary); }
.footer-col p { font-size: .82rem; color: #9ca3af; line-height: 1.75; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { color: #d1d5db; font-size: .82rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--riss-secondary); }
.footer-bottom { border-top: 1px solid #374151; padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .78rem; color: #9ca3af; margin: 0; }
.footer-bottom a { color: #d1d5db; }

/* ── WA FLOAT ── */
.wa-float-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: wa-pulse 2.5s infinite;
  transition: transform .2s;
}
.wa-float-btn:hover { transform: scale(1.12); color: #fff; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.75); }
}

/* ── PRINT OFFER BANNER ── */
.offer-banner {
  background: linear-gradient(135deg,#1b5e20,#2e7d32);
  border-radius: 14px; padding: 1.5rem 2rem;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem; color: #fff;
  margin-bottom: 1.5rem;
}
.offer-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #a5d6a7; margin-bottom: .3rem; }
.offer-title { font-size: 1.1rem; font-weight: 700; }
.offer-prices { display: flex; align-items: center; gap: .75rem; margin-top: .3rem; }
.offer-old { font-size: .85rem; text-decoration: line-through; color: rgba(255,255,255,.55); }
.offer-new { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: #ffcc02; }
.offer-save { background: #ff8f00; font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 8px; }

/* ── FORM CATEGORY CARDS ── */
.form-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.form-cat { background: #fff; border: 1px solid var(--riss-border); border-radius: 14px; overflow: hidden; transition: all .25s; }
.form-cat:hover { box-shadow: var(--riss-shadow-md); border-color: var(--riss-primary); }
.form-cat-head { padding: .9rem 1.2rem; display: flex; align-items: center; gap: .8rem; border-bottom: 1px solid var(--riss-border); background: var(--riss-light); }
.form-cat-head h4 { font-size: .9rem; font-weight: 700; color: var(--riss-dark); margin: 0; }
.fc-count { margin-left: auto; background: var(--riss-primary); color: #fff; font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 8px; flex-shrink: 0; }
.form-cat-body { padding: .75rem 1.2rem 1rem; }
.form-cat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.form-cat-list li { font-size: .78rem; color: var(--riss-muted); padding: 2px 0; display: flex; align-items: center; gap: .35rem; }
.form-cat-list li::before { content: '›'; color: var(--riss-primary); font-weight: 700; font-size: .9rem; }
.form-cat-foot { padding: .6rem 1.2rem; background: #f9fafb; border-top: 1px solid var(--riss-border); display: flex; align-items: center; justify-content: space-between; }
.fc-price { font-size: .8rem; font-weight: 700; color: var(--riss-primary); }

/* ── LANG CARDS ── */
.lang-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.lang-card { border-radius: 14px; overflow: hidden; border: 2px solid var(--riss-border); }
.lang-card.hindi  { border-color: #ff9933; }
.lang-card.english{ border-color: var(--riss-primary); }
.lang-card-head { padding: 1rem 1.2rem; display: flex; align-items: center; gap: .75rem; }
.lang-card.hindi  .lang-card-head { background: linear-gradient(135deg,#fff8f0,#fff3e0); }
.lang-card.english .lang-card-head { background: var(--riss-light); }
.lang-card-head h4 { font-size: .95rem; font-weight: 700; margin: 0; }
.lang-card.hindi  .lang-card-head h4 { color: #bf360c; }
.lang-card.english .lang-card-head h4 { color: var(--riss-primary); }
.lang-card-body { background: #fff; padding: .75rem 1.2rem 1rem; }
.lang-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.lang-list li { font-size: .8rem; color: var(--riss-muted); padding: 3px 0; border-bottom: 1px dashed #f0f4fa; display: flex; align-items: center; gap: .4rem; }
.lang-list li:last-child { border-bottom: none; }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .contact-grid, .about-two-col, .lang-cards-grid { grid-template-columns: 1fr; }
  .about-visual { height: 200px; font-size: 3.5rem; }
  .stat-boxes { grid-template-columns: repeat(3,1fr); }
}
@media(max-width:768px){
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--riss-primary-dark); padding: 1rem; z-index: 9998; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .mobile-toggle { display: block; }
  .header-main { flex-wrap: wrap; position: relative; }
  .slide { padding: 3rem 1.2rem; }
  .slide-emoji { display: none; }
  .stats-row { gap: 1.5rem; }
  .cta-banner { text-align: center; justify-content: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-bottom { text-align: center; justify-content: center; }
}
@media(max-width:480px){
  .pvc-grid { grid-template-columns: repeat(3,1fr); }
  .charge-grid, .pkg-grid { grid-template-columns: 1fr 1fr; }
  .stat-boxes { grid-template-columns: repeat(3,1fr); }
  .header-topbar { display: none; }
}
