/* =====================================================
   BEVENT SMS - QHSE Platform
   Colors: Navy #0d1b3e | Green #2ea84d | White #ffffff
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1b3e;
  --navy-light: #1a2f5e;
  --navy-dark: #080f24;
  --green: #2ea84d;
  --green-light: #3cbf5a;
  --green-dark: #1e8c35;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --font: 'DM Sans', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --shadow: 0 4px 24px rgba(13,27,62,0.10);
  --shadow-lg: 0 8px 40px rgba(13,27,62,0.18);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--navy); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.75rem 1.75rem; border-radius: var(--radius); font-family: var(--font); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--transition); border: 2px solid transparent; white-space: nowrap; }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(46,168,77,0.3); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* ---- NAVBAR ---- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--gray-200); transition: var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1.5rem; }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.logo-circle { width: 42px; height: 42px; border-radius: 50%; border: 2.5px solid var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-serif); font-size: 1.15rem; color: var(--navy); line-height: 1; }
.logo-tagline { font-size: 0.62rem; letter-spacing: 0.12em; color: var(--gray-400); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { padding: 0.5rem 0.85rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; color: var(--gray-600); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gray-100); }
.nav-links a.active { color: var(--green); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.lang-switcher { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--gray-400); }
.lang-switcher a { color: var(--gray-400); transition: var(--transition); }
.lang-switcher a.active, .lang-switcher a:hover { color: var(--navy); font-weight: 600; }
.btn-outline-nav { padding: 0.5rem 1.2rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: 0.875rem; font-weight: 500; color: var(--navy); transition: var(--transition); }
.btn-outline-nav:hover { border-color: var(--navy); }
.btn-primary-nav { padding: 0.5rem 1.2rem; background: var(--navy); color: var(--white); border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; transition: var(--transition); }
.btn-primary-nav:hover { background: var(--navy-light); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* User menu */
.user-menu { position: relative; }
.user-menu-btn { display: flex; align-items: center; gap: 8px; background: none; border: 1.5px solid var(--gray-200); border-radius: 50px; padding: 5px 14px 5px 5px; cursor: pointer; font-family: var(--font); font-size: 0.875rem; font-weight: 500; color: var(--navy); transition: var(--transition); }
.user-menu-btn:hover { border-color: var(--navy); }
.user-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.user-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); min-width: 200px; padding: 8px; z-index: 100; }
.user-dropdown a, .user-dropdown button { display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 12px; border-radius: var(--radius); font-size: 0.875rem; color: var(--gray-600); background: none; border: none; cursor: pointer; font-family: var(--font); transition: var(--transition); text-align: left; }
.user-dropdown a:hover, .user-dropdown button:hover { background: var(--gray-50); color: var(--navy); }
.user-dropdown hr { border: none; border-top: 1px solid var(--gray-200); margin: 6px 0; }

