/* ============================================================
   MAX PRO ACADEMY — main.css v4.1
   Cybergate Malaysia
   ============================================================ */

/* ── Reset & Root ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d1b4b;
  --blue:   #1a3a8f;
  --purple: #6b3fa0;
  --gold:   #f5a623;
  --white:  #ffffff;
  --off:    #f7f8ff;
  --text:   #1a1a2e;
  --muted:  #64748b;
  --border: #e2e8f0;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(13,27,75,.10);
  --container: 1180px;
}

html, body {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-outline  { background: transparent; border-color: var(--white); color: var(--white); }
.btn-dark     { background: var(--navy); color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* ── Section Utilities ── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-off { background: var(--off); }

.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { color: var(--muted); max-width: 600px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.site-logo img {
  height: 46px;
  width: auto;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }

.main-nav > li > a {
  display: block;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--navy);
  border-radius: 6px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a { background: var(--off); color: var(--blue); }

/* Dropdown */
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 100;
}
.main-nav li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: background .12s, color .12s;
}
.main-nav .dropdown li a:hover { background: var(--off); color: var(--blue); }

/* Enquire Now CTA */
.nav-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--navy);
  z-index: 2000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 24px 0;
}
.mobile-nav.open { transform: translateX(0); }

.mob-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px 20px;
}
.mob-close button {
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  width: 36px; height: 36px;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
}

.mob-logo { padding: 0 20px 24px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 16px; }
.mob-logo img { height: 38px; }

.mob-nav-list { padding: 0 12px; }
.mob-nav-list li { margin-bottom: 2px; }
.mob-nav-list > li > a {
  display: block;
  padding: 11px 12px;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 8px;
  transition: background .15s;
}
.mob-nav-list > li > a:hover { background: rgba(255,255,255,.1); }

.mob-sub {
  padding: 0 0 8px 12px;
  display: none;
}
.mob-sub.open { display: block; }
.mob-sub a {
  display: block;
  padding: 7px 12px;
  font-size: .84rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  border-radius: 6px;
  transition: color .12s, background .12s;
}
.mob-sub a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.mob-has-sub > a { display: flex; align-items: center; justify-content: space-between; }
.mob-arrow { font-size: .75rem; transition: transform .2s; }
.mob-has-sub.open > a .mob-arrow { transform: rotate(90deg); }

.mob-cta { padding: 20px 20px 0; margin-top: 8px; border-top: 1px solid rgba(255,255,255,.1); }
.mob-cta a { display: block; text-align: center; background: var(--gold); color: var(--navy); font-weight: 700; padding: 13px; border-radius: 8px; }

.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1999;
}
.mob-overlay.show { display: block; }

/* ════════════════════════════════════════
   HERO (Homepage)
   ════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--purple) 100%);
  color: var(--white);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 700px; position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 36px; max-width: 540px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats Bar */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); display: block; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 500; }

/* ── About Section ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text .section-label { margin-bottom: 8px; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 14px; }
.about-checks { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 8px; }
.about-checks li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; font-weight: 600; }
.about-checks li::before { content: '✔'; color: var(--blue); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }

/* ── Services Grid (Homepage) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid .row2 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,480px));
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon { font-size: 1.5rem; margin-bottom: 8px; }
.service-card-body h3 { margin-bottom: 8px; font-size: 1.05rem; }
.service-card-body p { color: var(--muted); font-size: .88rem; flex: 1; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--blue); font-weight: 700; font-size: .9rem; }
.service-card-link:hover { color: var(--purple); }

/* ── Trainer Section ── */
.trainer-section { background: var(--off); }
.trainer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.trainer-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.trainer-img img { width: 100%; height: 400px; object-fit: cover; }
.trainer-text .section-label { margin-bottom: 8px; }
.trainer-text h2 { margin-bottom: 6px; }
.trainer-creds { color: var(--blue); font-weight: 600; font-size: .95rem; margin-bottom: 16px; }
.trainer-text p { color: var(--muted); margin-bottom: 14px; }
.trainer-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge { background: var(--navy); color: var(--white); font-size: .78rem; font-weight: 700; padding: 6px 14px; border-radius: 20px; }

/* ── HRD Corp Box ── */
.hrdcorp-box {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--white);
  margin-top: 60px;
}
.hrdcorp-box h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.hrdcorp-box p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 24px; }

/* ── Blog Previews ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.blog-card-img { height: 180px; overflow: hidden; background: var(--off); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-meta { font-size: .8rem; color: var(--muted); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.blog-card-body p { font-size: .88rem; color: var(--muted); }
.blog-link { display: inline-block; margin-top: 12px; color: var(--blue); font-weight: 700; font-size: .88rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: #080e26;
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,.9) !important; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  transition: background .15s;
}
.footer-social a:hover { background: var(--blue); }
.footer-col h4 { color: var(--white); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.82); transition: color .15s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .88rem; color: rgba(255,255,255,.85); }
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .15s; }
.footer-bottom a:hover { color: var(--white); }

/* ════════════════════════════════════════
   INNER PAGE HERO
   ════════════════════════════════════════ */
