:root {
  --navy: #0f1113;
  --navy-dark: #050608;
  --navy-light: #1e2228;
  --gold: #d4af37;
  --gold-dark: #9d7b23;
  --gold-light: #f0d76f;
  --light: #f4f4f4;
  --gray: #6b7280;
  --dark-gray: #2d3748;
  --white: #ffffff;
  --text-muted: #c5cdd6;
  --text-light-muted: #98a3b1;
  --border-dark: #1d3050;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark-gray);
  background-color: #090b0f;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== TOP BAR ========== */
.top-bar {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.875rem;
}

.top-bar a {
  color: var(--white);
  margin-right: 20px;
}

.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar i {
  margin-right: 6px;
  color: var(--gold-light);
}

/* ========== NAVBAR ========== */
.navbar-custom {
  background-color: var(--navy);
  padding: 3px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-custom .navbar-brand {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.navbar-custom .navbar-brand .brand-logo {
  width: 34px;
  height: auto;
  margin: 0;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.navbar-custom .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-custom .brand-name {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.navbar-custom .brand-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.navbar-custom .navbar-brand i {
  color: var(--gold);
  margin-right: 8px;
}

.navbar-custom .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  transition: color 0.2s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--gold) !important;
}

.navbar-custom .nav-link.disabled,
.navbar-custom .nav-link.nav-link-disabled {
  cursor: default;
  opacity: 0.8;
  color: var(--white) !important;
}

.navbar-custom .coming-soon {
  font-size: 0.75rem;
  color: var(--gold-light);
  margin-left: 6px;
  text-transform: none;
}

.navbar-custom .navbar-toggler-icon {
  filter: invert(1);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.75)),
    url('https://images.unsplash.com/photo-1582139329536-e7284fece509?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero .tagline {
  font-size: 1.4rem;
  margin-bottom: 35px;
  font-weight: 300;
}

.hero .tagline span {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: linear-gradient(rgba(10, 37, 64, 0.88), rgba(10, 37, 64, 0.85)),
    url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.15rem;
  opacity: 0.9;
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
  background-color: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ========== SECTIONS ========== */
section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  color: var(--white) !important;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.section-title p {
  color: var(--light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

.bg-light-custom .section-title h2 {
  color: var(--navy) !important;
}

.bg-light-custom .section-title p {
  color: var(--navy);
}

.bg-navy .section-title h2,
.bg-navy .section-title p {
  color: var(--white);
}

.bg-light-custom {
  background-color: var(--light);
  color: var(--dark-gray);
}

.bg-light-custom h1,
.bg-light-custom h2,
.bg-light-custom h3,
.bg-light-custom h4,
.bg-light-custom h5,
.bg-light-custom h6,
.bg-light-custom p,
.bg-light-custom li,
.bg-light-custom span,
.bg-light-custom strong,
.bg-light-custom small,
.bg-light-custom a:not(.btn-primary-custom),
.bg-light-custom .service-card,
.bg-light-custom .service-card h3,
.bg-light-custom .service-card p,
.bg-light-custom .service-card li {
  color: var(--navy-dark);
}

.bg-light-custom a:not(.btn-primary-custom) {
  color: var(--gold);
}

.bg-light-custom a:not(.btn-primary-custom):hover {
  color: var(--gold-dark);
}

/* ========== SECONDARY BUTTON ========== */
.btn-secondary-custom {
  background-color: transparent;
  color: var(--white);
  padding: 14px 32px;
  border: 2px solid var(--white);
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-secondary-custom:hover {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.bg-light-custom .service-card {
  background: var(--white);
}

.bg-navy {
  background-color: var(--navy);
  color: var(--white);
}

.bg-navy h2,
.bg-navy h3 {
  color: var(--white);
}

/* ========== STEPS ========== */
.step-card {
  text-align: center;
  padding: 30px 20px;
}

.step-icon {
  width: 90px;
  height: 90px;
  background-color: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
}

.step-icon::after {
  content: attr(data-step);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-card h4 {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 1.15rem;
}

/* ========== TESTIMONIALS ========== */
.testimonial {
  background: var(--white);
  padding: 35px 30px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  height: 100%;
}

.testimonial .quote-icon {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 15px;
}

.testimonial p {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.testimonial .author {
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
}

.testimonial .author span {
  display: block;
  color: var(--gray);
  font-size: 0.875rem;
  font-weight: 400;
}

/* ========== COMMITMENT ========== */
.commitment-box {
  text-align: center;
  padding: 30px 20px;
  color: var(--white);
}

.commitment-box i {
  font-size: 3rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.commitment-box h3 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.4rem;
}

/* ========== ARTICLE CARDS ========== */
.article-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-card .article-body {
  padding: 25px;
}

.article-card .article-meta {
  font-size: 0.825rem;
  color: var(--gray);
  margin-bottom: 10px;
}

.article-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.article-card .read-more {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.article-card .read-more i {
  margin-left: 4px;
  transition: margin-left 0.2s ease;
}

.article-card .read-more:hover i {
  margin-left: 8px;
}

/* ========== SERVICE CARDS ========== */
.service-card {
  background: var(--white);
  padding: 35px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--gold);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.service-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.service-card li {
  margin-bottom: 6px;
}

/* ========== FAQ ========== */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  padding: 18px 22px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: 1.05rem;
}

.faq-question span {
  display: inline-block;
  line-height: 1.3;
}

.faq-question i {
  color: var(--gold-light);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, padding 0.35s ease, opacity 0.35s ease;
  background: rgba(255, 255, 255, 0.06);
  color: var(--light);
}

.faq-answer p,
.faq-answer a,
.faq-answer strong,
.faq-answer span {
  color: var(--light);
}

.faq-answer a {
  color: var(--gold-light);
  text-decoration: underline;
}

.faq-item.open .faq-answer {
  padding: 18px 22px;
  max-height: 1000px;
  opacity: 1;
}

.bg-light-custom .faq-item {
  background: var(--white);
  border: 1px solid #e0e4e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bg-light-custom .faq-answer {
  background: var(--white);
  color: var(--dark-gray);
}

.bg-light-custom .faq-answer p,
.bg-light-custom .faq-answer strong,
.bg-light-custom .faq-answer span {
  color: var(--dark-gray);
}

.bg-light-custom .faq-answer a {
  color: var(--gold);
  text-decoration: underline;
}

.bg-light-custom .faq-question {
  background: #f1f4f7;
  color: var(--navy);
  border-left: 4px solid var(--gold);
}

.bg-light-custom .faq-question i {
  color: var(--gold-dark);
}

.bg-light-custom .faq-item.open .faq-question {
  background: #e8ecf1;
  border-left-color: var(--gold-dark);
}

.bg-light-custom .col-lg-9 {
  counter-reset: faq-counter;
}

.bg-light-custom .faq-item {
  counter-increment: faq-counter;
}

.bg-light-custom .faq-question::before {
  content: counter(faq-counter, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  margin-right: 14px;
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

/* brand name beside logo */
.brand-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
  white-space: nowrap;
}

/* ========== JOB CARDS ========== */
.job-card {
  background: var(--white);
  padding: 28px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--gold-light);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.job-card h4 {
  margin: 0 0 6px 0;
  font-size: 1.25rem;
}

.job-card p {
  margin: 0;
  color: var(--gray);
}

.job-card .badge-job {
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 10px;
  display: inline-block;
}

/* ========== FORMS ========== */
.form-section {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.form-section label {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
  font-size: 0.9rem;
}

.form-section label .required {
  color: var(--gold);
}

.form-section .form-control {
  border: 1px solid #d6dbe1;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-section .form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1);
  outline: none;
}

.form-section textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

/* ========== TRAINING ========== */
.training-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.training-card .training-header {
  background: var(--navy);
  color: var(--white);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.training-card .training-header h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.4rem;
}

.training-card .price {
  background: var(--red);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
}

.training-card .training-body {
  padding: 26px 28px;
}

.training-card ul {
  padding-left: 22px;
}

.training-card li {
  margin-bottom: 8px;
}

/* ========== CONTACT INFO ========== */
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  padding: 35px 30px;
  border-radius: 8px;
  height: 100%;
  margin-bottom: 30px;
}

.quote-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.quote-side .testimonial {
  margin-top: 0;
}

.contact-info-card + .testimonial,
.contact-info-card + .testimonial + .testimonial {
  margin-top: 30px;
}

.testimonial {
  margin-top: 20px;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 22px;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.contact-info-card .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-card .info-item i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-right: 16px;
  margin-top: 4px;
  min-width: 28px;
}

.contact-info-card .info-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
}

.contact-info-card a {
  color: var(--white);
}

.contact-info-card a:hover {
  color: var(--gold-light);
}

/* ========== CTA STRIP ========== */
.cta-strip {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 55px 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 2rem;
  text-transform: uppercase;
}

.cta-strip p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  opacity: 0.95;
}

.cta-strip .btn-primary-custom {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
}

.cta-strip .btn-primary-custom:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ========== FOOTER ========== */
footer {
  background: var(--navy-dark);
  color: #c5cdd6;
  padding: 60px 0 20px;
}

footer h5 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

footer ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

footer .footer-info p {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

footer .footer-info i {
  color: var(--gold-light);
  margin-right: 10px;
  width: 16px;
}

footer .footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

footer .footer-bottom a {
  color: var(--text-light-muted);
  margin: 0 8px;
}

footer .footer-bottom a:hover {
  color: var(--gold);
}

/* ========== ARTICLE / GUIDE PAGES ========== */
.article-content {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.article-content h2 {
  margin-top: 30px;
  font-size: 1.6rem;
}

.article-content p {
  margin-bottom: 18px;
  line-height: 1.8;
}

/* ========== UTILITY CLASSES ========== */
.navbar-logo {
  height: 44px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.9rem;
}

.footer-tagline-first {
  margin-top: 2rem;
}

.footer-contact-link {
  color: inherit;
}

.footer-bottom-bar {
  opacity: 0.7;
}

.contact-card-subtitle {
  opacity: 0.85;
}

.footer-copyright {
  margin: 0;
}

/* ========== TOAST POPUP ========== */
.toast-popup {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  min-width: 300px;
  max-width: 420px;
  padding: 16px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(130%);
  transition: transform 0.35s ease;
}

.toast-popup.show {
  transform: translateX(0);
}

.toast-popup.toast-success {
  background: #1a6b3c;
  color: #ffffff;
  border-left: 4px solid var(--gold);
}

.toast-popup.toast-error {
  background: #8b1a1a;
  color: #ffffff;
  border-left: 4px solid #e74c3c;
}

.toast-popup i {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ========== FORM VALIDATION ========== */
.form-section .form-control.is-invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.form-section .invalid-feedback {
  display: none;
  color: #c0392b;
  font-size: 0.825rem;
  margin-top: -10px;
  margin-bottom: 12px;
  padding-left: 2px;
}

.form-section .form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

/* ========== RESPONSIVE ========== */

/* Tablet landscape (≤ 991px) */
@media (max-width: 991px) {
  .hero h1 { font-size: 2.3rem; }
  .hero .tagline { font-size: 1.15rem; }
  .hero { padding: 80px 0; }
  .page-header h1 { font-size: 2.1rem; }
  .page-header { padding: 60px 0; }
  .section-title h2 { font-size: 1.8rem; }
  .cta-strip h2 { font-size: 1.75rem; }
  .training-card .training-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Tablet portrait (≤ 767px) */
@media (max-width: 767px) {
  .top-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .top-bar a { margin: 2px 8px; }

  .hero { padding: 70px 0; }
  .hero h1 { font-size: 2rem; }
  .hero .tagline { font-size: 1.05rem; margin-bottom: 28px; }
  .hero-buttons { gap: 14px; }

  .page-header { padding: 50px 0; }
  .page-header h1 { font-size: 1.9rem; }

  .section-title { margin-bottom: 35px; }
  .section-title h2 { font-size: 1.65rem; }

  .cta-strip { padding: 40px 0; }
  .cta-strip h2 { font-size: 1.5rem; }
  .cta-strip p { font-size: 1rem; }

  .contact-info-card { margin-bottom: 10px; }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  footer { padding: 40px 0 20px; }

  .testimonial { padding: 28px 22px; }
}

/* Mobile (≤ 575px) */
@media (max-width: 575px) {
  .top-bar { font-size: 0.78rem; }
  .top-bar a { display: inline-block; margin: 3px 6px; }

  .navbar-logo { height: 36px; }

  .hero { padding: 55px 0; }
  .hero h1 { font-size: 1.7rem; letter-spacing: 0; }
  .hero .tagline { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-buttons .btn-primary-custom,
  .hero-buttons .btn-secondary-custom {
    text-align: center;
    width: 100%;
    display: block;
  }

  .page-header { padding: 40px 0; }
  .page-header h1 { font-size: 1.55rem; }
  .page-header p { font-size: 0.95rem; }

  section { padding: 45px 0; }
  .section-title { margin-bottom: 28px; }
  .section-title h2 { font-size: 1.45rem; }
  .section-title p { font-size: 0.95rem; }

  .form-section { padding: 22px 16px; }
  .form-section .form-control { padding: 10px 12px; }

  .cta-strip { padding: 35px 0; }
  .cta-strip h2 { font-size: 1.3rem; }
  .cta-strip .btn-primary-custom { display: block; width: 100%; text-align: center; }

  .service-card { padding: 24px 18px; }
  .service-card h3 { font-size: 1.1rem; }

  .article-card .article-body { padding: 18px 16px; }
  .article-card h4 { font-size: 1.1rem; }

  .step-card { padding: 20px 10px; }
  .step-icon { width: 72px; height: 72px; font-size: 1.8rem; }
  .step-icon::after { width: 26px; height: 26px; font-size: 0.85rem; }

  .contact-info-card { padding: 24px 18px; }
  .contact-info-card h3 { font-size: 1.2rem; }

  .training-card .training-body { padding: 20px 18px; }
  .training-card .training-header { padding: 18px 20px; }
  .training-card .training-header h3 { font-size: 1.15rem; }

  .testimonial { padding: 24px 18px; }

  .btn-primary-custom,
  .btn-secondary-custom {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  footer { padding: 35px 0 16px; }
  footer h5 { font-size: 0.92rem; }
  .footer-tagline { font-size: 0.84rem; }
}
