/* ====================================================
   DESIGN TOKENS — LIGHT MODE
==================================================== */
:root {
  --bg:           #ffffff;
  --bg-off:       #f8fafc;
  --bg-subtle:    #f1f5f9;
  --bg-hero:      #eff6ff;
  --bg-hero-2:    #dbeafe;
  --bg-footer:    #0f172a;
  --bg-footer-2:  #1e293b;
  --text:         #0f172a;
  --text-2:       #1e293b;
  --text-muted:   #64748b;
  --text-light:   #94a3b8;
  --text-inv:     #f8fafc;
  --blue:         #1d4ed8;
  --blue-hover:   #1e40af;
  --blue-light:   #eff6ff;
  --blue-mid:     #bfdbfe;
  --sky:          #0ea5e9;
  --green:        #059669;
  --green-light:  #ecfdf5;
  --amber:        #d97706;
  --amber-light:  #fffbeb;
  --red:          #dc2626;
  --red-light:    #fef2f2;
  --purple:       #7c3aed;
  --purple-light: #f5f3ff;
  --cyan:         #0284c7;
  --cyan-light:   #f0f9ff;
  --border:       #e2e8f0;
  --border-2:     #cbd5e1;

  --sh-xs: 0 1px 2px rgba(0,0,0,0.05);
  --sh-sm: 0 1px 4px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.04);
  --sh-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --sh-lg: 0 8px 32px rgba(0,0,0,0.1),  0 4px 12px rgba(0,0,0,0.06);
  --sh-xl: 0 20px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);

  --r-sm:  6px;
  --r:     10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --f-head: 'Rajdhani', sans-serif;
  --f-body: 'DM Sans', sans-serif;
  --t: 0.22s ease;
}

/* ====================================================
   RESET & BASE
==================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--f-body); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }
a { color: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { position: relative; }

/* ====================================================
   UTILITY CLASSES (Replaced Inline Styles)
==================================================== */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 6px; }
.color-blue { color: var(--blue); }
.color-green { color: var(--green); }
.color-amber { color: var(--amber); }
.color-purple { color: var(--purple); }
.color-text-light { color: var(--text-light); }
.bg-blue-light { background: var(--blue-light); }
.bg-green-light { background: var(--green-light); }
.bg-amber-light { background: var(--amber-light); }
.bg-purple-light { background: var(--purple-light); }
.nav-logo-img { height: 48px; width: auto; object-fit: contain; }
.footer-logo-container { margin-bottom: 20px; }
.footer-logo-img { height: 60px; width: auto; object-fit: contain; }
.branch-star-icon { font-size: 0.6rem; }

/* ====================================================
   TYPOGRAPHY HELPERS
==================================================== */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; }
.section-title { font-family: var(--f-head); font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.12; color: var(--text); margin-bottom: 14px; letter-spacing: -0.3px; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 580px; }
.section-head { margin-bottom: 52px; }

/* ====================================================
   BUTTONS
==================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--f-body); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.2px; border-radius: var(--r); border: none; padding: 12px 26px; transition: all var(--t); white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(29,78,216,0.3); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-ghost { background: var(--bg-subtle); color: var(--text-2); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: var(--border); color: var(--text); }
.btn-lg { padding: 15px 34px; font-size: 1rem; border-radius: var(--r-lg); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; border-radius: var(--r-sm); }
.btn-full { width: 100%; }

/* ====================================================
   FORM ELEMENTS
==================================================== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-2); letter-spacing: 0.3px; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg); border: 1.5px solid #b0bfcc; border-radius: var(--r); padding: 11px 14px; color: var(--text); font-family: var(--f-body); font-size: 0.9rem; transition: all var(--t); outline: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,0.1); }
.form-group input::placeholder { color: var(--text-light); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ====================================================
   NAVBAR
==================================================== */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 900; background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: box-shadow var(--t); }
#navbar.scrolled { box-shadow: var(--sh-md); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 2px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); text-decoration: none; padding: 7px 13px; border-radius: var(--r-sm); transition: all var(--t); }
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover, .nav-links a.btn-primary:focus { color: #fff !important; background: var(--blue); }
.nav-links a.btn-primary:hover { background: var(--blue-hover) !important; }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.3rem; padding: 6px; border-radius: var(--r-sm); transition: background var(--t); }
.hamburger:hover { background: var(--bg-subtle); }

