/* ===== CSS Custom Properties ===== */
:root {
    --navy: #1a2a3a;
    --navy-dark: #0f1c2e;
    --gold: #c5975b;
    --gold-hover: #d4a96c;
    --white: #ffffff;
    --light: #f5f5f5;
    --gray: #e0e0e0;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --overlay: rgba(15, 28, 46, 0.85);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --max-width: 1200px;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.7; background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--navy); line-height: 1.3; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }

/* ===== HEADER ===== */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: var(--navy); transition: var(--transition); }
.site-header.scrolled { background: var(--navy-dark); box-shadow: var(--shadow-md); }
.header-inner, .header-container { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 2rem; max-width: var(--max-width); margin: 0 auto; }
.logo-link { display: flex; align-items: center; gap: 0.75rem; }
.logo-link img { height: 48px; width: auto; }
.logo-link span { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; gap: 0.25rem; }
.nav-list a { display: block; padding: 0.6rem 1.1rem; color: var(--white); font-size: 0.85rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 4px; position: relative; }
.nav-list a::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.nav-list a:hover::after, .nav-list a.active::after { width: 60%; }
.nav-list a:hover, .nav-list a.active { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-search, .search-toggle, .btn-hamburger, .mobile-menu-toggle { background: none; border: none; color: var(--white); font-size: 1.15rem; cursor: pointer; padding: 0.5rem; border-radius: 4px; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.btn-search:hover, .search-toggle:hover, .btn-hamburger:hover, .mobile-menu-toggle:hover { color: var(--gold); background: rgba(255,255,255,0.08); }
.btn-hamburger, .mobile-menu-toggle { display: none; flex-direction: column; gap: 4px; padding: 0.6rem; }
.btn-hamburger span, .mobile-menu-toggle span { display: block; width: 22px; height: 2px; background: currentColor; transition: var(--transition); border-radius: 2px; }
.btn-hamburger.active span:nth-child(1), .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.btn-hamburger.active span:nth-child(2), .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.btn-hamburger.active span:nth-child(3), .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ===== SEARCH OVERLAY ===== */
.search-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--overlay); z-index: 2000; display: flex; align-items: flex-start; justify-content: center; padding-top: 20vh; opacity: 0; visibility: hidden; transition: var(--transition); backdrop-filter: blur(4px); }
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay-inner { width: 90%; max-width: 640px; transform: translateY(-30px); transition: transform 0.4s ease; }
.search-overlay.active .search-overlay-inner { transform: translateY(0); }
.search-overlay form { display: flex; border-bottom: 2px solid var(--gold); }
.search-overlay input { flex: 1; background: transparent; border: none; outline: none; color: var(--white); font-size: 1.5rem; font-family: var(--font-body); padding: 1rem 0; }
.search-overlay input::placeholder { color: rgba(255,255,255,0.5); }
.search-overlay button[type="submit"] { background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; padding: 1rem; transition: var(--transition); }
.search-overlay button[type="submit"]:hover { color: var(--white); }
.btn-search-close, .search-close { position: absolute; top: 2rem; right: 2rem; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; transition: var(--transition); }
.btn-search-close:hover, .search-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--overlay); z-index: 1500; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav { position: fixed; top: 0; right: -320px; width: 300px; height: 100%; background: var(--navy-dark); z-index: 1600; padding: 5rem 2rem 2rem; transition: right 0.35s ease; overflow-y: auto; }
.mobile-nav.active { right: 0; }
.mobile-nav a { display: block; padding: 1rem 0; color: var(--white); font-size: 1rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.08); transition: var(--transition); }
.mobile-nav a:hover { color: var(--gold); padding-left: 0.5rem; }

