/* =====================================================
   B N C A & CO - Chartered Accountants Website
   Color Palette:
   Primary (Blue):    #145886
   Secondary (Green): #55b848
   Dark Blue:         #0f3d5e
   Black:             #111111
   White:             #ffffff
   Light:             #f8f9fa
   ===================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }
body.terms-consent-open { overflow: hidden; }
body.audit-assistant-page { min-height: 100vh; background: linear-gradient(135deg, #145886 0%, #0f3d5e 58%, #102a44 100%); }
p { text-align: justify; text-justify: inter-word; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Animations --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes rotateIn { from { opacity: 0; transform: rotate(-10deg) scale(0.9); } to { opacity: 1; transform: rotate(0) scale(1); } }
@keyframes countUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes borderGlow { 0%, 100% { box-shadow: 0 0 5px rgba(85,184,72,0.3); } 50% { box-shadow: 0 0 20px rgba(85,184,72,0.6); } }

.animate { opacity: 0; }
.animate.animated { animation-duration: 0.8s; animation-fill-mode: forwards; }
.animate.animated.fade-up { animation-name: fadeInUp; }
.animate.animated.fade-left { animation-name: fadeInLeft; }
.animate.animated.fade-right { animation-name: fadeInRight; }
.animate.animated.fade-in { animation-name: fadeIn; }
.animate.animated.scale-in { animation-name: scaleIn; }

/* --- Top Bar --- */
.top-bar { background: #0f3d5e; color: #ccc; padding: 8px 0; font-size: 13px; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 24px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: #55b848; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a { color: #ccc; transition: color 0.3s; }
.top-bar-right a:hover { color: #55b848; }

/* --- Navbar --- */
.navbar { background: #fff; padding: 12px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: all 0.3s; }
.navbar.scrolled { padding: 8px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 48px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 22px; font-weight: 800; color: #145886; line-height: 1.1; }
.logo-tagline { font-size: 11px; color: #55b848; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.nav-menu { display: flex; gap: 6px; align-items: center; }
.nav-menu a { padding: 8px 16px; color: #333; font-weight: 500; font-size: 15px; border-radius: 6px; transition: all 0.3s; position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: #55b848; background: rgba(85,184,72,0.08); }
.nav-menu a::after { content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px; background: #55b848; transition: all 0.3s; transform: translateX(-50%); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 60%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #145886; margin: 5px 0; border-radius: 3px; transition: all 0.3s; }

/* --- Nav Login Button --- */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; background: #55b848; color: #fff; border-radius: 6px; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.nav-login-btn:hover { background: #47a03c; transform: translateY(-1px); }
.nav-login-btn i { font-size: 13px; }
.nav-user-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; background: #145886; color: #fff; border-radius: 6px; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.nav-user-btn:hover { background: #0f3d5e; }

/* --- User Panel Styles --- */
.user-layout { display: flex; min-height: 100vh; }
.user-sidebar { width: 260px; background: linear-gradient(180deg, #145886, #0f3d5e); color: #fff; padding: 24px 0; position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 100; }
.user-sidebar-logo { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: center; }
.user-sidebar-logo h3 { font-size: 20px; }
.user-sidebar-logo p { font-size: 12px; color: #55b848; }
.user-nav { padding: 20px 0; }
.user-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 24px; color: rgba(255,255,255,0.7); font-size: 14px; transition: all 0.3s; border-left: 3px solid transparent; }
.user-nav a:hover, .user-nav a.active { color: #fff; background: rgba(255,255,255,0.05); border-left-color: #55b848; }
.user-nav a i { width: 20px; text-align: center; }
.user-main { flex: 1; margin-left: 260px; background: #f0f2f5; min-height: 100vh; }
.user-header { background: #fff; padding: 16px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 50; }
.user-header h2 { color: #145886; font-size: 22px; }
.user-header-actions { display: flex; align-items: center; gap: 16px; }
.user-content { padding: 30px; }

/* --- Hero Section --- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: linear-gradient(135deg, #145886 0%, #0f3d5e 60%, #102a44 100%); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%; background: radial-gradient(ellipse, rgba(85,184,72,0.08) 0%, transparent 70%); }
.hero-particles { position: absolute; width: 100%; height: 100%; overflow: hidden; }
.hero-particles span { position: absolute; width: 4px; height: 4px; background: rgba(85,184,72,0.3); border-radius: 50%; animation: float 6s infinite; }
.hero-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; left: 30%; animation-delay: 1s; width: 6px; height: 6px; }
.hero-particles span:nth-child(3) { top: 40%; left: 60%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { top: 80%; left: 80%; animation-delay: 3s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5) { top: 10%; left: 90%; animation-delay: 4s; }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 650px; }
.hero-badge { display: inline-block; background: rgba(85,184,72,0.15); color: #55b848; padding: 6px 18px; border-radius: 30px; font-size: 13px; font-weight: 500; margin-bottom: 20px; border: 1px solid rgba(85,184,72,0.3); animation: fadeInUp 0.8s ease; }
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; animation: fadeInUp 0.8s ease 0.2s both; }
.hero h1 span { color: #55b848; }
.hero p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-buttons { display: flex; gap: 16px; animation: fadeInUp 0.8s ease 0.6s both; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 15px; cursor: pointer; transition: all 0.3s; border: none; font-family: inherit; }
.btn-primary { background: #55b848; color: #fff; box-shadow: 0 4px 15px rgba(85,184,72,0.4); }
.btn-primary:hover { background: #47a03c; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(85,184,72,0.5); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #55b848; color: #55b848; transform: translateY(-2px); }
.btn-secondary { background: #145886; color: #fff; }
.btn-secondary:hover { background: #105070; transform: translateY(-2px); }
.btn-success { background: #3a9e2e; color: #fff; }
.btn-success:hover { background: #2d8523; }
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 50px; animation: fadeInUp 0.8s ease 0.8s both; }
.hero-stat { text-align: center; }
.hero-stat .number { font-size: 36px; font-weight: 800; color: #55b848; }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* --- Section Common --- */
.section { padding: 90px 0; }
.section-light { background: #f8f9fa; }
.section-dark { background: #145886; color: #fff; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .subtitle { display: inline-block; color: #55b848; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.section-header h2 { font-size: 38px; font-weight: 700; color: #145886; margin-bottom: 16px; }
.section-dark .section-header h2 { color: #fff; }
.section-header p { color: #666; font-size: 16px; max-width: 600px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.section-header .line { width: 60px; height: 4px; background: linear-gradient(90deg, #55b848, #3a9e2e); margin: 16px auto 0; border-radius: 2px; }

/* --- Features / Why Choose Us --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-card { background: #fff; border-radius: 12px; padding: 36px 28px; text-align: center; box-shadow: 0 5px 30px rgba(0,0,0,0.06); transition: all 0.4s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #55b848, #3a9e2e); transform: scaleX(0); transition: transform 0.4s; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 70px; height: 70px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; transition: all 0.4s; }
.feature-icon.blue { background: rgba(20,88,134,0.1); color: #145886; }
.feature-icon.orange { background: rgba(85,184,72,0.1); color: #55b848; }
.feature-icon.green { background: rgba(58,158,46,0.1); color: #3a9e2e; }
.feature-card:hover .feature-icon { transform: rotateY(180deg); }
.feature-card h3 { font-size: 20px; color: #145886; margin-bottom: 12px; }
.feature-card p { color: #666; font-size: 14px; line-height: 1.7; }

/* --- Services Preview --- */
.services-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.services-tabs .tab-btn { padding: 10px 24px; border: 2px solid #e0e0e0; border-radius: 30px; background: #fff; color: #555; font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: inherit; font-size: 14px; }
.services-tabs .tab-btn:hover, .services-tabs .tab-btn.active { border-color: #55b848; color: #55b848; background: rgba(85,184,72,0.05); }
.service-tab-content { display: none; animation: fadeInUp 0.5s ease; }
.service-tab-content.active { display: block; }

/* --- Services Page Cards --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.service-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 5px 30px rgba(0,0,0,0.06); transition: all 0.4s; position: relative; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.service-card-header { background: linear-gradient(135deg, #145886, #0f3d5e); padding: 28px; position: relative; overflow: hidden; }
.service-card-header::after { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 200%; background: radial-gradient(ellipse, rgba(85,184,72,0.1), transparent 70%); }
.service-card-header h3 { color: #fff; font-size: 22px; font-weight: 700; position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; }
.service-card-header .service-icon { width: 50px; height: 50px; background: rgba(85,184,72,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #55b848; flex-shrink: 0; }
.service-card-body { padding: 28px; }
.service-list { display: grid; gap: 10px; }
.service-list-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #f8f9fa; border-radius: 8px; transition: all 0.3s; cursor: pointer; border-left: 3px solid transparent; }
.service-list-item:hover { background: rgba(85,184,72,0.08); border-left-color: #55b848; transform: translateX(5px); }
.service-list-item i { color: #55b848; font-size: 14px; flex-shrink: 0; }
.service-list-item span { font-size: 14px; color: #444; font-weight: 500; }
.service-card-footer { padding: 0 28px 28px; }
.service-card-footer .btn { width: 100%; justify-content: center; padding: 12px; }

/* --- Stats Counter --- */
.stats-section { background: linear-gradient(135deg, #145886, #0f3d5e); padding: 70px 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 260px)); justify-content: center; gap: 30px; position: relative; z-index: 1; }
.stat-item { text-align: center; color: #fff; }
.stat-number { font-size: 48px; font-weight: 800; color: #55b848; margin-bottom: 8px; }
.stat-label { font-size: 15px; color: rgba(255,255,255,0.7); }
.stat-icon { font-size: 32px; color: rgba(85,184,72,0.3); margin-bottom: 12px; }

/* --- About Preview --- */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image-main { border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.about-image-badge { position: absolute; bottom: -20px; right: -20px; background: #55b848; color: #fff; padding: 20px 28px; border-radius: 12px; text-align: center; box-shadow: 0 10px 30px rgba(85,184,72,0.3); animation: float 3s ease-in-out infinite; }
.about-image-badge .badge-number { font-size: 36px; font-weight: 800; line-height: 1; }
.about-image-badge .badge-text { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.about-text h2 { font-size: 36px; font-weight: 700; color: #145886; margin-bottom: 20px; }
.about-text p { color: #666; margin-bottom: 16px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; }
.about-feature i { color: #3a9e2e; font-size: 18px; }
.about-feature span { font-weight: 500; color: #333; font-size: 14px; }

/* --- Testimonials --- */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { flex: 0 0 calc(33.333% - 20px); margin: 0 10px; background: #fff; border-radius: 12px; padding: 32px; box-shadow: 0 5px 30px rgba(0,0,0,0.06); }
.testimonial-stars { color: #55b848; margin-bottom: 16px; font-size: 16px; }
.testimonial-text { color: #555; font-size: 14px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #145886, #55b848); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 18px; }
.testimonial-info h4 { color: #145886; font-size: 15px; }
.testimonial-info p { color: #999; font-size: 12px; }

/* --- CTA Section --- */
.cta-section { background: linear-gradient(135deg, #55b848 0%, #47a03c 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%; background: radial-gradient(ellipse, rgba(255,255,255,0.1), transparent); }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: #fff; font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 32px; }
.cta-content .btn { background: #fff; color: #55b848; font-weight: 700; }
.cta-content .btn:hover { background: #145886; color: #fff; }

/* --- Audit Assistant App --- */
.audit-app-shell { min-height: 100vh; display: flex; align-items: center; padding: 28px 0; position: relative; overflow: hidden; }
.audit-app-shell::before { content: ''; position: absolute; inset: -10% auto auto -10%; width: 45vw; height: 45vw; min-width: 280px; min-height: 280px; background: radial-gradient(circle, rgba(85,184,72,0.18) 0%, transparent 68%); pointer-events: none; }
.audit-app-shell::after { content: ''; position: absolute; inset: auto -8% -18% auto; width: 38vw; height: 38vw; min-width: 260px; min-height: 260px; background: radial-gradient(circle, rgba(255,255,255,0.09) 0%, transparent 72%); pointer-events: none; }
.audit-app-shell .container { position: relative; z-index: 1; }
.audit-app-frame { position: relative; padding: 18px; border-radius: 30px; background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(243,248,251,0.95)); border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 32px 80px rgba(7,24,39,0.3); overflow: hidden; }
.audit-app-frame::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, #145886, #55b848); }
.audit-app-frame iframe { display: block; width: 100%; min-height: 688px; border-radius: 22px; background: #fff; box-shadow: inset 0 0 0 1px rgba(20,88,134,0.08); }

/* --- Page Banner --- */
.page-banner { background: linear-gradient(135deg, #145886, #0f3d5e); padding: 100px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"); }
.page-banner h1 { color: #fff; font-size: 42px; font-weight: 700; position: relative; z-index: 1; animation: fadeInUp 0.6s ease; }
.page-banner .breadcrumb { color: rgba(255,255,255,0.6); margin-top: 12px; font-size: 14px; position: relative; z-index: 1; }
.page-banner .breadcrumb a { color: #55b848; }
.page-banner .breadcrumb a:hover { text-decoration: underline; }

/* --- About Page --- */
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.value-card { background: #fff; border-radius: 12px; padding: 32px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s; border-bottom: 4px solid transparent; }
.value-card:hover { transform: translateY(-5px); border-bottom-color: #55b848; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.value-card i { font-size: 40px; color: #55b848; margin-bottom: 18px; }
.value-card h3 { color: #145886; font-size: 20px; margin-bottom: 12px; }
.value-card p { color: #666; font-size: 14px; line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.team-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s; text-align: center; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.team-avatar { width: 100%; height: 250px; background: linear-gradient(135deg, #145886, #55b848); display: flex; align-items: center; justify-content: center; }
.team-avatar i { font-size: 80px; color: rgba(255,255,255,0.3); }
.team-info { padding: 24px; }
.team-info h3 { color: #145886; font-size: 20px; margin-bottom: 4px; }
.team-info .role { color: #55b848; font-size: 14px; font-weight: 500; margin-bottom: 12px; }
.team-info p { color: #666; font-size: 13px; line-height: 1.6; }

/* --- Timeline --- */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, #55b848, #3a9e2e); transform: translateX(-50%); }
.timeline-item { display: flex; justify-content: flex-end; padding: 0 0 40px; width: 50%; position: relative; }
.timeline-item:nth-child(even) { align-self: flex-end; justify-content: flex-start; margin-left: 50%; }
.timeline-content { background: #fff; padding: 24px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); max-width: 350px; position: relative; }
.timeline-content::before { content: ''; position: absolute; top: 20px; width: 12px; height: 12px; background: #55b848; border-radius: 50%; }
.timeline-item:nth-child(odd) .timeline-content { margin-right: 30px; }
.timeline-item:nth-child(odd) .timeline-content::before { right: -36px; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 30px; }
.timeline-item:nth-child(even) .timeline-content::before { left: -36px; }
.timeline-content .year { color: #55b848; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.timeline-content h3 { color: #145886; font-size: 16px; margin-bottom: 8px; }
.timeline-content p { color: #666; font-size: 13px; line-height: 1.6; }

/* --- Careers Page --- */
.careers-hero { text-align: center; margin-bottom: 50px; }
.careers-hero h2 { color: #145886; font-size: 32px; margin-bottom: 12px; }
.careers-hero p { color: #666; max-width: 600px; margin: 0 auto; }

.career-form { max-width: 750px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.career-form h3 { color: #145886; font-size: 24px; margin-bottom: 24px; text-align: center; }
.career-form-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.career-form-heading h3 { margin-bottom: 0; text-align: left; }
.career-note { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: linear-gradient(135deg, rgba(20,88,134,0.08), rgba(85,184,72,0.18)); color: #145886; font-size: 13px; font-weight: 600; box-shadow: 0 8px 20px rgba(20,88,134,0.08); }
.career-note i { color: #55b848; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: #333; font-size: 14px; }
.form-group label .required { color: #e53935; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 2px solid #e8e8e8; border-radius: 8px;
    font-size: 14px; font-family: inherit; transition: all 0.3s; background: #fafafa;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #55b848; outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(85,184,72,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group .file-label { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: 2px dashed #e8e8e8; border-radius: 8px; cursor: pointer; transition: all 0.3s; background: #fafafa; }
.form-group .file-label:hover { border-color: #55b848; background: rgba(85,184,72,0.05); }
.form-group .file-label i { color: #55b848; font-size: 20px; }
.form-group .file-label input[type="file"] { display: none; }
.form-group .file-info { font-size: 12px; color: #999; margin-top: 4px; }

/* --- Contact Page --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info-card { background: linear-gradient(135deg, #145886, #0f3d5e); border-radius: 16px; padding: 40px; color: #fff; }
.contact-info-card h3 { font-size: 24px; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-item i { width: 44px; height: 44px; background: rgba(85,184,72,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #55b848; font-size: 18px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: rgba(255,255,255,0.7); }
.contact-form-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-form-card h3 { color: #145886; font-size: 24px; margin-bottom: 24px; }

.email-table-section { margin-top: 60px; }
.email-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.06); }
.email-table thead { background: linear-gradient(135deg, #145886, #0f3d5e); color: #fff; }
.email-table th { padding: 16px 24px; text-align: left; font-weight: 600; font-size: 14px; }
.email-table td { padding: 16px 24px; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.email-table tr:last-child td { border-bottom: none; }
.email-table tr:hover td { background: rgba(85,184,72,0.04); }
.email-table .email-link { color: #55b848; font-weight: 500; }

/* --- Knowledge Base --- */
.knowledge-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.knowledge-card { background: #fff; border-radius: 12px; padding: 28px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s; border-left: 4px solid #55b848; }
.knowledge-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.knowledge-card .category { display: inline-block; background: rgba(85,184,72,0.1); color: #55b848; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 12px; }
.knowledge-card h3 { color: #145886; font-size: 18px; margin-bottom: 10px; }
.knowledge-card p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.knowledge-card .meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #999; }
.knowledge-card .download-btn { display: inline-flex; align-items: center; gap: 6px; color: #145886; font-weight: 600; font-size: 13px; transition: color 0.3s; }
.knowledge-card .download-btn:hover { color: #55b848; }

/* --- Legal Pages --- */
.legal-content { max-width: 800px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 48px; box-shadow: 0 5px 30px rgba(0,0,0,0.06); }
.legal-content h2 { color: #145886; font-size: 24px; margin: 32px 0 16px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { color: #555; line-height: 1.8; margin-bottom: 8px; list-style: disc; }

/* --- Alert Messages --- */
.alert { padding: 14px 20px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; animation: slideDown 0.4s ease; }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #3a9e2e; }
.alert-error { background: #ffebee; color: #c62828; border-left: 4px solid #c62828; }
.alert-info { background: #e3f2fd; color: #1565c0; border-left: 4px solid #1565c0; }

/* --- Submission Popup --- */
.submission-popup-overlay { position: fixed; inset: 0; background: rgba(15,61,94,0.78); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 1400; }
.submission-popup-overlay.active { display: flex; animation: fadeIn 0.25s ease; }
.submission-popup { width: min(100%, 460px); background: #fff; border-radius: 20px; padding: 34px 30px; text-align: center; box-shadow: 0 30px 70px rgba(0,0,0,0.28); animation: scaleIn 0.25s ease; }
.submission-popup-icon { width: 82px; height: 82px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 34px; }
.submission-popup-success .submission-popup-icon { background: rgba(58,158,46,0.12); color: #3a9e2e; }
.submission-popup-warning .submission-popup-icon { background: rgba(245,158,11,0.14); color: #d97706; }
.submission-popup h3 { color: #145886; font-size: 28px; margin-bottom: 12px; }
.submission-popup p { color: #666; line-height: 1.8; margin-bottom: 24px; }
.submission-popup .btn { min-width: 160px; justify-content: center; }
.terms-consent-overlay { backdrop-filter: blur(6px); }
.terms-consent-popup { width: min(100%, 560px); padding: 40px 36px 36px; text-align: left; border: 1px solid rgba(20,88,134,0.12); position: relative; overflow: hidden; }
.terms-consent-popup::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, #145886, #55b848); }
.terms-consent-popup .submission-popup-icon { margin: 0 0 18px; background: linear-gradient(135deg, rgba(20,88,134,0.12), rgba(85,184,72,0.2)); color: #145886; box-shadow: inset 0 0 0 1px rgba(20,88,134,0.05); }
.terms-consent-popup .submission-popup-icon i { font-size: 34px; }
.terms-consent-badge { display: inline-flex; align-items: center; padding: 8px 14px; border-radius: 999px; background: rgba(85,184,72,0.12); color: #3a9e2e; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.terms-consent-popup h3 { margin-bottom: 14px; }
.terms-consent-popup p { margin-bottom: 18px; }
.terms-consent-copy { font-size: 14px; color: #4a5b6b; }
.terms-consent-copy a { color: #55b848; font-weight: 700; }
.terms-consent-copy a:hover { color: #145886; }
.terms-consent-check { display: flex; align-items: flex-start; gap: 12px; margin: 26px 0 24px; padding: 16px 18px; border-radius: 14px; background: linear-gradient(135deg, rgba(20,88,134,0.05), rgba(85,184,72,0.08)); border: 1px solid rgba(20,88,134,0.1); cursor: pointer; }
.terms-consent-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: #55b848; flex-shrink: 0; }
.terms-consent-check span { color: #145886; font-size: 14px; line-height: 1.6; font-weight: 600; }
.terms-consent-actions { display: flex; justify-content: flex-start; }
.terms-consent-actions .btn { min-width: 220px; }
.terms-consent-actions .btn:disabled, .terms-consent-actions .btn:disabled:hover { background: #b8c8d4; box-shadow: none; cursor: not-allowed; transform: none; }

/* --- Footer --- */
.footer { position: relative; }
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 80px; }
.footer-content { background: #145886; padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo h3 { color: #fff; font-size: 24px; margin-bottom: 4px; }
.footer-logo p { color: #55b848; font-size: 13px; font-weight: 500; }
.footer-about { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.7; margin-top: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; }
.footer-social a:hover { background: #55b848; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 17px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: #55b848; border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: all 0.3s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: #55b848; transform: translateX(4px); }
.footer-contact li { color: rgba(255,255,255,0.6); font-size: 14px; display: flex; gap: 10px; margin-bottom: 14px; }
.footer-contact li i { color: #55b848; margin-top: 3px; }
.footer-bottom { background: #0d3050; padding: 18px 0; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom-content p { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.3s; }
.footer-links a:hover { color: #55b848; }

/* --- Scroll to Top --- */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; border-radius: 12px; background: #55b848; color: #fff; border: none; cursor: pointer; font-size: 18px; display: none; align-items: center; justify-content: center; z-index: 999; transition: all 0.3s; box-shadow: 0 4px 15px rgba(85,184,72,0.4); }
.scroll-top.visible { display: flex; animation: fadeInUp 0.4s ease; }
.scroll-top:hover { background: #145886; transform: translateY(-3px); }

/* --- Admin Styles --- */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 260px; background: linear-gradient(180deg, #145886, #0f3d5e); color: #fff; padding: 24px 0; position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 100; }
.admin-sidebar-logo { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: center; }
.admin-sidebar-logo h3 { font-size: 20px; }
.admin-sidebar-logo p { font-size: 12px; color: #55b848; }
.admin-nav { padding: 20px 0; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 24px; color: rgba(255,255,255,0.7); font-size: 14px; transition: all 0.3s; border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { color: #fff; background: rgba(255,255,255,0.05); border-left-color: #55b848; }
.admin-nav a i { width: 20px; text-align: center; }
.admin-main { flex: 1; margin-left: 260px; background: #f0f2f5; min-height: 100vh; }
.admin-header { background: #fff; padding: 16px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 50; }
.admin-header h2 { color: #145886; font-size: 22px; }
.admin-header-actions { display: flex; align-items: center; gap: 16px; }
.admin-content { padding: 30px; }
.mobile-menu-btn { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(20,88,134,0.12); background: linear-gradient(135deg, #ffffff, #eef5fa); box-shadow: 0 12px 26px rgba(15,61,94,0.12); color: #145886; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s, background 0.3s; }
.mobile-menu-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(15,61,94,0.16); }
.mobile-card-table-ready td { word-break: break-word; }

.admin-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 15px rgba(0,0,0,0.05); margin-bottom: 24px; }
.admin-card-header { padding: 20px 24px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h3 { color: #145886; font-size: 18px; }
.admin-card-body { padding: 24px; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.admin-stat-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 15px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 16px; }
.admin-stat-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.admin-stat-icon.blue { background: rgba(20,88,134,0.1); color: #145886; }
.admin-stat-icon.orange { background: rgba(85,184,72,0.1); color: #55b848; }
.admin-stat-icon.green { background: rgba(58,158,46,0.1); color: #3a9e2e; }
.admin-stat-icon.red { background: rgba(229,57,53,0.1); color: #e53935; }
.admin-stat-info h4 { font-size: 28px; color: #333; }
.admin-stat-info p { font-size: 13px; color: #999; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: #f8f9fa; padding: 12px 16px; text-align: left; font-size: 13px; color: #666; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.admin-table tr:hover td { background: #fafafa; }
.admin-table .badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-new { background: #e3f2fd; color: #1565c0; }
.badge-reviewed { background: #fff3e0; color: #e65100; }
.badge-shortlisted { background: #e8f5e9; color: #2e7d32; }
.badge-rejected { background: #ffebee; color: #c62828; }
.badge-hired { background: #e0f2f1; color: #00695c; }
.badge-unread { background: #e3f2fd; color: #1565c0; }
.badge-read { background: #fff3e0; color: #e65100; }
.badge-replied { background: #e8f5e9; color: #2e7d32; }

.admin-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s; border: none; font-family: inherit; }
.admin-btn-sm { padding: 5px 10px; font-size: 12px; }
.admin-btn-primary { background: #55b848; color: #fff; }
.admin-btn-primary:hover { background: #47a03c; }
.admin-btn-secondary { background: #145886; color: #fff; }
.admin-btn-secondary:hover { background: #105070; }
.admin-btn-success { background: #3a9e2e; color: #fff; }
.admin-btn-success:hover { background: #2d8523; }
.admin-btn-danger { background: #e53935; color: #fff; }
.admin-btn-danger:hover { background: #c62828; }
.admin-btn-outline { background: transparent; border: 1px solid #ddd; color: #666; }
.admin-btn-outline:hover { border-color: #55b848; color: #55b848; }

.admin-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; }
.admin-modal-overlay.active { display: flex; }
.admin-modal { background: #fff; border-radius: 12px; max-width: 600px; width: 90%; max-height: 85vh; overflow-y: auto; animation: scaleIn 0.3s ease; }
.admin-modal-header { padding: 20px 24px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.admin-modal-header h3 { color: #145886; font-size: 18px; }
.admin-modal-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #999; }
.admin-modal-body { padding: 24px; }
.admin-modal-footer { padding: 16px 24px; border-top: 1px solid #f0f0f0; display: flex; justify-content: flex-end; gap: 10px; }

/* --- Login Page --- */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #145886 0%, #0f3d5e 100%); position: relative; overflow: hidden; }
.login-page::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(85,184,72,0.05), transparent); }
.login-card { background: #fff; border-radius: 16px; padding: 48px; max-width: 420px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.3); position: relative; z-index: 1; animation: scaleIn 0.5s ease; }
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo h2 { color: #145886; font-size: 26px; font-weight: 800; }
.login-logo p { color: #55b848; font-size: 13px; }
.login-security { text-align: center; margin-top: 20px; }
.login-security i { color: #3a9e2e; }
.login-security span { font-size: 12px; color: #999; }

/* --- Pagination --- */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.pagination a, .pagination span { padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: all 0.3s; }
.pagination a { background: #fff; color: #666; border: 1px solid #e0e0e0; }
.pagination a:hover { border-color: #55b848; color: #55b848; }
.pagination .active { background: #55b848; color: #fff; border: 1px solid #55b848; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 38px; }
    .about-preview { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 260px)); justify-content: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { width: 100%; margin-left: 0; justify-content: flex-start; }
    .timeline-item .timeline-content, .timeline-item:nth-child(even) .timeline-content { margin-left: 50px; margin-right: 0; }
    .timeline-item .timeline-content::before, .timeline-item:nth-child(even) .timeline-content::before { left: -36px; right: auto; }
}

@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; gap: 6px; font-size: 12px; }
    .top-bar-left, .top-bar-right { justify-content: center; flex-wrap: wrap; }
    .navbar .container { flex-wrap: wrap; position: relative; }
    .nav-toggle { display: block; order: 1; }
    .nav-logo { order: 2; position: absolute; left: 50%; transform: translateX(-50%); }
    .nav-actions { order: 3; margin-left: auto; gap: 8px; }
    .nav-menu { display: none; flex-direction: column; position: absolute; top: calc(100% + 10px); left: 12px; right: 12px; background: rgba(255,255,255,0.97); padding: 16px; border-radius: 24px; box-shadow: 0 18px 45px rgba(15,61,94,0.16); border: 1px solid rgba(20,88,134,0.08); backdrop-filter: blur(16px); order: 4; width: auto; z-index: 999; }
    .nav-menu.active { display: flex; }
    .nav-menu a { padding: 14px 16px; width: 100%; border-radius: 16px; font-weight: 600; }
    .nav-login-btn { padding: 6px 14px; font-size: 13px; }
    .nav-login-btn i { font-size: 12px; }
    .nav-user-btn { padding: 6px 14px; font-size: 13px; }
    .logo-name { font-size: 18px; }
    .logo-tagline { font-size: 9px; }
    .hero { min-height: 70vh; padding: 60px 0; }
    .hero-content { max-width: 100%; padding: 28px 22px; background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.14); border-radius: 28px; box-shadow: 0 22px 50px rgba(7,24,39,0.18); backdrop-filter: blur(10px); }
    .hero h1 { font-size: 30px; }
    .hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .hero-stat:last-child { grid-column: 1 / -1; }
    .hero-stat { padding: 16px; border-radius: 20px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 28px; }
    .section-header { margin-bottom: 40px; }
    .section-header p { max-width: none; }
    .form-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-image-badge { right: 10px; bottom: 10px; }
    .feature-card, .service-card, .knowledge-card, .career-form, .contact-info-card, .contact-form-card, .legal-content, .admin-card, .admin-stat-card { border-radius: 20px; }
    .feature-card, .knowledge-card, .legal-content { padding-left: 24px; padding-right: 24px; }
    .contact-grid { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 10px; text-align: center; }
    .page-banner h1 { font-size: 30px; }
    .page-banner { padding: 92px 0 52px; }
    .audit-app-shell { padding: 22px 0; }
    .audit-app-frame { padding: 14px; border-radius: 24px; }
    .audit-app-frame iframe { min-height: 640px; border-radius: 18px; }
    .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
    .admin-sidebar.active { transform: translateX(0); }
    .admin-sidebar, .user-sidebar { width: min(86vw, 320px); box-shadow: 18px 0 36px rgba(15,61,94,0.22); }
    .admin-main { margin-left: 0; }
    .user-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
    .user-sidebar.active { transform: translateX(0); }
    .user-main { margin-left: 0; }
    .admin-stats { grid-template-columns: 1fr; }
    .knowledge-grid { grid-template-columns: 1fr; }
    .admin-header, .user-header { padding: 14px 18px; }
    .admin-content, .user-content { padding: 18px; }
    .admin-header-actions, .user-header-actions { gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
    .pagination { flex-wrap: wrap; }
    .scroll-top { bottom: 18px; right: 18px; width: 42px; height: 42px; border-radius: 14px; }
    .career-form-heading { align-items: flex-start; }
    .mobile-menu-btn { display: inline-flex; }
    .terms-consent-popup { padding: 32px 24px 26px; }
    .terms-consent-check { padding: 14px 16px; }
    .terms-consent-actions .btn { width: 100%; min-width: 0; }

    .mobile-card-table-ready { border-collapse: separate; border-spacing: 0; }
    .mobile-card-table-ready thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    .mobile-card-table-ready,
    .mobile-card-table-ready tbody,
    .mobile-card-table-ready tr,
    .mobile-card-table-ready td {
        display: block;
        width: 100%;
    }
    .mobile-card-table-ready tbody { display: grid; gap: 16px; }
    .mobile-card-table-ready tr {
        position: relative;
        padding: 18px 18px 16px;
        border-radius: 20px;
        border: 1px solid rgba(20,88,134,0.12);
        background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,246,250,0.98));
        box-shadow: 0 18px 34px rgba(15,61,94,0.1);
        overflow: hidden;
    }
    .mobile-card-table-ready tr::before {
        content: '';
        position: absolute;
        inset: 0 0 auto 0;
        height: 4px;
        background: linear-gradient(90deg, #145886, #55b848);
    }
    .mobile-card-table-ready td {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        padding: 10px 0;
        border: 0;
        background: transparent !important;
        font-size: 14px;
        line-height: 1.6;
    }
    .mobile-card-table-ready td + td { border-top: 1px dashed rgba(20,88,134,0.12); }
    .mobile-card-table-ready td::before {
        content: attr(data-label);
        min-width: 108px;
        max-width: 45%;
        color: #145886;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
    .mobile-card-table-ready td[data-no-label="true"] {
        display: block;
        text-align: center;
        color: #666;
    }
    .mobile-card-table-ready td[data-no-label="true"]::before { content: none; }
    .mobile-card-table-ready td.is-actions { display: block; }
    .mobile-card-table-ready td.is-actions::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 10px;
    }
    .mobile-card-table-ready td.is-actions > * {
        display: inline-flex;
        margin: 0 8px 8px 0;
    }
    .mobile-card-table-ready td.is-actions form {
        display: inline-flex;
        margin: 0 8px 8px 0;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 26px; }
    .hero-content { padding: 24px 18px; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stat .number { font-size: 28px; }
    .stats-grid { grid-template-columns: 1fr; }
    .audit-app-frame { padding: 12px; border-radius: 20px; }
    .audit-app-frame iframe { min-height: 620px; border-radius: 16px; }
    .career-form { padding: 24px; }
    .career-note { width: 100%; justify-content: center; }
    .contact-info-card, .contact-form-card { padding: 24px; }
    .legal-content { padding: 24px; }
    .terms-consent-popup .submission-popup-icon { width: 72px; height: 72px; font-size: 30px; }
    .mobile-card-table-ready tr { padding: 16px 16px 14px; }
    .mobile-card-table-ready td { flex-direction: column; gap: 6px; }
    .mobile-card-table-ready td::before { min-width: 0; max-width: none; }
}