/* ====================================================
   HERO
==================================================== */
#hero { padding-top: 68px; background: linear-gradient(135deg, var(--bg-hero) 0%, #e0eaff 50%, var(--bg-hero-2) 100%); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
#hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(29,78,216,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(29,78,216,0.05) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 72px 0; position: relative; z-index: 1; }
.hero-cert-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.cert-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(29,78,216,0.1); border: 1px solid rgba(29,78,216,0.2); color: var(--blue); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.hero-title { font-family: var(--f-head); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.06; color: var(--text); margin-bottom: 16px; letter-spacing: -0.5px; }
.hero-title .hl { color: var(--blue); }
.hero-tagline { font-size: 0.88rem; font-weight: 600; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px; padding-left: 2px; }
.hero-desc { font-size: 1.05rem; color: var(--text-2); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trust-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-2); font-weight: 500; line-height: 1.4; }
.trust-item .ti-icon { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 0.65rem; }

.hero-form-card { background: #fff; border-radius: var(--r-xl); box-shadow: var(--sh-xl); padding: 40px 36px; border: 1px solid var(--border); position: relative; }
.hero-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--sky)); border-radius: var(--r-xl) var(--r-xl) 0 0; }
.hfc-title { font-family: var(--f-head); font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.hfc-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }
.hfc-divider { height: 1px; background: var(--border); margin: 20px 0; }
.hfc-phone { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }
.hfc-phone a { font-weight: 600; color: var(--blue); text-decoration: none; }

/* ====================================================
   STATS BAR
==================================================== */
#stats { background: var(--bg); border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { padding: 36px 28px; text-align: center; border-right: 1px solid var(--border); transition: background var(--t); }
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--bg-off); }
.stat-num { font-family: var(--f-head); font-size: 2.8rem; font-weight: 700; color: var(--blue); line-height: 1; display: block; }
.stat-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 6px; }
.stat-icon { font-size: 1.1rem; color: var(--blue-mid); margin-bottom: 8px; }