/* ===== HERO SECTION (Homepage) ===== */
.hero-section { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-background { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,28,46,0.88), rgba(26,42,58,0.78)); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; max-width: 800px; }
.hero-headline { font-size: 3.5rem; color: var(--white); margin-bottom: 1rem; letter-spacing: 2px; }
.hero-subtitle { font-size: 1.3rem; color: var(--gold); font-weight: 500; margin-bottom: 1.5rem; letter-spacing: 1px; }
.hero-intro { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(197,151,91,0.4); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.5px; padding: 0.5rem 0; border-bottom: 2px solid transparent; }
.btn-outline:hover { border-bottom-color: var(--gold); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title { font-size: 2.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.section-divider { width: 60px; height: 3px; background: var(--gold); margin: 0 auto 1.5rem; }
.section-divider--left { margin: 0 0 1.5rem; }
.section-intro { font-size: 1.05rem; color: var(--text-light); max-width: 700px; margin: 0 auto; line-height: 1.8; }

/* ===== EXPERTISE CARDS ===== */
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.expertise-card { display: block; background: var(--white); border: 1px solid var(--gray); border-top: 4px solid var(--gold); border-radius: 8px; padding: 2.5rem 2rem; text-align: center; transition: var(--transition); }
.expertise-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-top-color: var(--navy); }
.expertise-icon { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.expertise-icon i { font-size: 1.5rem; color: var(--gold); }
.expertise-title { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.75rem; }
.expertise-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.25rem; }
.expertise-link-text { font-size: 0.85rem; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.expertise-link-text i { transition: transform 0.3s; }
.expertise-card:hover .expertise-link-text i { transform: translateX(4px); }

/* ===== PAN-INDIA SECTION ===== */
.pan-india-section { background: var(--light); }
.pan-india-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.pan-india-text { font-size: 1rem; color: var(--text-light); line-height: 1.85; margin-bottom: 1.5rem; }
.pan-india-image img { border-radius: 12px; box-shadow: var(--shadow-lg); }

/* ===== STATS SECTION ===== */
.stats-section { position: relative; background: var(--navy-dark); padding: 5rem 0; overflow: hidden; }
.stats-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,28,46,0.95), rgba(26,42,58,0.9)); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 2; }
.stat-item { text-align: center; padding: 2rem; }
.stat-icon { margin-bottom: 1rem; }
.stat-icon i { font-size: 2rem; color: var(--gold); }
.stat-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.stat-suffix { font-size: 2rem; color: var(--gold); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1.5px; }

/* ===== SUPREME COURT SECTION ===== */
.supreme-court-section { background: var(--white); }
.supreme-court-content { max-width: 800px; margin: 0 auto; text-align: center; padding: 3rem; position: relative; }
.gold-accent { width: 80px; height: 3px; background: var(--gold); margin: 0 auto 2rem; }
.gold-accent--bottom { margin: 2rem auto 0; }
.supreme-court-text { font-size: 1.1rem; color: var(--text-light); line-height: 1.9; font-style: italic; }

/* ===== CTA BANNER ===== */
.cta-banner-section { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); padding: 5rem 0; }
.cta-banner-content { text-align: center; max-width: 800px; margin: 0 auto; }
.cta-banner-text { font-size: 1.2rem; color: rgba(255,255,255,0.9); line-height: 1.8; margin-bottom: 2rem; font-family: var(--font-heading); font-style: italic; }

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero { position: relative; height: 45vh; min-height: 280px; display: flex; align-items: center; justify-content: center; text-align: center; background-size: cover; background-position: center; background-repeat: no-repeat; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,28,46,0.9), rgba(26,42,58,0.8)); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; color: var(--white); padding-top: 4rem; }
.page-hero-content h1 { font-size: 2.75rem; color: var(--white); margin-bottom: 1rem; letter-spacing: 1px; }
.page-hero-content h1::after { content: ''; display: block; width: 60px; height: 3px; background: var(--gold); margin: 0.75rem auto 0; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 0.5rem; }
.breadcrumb a { color: var(--gold); font-weight: 500; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .separator { color: rgba(255,255,255,0.4); }

/* ===== ABOUT PAGE ===== */
.about-profile { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-profile-img img { border-radius: 12px; box-shadow: var(--shadow-lg); }
.about-profile-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.about-profile-content p { font-size: 1rem; color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; }
.expertise-list { margin-top: 2rem; }
.expertise-list-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--light); border-radius: 8px; margin-bottom: 1rem; transition: var(--transition); border-left: 4px solid transparent; }
.expertise-list-item:hover { border-left-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.expertise-list-item i { font-size: 1.25rem; color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; }
.expertise-list-item h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.expertise-list-item p { font-size: 0.9rem; color: var(--text-light); }
.location-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.location-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem; background: var(--white); border: 1px solid var(--gray); border-radius: 50px; font-size: 0.85rem; color: var(--text); transition: var(--transition); }
.location-badge:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.location-badge i { font-size: 0.75rem; color: var(--gold); }

