/* ============================================
   LegalPehchan – Corpbiz-Inspired Modern Design
   Primary: #0d47a1 | Accent: #ff6d00
   ============================================ */
:root {
  --primary: #0d47a1;
  --primary-dark: #002171;
  --primary-light: #1565c0;
  --primary-hover: #1976d2;
  --accent: #ff6d00;
  --accent-light: #ff9e40;
  --accent-dark: #e65100;
  --green: #2e7d32;
  --green-light: #43a047;
  --text-dark: #1a1a2e;
  --text-mid: #424242;
  --text-light: #757575;
  --bg: #f5f7fa;
  --bg-white: #ffffff;
  --bg-blue-light: #e8f0fe;
  --border: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --transition: all 0.25s ease;
  /* Legacy aliases for inner pages */
  --gov-blue-dark: #0d47a1;
  --gov-orange: #ff6d00;
  --gov-green: #2e7d32;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Segoe UI',Arial,sans-serif; color:var(--text-dark); background:var(--bg-white); font-size:15px; line-height:1.65; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; height:auto; }
ul { list-style:none; }
.container { width:92%; max-width:1200px; margin:0 auto; }

/* ======================== TOP BAR ======================== */
.gov-topbar { background:var(--primary-dark); color:#c8d9f0; font-size:12.5px; padding:7px 0; }
.gov-topbar .container { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.topbar-left { display:flex; align-items:center; gap:12px; }
.topbar-left .emblem { width:28px; height:28px; object-fit:contain; }
.topbar-text { display:flex; flex-direction:column; }
.topbar-text .hindi { font-size:11px; color:#a8c4e8; }
.topbar-text .english { font-size:11px; color:#c8d9f0; }
.topbar-right { display:flex; align-items:center; gap:14px; }
.topbar-right a { color:#c8d9f0; transition:var(--transition); font-size:12px; }
.topbar-right a:hover { color:#fff; }
.topbar-right .sep { color:rgba(255,255,255,.25); }

/* ======================== MAIN HEADER ======================== */
.main-header { background:#fff; box-shadow:var(--shadow-sm); position:sticky; top:0; z-index:1000; border-bottom:1px solid var(--border); }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:20px; }
.logo-section { display:flex; align-items:center; gap:14px; }
.header-logo { height:52px; width:auto; max-width:200px; object-fit:contain; }
.brand-link { display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo-text { font-size:26px; font-weight:800; color:var(--primary); letter-spacing:-0.5px; line-height:1; }
.logo-text span { color:var(--accent); }
/* Text logo fallback — shown when image fails */
.site-title { display:flex; flex-direction:column; }
.logo-tagline { font-size:11px; color:var(--text-light); margin-top:2px; }
.site-title .en-sub { font-size:10px; color:var(--accent); font-weight:600; }
.header-contact { display:flex; align-items:center; gap:20px; }
.contact-item { display:flex; align-items:center; gap:8px; }
.contact-item .icon { font-size:18px; }
.contact-item small { display:block; font-size:11px; color:var(--text-light); }
.contact-item strong { display:block; font-size:14px; color:var(--text-dark); font-weight:700; }
.whatsapp-btn { background:#25d366; color:#fff !important; padding:9px 18px; border-radius:6px; font-weight:700; font-size:13px; display:flex; align-items:center; gap:6px; transition:var(--transition); white-space:nowrap; }
.whatsapp-btn:hover { background:#1da851; transform:translateY(-1px); }
.consult-btn { background:var(--accent); color:#fff !important; padding:9px 18px; border-radius:6px; font-weight:700; font-size:13px; display:flex; align-items:center; gap:6px; transition:var(--transition); white-space:nowrap; }
.consult-btn:hover { background:var(--accent-dark); transform:translateY(-1px); }

/* ======================== NAVIGATION ======================== */
.main-nav { background:var(--primary); position:sticky; top:73px; z-index:999; }
.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.nav-list { display:flex; align-items:center; gap:0; }
.nav-list > li { position:relative; }
.nav-list > li > a { display:flex; align-items:center; gap:5px; padding:14px 15px; color:#fff; font-size:13.5px; font-weight:600; transition:var(--transition); white-space:nowrap; }
.nav-list > li > a:hover, .nav-list > li > a.active { background:rgba(255,255,255,0.15); color:#fff; }
.nav-list > li.has-dropdown > a::after { content:'▾'; font-size:10px; margin-left:2px; }
.nav-cta { background:var(--accent) !important; color:#fff !important; border-radius:4px; margin:8px 10px; padding:8px 16px !important; }
.nav-cta:hover { background:var(--accent-dark) !important; }

/* Dropdowns */
.dropdown { display:none; position:absolute; top:100%; left:0; background:#fff; border-radius:0 0 var(--radius) var(--radius); box-shadow:var(--shadow-lg); min-width:220px; z-index:1000; border-top:3px solid var(--accent); }
.dropdown a { display:block; padding:10px 18px; color:var(--text-dark); font-size:13.5px; transition:var(--transition); border-bottom:1px solid #f5f5f5; }
.dropdown a:hover { background:var(--bg-blue-light); color:var(--primary); padding-left:24px; }
.has-dropdown:hover .dropdown { display:block; }

/* Mega Dropdown */
.mega-dropdown { min-width:680px; display:none; padding:20px; gap:0; }
.has-dropdown:hover .mega-dropdown { display:flex; }
.dd-col { flex:1; padding:0 16px; border-right:1px solid var(--border); }
.dd-col:last-child { border-right:none; }
.dd-col h4 { font-size:12px; font-weight:700; color:var(--accent); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:10px; padding-bottom:6px; border-bottom:1px solid var(--border); }
.dd-col a { display:block; padding:7px 0; color:var(--text-mid); font-size:13px; border-bottom:none; transition:var(--transition); }
.dd-col a:hover { color:var(--primary); padding-left:6px; background:none; }

/* Mobile Toggle */
.mobile-toggle { display:none; background:none; border:none; color:#fff; font-size:22px; cursor:pointer; padding:10px; }

/* Notice Bar */
.notice-bar { background:var(--bg-blue-light); border-bottom:1px solid #c5d8f8; padding:7px 0; overflow:hidden; }
.notice-bar .container { display:flex; align-items:center; gap:12px; }
.notice-label { background:var(--accent); color:#fff; font-size:11px; font-weight:700; padding:3px 10px; border-radius:3px; white-space:nowrap; }
.notice-ticker { overflow:hidden; flex:1; }
.notice-ticker span { display:inline-block; white-space:nowrap; animation:ticker 40s linear infinite; font-size:12.5px; color:var(--primary); font-weight:500; }
@keyframes ticker { 0%{transform:translateX(100%)} 100%{transform:translateX(-100%)} }

/* ======================== HERO SECTION ======================== */
.hero-section { background:linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%); padding:60px 0 50px; position:relative; overflow:hidden; }
.hero-section::before { content:''; position:absolute; top:-50%; right:-10%; width:600px; height:600px; background:rgba(255,255,255,0.04); border-radius:50%; }
.hero-content { display:grid; grid-template-columns:1fr 420px; gap:50px; align-items:center; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.15); color:#fff; font-size:12px; font-weight:600; padding:6px 14px; border-radius:20px; margin-bottom:18px; border:1px solid rgba(255,255,255,0.25); }
.hero-title { font-size:38px; font-weight:800; color:#fff; line-height:1.2; margin-bottom:16px; }
.hero-title span { color:var(--accent-light); }
.hero-sub { font-size:15px; color:rgba(255,255,255,0.85); line-height:1.7; margin-bottom:28px; max-width:520px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:32px; }
.btn-primary { background:var(--accent); color:#fff; padding:13px 28px; border-radius:6px; font-weight:700; font-size:15px; transition:var(--transition); display:inline-flex; align-items:center; gap:8px; }
.btn-primary:hover { background:var(--accent-dark); transform:translateY(-2px); box-shadow:0 6px 20px rgba(255,109,0,0.4); }
.btn-secondary { background:rgba(255,255,255,0.15); color:#fff; padding:13px 28px; border-radius:6px; font-weight:700; font-size:15px; border:2px solid rgba(255,255,255,0.4); transition:var(--transition); display:inline-flex; align-items:center; gap:8px; }
.btn-secondary:hover { background:rgba(255,255,255,0.25); transform:translateY(-2px); }
.hero-stats { display:flex; gap:28px; flex-wrap:wrap; }
.stat { text-align:center; }
.stat strong { display:block; font-size:22px; font-weight:800; color:#fff; }
.stat span { font-size:11px; color:rgba(255,255,255,0.75); }

/* Hero Search Bar */
.hero-search { background:rgba(255,255,255,0.12); border-radius:var(--radius-lg); padding:20px; margin-bottom:20px; }
.hero-search-bar { display:flex; background:#fff; border-radius:6px; overflow:hidden; box-shadow:var(--shadow-md); }
.hero-search-bar input { flex:1; padding:14px 18px; border:none; outline:none; font-size:15px; color:var(--text-dark); }
.hero-search-bar button { background:var(--accent); color:#fff; border:none; padding:14px 24px; font-weight:700; cursor:pointer; font-size:15px; transition:var(--transition); }
.hero-search-bar button:hover { background:var(--accent-dark); }
.hero-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.hero-tag { background:rgba(255,255,255,0.2); color:#fff; font-size:12px; padding:5px 12px; border-radius:20px; cursor:pointer; transition:var(--transition); border:1px solid rgba(255,255,255,0.3); }
.hero-tag:hover { background:rgba(255,255,255,0.35); }

/* Quick Form */
.quick-form { background:#fff; border-radius:var(--radius-lg); padding:28px; box-shadow:var(--shadow-lg); }
.form-header { margin-bottom:20px; }
.form-header h3 { font-size:18px; font-weight:700; color:var(--primary); margin-bottom:4px; }
.form-header p { font-size:13px; color:var(--text-light); }
.form-group { margin-bottom:14px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--text-mid); margin-bottom:5px; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:11px 14px; border:1.5px solid var(--border); border-radius:6px; font-size:14px; color:var(--text-dark); transition:var(--transition); background:#fff; font-family:inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--primary); outline:none; box-shadow:0 0 0 3px rgba(13,71,161,0.1); }
.form-group textarea { height:80px; resize:vertical; }
.form-submit { width:100%; background:var(--accent); color:#fff; border:none; padding:13px; border-radius:6px; font-size:15px; font-weight:700; cursor:pointer; transition:var(--transition); }
.form-submit:hover { background:var(--accent-dark); transform:translateY(-1px); }
.form-note { text-align:center; font-size:12px; color:var(--text-light); margin-top:10px; }

/* ======================== TRUST SECTION ======================== */
.trust-section { background:#fff; border-bottom:1px solid var(--border); padding:18px 0; }
.trust-grid { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.trust-item { display:flex; align-items:center; gap:10px; font-size:13px; font-weight:600; color:var(--text-mid); }
.trust-item img { height:32px; width:auto; }
.trust-icon { font-size:22px; }

/* ======================== SECTION HEADERS ======================== */
.section-header { text-align:center; margin-bottom:40px; }
.section-badge { display:inline-block; background:var(--bg-blue-light); color:var(--primary); font-size:12px; font-weight:700; padding:5px 14px; border-radius:20px; margin-bottom:12px; text-transform:uppercase; letter-spacing:0.5px; }
.section-header h2 { font-size:30px; font-weight:800; color:var(--text-dark); margin-bottom:10px; }
.section-header p { font-size:15px; color:var(--text-light); max-width:600px; margin:0 auto; }

/* ======================== SERVICES SECTION ======================== */
.services-section { padding:60px 0; background:var(--bg); }
.cat-tabs { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-bottom:32px; }
.cat-tab { padding:9px 20px; border:2px solid var(--border); background:#fff; color:var(--text-mid); border-radius:25px; cursor:pointer; font-size:13.5px; font-weight:600; transition:var(--transition); }
.cat-tab.active, .cat-tab:hover { background:var(--primary); color:#fff; border-color:var(--primary); }
.services-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.service-card { background:#fff; border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow-sm); transition:var(--transition); position:relative; border:1px solid var(--border); }
.service-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--primary); }
.service-card.hidden { display:none; }
.card-icon { font-size:36px; margin-bottom:12px; }
.card-badge { position:absolute; top:16px; right:16px; background:var(--accent); color:#fff; font-size:10px; font-weight:700; padding:3px 10px; border-radius:12px; text-transform:uppercase; }
.service-card h3 { font-size:16px; font-weight:700; color:var(--text-dark); margin-bottom:8px; }
.service-card p { font-size:13.5px; color:var(--text-light); line-height:1.6; margin-bottom:12px; }
.card-list { padding:0; margin-bottom:14px; }
.card-list li { font-size:13px; color:var(--text-mid); padding:3px 0; }
.card-price { font-size:15px; font-weight:700; color:var(--primary); margin-bottom:14px; }
.card-actions { display:flex; gap:10px; align-items:center; }
.card-btn { flex:1; background:var(--primary); color:#fff; padding:9px 16px; border-radius:6px; font-size:13px; font-weight:700; text-align:center; transition:var(--transition); }
.card-btn:hover { background:var(--primary-dark); }
.card-wa { background:#25d366; color:#fff; padding:9px 14px; border-radius:6px; font-size:16px; transition:var(--transition); }
.card-wa:hover { background:#1da851; }
.view-all-wrap { text-align:center; }
.view-all-btn { display:inline-block; background:#fff; color:var(--primary); border:2px solid var(--primary); padding:12px 32px; border-radius:6px; font-weight:700; font-size:14px; transition:var(--transition); }
.view-all-btn:hover { background:var(--primary); color:#fff; }

/* ======================== PROCESS SECTION ======================== */
.process-section { padding:60px 0; background:#fff; }
.process-steps { display:flex; align-items:flex-start; justify-content:center; gap:0; flex-wrap:wrap; }
.step { flex:1; min-width:180px; max-width:220px; text-align:center; padding:24px 16px; }
.step-num { font-size:11px; font-weight:700; color:var(--accent); text-transform:uppercase; letter-spacing:1px; margin-bottom:8px; }
.step-icon { font-size:40px; margin-bottom:12px; }
.step h3 { font-size:15px; font-weight:700; color:var(--text-dark); margin-bottom:8px; }
.step p { font-size:13px; color:var(--text-light); line-height:1.6; }
.step-arrow { font-size:28px; color:var(--accent); align-self:center; padding:0 8px; margin-top:-20px; }

/* ======================== TOOLS SECTION ======================== */
.tools-section { padding:60px 0; background:var(--bg); }
.tools-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.tool-card { background:#fff; border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow-sm); border:1px solid var(--border); }
.tool-icon { font-size:36px; margin-bottom:12px; }
.tool-card h3 { font-size:16px; font-weight:700; color:var(--text-dark); margin-bottom:6px; }
.tool-card p { font-size:13px; color:var(--text-light); margin-bottom:16px; }
.tool-form input, .tool-form select { width:100%; padding:10px 12px; border:1.5px solid var(--border); border-radius:6px; font-size:13.5px; margin-bottom:10px; font-family:inherit; }
.tool-form input:focus, .tool-form select:focus { border-color:var(--primary); outline:none; }
.tool-result { background:var(--bg-blue-light); border-radius:6px; padding:12px; font-size:13.5px; color:var(--text-mid); min-height:42px; margin-bottom:14px; }
.tool-btn { display:block; text-align:center; background:var(--primary); color:#fff; padding:10px; border-radius:6px; font-size:13px; font-weight:700; transition:var(--transition); }
.tool-btn:hover { background:var(--primary-dark); }

/* ======================== TESTIMONIALS ======================== */
.testimonials-section { padding:60px 0; background:#fff; }
.testi-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.testi-card { background:var(--bg); border-radius:var(--radius-lg); padding:24px; border:1px solid var(--border); transition:var(--transition); }
.testi-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.stars { color:#f59e0b; font-size:16px; margin-bottom:12px; }
.testi-card p { font-size:14px; color:var(--text-mid); line-height:1.7; margin-bottom:16px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:42px; height:42px; border-radius:50%; background:var(--primary); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:14px; flex-shrink:0; }
.testi-author strong { display:block; font-size:14px; color:var(--text-dark); }
.testi-author span { font-size:12px; color:var(--text-light); }
.google-rating { display:flex; align-items:center; gap:12px; justify-content:center; margin-top:28px; background:var(--bg); padding:14px 24px; border-radius:8px; border:1px solid var(--border); width:fit-content; margin-left:auto; margin-right:auto; font-size:14px; }

/* ======================== STATS SECTION ======================== */
.stats-section { background:var(--primary); padding:50px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:30px; text-align:center; }
.stat-item strong { display:block; font-size:36px; font-weight:800; color:#fff; }
.stat-item span { font-size:13px; color:rgba(255,255,255,0.8); margin-top:4px; display:block; }
.stat-item .stat-icon { font-size:28px; margin-bottom:8px; }

/* ======================== BLOG SECTION ======================== */
.blog-section { padding:60px 0; background:var(--bg); }
.blog-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.blog-card { background:#fff; border-radius:var(--radius-lg); padding:24px; border:1px solid var(--border); transition:var(--transition); }
.blog-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.blog-cat { display:inline-block; background:var(--bg-blue-light); color:var(--primary); font-size:11px; font-weight:700; padding:4px 12px; border-radius:12px; margin-bottom:12px; text-transform:uppercase; }
.blog-card h3 { font-size:16px; font-weight:700; color:var(--text-dark); margin-bottom:10px; line-height:1.4; }
.blog-card h3 a:hover { color:var(--primary); }
.blog-card p { font-size:13.5px; color:var(--text-light); line-height:1.6; margin-bottom:14px; }
.blog-meta { display:flex; gap:16px; font-size:12px; color:var(--text-light); }

/* ======================== LOCATION SECTION ======================== */
.location-section { padding:60px 0; background:#fff; }
.location-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:16px; }
.loc-card { background:var(--bg); border:1px solid var(--border); border-radius:var(--radius); padding:16px; display:flex; align-items:center; gap:10px; transition:var(--transition); }
.loc-card:hover { background:var(--bg-blue-light); border-color:var(--primary); transform:translateY(-2px); }
.loc-icon { font-size:20px; }
.loc-card h4 { font-size:13px; font-weight:600; color:var(--text-dark); line-height:1.3; }

/* ======================== FAQ SECTION ======================== */
.faq-section { padding:60px 0; background:var(--bg); }
.faq-list { max-width:800px; margin:0 auto; }
.faq-item { background:#fff; border:1px solid var(--border); border-radius:var(--radius); margin-bottom:10px; overflow:hidden; }
.faq-q { width:100%; background:none; border:none; padding:16px 20px; text-align:left; font-size:15px; font-weight:600; color:var(--text-dark); cursor:pointer; display:flex; justify-content:space-between; align-items:center; transition:var(--transition); font-family:inherit; }
.faq-q:hover { background:var(--bg-blue-light); color:var(--primary); }
.faq-q span { font-size:20px; color:var(--accent); font-weight:400; transition:var(--transition); }
.faq-a { display:none; padding:0 20px 16px; font-size:14px; color:var(--text-mid); line-height:1.7; border-top:1px solid var(--border); padding-top:14px; }
.faq-item.open .faq-a { display:block; }
.faq-item.open .faq-q span { transform:rotate(45deg); }
.faq-item.open .faq-q { color:var(--primary); background:var(--bg-blue-light); }

/* ======================== CTA BANNER ======================== */
.cta-banner { background:linear-gradient(135deg, var(--primary-dark), var(--primary)); padding:50px 0; }
.cta-content { text-align:center; }
.cta-content h2 { font-size:28px; font-weight:800; color:#fff; margin-bottom:10px; }
.cta-content p { font-size:15px; color:rgba(255,255,255,0.85); margin-bottom:24px; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.cta-btn-primary { background:var(--accent); color:#fff; padding:13px 28px; border-radius:6px; font-weight:700; font-size:15px; transition:var(--transition); }
.cta-btn-primary:hover { background:var(--accent-dark); transform:translateY(-2px); }
.cta-btn-wa { background:#25d366; color:#fff; padding:13px 28px; border-radius:6px; font-weight:700; font-size:15px; transition:var(--transition); }
.cta-btn-wa:hover { background:#1da851; transform:translateY(-2px); }
.cta-btn-secondary { background:rgba(255,255,255,0.15); color:#fff; padding:13px 28px; border-radius:6px; font-weight:700; font-size:15px; border:2px solid rgba(255,255,255,0.4); transition:var(--transition); }
.cta-btn-secondary:hover { background:rgba(255,255,255,0.25); }

/* ======================== NEWSLETTER ======================== */
.newsletter-section { padding:50px 0; background:var(--bg); }
.newsletter-box { background:#fff; border-radius:var(--radius-lg); padding:40px; text-align:center; box-shadow:var(--shadow-sm); border:1px solid var(--border); max-width:600px; margin:0 auto; }
.newsletter-box h3 { font-size:22px; font-weight:700; color:var(--text-dark); margin-bottom:8px; }
.newsletter-box p { font-size:14px; color:var(--text-light); margin-bottom:20px; }
.newsletter-form { display:flex; gap:10px; }
.newsletter-form input { flex:1; padding:12px 16px; border:1.5px solid var(--border); border-radius:6px; font-size:14px; font-family:inherit; }
.newsletter-form input:focus { border-color:var(--primary); outline:none; }
.newsletter-form button { background:var(--accent); color:#fff; border:none; padding:12px 24px; border-radius:6px; font-weight:700; cursor:pointer; font-size:14px; transition:var(--transition); white-space:nowrap; }
.newsletter-form button:hover { background:var(--accent-dark); }

/* ======================== FOOTER ======================== */
.main-footer { background:#0a1628; color:#c8d9f0; padding:60px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1.5fr; gap:40px; margin-bottom:40px; }
.footer-logo { margin-bottom:14px; }
.footer-logo img { height:44px; width:auto; }
.footer-brand-link { display:inline-block; }
.footer-logo-text { font-size:24px; font-weight:800; color:#fff; }
.footer-logo-text span { color:var(--accent); }
.footer-col p { font-size:13.5px; color:#8fa8c8; line-height:1.7; margin-bottom:16px; }
.footer-col h4 { font-size:14px; font-weight:700; color:#fff; margin-bottom:16px; padding-bottom:8px; border-bottom:2px solid var(--accent); display:inline-block; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a { font-size:13.5px; color:#8fa8c8; transition:var(--transition); }
.footer-col ul li a:hover { color:#fff; padding-left:4px; }
.footer-social { display:flex; gap:10px; margin-top:4px; }
.footer-social a { width:36px; height:36px; background:rgba(255,255,255,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; transition:var(--transition); }
.footer-social a:hover { background:var(--accent); transform:translateY(-2px); }
.footer-contact p { margin-bottom:8px; font-size:13.5px; }
.footer-contact a { color:#8fa8c8; transition:var(--transition); }
.footer-contact a:hover { color:#fff; }
.footer-hours h5 { font-size:13px; font-weight:700; color:#fff; margin-bottom:6px; margin-top:14px; }
.footer-hours p { font-size:13px; color:#8fa8c8; margin-bottom:4px; }

.footer-links-bar { background:#061020; padding:14px 0; }
.footer-links { display:flex; flex-wrap:wrap; gap:6px 20px; justify-content:center; }
.footer-links a { font-size:12.5px; color:#8fa8c8; transition:var(--transition); }
.footer-links a:hover { color:#fff; }

.footer-bottom { background:#040d1a; padding:16px 0; text-align:center; }
.footer-bottom p { font-size:12.5px; color:#6b7f99; }

/* ======================== FLOATING BUTTONS ======================== */
.float-wa { position:fixed; bottom:24px; right:24px; width:58px; height:58px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; z-index:9999; box-shadow:0 4px 20px rgba(37,211,102,0.5); transition:var(--transition); text-decoration:none; }
.float-wa:hover { transform:scale(1.1); background:#1da851; }
.float-wa svg { display:block; }
.wa-tooltip { position:absolute; right:68px; background:#1a1a1a; color:#fff; font-size:12px; padding:6px 12px; border-radius:6px; white-space:nowrap; opacity:0; pointer-events:none; transition:var(--transition); }
.float-wa:hover .wa-tooltip { opacity:1; }
.float-call { position:fixed; bottom:94px; right:24px; width:50px; height:50px; background:var(--primary); border-radius:50%; display:flex; align-items:center; justify-content:center; z-index:9999; box-shadow:0 4px 20px rgba(13,71,161,0.45); transition:var(--transition); color:#fff; text-decoration:none; }
.float-call:hover { transform:scale(1.1); background:var(--primary-dark); }
.float-call svg { display:block; }

/* ======================== INNER PAGE STYLES ======================== */
.page-hero { background:linear-gradient(135deg, var(--primary-dark), var(--primary)); padding:40px 0; color:#fff; }
.page-hero h1 { font-size:28px; font-weight:800; margin-bottom:10px; }
.page-hero p { font-size:15px; color:rgba(255,255,255,0.85); max-width:700px; line-height:1.7; }
.breadcrumb { font-size:13px; color:rgba(255,255,255,0.7); margin-bottom:12px; }
.breadcrumb a { color:rgba(255,255,255,0.8); }
.breadcrumb a:hover { color:#fff; }

.page-body { padding:40px 0 60px; }
.page-layout { display:grid; grid-template-columns:1fr 340px; gap:32px; align-items:start; }
.page-content { min-width:0; }

/* Content Styles */
.cs h2 { color:var(--primary); font-size:22px; font-weight:700; margin-bottom:14px; border-left:4px solid var(--accent); padding-left:12px; margin-top:28px; }
.cs h2:first-child { margin-top:0; }
.cs h3 { color:var(--text-dark); font-size:17px; font-weight:700; margin:18px 0 10px; }
.cs p { color:var(--text-mid); line-height:1.8; margin-bottom:12px; font-size:15px; }
.cs ul { padding-left:20px; margin-bottom:14px; list-style:disc; }
.cs ul li { color:var(--text-mid); line-height:1.8; font-size:15px; margin-bottom:6px; }
.cs ol { padding-left:20px; margin-bottom:14px; }
.cs ol li { color:var(--text-mid); line-height:1.8; font-size:15px; margin-bottom:8px; }

/* Sidebar */
.sidebar-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow-sm); position:sticky; top:140px; }
.sidebar-card h3 { font-size:16px; font-weight:700; color:var(--primary); margin-bottom:16px; padding-bottom:10px; border-bottom:2px solid var(--accent); }

/* Pricing Table */
.pricing-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; margin:24px 0; }
.pricing-card { background:#fff; border:2px solid var(--border); border-radius:var(--radius-lg); padding:24px; text-align:center; transition:var(--transition); }
.pricing-card.featured { border-color:var(--primary); transform:scale(1.03); box-shadow:var(--shadow-md); }
.pricing-card .plan-name { font-size:13px; font-weight:700; text-transform:uppercase; color:var(--text-light); letter-spacing:1px; margin-bottom:8px; }
.pricing-card .plan-price { font-size:32px; font-weight:800; color:var(--primary); margin-bottom:4px; }
.pricing-card .plan-price span { font-size:14px; font-weight:400; color:var(--text-light); }
.pricing-card .plan-desc { font-size:13px; color:var(--text-light); margin-bottom:16px; }
.pricing-card ul { text-align:left; padding:0; margin-bottom:20px; }
.pricing-card ul li { font-size:13px; color:var(--text-mid); padding:5px 0; border-bottom:1px solid #f5f5f5; }
.pricing-card .plan-btn { display:block; background:var(--primary); color:#fff; padding:11px; border-radius:6px; font-weight:700; font-size:14px; transition:var(--transition); }
.pricing-card .plan-btn:hover { background:var(--primary-dark); }
.pricing-card.featured .plan-btn { background:var(--accent); }
.pricing-card.featured .plan-btn:hover { background:var(--accent-dark); }
.featured-badge { background:var(--accent); color:#fff; font-size:11px; font-weight:700; padding:3px 12px; border-radius:12px; display:inline-block; margin-bottom:10px; }

/* Docs Table */
.docs-table { width:100%; border-collapse:collapse; margin:16px 0; font-size:14px; }
.docs-table th { background:var(--primary); color:#fff; padding:10px 14px; text-align:left; font-size:13px; }
.docs-table td { padding:10px 14px; border-bottom:1px solid var(--border); color:var(--text-mid); }
.docs-table tr:hover td { background:var(--bg-blue-light); }

/* Why Us Section */
.why-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; margin:24px 0; }
.why-card { background:var(--bg); border-radius:var(--radius-lg); padding:24px; border:1px solid var(--border); text-align:center; }
.why-icon { font-size:36px; margin-bottom:12px; }
.why-card h3 { font-size:16px; font-weight:700; color:var(--text-dark); margin-bottom:8px; }
.why-card p { font-size:13.5px; color:var(--text-light); line-height:1.6; }

/* Features Grid */
.features-grid { display:grid; grid-template-columns:repeat(5, 1fr); gap:20px; }
.feature-item { text-align:center; padding:20px 12px; }
.feature-icon { font-size:36px; margin-bottom:10px; }
.feature-item h4 { font-size:14px; font-weight:700; color:var(--text-dark); margin-bottom:6px; }
.feature-item p { font-size:12.5px; color:var(--text-light); line-height:1.5; }

/* ======================== ABOUT PAGE ======================== */
.team-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; margin:24px 0; }
.team-card { background:#fff; border-radius:var(--radius-lg); padding:24px; text-align:center; border:1px solid var(--border); box-shadow:var(--shadow-sm); transition:var(--transition); }
.team-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.team-avatar { width:80px; height:80px; border-radius:50%; background:var(--primary); color:#fff; display:flex; align-items:center; justify-content:center; font-size:28px; font-weight:700; margin:0 auto 14px; }
.team-card h3 { font-size:16px; font-weight:700; color:var(--text-dark); margin-bottom:4px; }
.team-card .designation { font-size:13px; color:var(--accent); font-weight:600; margin-bottom:8px; }
.team-card p { font-size:13px; color:var(--text-light); line-height:1.6; }
.mission-vision { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin:24px 0; }
.mv-card { background:var(--bg); border-radius:var(--radius-lg); padding:24px; border-left:4px solid var(--accent); }
.mv-card h3 { font-size:18px; font-weight:700; color:var(--primary); margin-bottom:10px; }
.mv-card p { font-size:14px; color:var(--text-mid); line-height:1.7; }
.cert-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:16px; margin:24px 0; }
.cert-item { background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:16px; text-align:center; }
.cert-icon { font-size:28px; margin-bottom:8px; }
.cert-item h4 { font-size:13px; font-weight:700; color:var(--text-dark); }
.cert-item p { font-size:12px; color:var(--text-light); }

/* ======================== CONTACT PAGE ======================== */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.contact-info-card { background:var(--bg); border-radius:var(--radius-lg); padding:28px; border:1px solid var(--border); }
.contact-info-card h3 { font-size:18px; font-weight:700; color:var(--primary); margin-bottom:20px; }
.contact-detail { display:flex; align-items:flex-start; gap:14px; margin-bottom:20px; }
.contact-detail-icon { font-size:24px; flex-shrink:0; }
.contact-detail h4 { font-size:14px; font-weight:700; color:var(--text-dark); margin-bottom:4px; }
.contact-detail p, .contact-detail a { font-size:14px; color:var(--text-mid); }
.contact-detail a:hover { color:var(--primary); }
.map-placeholder { background:var(--bg-blue-light); border-radius:var(--radius); height:220px; display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--text-light); border:1px solid var(--border); margin-top:20px; }
.contact-form-card { background:#fff; border-radius:var(--radius-lg); padding:28px; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.contact-form-card h3 { font-size:18px; font-weight:700; color:var(--primary); margin-bottom:20px; }
.hours-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:16px; }
.hours-item { background:#fff; border-radius:var(--radius); padding:12px; border:1px solid var(--border); text-align:center; }
.hours-item h5 { font-size:12px; font-weight:700; color:var(--text-dark); margin-bottom:4px; }
.hours-item p { font-size:12px; color:var(--text-light); }

/* ======================== RECOMMENDED STRIP ======================== */
.recommended-strip { background:#fff; border-bottom:1px solid var(--border); padding:16px 0; }
.recommended-strip .container { display:flex; align-items:center; gap:16px; overflow-x:auto; }
.rec-label { font-size:12px; font-weight:700; color:var(--text-light); text-transform:uppercase; white-space:nowrap; }
.rec-links { display:flex; gap:10px; flex-wrap:nowrap; }
.rec-link { display:flex; align-items:center; gap:6px; background:var(--bg); border:1px solid var(--border); border-radius:20px; padding:7px 14px; font-size:13px; font-weight:600; color:var(--text-mid); white-space:nowrap; transition:var(--transition); }
.rec-link:hover { background:var(--primary); color:#fff; border-color:var(--primary); }
.rec-link span { font-size:16px; }

/* ======================== ABOUT STRIP ======================== */
.about-strip { padding:60px 0; background:#fff; }
.about-strip-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.about-strip-content h2 { font-size:28px; font-weight:800; color:var(--text-dark); margin-bottom:14px; }
.about-strip-content h2 span { color:var(--primary); }
.about-strip-content p { font-size:15px; color:var(--text-mid); line-height:1.8; margin-bottom:20px; }
.about-cats { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.about-cat { background:var(--bg); border-radius:var(--radius); padding:16px; border:1px solid var(--border); display:flex; align-items:center; gap:12px; transition:var(--transition); }
.about-cat:hover { border-color:var(--primary); background:var(--bg-blue-light); }
.about-cat-icon { font-size:28px; }
.about-cat h4 { font-size:14px; font-weight:700; color:var(--text-dark); margin-bottom:2px; }
.about-cat p { font-size:12px; color:var(--text-light); }
.about-strip-image { background:linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius:var(--radius-xl); padding:40px; color:#fff; }
.about-strip-image h3 { font-size:22px; font-weight:700; margin-bottom:20px; }
.about-strip-stats { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.as-stat { text-align:center; background:rgba(255,255,255,0.15); border-radius:var(--radius); padding:16px; }
.as-stat strong { display:block; font-size:28px; font-weight:800; }
.as-stat span { font-size:12px; color:rgba(255,255,255,0.8); }

/* ======================== WHY US SECTION ======================== */
.why-section { padding:60px 0; background:var(--bg); }
.why-section-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.why-section-card { background:#fff; border-radius:var(--radius-lg); padding:28px; border:1px solid var(--border); transition:var(--transition); }
.why-section-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:var(--primary); }
.why-section-card .ws-icon { font-size:40px; margin-bottom:14px; }
.why-section-card h3 { font-size:17px; font-weight:700; color:var(--text-dark); margin-bottom:10px; }
.why-section-card p { font-size:14px; color:var(--text-light); line-height:1.7; }
.why-section-card ul { padding-left:0; margin-top:10px; }
.why-section-card ul li { font-size:13.5px; color:var(--text-mid); padding:4px 0; }

/* ======================== FEATURES SECTION ======================== */
.features-section { padding:50px 0; background:#fff; }
.features-section .features-grid { display:grid; grid-template-columns:repeat(5, 1fr); gap:20px; }
.feature-card { text-align:center; padding:24px 16px; background:var(--bg); border-radius:var(--radius-lg); border:1px solid var(--border); transition:var(--transition); }
.feature-card:hover { border-color:var(--primary); background:var(--bg-blue-light); transform:translateY(-3px); }
.feature-card .f-icon { font-size:36px; margin-bottom:12px; }
.feature-card h4 { font-size:14px; font-weight:700; color:var(--text-dark); margin-bottom:6px; }
.feature-card p { font-size:12.5px; color:var(--text-light); line-height:1.5; }

/* Mobile header — hidden on desktop, shown only on mobile via media query */
.mobile-header { display:none; }
.lp-overlay { display:none; }
.lp-drawer { display:none; }

/* ======================== RESPONSIVE ======================== */

/* Tablet & Below (1024px) */
@media (max-width: 1024px) {
  .container { width:94%; }
  .hero-content { grid-template-columns:1fr; gap:30px; }
  .quick-form { max-width:500px; margin:0 auto; }
  .services-grid { grid-template-columns:repeat(2, 1fr); gap:20px; }
  .tools-grid { grid-template-columns:repeat(2, 1fr); gap:20px; }
  .testi-grid { grid-template-columns:repeat(2, 1fr); gap:20px; }
  .blog-grid { grid-template-columns:repeat(2, 1fr); gap:20px; }
  .location-grid { grid-template-columns:repeat(3, 1fr); gap:14px; }
  .footer-grid { grid-template-columns:repeat(3, 1fr); gap:30px; }
  .stats-grid { grid-template-columns:repeat(2, 1fr); gap:24px; }
  .features-section .features-grid { grid-template-columns:repeat(3, 1fr); gap:20px; }
  .pricing-grid { grid-template-columns:1fr; max-width:500px; margin:0 auto; }
  .page-layout { grid-template-columns:1fr; gap:24px; }
  .sidebar-card { position:static; margin-top:30px; }
  .about-strip-grid { grid-template-columns:1fr; gap:30px; }
  .contact-grid { grid-template-columns:1fr; }
  .why-section-grid { grid-template-columns:repeat(2, 1fr); gap:20px; }
  .team-grid { grid-template-columns:repeat(2, 1fr); gap:20px; }
  .cert-grid { grid-template-columns:repeat(2, 1fr); gap:16px; }
  .hero-title { font-size:32px; }
  .hero-sub { font-size:14px; }
  .section-header h2 { font-size:26px; }
}

@media (max-width: 768px) {
  /* Hide desktop elements */
  .gov-topbar { display:none; }
  .main-header { display:none; }
  .main-nav { display:none; }
  
  /* Container adjustments */
  .container { width:96%; }

  /* ===== MOBILE HEADER BAR ===== */
  .mobile-header {
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    background:var(--primary-dark);
    padding:12px 16px;
    position:sticky;
    top:0;
    z-index:9990;
    box-shadow:0 2px 10px rgba(0,0,0,0.3);
  }
  .mobile-logo-link { display:flex; align-items:center; text-decoration:none; }
  .mobile-logo-text-wrap { display:flex; flex-direction:column; }
  .mobile-logo-main { color:#fff; font-size:20px; font-weight:800; line-height:1; letter-spacing:-0.3px; }
  .mobile-logo-main span { color:var(--accent); }
  .mobile-logo-sub { color:rgba(255,255,255,0.65); font-size:10px; margin-top:3px; }
  .mobile-menu-btn {
    background:rgba(255,255,255,0.12);
    border:1.5px solid rgba(255,255,255,0.35);
    color:#fff;
    font-size:13px;
    font-weight:700;
    padding:9px 16px;
    border-radius:8px;
    cursor:pointer;
    letter-spacing:0.3px;
    transition:var(--transition);
  }
  .mobile-menu-btn:active { background:rgba(255,255,255,0.2); }

  /* ===== OVERLAY ===== */
  .lp-overlay {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.65);
    z-index:9995;
    backdrop-filter:blur(2px);
  }
  .lp-overlay.open { display:block; }

  /* ===== DRAWER PANEL ===== */
  .lp-drawer {
    position:fixed;
    top:0; left:0;
    width:82%;
    max-width:320px;
    height:100%;
    background:#0d2137;
    z-index:9999;
    transform:translateX(-100%);
    transition:transform 0.3s cubic-bezier(0.4,0,0.2,1);
    display:flex;
    flex-direction:column;
    overflow:hidden;
    box-shadow:4px 0 20px rgba(0,0,0,0.5);
  }
  .lp-drawer.open { transform:translateX(0); }
  
  /* Drawer Head */
  .lp-drawer-head {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 18px;
    border-bottom:1px solid rgba(255,255,255,0.12);
    flex-shrink:0;
    background:#0a1a2e;
  }
  .lp-drawer-logo-link { display:flex; align-items:center; text-decoration:none; }
  .lp-drawer-logo { height:38px; width:auto; }
  .lp-drawer-logo-text { color:#fff; font-size:19px; font-weight:800; letter-spacing:-0.3px; }
  .lp-drawer-logo-text span { color:var(--accent); }
  .lp-drawer-close {
    width:36px; height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    border:none;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:var(--transition);
  }
  .lp-drawer-close:active { background:rgba(255,255,255,0.25); }

  /* Drawer Body */
  .lp-drawer-body {
    flex:1;
    overflow-y:auto;
    padding:8px 0;
  }
  .lp-drawer-body::-webkit-scrollbar { width:4px; }
  .lp-drawer-body::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.2); border-radius:2px; }

  /* Nav Items */
  .lp-nav-item { border-bottom:1px solid rgba(255,255,255,0.08); }
  .lp-nav-link {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 20px;
    color:#fff;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:var(--transition);
  }
  .lp-nav-link:active { background:rgba(255,255,255,0.08); }
  .lp-nav-item.lp-active .lp-nav-link {
    background:rgba(255,255,255,0.12);
    border-left:4px solid var(--accent);
    padding-left:16px;
  }
  .lp-arrow {
    font-size:11px;
    color:rgba(255,255,255,0.5);
    transition:transform 0.25s;
    flex-shrink:0;
  }
  .lp-nav-item.open .lp-arrow { transform:rotate(180deg); }

  /* Submenu */
  .lp-submenu { display:none; background:rgba(0,0,0,0.35); }
  .lp-nav-item.open .lp-submenu { display:block; }
  .lp-sub-group {
    padding:8px 20px 4px 20px;
    font-size:10px;
    font-weight:700;
    color:var(--accent-light);
    text-transform:uppercase;
    letter-spacing:0.8px;
  }
  .lp-submenu a {
    display:block;
    padding:10px 20px 10px 28px;
    color:rgba(255,255,255,0.8);
    font-size:14px;
    text-decoration:none;
    border-bottom:1px solid rgba(255,255,255,0.05);
    transition:var(--transition);
  }
  .lp-submenu a:active { background:rgba(255,255,255,0.1); color:#fff; }

  /* Drawer Footer */
  .lp-drawer-foot {
    padding:16px 20px;
    border-top:1px solid rgba(255,255,255,0.12);
    flex-shrink:0;
  }
  .lp-cta-btn {
    display:block;
    width:100%;
    background:var(--accent);
    color:#fff !important;
    text-align:center;
    padding:14px;
    border-radius:10px;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    transition:var(--transition);
  }
  .lp-cta-btn:active { background:var(--accent-dark); }

  /* Hide desktop drawer elements on mobile */
  .mobile-menu-overlay, .mobile-drawer { display:none !important; }

  /* Hero Section Mobile */
  .hero-section { padding:30px 0 25px; }
  .hero-content { gap:24px; }
  .hero-badge { font-size:11px; padding:5px 12px; margin-bottom:14px; }
  .hero-title { font-size:24px; line-height:1.25; margin-bottom:12px; }
  .hero-sub { font-size:14px; margin-bottom:20px; }
  .hero-search { padding:16px; margin-bottom:16px; }
  .hero-search-bar { flex-direction:column; }
  .hero-search-bar input { padding:12px 16px; font-size:14px; }
  .hero-search-bar button { padding:12px; font-size:14px; }
  .hero-tags { gap:6px; }
  .hero-tag { font-size:11px; padding:5px 10px; }
  .hero-stats { gap:12px; justify-content:space-between; }
  .stat strong { font-size:16px; }
  .stat span { font-size:10px; }
  
  /* Quick Form Mobile */
  .quick-form { padding:20px; }
  .form-header h3 { font-size:16px; }
  .form-header p { font-size:12px; }
  .form-group { margin-bottom:12px; }
  .form-group label { font-size:12px; }
  .form-group input, .form-group select, .form-group textarea { padding:10px 12px; font-size:14px; }
  .form-submit { padding:12px; font-size:14px; }
  .form-note { font-size:11px; }

  /* Trust Section Mobile */
  .trust-section { padding:14px 0; }
  .trust-grid { gap:12px; justify-content:center; }
  .trust-item { font-size:11px; }
  .trust-icon { font-size:18px; }

  /* Recommended Strip Mobile */
  .recommended-strip { padding:12px 0; }
  .rec-label { font-size:12px; }
  .rec-links { overflow-x:auto; gap:8px; padding-bottom:4px; }
  .rec-link { font-size:12px; padding:7px 12px; white-space:nowrap; }
  .rec-links::-webkit-scrollbar { height:3px; }
  .rec-links::-webkit-scrollbar-thumb { background:var(--border); border-radius:2px; }

  /* About Strip Mobile */
  .about-strip { padding:40px 0; }
  .about-strip-grid { gap:24px; }
  .section-badge { font-size:11px; padding:4px 12px; }
  .about-strip-content h2 { font-size:22px; }
  .about-strip-content p { font-size:14px; }
  .about-cats { grid-template-columns:1fr; gap:14px; }
  .about-cat { padding:14px; }
  .about-cat-icon { font-size:28px; }
  .about-cat h4 { font-size:14px; }
  .about-cat p { font-size:12px; }
  .about-strip-stats { grid-template-columns:1fr 1fr; gap:12px; }
  .as-stat strong { font-size:20px; }
  .as-stat span { font-size:11px; }

  /* Process Section Mobile */
  .process-section { padding:40px 0; }
  .process-steps { flex-direction:column; align-items:center; gap:0; }
  .step { max-width:100%; padding:20px 16px; }
  .step-num { font-size:10px; }
  .step-icon { font-size:36px; }
  .step h3 { font-size:14px; }
  .step p { font-size:12px; }
  .step-arrow { transform:rotate(90deg); font-size:24px; margin:0; padding:8px 0; }

  /* Services Section Mobile */
  .services-section { padding:40px 0; }
  .cat-tabs { gap:8px; }
  .cat-tab { padding:8px 16px; font-size:12px; }
  .services-grid { grid-template-columns:1fr; gap:16px; }
  .service-card { padding:20px; }
  .card-icon { font-size:32px; margin-bottom:10px; }
  .card-badge { font-size:9px; padding:3px 8px; }
  .service-card h3 { font-size:15px; }
  .service-card p { font-size:13px; }
  .card-list li { font-size:12px; }
  .card-price { font-size:14px; }
  .card-btn { font-size:12px; padding:8px 14px; }
  .card-wa { font-size:14px; padding:8px 12px; }
  .view-all-btn { padding:10px 24px; font-size:13px; }

  /* Why Section Mobile */
  .why-section { padding:40px 0; }
  .why-section-grid { grid-template-columns:1fr; gap:16px; }
  .why-section-card { padding:20px; }
  .ws-icon { font-size:32px; }
  .why-section-card h3 { font-size:16px; }
  .why-section-card p { font-size:13px; }
  .why-section-card ul li { font-size:13px; }

  /* Features Section Mobile */
  .features-section { padding:40px 0; }
  .features-grid { grid-template-columns:repeat(2, 1fr); gap:14px; }
  .feature-card { padding:16px; }
  .f-icon { font-size:28px; }
  .feature-card h4 { font-size:13px; }
  .feature-card p { font-size:12px; }

  /* Stats Section Mobile */
  .stats-section { padding:35px 0; }
  .stats-grid { grid-template-columns:repeat(2, 1fr); gap:20px; }
  .stat-item .stat-icon { font-size:24px; }
  .stat-item strong { font-size:28px; }
  .stat-item span { font-size:12px; }

  /* Testimonials Mobile */
  .testimonials-section { padding:40px 0; }
  .testi-grid { grid-template-columns:1fr; gap:16px; }
  .testi-card { padding:20px; }
  .stars { font-size:14px; }
  .testi-card p { font-size:13px; }
  .testi-avatar { width:38px; height:38px; font-size:13px; }
  .testi-author strong { font-size:13px; }
  .testi-author span { font-size:11px; }
  .google-rating { flex-direction:column; gap:8px; padding:12px 20px; font-size:13px; }

  /* Blog Section Mobile */
  .blog-section { padding:40px 0; }
  .blog-grid { grid-template-columns:1fr; gap:16px; }
  .blog-card { padding:20px; }
  .blog-cat { font-size:10px; padding:3px 10px; }
  .blog-card h3 { font-size:15px; }
  .blog-card p { font-size:13px; }
  .blog-meta { font-size:11px; gap:12px; }

  /* Location Section Mobile */
  .location-section { padding:40px 0; }
  .location-grid { grid-template-columns:repeat(2, 1fr); gap:12px; }
  .loc-card { padding:12px; }
  .loc-icon { font-size:18px; }
  .loc-card h4 { font-size:12px; }

  /* FAQ Section Mobile */
  .faq-section { padding:40px 0; }
  .faq-q { padding:14px 16px; font-size:14px; }
  .faq-q span { font-size:18px; }
  .faq-a { padding:0 16px 14px; font-size:13px; padding-top:12px; }

  /* CTA Banner Mobile */
  .cta-banner { padding:35px 0; }
  .cta-content h2 { font-size:22px; }
  .cta-content p { font-size:14px; }
  .cta-btns { flex-direction:column; align-items:stretch; gap:10px; }
  .cta-btn-primary, .cta-btn-wa, .cta-btn-secondary { padding:12px 24px; font-size:14px; }

  /* Newsletter Mobile */
  .newsletter-section { padding:35px 0; }
  .newsletter-box { padding:28px 20px; }
  .newsletter-box h3 { font-size:18px; }
  .newsletter-box p { font-size:13px; }
  .newsletter-form { flex-direction:column; gap:10px; }
  .newsletter-form input { padding:11px 14px; font-size:14px; }
  .newsletter-form button { padding:11px 20px; font-size:14px; }

  /* Footer Mobile */
  .main-footer { padding:40px 0 0; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:24px; }
  .footer-logo img { height:38px; }
  .footer-logo-text { font-size:20px; }
  .footer-col p { font-size:13px; }
  .footer-col h4 { font-size:13px; }
  .footer-col ul li a { font-size:13px; }
  .footer-social a { width:34px; height:34px; font-size:15px; }
  .footer-contact p { font-size:13px; }
  .footer-hours h5 { font-size:12px; }
  .footer-hours p { font-size:12px; }
  .footer-links-bar { padding:12px 0; }
  .footer-links { gap:5px 16px; justify-content:flex-start; }
  .footer-links a { font-size:12px; }
  .footer-bottom { padding:14px 0; }
  .footer-bottom p { font-size:12px; }

  /* Floating Buttons Mobile */
  .float-wa { width:54px; height:54px; bottom:20px; right:20px; }
  .float-call { width:46px; height:46px; bottom:84px; right:20px; }
  .wa-tooltip { display:none; }

  /* Inner Pages Mobile */
  .page-hero { padding:28px 0; }
  .page-hero h1 { font-size:22px; }
  .page-hero p { font-size:14px; }
  .breadcrumb { font-size:12px; }
  .page-body { padding:30px 0 40px; }
  .page-layout { gap:20px; }
  .page-content { font-size:14px; }
  .cs h2 { font-size:19px; margin-top:22px; }
  .cs h3 { font-size:16px; }
  .cs p { font-size:14px; }
  .cs ul li { font-size:14px; }
  .cs ol li { font-size:14px; }
  .sidebar-card { padding:20px; margin-top:24px; }
  .sidebar-card h3 { font-size:15px; }

  /* Pricing Mobile */
  .pricing-grid { grid-template-columns:1fr; gap:16px; }
  .pricing-card { padding:20px; }
  .pricing-card .plan-name { font-size:12px; }
  .pricing-card .plan-price { font-size:28px; }
  .pricing-card .plan-desc { font-size:12px; }
  .pricing-card ul li { font-size:12px; }
  .pricing-card .plan-btn { padding:10px; font-size:13px; }

  /* Tools Mobile */
  .tools-section { padding:40px 0; }
  .tools-grid { grid-template-columns:1fr; gap:16px; }
  .tool-card { padding:20px; }
  .tool-icon { font-size:32px; }
  .tool-card h3 { font-size:15px; }
  .tool-card p { font-size:12px; }
  .tool-form input, .tool-form select { padding:9px 11px; font-size:13px; }
  .tool-result { font-size:13px; padding:10px; }
  .tool-btn { padding:9px; font-size:12px; }

  /* Section Headers Mobile */
  .section-header { margin-bottom:28px; }
  .section-header h2 { font-size:20px; }
  .section-header p { font-size:14px; }

  /* Tables Mobile */
  .docs-table { font-size:12px; }
  .docs-table th { padding:8px 10px; font-size:12px; }
  .docs-table td { padding:8px 10px; }
  
  /* Make tables scrollable on mobile */
  .table-wrapper { overflow-x:auto; margin:16px 0; }
  .table-wrapper table { min-width:500px; }
}

@media (max-width: 480px) {
  /* Extra small mobile adjustments */
  .container { width:94%; }
  
  /* Hero Section */
  .hero-title { font-size:20px; line-height:1.3; }
  .hero-sub { font-size:13px; line-height:1.6; }
  .hero-badge { font-size:10px; padding:4px 10px; }
  .hero-search { padding:12px; }
  .hero-search-bar input { padding:10px 14px; font-size:13px; }
  .hero-search-bar button { padding:10px; font-size:13px; }
  .hero-tag { font-size:10px; padding:4px 8px; }
  .hero-stats { grid-template-columns:1fr 1fr; gap:10px; }
  .stat strong { font-size:15px; }
  .stat span { font-size:9px; }
  .hero-btns { flex-direction:column; width:100%; }
  .btn-primary, .btn-secondary { width:100%; justify-content:center; padding:11px 20px; font-size:14px; }
  
  /* Quick Form */
  .quick-form { padding:18px; }
  .form-header h3 { font-size:15px; }
  .form-group input, .form-group select, .form-group textarea { padding:9px 11px; font-size:13px; }
  .form-submit { padding:11px; font-size:13px; }
  
  /* Trust Section */
  .trust-grid { grid-template-columns:repeat(2, 1fr); gap:10px; }
  .trust-item { font-size:10px; flex-direction:column; text-align:center; gap:6px; }
  .trust-icon { font-size:20px; }
  
  /* Recommended Strip */
  .rec-label { font-size:11px; }
  .rec-link { font-size:11px; padding:6px 10px; }
  
  /* About Strip */
  .about-strip-content h2 { font-size:19px; }
  .about-strip-content p { font-size:13px; }
  .about-strip-stats { grid-template-columns:1fr 1fr; gap:10px; }
  .as-stat { padding:12px; }
  .as-stat strong { font-size:18px; }
  .as-stat span { font-size:10px; }
  
  /* Process Section */
  .step { padding:18px 14px; }
  .step-icon { font-size:32px; }
  .step h3 { font-size:13px; }
  .step p { font-size:11px; }
  
  /* Services Section */
  .cat-tab { padding:7px 14px; font-size:11px; }
  .service-card { padding:18px; }
  .card-icon { font-size:28px; }
  .service-card h3 { font-size:14px; }
  .service-card p { font-size:12px; }
  .card-list li { font-size:11px; }
  .card-price { font-size:13px; }
  .card-actions { flex-direction:column; gap:8px; }
  .card-btn { width:100%; padding:9px; font-size:12px; }
  .card-wa { width:100%; padding:9px; font-size:14px; }
  
  /* Why Section */
  .why-section-card { padding:18px; }
  .ws-icon { font-size:28px; }
  .why-section-card h3 { font-size:15px; }
  .why-section-card p { font-size:12px; }
  .why-section-card ul li { font-size:12px; }
  
  /* Features Section */
  .features-grid { grid-template-columns:1fr; gap:12px; }
  .feature-card { padding:14px; }
  .f-icon { font-size:24px; }
  .feature-card h4 { font-size:12px; }
  .feature-card p { font-size:11px; }
  
  /* Stats Section */
  .stats-grid { grid-template-columns:1fr 1fr; gap:16px; }
  .stat-item .stat-icon { font-size:22px; }
  .stat-item strong { font-size:24px; }
  .stat-item span { font-size:11px; }
  
  /* Testimonials */
  .testi-card { padding:16px; }
  .stars { font-size:13px; }
  .testi-card p { font-size:12px; }
  .testi-avatar { width:36px; height:36px; font-size:12px; }
  .testi-author strong { font-size:12px; }
  .testi-author span { font-size:10px; }
  .google-rating { padding:10px 16px; font-size:12px; }
  
  /* Blog Section */
  .blog-card { padding:16px; }
  .blog-cat { font-size:9px; padding:3px 8px; }
  .blog-card h3 { font-size:14px; }
  .blog-card p { font-size:12px; }
  .blog-meta { font-size:10px; gap:10px; }
  
  /* Location Section */
  .location-grid { grid-template-columns:1fr; gap:10px; }
  .loc-card { padding:10px; }
  .loc-icon { font-size:16px; }
  .loc-card h4 { font-size:11px; }
  
  /* FAQ Section */
  .faq-q { padding:12px 14px; font-size:13px; }
  .faq-q span { font-size:16px; }
  .faq-a { padding:0 14px 12px; font-size:12px; padding-top:10px; }
  
  /* CTA Banner */
  .cta-content h2 { font-size:19px; }
  .cta-content p { font-size:13px; }
  .cta-btn-primary, .cta-btn-wa, .cta-btn-secondary { padding:11px 20px; font-size:13px; }
  
  /* Newsletter */
  .newsletter-box { padding:24px 16px; }
  .newsletter-box h3 { font-size:16px; }
  .newsletter-box p { font-size:12px; }
  .newsletter-form input { padding:10px 12px; font-size:13px; }
  .newsletter-form button { padding:10px 18px; font-size:13px; }
  
  /* Footer */
  .footer-grid { grid-template-columns:1fr; gap:20px; }
  .footer-logo img { height:34px; }
  .footer-logo-text { font-size:18px; }
  .footer-col p { font-size:12px; }
  .footer-col h4 { font-size:12px; }
  .footer-col ul li a { font-size:12px; }
  .footer-social a { width:32px; height:32px; font-size:14px; }
  .footer-contact p { font-size:12px; }
  .footer-hours h5 { font-size:11px; }
  .footer-hours p { font-size:11px; }
  .footer-links { gap:4px 12px; }
  .footer-links a { font-size:11px; }
  .footer-bottom p { font-size:11px; }
  
  /* Floating Buttons */
  .float-wa { width:50px; height:50px; bottom:16px; right:16px; }
  .float-call { width:42px; height:42px; bottom:76px; right:16px; }
  
  /* Inner Pages */
  .page-hero { padding:24px 0; }
  .page-hero h1 { font-size:19px; }
  .page-hero p { font-size:13px; }
  .breadcrumb { font-size:11px; }
  .page-body { padding:24px 0 32px; }
  .cs h2 { font-size:17px; margin-top:20px; padding-left:10px; border-left-width:3px; }
  .cs h3 { font-size:15px; }
  .cs p { font-size:13px; }
  .cs ul li { font-size:13px; }
  .cs ol li { font-size:13px; }
  .sidebar-card { padding:16px; }
  .sidebar-card h3 { font-size:14px; }
  
  /* Pricing */
  .pricing-card { padding:18px; }
  .pricing-card .plan-name { font-size:11px; }
  .pricing-card .plan-price { font-size:24px; }
  .pricing-card .plan-desc { font-size:11px; }
  .pricing-card ul li { font-size:11px; }
  .pricing-card .plan-btn { padding:9px; font-size:12px; }
  
  /* Tools */
  .tool-card { padding:16px; }
  .tool-icon { font-size:28px; }
  .tool-card h3 { font-size:14px; }
  .tool-card p { font-size:11px; }
  .tool-form input, .tool-form select { padding:8px 10px; font-size:12px; }
  .tool-result { font-size:12px; padding:9px; }
  .tool-btn { padding:8px; font-size:11px; }
  
  /* Section Headers */
  .section-header h2 { font-size:18px; }
  .section-header p { font-size:13px; }
  .section-badge { font-size:10px; padding:4px 10px; }
  
  /* Tables */
  .docs-table { font-size:11px; }
  .docs-table th { padding:7px 8px; font-size:11px; }
  .docs-table td { padding:7px 8px; }
  
  /* Mobile Header */
  .mobile-header { padding:10px 14px; }
  .mobile-logo-main { font-size:18px; }
  .mobile-logo-sub { font-size:9px; }
  .mobile-menu-btn { font-size:12px; padding:8px 14px; }
  
  /* Drawer */
  .lp-drawer { width:85%; max-width:280px; }
  .lp-drawer-head { padding:12px 16px; }
  .lp-drawer-logo-text { font-size:17px; }
  .lp-drawer-close { width:32px; height:32px; font-size:16px; }
  .lp-nav-link { padding:12px 16px; font-size:14px; }
  .lp-submenu a { padding:9px 16px 9px 24px; font-size:13px; }
  .lp-drawer-foot { padding:14px 16px; }
  .lp-cta-btn { padding:12px; font-size:14px; }
}

/* ======================== MOBILE HERO FORM ======================== */
/* Hidden on all screens by default — only shown on mobile via media query below */
.mobile-hero-form { display:none !important; }
@media (max-width: 768px) {
  .mobile-hero-form {
    display:block !important;
    background:#f0f4f8;
    padding:16px 0 20px;
  }
  .mobile-hero-form .mhf-inner {
    background:#fff;
    border-radius:14px;
    padding:20px 16px 16px;
    box-shadow:0 4px 24px rgba(13,71,161,0.13);
    border:1px solid #dce6f5;
  }
  .mobile-hero-form h3 {
    font-size:16px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:14px;
    padding-bottom:10px;
    border-bottom:2px solid var(--accent);
  }
  .mobile-hero-form .form-group { margin-bottom:11px; }
  .mobile-hero-form .form-group label {
    display:block;
    font-size:12.5px;
    font-weight:700;
    color:#333;
    margin-bottom:4px;
  }
  .mobile-hero-form .form-group input,
  .mobile-hero-form .form-group select {
    width:100%;
    padding:11px 13px;
    border:1.5px solid #cdd8ea;
    border-radius:8px;
    font-size:14px;
    color:#222;
    background:#f8fafc;
    outline:none;
    font-family:inherit;
    -webkit-appearance:none;
    appearance:none;
    box-sizing:border-box;
  }
  .mobile-hero-form .form-group input:focus,
  .mobile-hero-form .form-group select:focus {
    border-color:var(--primary);
    background:#fff;
    box-shadow:0 0 0 3px rgba(13,71,161,0.08);
  }
  .mobile-hero-form .form-group input.input-error,
  .mobile-hero-form .form-group select.input-error { border-color:#e53935 !important; }
  .mobile-hero-form .field-error { color:#e53935; font-size:12px; margin-top:3px; display:block; }
  .mobile-hero-form .mhf-submit {
    display:block;
    width:100%;
    background:var(--primary);
    color:#fff !important;
    border:none;
    padding:14px 20px;
    border-radius:10px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    margin-top:6px;
    letter-spacing:0.3px;
    text-align:center;
    font-family:inherit;
    -webkit-appearance:none;
    appearance:none;
  }
  .mobile-hero-form .mhf-note {
    text-align:center;
    font-size:12px;
    color:#666;
    margin-top:9px;
  }
  .mobile-hero-form .form-success-box {
    background:#e8f5e9;
    border:1.5px solid #2e7d32;
    border-radius:10px;
    padding:16px;
    text-align:center;
    font-size:14px;
    color:#1b5e20;
    font-weight:600;
  }
  .mobile-hero-form .form-err-msg {
    background:#ffebee;
    border:1.5px solid #e53935;
    border-radius:10px;
    color:#b71c1c;
    font-size:13px;
    font-weight:600;
    line-height:1.5;
    margin-bottom:12px;
    padding:12px 14px;
  }
}

/* ======================== UTILITIES ======================== */
.form-error-box,
.form-err-msg {
  background:#ffebee;
  border:1.5px solid #e53935;
  border-radius:10px;
  color:#b71c1c;
  display:block;
  font-size:13px;
  font-weight:600;
  line-height:1.5;
  margin-bottom:12px;
  padding:12px 14px;
}
.text-center { text-align:center; }
.mt-20 { margin-top:20px; }
.mt-30 { margin-top:30px; }
.mb-20 { margin-bottom:20px; }
.hidden { display:none !important; }
.highlight-box { background:#fff8e1; border:1.5px solid #f59e0b; border-radius:var(--radius); padding:16px 20px; margin:16px 0; }
.highlight-box h4 { color:#92400e; margin-bottom:6px; }
.highlight-box p { color:#78350f; font-size:14px; margin:0; }
.info-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:16px 0; }
.info-card { background:var(--bg-blue-light); border:1.5px solid #cce0ff; border-radius:var(--radius); padding:16px; }
.info-card h4 { color:var(--primary); margin-bottom:8px; font-size:15px; }
.info-card ul { padding-left:16px; list-style:disc; }
.info-card ul li { font-size:13px; color:var(--text-mid); margin-bottom:5px; }
.process-list { counter-reset:step; padding:0; }
.process-list li { counter-increment:step; list-style:none; padding:14px 16px 14px 52px; position:relative; background:var(--bg); border:1px solid var(--border); border-radius:var(--radius); margin-bottom:10px; font-size:15px; color:var(--text-mid); }
.process-list li::before { content:counter(step); position:absolute; left:14px; top:50%; transform:translateY(-50%); background:var(--accent); color:#fff; width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px; }
@media (max-width:768px) { .info-grid { grid-template-columns:1fr; } }