.inner-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 70px 0;
  color: var(--white);
  text-align: center;
}
.inner-hero .hero-icon { font-size: 3rem; margin-bottom: 16px; }
.inner-hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.8rem, 4vw, 2.5rem); }
.inner-hero p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; }
.breadcrumbs { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumbs a { color: rgba(255,255,255,.75); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { color: rgba(255,255,255,.4); }

/* ════════════════════════════════════════
   SERVICE PARENT PAGE
   ════════════════════════════════════════ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-card-img { height: 180px; overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.cat-card-icon { font-size: 1.6rem; margin-bottom: 8px; }
.cat-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.cat-card-body p { color: var(--muted); font-size: .88rem; flex: 1; }
.cat-card-body .btn-sm { margin-top: 18px; align-self: flex-start; }

/* Sub-programmes list inside category hero */
.sub-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.sub-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background .2s;
}
.sub-card:hover { background: rgba(255,255,255,.14); }
.sub-card-img { height: 150px; overflow: hidden; }
.sub-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sub-card-body { padding: 16px; }
.sub-card-body h4 { color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.sub-card-body p { font-size: .8rem; color: rgba(255,255,255,.65); }
.sub-card-body .duration { font-size: .78rem; color: var(--gold); font-weight: 600; margin-top: 8px; }
.sub-card-link { display: inline-block; margin-top: 10px; font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 700; }
.sub-card-link:hover { color: var(--white); }

/* ════════════════════════════════════════
   INDIVIDUAL SERVICE PAGE
   ════════════════════════════════════════ */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 60px 0;
}
.service-main h2 { font-size: 1.3rem; color: var(--navy); margin: 32px 0 14px; }
.service-main p { color: var(--muted); margin-bottom: 14px; }
.learn-list { display: flex; flex-direction: column; gap: 10px; margin: 4px 0; }
.learn-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.learn-list li::before {
  content: '✔';
  color: var(--blue);
  font-size: .85rem;
  margin-top: 4px;
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.details-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.details-table tr { border-bottom: 1px solid var(--border); }
.details-table td { padding: 12px 8px; font-size: .92rem; }
.details-table td:first-child { font-weight: 700; color: var(--navy); width: 40%; }

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-box.featured { background: var(--navy); }
.sidebar-box-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 700;
  font-size: .95rem;
}
.sidebar-box.featured .sidebar-box-header { background: rgba(255,255,255,.1); }
.sidebar-box-body { padding: 20px; }
.sidebar-box.featured .sidebar-box-body { color: rgba(255,255,255,.85); font-size: .9rem; }
.sidebar-btn { display: block; width: 100%; text-align: center; padding: 13px; border-radius: 8px; font-weight: 700; margin-bottom: 10px; }
.sidebar-btn.gold { background: var(--gold); color: var(--navy); }
.sidebar-btn.outline { border: 2px solid rgba(255,255,255,.3); color: var(--white); }
.sidebar-btn.dark { background: var(--navy); color: var(--white); }
.sidebar-phone { display: block; text-align: center; padding: 12px; border: 2px solid var(--border); border-radius: 8px; font-weight: 700; color: var(--navy); font-size: .95rem; margin-top: 8px; }
.sidebar-phone:hover { border-color: var(--blue); color: var(--blue); }

/* Related */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-page-img img { width: 100%; border-radius: var(--radius); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.value-card { background: var(--off); border-radius: var(--radius); padding: 24px; }
.value-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.value-card h4 { margin-bottom: 6px; }
.value-card p { font-size: .88rem; color: var(--muted); }

/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; padding: 70px 0; }
.contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.contact-form-box h2 { margin-bottom: 6px; }
.contact-form-box .sub { color: var(--muted); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { height: 140px; resize: vertical; }
.contact-info-box { padding-top: 10px; }
.contact-info-box h3 { margin-bottom: 20px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-detail .icon-wrap {
  width: 46px; height: 46px;
  background: var(--off);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: .88rem; color: var(--muted); font-weight: 600; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .05em; }
.contact-detail p { font-size: .95rem; font-weight: 600; color: var(--navy); }

/* ════════════════════════════════════════
   BLOG
   ════════════════════════════════════════ */
.single-content { max-width: 760px; margin: 60px auto; padding: 0 24px; }
.single-content h1 { margin-bottom: 16px; }
.single-meta { color: var(--muted); font-size: .88rem; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.single-content p { color: var(--muted); margin-bottom: 18px; }
.single-content h2 { margin: 36px 0 14px; }
.single-content h3 { margin: 28px 0 10px; }
.single-content ul, .single-content ol { margin: 0 0 18px 24px; color: var(--muted); }
.single-content ul li, .single-content ol li { margin-bottom: 6px; }
.single-content img { border-radius: var(--radius); margin: 24px 0; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .about-grid,
  .trainer-grid,
  .about-page-grid { grid-template-columns: 1fr; }
  .trainer-grid .trainer-img { order: -1; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .row2 { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .services-grid .row2,
  .cat-grid, .related-grid, .blog-grid, .archive-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 60px; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-logo img { height: 36px; }
}

@media (max-width: 480px) {
  .header-inner { height: 62px; }
  .container { padding: 0 16px; }
}
