:root {
  --navy: #0B0F2A;
  --navy-mid: #141829;
  --navy-mid: #141829;
  --red: #E8242A;
  --red-light: #FF5A5F;
  --cream: #F8F9FC;
  --slate: #4A5568;
  --green: #22C55E;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

/* ===== STICKY BAR ===== */
.sticky-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 10px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.sticky-bar .bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-call {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: .92rem;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.btn-call:hover { background: var(--red-light); color: #fff; }
.btn-enquire {
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 6px;
  padding: 7px 18px;
  font-size: .92rem;
  text-decoration: none;
  transition: border-color .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-enquire:hover { border-color: var(--red); color: var(--red); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a2a50 100%);
  color: #fff;
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,36,42,.15);
  border: 1px solid rgba(232,36,42,.4);
  color: #FF8A8E;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Roboto', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero h1 span { color: var(--red); }
.highlight-home {
  color: var(--red);
  background: rgba(232,36,42,.12);
  border-radius: 6px;
  padding: 2px 8px;
  border-bottom: 3px solid var(--red);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.hero-bullets li {
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-bullets li i { color: var(--red); font-size: .95rem; }
.btn-hero-call {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: .97rem;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 8px;
  padding: 11px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color .2s, background .2s;
}
.btn-hero-call:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

/* ===== HERO FORM CARD ===== */
.hero-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 26px 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
}
.hero-form-header {
  margin-bottom: 16px;
}
.hero-form-header h3 {
  font-family: 'Roboto', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-form-header h3 span { color: var(--red); }
.hero-form-header p {
  font-size: .82rem;
  color: var(--slate);
  margin: 0;
}
.hf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin-bottom: 12px;
}
.hf-group {
  margin-bottom: 0;
}
.hf-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.hf-group input,
.hf-group select {
  width: 100%;
  border: 1.5px solid #dde3ee;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: .88rem;
  color: var(--navy);
  font-family: 'Roboto', sans-serif;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: auto;
}
.hf-group input:focus,
.hf-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,36,42,.1);
}
.hf-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: .97rem;
  border: none;
  border-radius: 10px;
  padding: 13px;
  margin-top: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  transition: background .2s, transform .1s;
}
.hf-submit:hover { background: var(--red-light); transform: translateY(-1px); }
.hf-success {
  text-align: center;
  padding: 16px 0;
}
.hf-success-icon {
  width: 60px; height: 60px;
  background: rgba(34,197,94,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.hf-success-icon i { color: var(--green); font-size: 1.8rem; }
.hf-success h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.hf-success p { font-size: .85rem; color: var(--slate); }
.hf-note {
  text-align: center;
  font-size: .72rem;
  color: #999;
  margin-top: 10px;
  margin-bottom: 0;
}
.hf-note i { color: var(--green); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: #fff;
  padding: 22px 0;
  border-bottom: 1px solid #eee;
}
.trust-item { text-align: center; padding: 8px 12px; }
.trust-item .num { font-size: 1.7rem; font-weight: 800; color: var(--navy); line-height: 1; }
.trust-item .num span { color: var(--red); }
.trust-item .label { font-size: .78rem; color: var(--slate); margin-top: 3px; }

/* ===== SECTIONS ===== */
section { padding: 56px 0; }
.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Roboto', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-sub {
  font-size: .97rem;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services-section { background: var(--cream); }
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  border: 1.5px solid #e8edf5;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(232,36,42,.1);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(232,36,42,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-icon i { color: var(--red); font-size: 1.5rem; }
.service-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card ul { padding-left: 0; list-style: none; margin: 0; }
.service-card ul li { font-size: .88rem; color: var(--slate); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
.service-card ul li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.badge-tag {
  font-size: .8rem;
  background: rgba(232,36,42,.08);
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--red);
  font-weight: 600;
  display: inline-block;
  margin-top: 12px;
}

/* ===== SUBJECTS ===== */
.subjects-section { background: var(--navy); }
.subjects-section .section-title { color: #fff; }
.subjects-section .section-eyebrow { color: var(--red); }
.subjects-section .section-sub { color: rgba(255,255,255,.7); }
.subject-pill {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: .88rem;
  font-weight: 500;
  margin: 5px 4px;
  transition: background .2s, border-color .2s;
  cursor: default;
}
.subject-pill:hover { background: rgba(232,36,42,.15); border-color: var(--red); color: #FF8A8E; }

/* ===== WHY US ===== */
.whyus-section { background: #fff; }
.why-item { display: flex; gap: 16px; margin-bottom: 28px; }
.why-icon {
  width: 46px; height: 46px;
  background: rgba(232,36,42,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon i { color: var(--red); font-size: 1.3rem; }
.why-text h5 { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-text p { font-size: .87rem; color: var(--slate); line-height: 1.55; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); }
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  height: 100%;
  border: 1.5px solid #e8edf5;
}
.stars { color: var(--red); font-size: 1rem; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: .9rem; color: var(--slate); line-height: 1.6; margin: 0 0 16px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 10px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; color: #fff; flex-shrink: 0; }
.testimonial-card .author-name { font-size: .88rem; font-weight: 700; color: var(--navy); }
.testimonial-card .author-role { font-size: .78rem; color: var(--slate); }

/* ===== AREAS ===== */
.areas-section { background: #fff; }
.area-tag {
  display: inline-block;
  background: var(--cream);
  border: 1.5px solid #dde3ee;
  color: var(--navy);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: .83rem;
  font-weight: 500;
  margin: 4px 3px;
}
.address-box {
  background: rgba(232,36,42,.05);
  border-radius: 12px;
  border: 1.5px solid rgba(232,36,42,.18);
  padding: 14px 16px;
  margin-top: 20px;
}
.address-box .label { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.address-box p { font-size: .88rem; color: var(--slate); line-height: 1.6; margin: 0; }

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  background: linear-gradient(135deg, var(--navy), #1a2a50);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.bottom-cta h2 {
  font-family: 'Roboto', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.bottom-cta h2 span { color: var(--red); }
.bottom-cta > .container > p { font-size: .97rem; color: rgba(255,255,255,.75); margin-bottom: 28px; }
.cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}
.btn-cta-primary:hover { background: var(--red-light); color: #fff; }
.btn-cta-secondary {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}
.btn-cta-secondary:hover { border-color: var(--red); color: var(--red); }

/* ===== FOOTER ===== */
footer {
  background: #060a1a;
  color: rgba(255,255,255,.45);
  padding: 22px 0;
  font-size: .8rem;
  text-align: center;
}
footer a { color: var(--red); text-decoration: none; }

/* ===== SUCCESS STATE (hero form) ===== */
.success-state { display: none; text-align: center; padding: 20px 0; }
.success-state .check {
  width: 64px; height: 64px;
  background: rgba(34,197,94,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.success-state .check i { color: var(--green); font-size: 2rem; }
.success-state h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.success-state p { font-size: .88rem; color: var(--slate); }

/* ===== FIXED FOOTER BAR ===== */
body { padding-bottom: 80px; overflow-x: hidden; }
.fixed-footer-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--navy);
  border-top: 3px solid var(--red);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  width: 100%;
}
.fixed-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.fixed-footer-text {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fixed-footer-text strong { color: var(--red); }
.pulse-dot {
  width: 9px; height: 9px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.fixed-footer-btns { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.ffb-call {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color .2s;
  white-space: nowrap;
}
.ffb-call:hover { border-color: var(--red); color: var(--red); }
.ffb-apply {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, transform .1s;
  white-space: nowrap;
  font-family: 'Roboto', sans-serif;
}
.ffb-apply:hover { background: var(--red-light); transform: translateY(-1px); }

/* ===== MODAL ===== */
.apply-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,15,36,.75);
  backdrop-filter: blur(4px);
  z-index: 1200;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.apply-modal-overlay.open { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.apply-modal-box {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .3s cubic-bezier(.22,.61,.36,1);
  margin: 0 auto;
}
@keyframes slideUp { from { transform: translateY(60px); opacity:0; } to { transform: translateY(0); opacity:1; } }
@media (min-width: 640px) {
  .apply-modal-overlay { align-items: center; padding: 20px; }
  .apply-modal-box { border-radius: 20px; max-height: 88vh; }
}
.apply-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--slate);
  font-size: .95rem;
  transition: background .2s;
}
.apply-modal-close:hover { background: #e2e8f0; color: var(--navy); }
.apply-modal-header { margin-bottom: 20px; }
.modal-badge {
  display: inline-block;
  background: rgba(232,36,42,.1);
  border: 1px solid rgba(232,36,42,.3);
  color: #c41e23;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.apply-modal-header h3 { font-family: 'Roboto', serif; font-size: 1.45rem; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.apply-modal-header h3 span { color: var(--red); }
.apply-modal-header p { font-size: .88rem; color: var(--slate); margin: 0; }
.apply-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
@media (max-width: 480px) { .apply-form-grid { grid-template-columns: 1fr; } }
.apply-form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.apply-form-group input,
.apply-form-group select {
  width: 100%;
  border: 1.5px solid #dde3ee;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: .88rem;
  color: var(--navy);
  font-family: 'Roboto', sans-serif;
  outline: none;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.apply-form-group input:focus,
.apply-form-group select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,36,42,.12); }
.apply-submit-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  padding: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  transition: background .2s, transform .1s;
}
.apply-submit-btn:hover { background: var(--red-light); transform: translateY(-1px); }
.apply-success { text-align: center; padding: 10px 0; }
.apply-success-icon { width: 68px; height: 68px; background: rgba(34,197,94,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.apply-success-icon i { color: var(--green); font-size: 2.2rem; }
.apply-success h4 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.apply-success p { font-size: .9rem; color: var(--slate); line-height: 1.55; }
.apply-modal-note { text-align: center; font-size: .74rem; color: #aaa; margin-top: 12px; margin-bottom: 0; }
.apply-modal-note i { color: var(--green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-form-card { margin-top: 30px; }
}
@media (max-width: 767px) {
  .hero { padding: 40px 0 40px; }
  section { padding: 40px 0; }
  .fixed-footer-text span:last-child { display: none; }
  .hero-form-card { padding: 22px 18px; }
}