/* ====================================================
   FEATURES
==================================================== */
#features { padding: 96px 0; background: var(--bg-off); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 36px 32px; transition: all var(--t); display: flex; gap: 22px; align-items: flex-start; }
.feature-card:hover { border-color: var(--blue-mid); box-shadow: var(--sh-md); transform: translateY(-3px); }
.fc-icon { width: 52px; height: 52px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.fc-title { font-family: var(--f-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.fc-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ====================================================
   CERTIFICATIONS STRIP
==================================================== */
#certs { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 0; }
.certs-inner { display: grid; grid-template-columns: auto repeat(4, 1fr); align-items: center; gap: 0; }
.certs-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; padding-right: 32px; white-space: nowrap; border-right: 1px solid var(--border); }
.cert-item { display: flex; align-items: center; gap: 12px; padding: 12px 28px; border-right: 1px solid var(--border); }
.cert-item:last-child { border-right: none; }
.cert-icon-wrap { width: 40px; height: 40px; background: var(--amber-light); border: 1px solid rgba(217,119,6,0.2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--amber); flex-shrink: 0; }
.cert-item-name { font-size: 0.85rem; font-weight: 700; color: var(--text-2); line-height: 1.2; }
.cert-item-sub { font-size: 0.72rem; color: var(--text-muted); line-height: 1.3; }

/* ====================================================
   COURSES SECTION
==================================================== */
#courses { padding: 96px 0; background: var(--bg-off); }
.courses-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn { display: inline-flex; align-items: center; gap: 7px; background: var(--bg); color: var(--text-muted); border: 1.5px solid var(--border); border-radius: 100px; padding: 8px 18px; font-size: 0.83rem; font-weight: 600; font-family: var(--f-body); transition: all var(--t); }
.filter-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.filter-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.cat-section { margin-bottom: 60px; }
.cat-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 2px solid var(--border); }
.cat-icon-box { width: 44px; height: 44px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cat-title { font-family: var(--f-head); font-size: 1.4rem; font-weight: 700; color: var(--text); }
.cat-duration { margin-left: auto; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); background: var(--bg); border: 1.5px solid var(--border); border-radius: 100px; padding: 5px 14px; display: flex; align-items: center; gap: 6px; }
.cat-count { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); background: var(--bg-subtle); border-radius: 100px; padding: 3px 10px; }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.course-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: all var(--t); }
.course-card:hover { border-color: var(--blue-mid); box-shadow: var(--sh-md); transform: translateY(-3px); }
.cc-top-bar { height: 4px; }
.cc-body { padding: 22px 22px 16px; flex: 1; }
.cc-title { font-family: var(--f-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.25; }
.cc-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
.cc-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 0; }
.cc-modules-count { display: inline-flex; align-items: center; gap: 5px; font-size: 0.76rem; font-weight: 600; color: var(--text-muted); background: var(--bg-subtle); padding: 3px 10px; border-radius: 100px; }
.cc-footer { padding: 14px 22px; border-top: 1px solid var(--border); display: flex; gap: 10px; background: var(--bg-off); }
.btn-view-syllabus { flex: 1; background: var(--blue-light); color: var(--blue); border: 1.5px solid var(--blue-mid); border-radius: var(--r); padding: 9px 14px; font-size: 0.83rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 7px; transition: all var(--t); }
.btn-view-syllabus:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-enroll-sm { background: var(--blue); color: #fff; border: none; border-radius: var(--r); padding: 9px 16px; font-size: 0.83rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all var(--t); }
.btn-enroll-sm:hover { background: var(--blue-hover); }

/* ====================================================
   SYLLABUS DRAWER
==================================================== */
.drawer-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.5); backdrop-filter: blur(4px); z-index: 1800; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.syllabus-drawer { position: fixed; top: 0; right: 0; width: min(680px, 100vw); height: 100dvh; background: var(--bg); z-index: 1900; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -12px 0 48px rgba(0,0,0,0.14); overflow: hidden; }
.syllabus-drawer.open { transform: translateX(0); }
.sd-top-accent { height: 5px; flex-shrink: 0; transition: background 0.3s; }
.sd-header { padding: 28px 36px 24px; border-bottom: 1px solid var(--border); flex-shrink: 0; background: var(--bg); position: relative; }
.sd-close { position: absolute; top: 20px; right: 24px; width: 36px; height: 36px; background: var(--bg-subtle); border: 1.5px solid var(--border); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--text-muted); transition: all var(--t); }
.sd-close:hover { background: var(--border); color: var(--text); }
.sd-cat-label { font-size: 0.73rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.sd-title { font-family: var(--f-head); font-size: 1.85rem; font-weight: 700; line-height: 1.1; margin-bottom: 14px; padding-right: 50px; }
.sd-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.sd-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; background: var(--bg-subtle); color: var(--text-muted); border: 1px solid var(--border); }
.sd-pill.cat { border: none; }
.sd-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }
.sd-body { flex: 1; overflow-y: auto; padding: 28px 36px; overscroll-behavior: contain; }
.sd-body::-webkit-scrollbar { width: 6px; }
.sd-body::-webkit-scrollbar-track { background: var(--bg-off); }
.sd-body::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
.sd-section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.sd-section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.sd-module-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sd-module-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; background: var(--bg-off); border: 1px solid var(--border); border-radius: var(--r); transition: all var(--t); }
.sd-module-item:hover { border-color: var(--blue-mid); background: var(--blue-light); }
.sd-module-num { font-family: var(--f-head); font-size: 0.78rem; font-weight: 700; color: var(--text-light); min-width: 28px; line-height: 1.5; }
.sd-module-text { font-size: 0.9rem; color: var(--text-2); line-height: 1.5; }
.sd-highlight-item .sd-module-num { color: var(--blue); }
.sd-highlight-item .sd-module-text { font-weight: 600; color: var(--text); }
.sd-footer { padding: 20px 36px; border-top: 1px solid var(--border); background: var(--bg); flex-shrink: 0; display: flex; gap: 12px; align-items: center; }
.sd-footer .note { font-size: 0.78rem; color: var(--text-muted); margin-left: auto; text-align: right; }
.sd-footer .note strong { color: var(--text-2); display: block; }

/* ====================================================
   ENROLL MODAL
==================================================== */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.55); backdrop-filter: blur(6px); z-index: 2100; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--bg); border-radius: var(--r-xl); width: 100%; max-width: 480px; box-shadow: var(--sh-xl); transform: scale(0.96) translateY(10px); transition: transform 0.3s; position: relative; }
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-top { height: 5px; background: linear-gradient(90deg, var(--blue), var(--sky)); }
.modal-body { padding: 32px 32px 28px; }
.modal-body h3 { font-family: var(--f-head); font-size: 1.6rem; font-weight: 700; margin-bottom: 4px; }
.modal-body .modal-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }
.modal-close-btn { position: absolute; top: 18px; right: 18px; width: 32px; height: 32px; background: var(--bg-subtle); border: 1.5px solid var(--border); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--text-muted); transition: all var(--t); }
.modal-close-btn:hover { background: var(--border); color: var(--text); }