/* ---- FLASH MESSAGES ---- */
.flash { position: fixed; top: 80px; right: 1.5rem; z-index: 2000; display: flex; align-items: center; gap: 10px; padding: 1rem 1.5rem; border-radius: var(--radius-lg); font-size: 0.9rem; font-weight: 500; box-shadow: var(--shadow-lg); animation: slideIn 0.3s ease; max-width: 420px; }
.flash button { margin-left: auto; background: none; border: none; cursor: pointer; opacity: 0.7; }
.flash-success { background: #d1fae5; color: #065f46; }
.flash-error { background: #fee2e2; color: #991b1b; }
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ---- HERO ---- */
.hero { min-height: 100vh; background: var(--navy); position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle, white 1px, transparent 1px); background-size: 40px 40px; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 5rem 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(46,168,77,0.15); border: 1px solid rgba(46,168,77,0.3); color: var(--green-light); padding: 6px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.hero-title .highlight { color: var(--green); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 700; color: var(--white); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ---- FEATURES BAR ---- */
.features-bar { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.features-bar-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.feature-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.feature-item i { color: var(--green); font-size: 1.2rem; flex-shrink: 0; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.section-title .accent { color: var(--green); }
.section-desc { font-size: 1.05rem; color: var(--gray-600); max-width: 560px; margin: 0 auto; }

/* ---- MISSION SECTION ---- */
.mission-section { background: var(--gray-50); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.mission-text h2 { font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.mission-text h2 .accent { color: var(--green); }
.mission-text p { color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.8; }
.mission-quote { background: var(--navy); color: var(--white); padding: 1.5rem 2rem; border-radius: var(--radius-lg); border-left: 4px solid var(--green); margin: 1.5rem 0; font-style: italic; font-size: 0.95rem; line-height: 1.8; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; box-shadow: var(--shadow); }
.stat-card-num { font-size: 2.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-card-num span { color: var(--green); }
.stat-card-label { font-size: 0.85rem; color: var(--gray-400); margin-top: 0.5rem; }

/* ---- COURSE CARDS ---- */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.course-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--gray-200); }
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.course-card-img { position: relative; height: 190px; overflow: hidden; background: var(--gray-200); }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.course-card:hover .course-card-img img { transform: scale(1.05); }
.course-card-badge { position: absolute; top: 12px; left: 12px; background: var(--white); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); font-size: 0.65rem; font-weight: 700; color: var(--navy); }
.course-card-body { padding: 1.25rem; }
.course-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--gray-400); margin-bottom: 0.6rem; }
.course-card-title { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 0.75rem; }
.course-card-footer { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-top: 1px solid var(--gray-100); }
.course-price { font-size: 1.4rem; font-weight: 700; color: var(--green); }
.course-card-btn { background: var(--navy); color: var(--white); padding: 0.6rem 1.25rem; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.course-card-btn:hover { background: var(--green); }

/* ---- CATEGORIES FILTER ---- */
.categories-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.cat-btn { padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; border: 1.5px solid var(--gray-200); color: var(--gray-600); background: var(--white); cursor: pointer; transition: var(--transition); }
.cat-btn:hover, .cat-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---- CERTIFICATIONS ---- */
.cert-section { background: var(--gray-50); }
.cert-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.5rem; margin: 2.5rem 0; }
.cert-logo { display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.75; transition: var(--transition); }
.cert-logo:hover { opacity: 1; transform: scale(1.08); }
.cert-logo-box { width: 90px; height: 60px; background: var(--white); border-radius: var(--radius); border: 1.5px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; color: var(--navy); box-shadow: var(--shadow); }
.cert-logo-name { font-size: 0.7rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- CTA SECTION ---- */
.cta-section { background: var(--navy); padding: 4rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-text h2 { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.7); }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 200px; overflow: hidden; background: var(--gray-200); position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-icon-badge { position: absolute; bottom: -20px; left: 20px; width: 44px; height: 44px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; box-shadow: var(--shadow); }
.service-card-body { padding: 2rem 1.5rem 1.5rem; }
.service-card-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-card-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }
.service-card-link { color: var(--green); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-card-link:hover { gap: 10px; }

/* ---- WEBINAR CARDS ---- */
.webinar-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.webinar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.webinar-card-header { background: var(--navy); padding: 1.25rem; color: var(--white); }
.webinar-card-date { font-size: 0.8rem; color: var(--green-light); font-weight: 600; margin-bottom: 0.5rem; }
.webinar-card-title { font-size: 1.05rem; font-weight: 700; }
.webinar-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.badge-live { background: rgba(239,68,68,0.15); color: #ef4444; }
.badge-upcoming { background: rgba(46,168,77,0.15); color: var(--green); }
.badge-replay { background: rgba(99,102,241,0.15); color: #6366f1; }

/* ---- SHOP CARDS ---- */
.product-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img { height: 200px; overflow: hidden; background: var(--gray-100); display: flex; align-items: center; justify-content: center; }
.product-card-body { padding: 1.25rem; }
.product-card-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--green); }

/* ---- PAGE BANNER ---- */
.page-banner { background: var(--navy); padding: 5rem 0 3rem; margin-top: 72px; }
.page-banner h1 { font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }

/* ---- DASHBOARD ---- */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 72px); margin-top: 72px; }
.dashboard-sidebar { background: var(--navy); padding: 2rem 1rem; }
.sidebar-menu { display: flex; flex-direction: column; gap: 4px; }
.sidebar-link { display: flex; align-items: center; gap: 12px; padding: 0.85rem 1rem; border-radius: var(--radius); color: rgba(255,255,255,0.65); font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.sidebar-link:hover, .sidebar-link.active { background: rgba(255,255,255,0.1); color: var(--white); }
.sidebar-link.active { border-left: 3px solid var(--green); }
.sidebar-link i { font-size: 1.1rem; width: 20px; }
.dashboard-main { padding: 2.5rem; background: var(--gray-50); }
.dashboard-header { margin-bottom: 2rem; }
.dashboard-header h1 { font-size: 1.75rem; font-weight: 700; color: var(--navy); }
.dashboard-header p { color: var(--gray-400); }
.dashboard-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.dash-stat { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--gray-200); }
.dash-stat-icon { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1rem; }
.dash-stat-icon.navy { background: rgba(13,27,62,0.1); color: var(--navy); }
.dash-stat-icon.green { background: rgba(46,168,77,0.1); color: var(--green); }
.dash-stat-num { font-size: 2rem; font-weight: 700; color: var(--navy); }
.dash-stat-label { font-size: 0.82rem; color: var(--gray-400); margin-top: 2px; }

/* ---- ADMIN ---- */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 72px); margin-top: 72px; }
.admin-sidebar { background: var(--navy-dark); padding: 1.5rem 1rem; }
.admin-sidebar-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); padding: 0.5rem 1rem; margin-bottom: 0.25rem; margin-top: 1rem; }
.admin-main { padding: 2rem; background: var(--gray-50); overflow: auto; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.admin-stat { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); border-left: 4px solid var(--green); }
.admin-stat-label { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 0.5rem; }
.admin-stat-num { font-size: 2rem; font-weight: 700; color: var(--navy); }
.table-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--gray-200); overflow: hidden; }
.table-card-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; }
.table-card-title { font-weight: 700; color: var(--navy); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 0.75rem 1.5rem; text-align: left; font-size: 0.78rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.data-table td { padding: 1rem 1.5rem; font-size: 0.9rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-50); }