/* ===== SERVICE CARDS (Services Page) ===== */
.service-card { background: var(--white); border: 1px solid var(--gray); border-top: 4px solid var(--gold); border-radius: 12px; padding: 3rem; margin-bottom: 2.5rem; transition: var(--transition); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.service-card-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-card-icon i { font-size: 1.3rem; color: var(--gold); }
.service-card h3 { font-size: 1.4rem; color: var(--navy); }
.service-card p { font-size: 1rem; color: var(--text-light); line-height: 1.85; }

/* ===== CONTACT PAGE ===== */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
.contact-info-card { text-align: center; padding: 2.5rem 2rem; background: var(--white); border: 1px solid var(--gray); border-radius: 12px; transition: var(--transition); }
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-top: 3px solid var(--gold); }
.contact-info-card i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.contact-info-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.contact-info-card p { font-size: 0.95rem; color: var(--text-light); }
.contact-info-card a { color: var(--gold); font-weight: 500; }
.contact-info-card a:hover { color: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form-wrap { background: var(--white); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--gray); }
.contact-form-wrap h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.contact-form-wrap .form-subtitle { color: var(--text-light); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--gray); border-radius: 6px;
    font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
    transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,151,91,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-disclaimer { font-size: 0.8rem; color: var(--text-muted); font-style: italic; margin-top: 1rem; }
.form-success { display: none; padding: 1rem 1.5rem; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; border-radius: 6px; margin-top: 1rem; }
.form-success.show { display: block; animation: fadeIn 0.3s ease; }
.map-container { border-radius: 12px; overflow: hidden; height: 100%; min-height: 400px; }
.map-container iframe { width: 100%; height: 100%; min-height: 400px; border: none; border-radius: 12px; }
.office-hours { margin-top: 3rem; padding: 2rem; background: var(--light); border-radius: 12px; text-align: center; }
.office-hours h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.office-hours p { color: var(--text-light); margin-bottom: 0.5rem; }

/* ===== LEGAL PAGES ===== */
.legal-content { padding: 5rem 0; background: var(--white); }
.legal-content .container { max-width: 860px; }
.legal-intro { font-size: 1.1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gray); }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); display: inline-block; }
.legal-section p { font-size: 1rem; color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; }
.legal-section ul { list-style: none; padding: 0; margin-bottom: 1rem; }
.legal-section ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; color: var(--text-light); line-height: 1.7; }
.legal-section ul li::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 0; color: var(--gold); }
.legal-last-updated { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray); font-size: 0.9rem; color: var(--text-muted); font-style: italic; }
.disclaimer-box { background: var(--light); border-left: 4px solid var(--gold); padding: 1.5rem 2rem; margin-bottom: 1.5rem; border-radius: 0 8px 8px 0; transition: var(--transition); }
.disclaimer-box:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.disclaimer-box h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.disclaimer-box h3 i { color: var(--gold); font-size: 1rem; }
.disclaimer-box p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: start; padding-bottom: 2rem; }
.footer-brand { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-brand img { height: 44px; width: auto; margin-top: 2px; }
.footer-firm-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 0.25rem; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-copyright { text-align: center; align-self: center; }
.footer-copyright p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-nav-list { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.footer-nav-list a { font-size: 0.8rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); padding: 0.25rem 0; transition: var(--transition); }
.footer-nav-list a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); text-align: center; padding: 1.25rem 2rem; }
.footer-bottom-inner { display: flex; justify-content: center; align-items: center; gap: 1.5rem; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.scroll-to-top, .scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px; background: var(--gold); color: var(--white); border: none; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); box-shadow: var(--shadow-md); z-index: 999; }
.scroll-to-top.visible, .scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top:hover, .scroll-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ===== ANIMATE ON SCROLL ===== */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ===== KEYFRAMES ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-list { display: none; }
    .btn-hamburger, .mobile-menu-toggle { display: flex; }
    .hero-headline { font-size: 2.5rem; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .pan-india-grid, .about-profile { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
    .footer-brand { justify-content: center; }
    .footer-nav-list { align-items: center; }
    .page-hero-content h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .legal-content { padding: 3.5rem 0; }
    .page-hero { height: 35vh; min-height: 240px; }
    .page-hero-content h1 { font-size: 1.8rem; }
    .hero-headline { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .expertise-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .container { padding: 0 1.25rem; }
    .section-title { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; }
    .disclaimer-box { padding: 1.25rem 1.5rem; }
}

@media (max-width: 480px) {
    .page-hero-content h1 { font-size: 1.5rem; }
    .hero-headline { font-size: 1.7rem; }
    .logo-link span { font-size: 0.95rem; }
    .breadcrumb { font-size: 0.8rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.5rem; }
}