/* ====================================================
   BRANCHES
==================================================== */
#branches { padding: 96px 0; background: var(--bg); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; max-width: 900px; margin: 0 auto; }
.location-card { background: var(--blue-light); border: 1.5px solid var(--blue-mid); border-radius: var(--r-xl); padding: 36px 32px; display: flex; flex-direction: column; gap: 0; }
.location-card-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--blue); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 18px; align-self: flex-start; }
.location-city { font-family: var(--f-head); font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1; }
.location-state { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-bottom: 20px; }
.location-addr { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; padding: 16px; background: rgba(255,255,255,0.7); border-radius: var(--r); border: 1px solid var(--blue-mid); }
.location-contact { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.lc-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 500; color: var(--text-2); }
.lc-item i { width: 32px; height: 32px; background: var(--blue); color: #fff; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; flex-shrink: 0; }
.lc-item a { color: var(--text-2); text-decoration: none; transition: color var(--t); }
.lc-item a:hover { color: var(--blue); }
.location-map { border-radius: var(--r-xl); overflow: hidden; border: 1.5px solid var(--border); background: var(--bg-subtle); min-height: 320px; display: flex; flex-direction: column; position: relative; }
.location-map iframe { width: 100%; height: 100%; position: absolute; inset: 0; border: none; display: block; }

@media (max-width: 720px) {
  .location-grid { grid-template-columns: 1fr; max-width: 520px; }
  .location-map { min-height: 240px; }
}

/* ====================================================
   CONTACT CTA SECTION
==================================================== */
#contact-cta { background: linear-gradient(135deg, var(--blue), #1e40af 60%, #1d4ed8); padding: 80px 0; position: relative; overflow: hidden; }
#contact-cta::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.cta-left h2 { font-family: var(--f-head); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.cta-left p { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; }
.cta-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cta-contact-list li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: rgba(255,255,255,0.9); }
.cta-contact-list li .cc-ico { width: 36px; height: 36px; background: rgba(255,255,255,0.15); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: #fff; flex-shrink: 0; }
.cta-contact-list a { color: rgba(255,255,255,0.9); text-decoration: none; }
.cta-right { background: #fff; border-radius: var(--r-xl); padding: 36px 32px; box-shadow: var(--sh-xl); }
.cta-right h3 { font-family: var(--f-head); font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.cta-right .sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }

/* ====================================================
   FOOTER
==================================================== */
footer { background: var(--bg-footer); color: var(--text-inv); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.f-badge { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); padding: 4px 10px; border-radius: var(--r-sm); }
.footer-col h4 { font-family: var(--f-head); font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: all var(--t); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-contact-list li i { color: rgba(255,255,255,0.35); width: 14px; font-size: 0.8rem; margin-top: 2px; }
.footer-contact-list li a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ====================================================
   MISC & TOAST
==================================================== */
#scrollTop { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--blue); border: none; border-radius: var(--r); color: #fff; font-size: 1.1rem; z-index: 800; opacity: 0; transform: translateY(12px); transition: all 0.3s; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-md); }
#scrollTop.visible { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--text); color: #fff; padding: 14px 24px; border-radius: var(--r-lg); font-size: 0.88rem; font-weight: 500; z-index: 3000; opacity: 0; transition: all 0.35s ease; display: flex; align-items: center; gap: 10px; box-shadow: var(--sh-lg); pointer-events: none;}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast i { color: var(--green); font-size: 1rem; }

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 960px) {
  .certs-inner { grid-template-columns: 1fr 1fr; }
  .certs-label { grid-column: 1 / -1; border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 16px 0; margin-bottom: 4px; }
  .cert-item { padding: 16px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .cert-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .cert-item:nth-last-child(-n+2) { border-bottom: none; }
  .hero-grid, .cta-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.is-open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 20px; z-index: 899; gap: 4px; }
  .nav-links.is-open a { padding: 10px 14px; display: block; }
  .hamburger { display: flex; }
  .hero-form-card { padding: 28px 24px; }
  .sd-header { padding: 22px 22px 20px; }
  .sd-body { padding: 22px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-bottom: 1px solid var(--border); }
  .certs-inner { grid-template-columns: 1fr; }
  .cert-item { border-right: none !important; }
}