/* ---- AUTH FORMS ---- */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--gray-50); padding-top: 72px; }
.auth-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; max-width: 440px; padding: 2.5rem; border: 1px solid var(--gray-200); }
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-title { font-size: 1.6rem; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 0.5rem; }
.auth-subtitle { text-align: center; color: var(--gray-400); font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-family: var(--font); font-size: 0.9rem; color: var(--navy); transition: var(--transition); background: var(--white); }
.form-control:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,27,62,0.08); }
.form-error { font-size: 0.8rem; color: #dc2626; margin-top: 4px; }
.form-hint { font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; }

/* ---- FOOTER ---- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-top: 1.25rem; max-width: 280px; }
.footer-logo .logo-circle { border-color: rgba(255,255,255,0.4); color: var(--white); }
.footer-logo .logo-name { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 1.5rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-social a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green); }
.footer-contact { gap: 0.75rem !important; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; }
.footer-contact li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.footer-newsletter { margin-top: 1.5rem; }
.footer-newsletter p { font-size: 0.82rem; margin-bottom: 0.75rem; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { flex: 1; padding: 0.65rem 1rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius) 0 0 var(--radius); color: var(--white); font-family: var(--font); font-size: 0.85rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button { padding: 0.65rem 1rem; background: var(--green); border: none; border-radius: 0 var(--radius) var(--radius) 0; color: var(--white); cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: var(--green-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; flex-wrap: wrap; }
.footer-bottom-inner p { font-size: 0.82rem; }
.footer-cert-logos { display: flex; align-items: center; gap: 1rem; }
.footer-cert-logos span { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.15); padding: 3px 8px; border-radius: 4px; }
.footer-links { display: flex; gap: 1rem; font-size: 0.82rem; }
.footer-links a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-tagline { background: rgba(0,0,0,0.2); padding: 0.75rem 0; text-align: center; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

/* ---- CHECKOUT ---- */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
.checkout-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--gray-200); }

/* ---- UTILITY ---- */
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--gray-400); }
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.badge-navy { background: rgba(13,27,62,0.08); color: var(--navy); }
.badge-green { background: rgba(46,168,77,0.12); color: var(--green-dark); }
.divider { height: 1px; background: var(--gray-200); margin: 1.5rem 0; }
.view-all { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.view-all:hover { color: var(--green); gap: 10px; }
.section-actions { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .features-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); padding: 1rem; box-shadow: var(--shadow-lg); flex-direction: column; border-top: 1px solid var(--gray-200); }
  .nav-links.open { display: flex; }
  .nav-actions .btn-outline-nav, .nav-actions .btn-primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .lang-switcher { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dashboard-layout, .admin-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar, .admin-sidebar { display: none; }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
  .features-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
