/* ==========================================================================
   Land Coordinates Technology — site design
   Palette from the logo (brown / gold) with deep navy.
   ========================================================================== */
:root {
  --navy: #0f1f3a;
  --navy-2: #172b4d;
  --navy-3: #22385f;
  --brown: #8a5a1c;
  --brown-2: #6f4712;
  --gold: #c9973f;
  --gold-2: #e2b866;
  --ink: #1a2230;
  --text: #465061;
  --muted: #6b7486;
  --line: #e6e8ee;
  --soft: #f6f4ef;
  --soft-2: #fbfaf7;
  --white: #fff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(15, 31, 58, .06), 0 8px 24px rgba(15, 31, 58, .07);
  --shadow-lg: 0 18px 50px rgba(15, 31, 58, .16);
  --container: 1200px;
  --head: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 76px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body { margin: 0; font-family: var(--body); font-size: 16px; line-height: 1.7; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img, video, iframe { max-width: 100%; }
img { height: auto; vertical-align: middle; }
a { color: var(--brown); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brown-2); }
h1, h2, h3, h4, h5, h6 { font-family: var(--head); color: var(--ink); line-height: 1.25; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(30px, 4.2vw, 48px); font-weight: 800; }
h2 { font-size: clamp(26px, 3vw, 38px); }
h3 { font-size: 20px; }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 8px 14px; z-index: 999; border-radius: 6px; }
.skip:focus { left: 8px; color: #fff; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
.mt { margin-top: 36px; }
.pt-0 { padding-top: 0 !important; }
.w100 { width: 100%; }
.muted { color: var(--muted); }
.hide-sm { }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--head); font-weight: 700; font-size: 15px; line-height: 1; padding: 15px 24px; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brown); color: #fff; box-shadow: 0 6px 18px rgba(138, 90, 28, .28); }
.btn-primary:hover { background: var(--brown-2); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); color: var(--navy); }
.btn-outline { border-color: var(--brown); color: var(--brown); background: transparent; }
.btn-outline:hover { background: var(--brown); color: #fff; }
.btn-ghost-light { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }
.btn-outline-light { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--head); font-weight: 700; font-size: 14.5px; color: var(--brown); }
.link-arrow i { transition: transform .2s; font-size: 12px; }
.link-arrow:hover i { transform: translateX(4px); }

/* ---------- top bar ---------- */
.topbar { background: var(--navy); color: #c9d2e3; font-size: 13.5px; }
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar-contact { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.topbar a, .topbar span { color: #c9d2e3; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--gold-2); }
.topbar i { color: var(--gold); font-size: 12px; }
.social { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; }
.social a { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; font-size: 14px; transition: background .2s, color .2s; }
.social a:hover { background: var(--gold); color: var(--navy); }
.topbar-social a { width: 28px; height: 28px; font-size: 12.5px; background: transparent; }
.topbar-social a i { color: #c9d2e3; }
.topbar-social a:hover i { color: var(--navy); }

/* ---------- header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(15, 31, 58, .08); }
.header-in { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); flex-shrink: 0; }
.brand img { width: 52px; height: 52px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--head); }
.brand-text strong { font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.brand-text small { font-size: 12px; font-weight: 700; color: var(--brown); letter-spacing: .22em; text-transform: uppercase; margin-top: 3px; }
.brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text small { color: var(--gold-2); }
.brand-light img { background: #fff; border-radius: 50%; padding: 3px; }
.main-nav { margin-left: auto; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 6px; white-space: nowrap; padding: 10px 13px; font-family: var(--head); font-weight: 700; font-size: 15px; color: var(--ink); border-radius: 8px; }
.nav-item > a .caret { font-size: 10px; opacity: .6; transition: transform .2s; }
.nav-item > a:hover, .nav-item.is-active > a { color: var(--brown); }
.nav-item.is-active > a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2px; background: var(--gold); border-radius: 2px; }
.nav-sub { list-style: none; margin: 0; padding: 8px; position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s; z-index: 10; }
.nav-sub .nav-sub { top: -9px; left: calc(100% + 8px); }
.nav-list > .nav-item:nth-last-child(-n+3) .nav-sub .nav-sub { left: auto; right: calc(100% + 8px); }
.nav-item:hover > .nav-sub, .nav-item:focus-within > .nav-sub { opacity: 1; visibility: visible; transform: none; }
.nav-sub .nav-item > a { padding: 9px 12px; font-size: 14px; font-weight: 600; justify-content: space-between; }
.nav-sub .nav-item > a:hover { background: var(--soft); }
.nav-sub .nav-item.is-active > a::after { display: none; }
.nav-sub .caret { transform: rotate(-90deg); }
.sub-toggle, .nav-head, .nav-cta { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { padding: 13px 20px; font-size: 14px; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 12px; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; }
.nav-overlay { position: fixed; inset: 0; background: rgba(9, 18, 36, .5); opacity: 0; visibility: hidden; transition: .25s; z-index: 250; }
body.nav-open .site-header { z-index: 300; }

/* ---------- hero ---------- */
.hero { position: relative; background: radial-gradient(1200px 500px at 85% -10%, rgba(201, 151, 63, .25), transparent 60%), linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #1d3358 100%); color: #d6deec; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, #000 30%, transparent); pointer-events: none; }
.hero-in { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; padding-top: 72px; padding-bottom: 80px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero .lead { font-size: 18px; color: #c6d0e2; max-width: 560px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 800; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--brown); margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow.light { color: var(--gold-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 26px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 14.5px; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; color: #e6ebf4; }
.hero-points i { color: var(--gold); }
.hero-media { position: relative; }
.hero-media img { width: 100%; border-radius: 18px; box-shadow: 0 30px 70px rgba(0, 0, 0, .4); border: 1px solid rgba(255, 255, 255, .12); }
.hero-media::after { content: ""; position: absolute; right: -16px; bottom: -16px; width: 55%; height: 60%; border: 2px solid rgba(201, 151, 63, .5); border-radius: 18px; z-index: -1; }

/* ---------- admission strip ---------- */
.admission { background: linear-gradient(90deg, var(--brown-2), var(--brown)); color: #fff; }
.adm-in { display: flex; align-items: center; gap: 18px; padding-top: 20px; padding-bottom: 20px; }
.adm-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(255, 255, 255, .14); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold-2); flex-shrink: 0; }
.adm-text { display: flex; flex-direction: column; }
.adm-text strong { font-family: var(--head); font-size: 19px; }
.adm-text span { color: #f0dfc4; font-size: 14.5px; }
.adm-actions { margin-left: auto; display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- sections ---------- */
.sec { padding: 88px 0; }
.bg-soft { background: var(--soft); }
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { margin-bottom: 12px; }
.sec-desc, .sec-desc p { color: var(--muted); font-size: 17px; margin: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.media-frame { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--soft); }
.media-frame img { width: 100%; display: block; }
.media-frame.photo img { aspect-ratio: 4 / 3.4; object-fit: cover; }
.media-frame.product { background: #fff; padding: 30px; border: 1px solid var(--line); }
.media-frame.product img { max-height: 460px; object-fit: contain; }
.media-frame.tint { background: linear-gradient(135deg, var(--navy), var(--navy-3)); padding: 28px; }
.split-media { position: relative; }
.exp-badge { position: absolute; right: -14px; bottom: 28px; background: #fff; border-radius: 16px; padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; max-width: 250px; border-left: 4px solid var(--gold); }
.exp-badge strong { font-family: var(--head); font-size: 34px; color: var(--brown); line-height: 1; }
.exp-badge span { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.rich p:last-child { margin-bottom: 0; }
.split-body .rich { margin-bottom: 26px; font-size: 16.5px; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .2s, box-shadow .2s; }
.feature-list li:hover { border-color: rgba(201, 151, 63, .55); box-shadow: var(--shadow); }
.fi-icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--navy), var(--navy-3)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.fi-icon img { width: 30px; height: 30px; object-fit: contain; }
.fi-icon:has(img:not([src$=".svg"])) { background: rgba(201, 151, 63, .14); }
.fi-icon img[src$=".svg"] { filter: brightness(0) invert(1); width: 28px; height: 28px; }
.feature-list h3 { font-size: 17.5px; margin-bottom: 4px; }
.fi-text { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ---------- stats ---------- */
.stats { background: var(--navy); color: #fff; padding: 46px 0; position: relative; overflow: hidden; }
.stats::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 200px at 10% 0, rgba(201, 151, 63, .18), transparent 70%); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.stat { display: flex; align-items: center; gap: 16px; }
.stat > i { width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: rgba(201, 151, 63, .16); color: var(--gold-2); flex-shrink: 0; }
.stat strong { display: block; font-family: var(--head); font-size: 36px; line-height: 1; color: #fff; }
.stat > div > span { display: block; color: #b9c4d8; font-size: 15px; margin-top: 4px; }
.stat strong .count { font: inherit; color: inherit; }

/* ---------- cards & grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.card.pad { padding: 26px; }
.service-card:hover, .course-card:hover, .post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 19px; margin-bottom: 10px; }
.card-body h3 a { color: var(--ink); }
.card-body h3 a:hover { color: var(--brown); }
.card-body p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.card-body .link-arrow { margin-top: auto; }
.card-body .meta { font-size: 13.5px; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.card-body .meta i { color: var(--gold); }
.badge { position: absolute; left: 14px; top: 14px; background: rgba(15, 31, 58, .88); color: #fff; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.badge i { color: var(--gold-2); }

/* ---------- instruments ---------- */
.instruments { background: var(--soft); }
.check-grid { list-style: none; padding: 0; margin: 0 0 30px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; }
.check-grid li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); font-size: 15px; }
.check-grid i { width: 24px; height: 24px; border-radius: 50%; background: var(--brown); color: #fff; font-size: 11px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- testimonials ---------- */
.testimonials { background: linear-gradient(180deg, #fff, var(--soft-2)); }
.t-swiper { padding-bottom: 46px !important; }
.t-card { margin: 0; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative; }
.t-card::before { content: "\201C"; position: absolute; right: 22px; top: 6px; font-family: Georgia, serif; font-size: 80px; color: rgba(201, 151, 63, .25); line-height: 1; }
.stars { color: var(--gold); font-size: 13px; display: flex; gap: 3px; margin-bottom: 14px; }
.t-card blockquote { background: none !important; border: 0 !important; padding: 0 !important; border-radius: 0 !important; margin: 0 0 22px; font-size: 16.5px; color: var(--ink); line-height: 1.65; }
.t-card figcaption { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.t-card figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: contain; background: #fff; border: 1px solid var(--line); padding: 3px; }
.t-card figcaption strong { display: block; font-family: var(--head); color: var(--ink); }
.t-card figcaption small { color: var(--muted); font-size: 13.5px; }
.swiper { overflow: hidden; }
.swiper-slide { height: auto; }
.swiper-pagination-bullet { background: var(--navy); opacity: .25; }
.swiper-pagination-bullet-active { background: var(--brown); opacity: 1; width: 22px; border-radius: 6px; }

/* ---------- clients & certs ---------- */
.clients { padding-bottom: 60px; }
.logo-tile { height: 110px; border: 1px solid var(--line); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; padding: 14px; background: #fff; }
.logo-tile img { max-height: 80px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .8; transition: .25s; }
.logo-tile:hover img { filter: none; opacity: 1; }
.certs { background: var(--soft); }
.cert-row { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.cert { position: relative; display: block; width: 300px; max-width: 100%; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 12px; }
.cert img { width: 100%; border-radius: 8px; }
.cert span { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); background: var(--navy); color: #fff; font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; opacity: 0; transition: .2s; display: inline-flex; gap: 6px; align-items: center; }
.cert:hover span, .cert:focus span { opacity: 1; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 55%, var(--brown-2) 140%); color: #fff; padding: 56px 0; }
.cta-in { display: flex; align-items: center; gap: 30px; justify-content: space-between; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 6px; }
.cta-band p { color: #c6d0e2; margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ---------- page hero ---------- */
.page-hero { position: relative; background: linear-gradient(135deg, rgba(15, 31, 58, .96), rgba(23, 43, 77, .92)), var(--hero-img, none) center / cover no-repeat, var(--navy); color: #c6d0e2; padding: 64px 0 60px; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; border: 40px solid rgba(201, 151, 63, .12); pointer-events: none; }
.page-hero h1 { color: #fff; max-width: 900px; margin-bottom: 10px; font-size: clamp(28px, 3.6vw, 44px); }
.page-hero .lead { font-size: 17px; margin: 0; max-width: 720px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.page-hero .lead i { color: var(--gold); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 14px; }
.crumbs a { color: var(--gold-2); }
.crumbs a:hover { color: #fff; }
.crumbs i { font-size: 9px; opacity: .5; }
.crumbs span { color: #c6d0e2; }

/* ---------- Elementor content in the new design ---------- */
.page-body { padding: 0; }
.el-content .elementor-section.elementor-section-boxed > .elementor-container { max-width: var(--container); padding-left: 10px; padding-right: 10px; }
.page-body .el-content > .elementor > .elementor-section:not(:has(.nw-widget)) { padding-top: 40px; padding-bottom: 40px; }
.el-content .elementor-widget:not(:last-child) { margin-bottom: 20px; }
.el-content .nw-widget { margin-bottom: 0 !important; }
.el-content .elementor-column:has(.nw-widget) > .elementor-widget-wrap, .el-content .elementor-container:has(.nw-widget) { padding: 0 !important; max-width: none !important; }
.el-content .elementor-section:has(.nw-widget) { margin: 0 !important; padding: 0 !important; }
.el-content .elementor-heading-title { font-family: var(--head); color: var(--ink); }
.el-content h1.elementor-heading-title { font-size: clamp(26px, 3vw, 36px); }
.el-content h2.elementor-heading-title { font-size: clamp(22px, 2.4vw, 30px); }
.el-content h3.elementor-heading-title { font-size: 21px; }
.el-content .elementor-widget-text-editor { color: var(--text); font-size: 16.5px; line-height: 1.8; }
.el-content .elementor-widget-text-editor a, .prose a { color: var(--brown); text-decoration: underline; text-decoration-color: rgba(138, 90, 28, .35); text-underline-offset: 3px; }
.el-content .elementor-widget-text-editor h2, .el-content .elementor-widget-text-editor h3, .el-content .elementor-widget-text-editor h4 { margin-top: 1.4em; }
.el-content .elementor-widget-text-editor ul li, .prose ul li { margin-bottom: .4em; }
.el-content .elementor-widget-text-editor img { border-radius: 12px; }
.el-content .elementor-widget-image img { border-radius: 12px; }
.el-content .elementor-icon-list-icon i { color: var(--brown) !important; }
.el-content .elementor-icon-list-text { color: var(--ink); font-weight: 500; }
.el-content table { width: 100%; border-collapse: collapse; font-size: 15px; margin-bottom: 1.2em; }
.el-content th, .el-content td, .prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.el-content th, .prose th { background: var(--soft); color: var(--ink); font-family: var(--head); }
.el-content blockquote { border-left: 4px solid var(--gold); background: var(--soft); margin: 1.2em 0; padding: 14px 20px; border-radius: 0 10px 10px 0; }
.elementor-button { background: var(--brown) !important; border-radius: 999px !important; font-family: var(--head); font-weight: 700; padding: 14px 24px !important; color: #fff !important; }
.elementor-image-carousel-wrapper { position: relative; }
.elementor-image-carousel-wrapper .swiper-slide-image { border-radius: 10px; }
.elementor-swiper-button { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--navy); font-size: 14px; }
.elementor-swiper-button-prev { left: 8px; }
.elementor-swiper-button-next { right: 8px; }
.elementor-image-carousel-wrapper .swiper-pagination { position: relative; margin-top: 16px; }
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.2em; }
.table-scroll table { min-width: 560px; margin: 0; }
.prose { padding: 60px 20px; font-size: 16.5px; }
.narrow { max-width: 860px; }

/* ---------- sidebar layouts ---------- */
.with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; align-items: start; }
.side-col { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 22px; }
.side-box h3 { font-size: 18px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.side-links { list-style: none; margin: 0; padding: 0; }
.side-links li a { display: flex; justify-content: space-between; align-items: center; padding: 11px 12px; border-radius: 8px; color: var(--ink); font-weight: 600; font-size: 15px; }
.side-links li a i { font-size: 11px; color: var(--muted); }
.side-links li a:hover, .side-links li.is-active a { background: var(--soft); color: var(--brown); }
.side-links li.is-active a { box-shadow: inset 3px 0 0 var(--gold); }
.contact-box { background: linear-gradient(145deg, var(--navy), var(--navy-2)); color: #c6d0e2; border-radius: var(--radius); padding: 28px; }
.contact-box h3 { color: #fff; border-bottom-color: rgba(255, 255, 255, .12); }
.big-phone { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 800; font-size: 22px; color: #fff; margin: 6px 0 18px; }
.big-phone i { color: var(--gold); font-size: 18px; }
.big-phone:hover { color: var(--gold-2); }
.side-posts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.side-posts a { display: flex; gap: 12px; color: var(--ink); font-weight: 600; font-size: 14.5px; line-height: 1.4; }
.side-posts img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.side-posts small { display: block; color: var(--muted); font-weight: 500; font-size: 12.5px; margin-top: 4px; }
.side-posts a:hover { color: var(--brown); }
.feature-img { margin-bottom: 28px; }
.feature-img img { width: 100%; border-radius: 18px; aspect-ratio: 16 / 9; object-fit: cover; box-shadow: var(--shadow); }
.main-col .el-content .elementor-section.elementor-section-boxed > .elementor-container { padding: 0; }
.main-col .elementor-column > .elementor-widget-wrap { padding-left: 0 !important; padding-right: 0 !important; }
.toc { margin-bottom: 30px; background: var(--soft-2); }
.toc h3 { font-size: 17px; margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.toc h3 i { color: var(--gold); }
.toc ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.toc li { position: relative; padding-left: 16px; }
.toc li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.toc a { color: var(--ink); font-size: 15px; }
.toc a:hover { color: var(--brown); }
.toc .toc-h3 { margin-left: 18px; }
.toc .toc-h3::before { background: transparent; border: 1.5px solid var(--gold); }
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
.share { display: flex; align-items: center; gap: 10px; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); font-family: var(--head); font-weight: 700; color: var(--ink); }
.share a { width: 38px; height: 38px; border-radius: 50%; background: var(--soft); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; }
.share a:hover { background: var(--brown); color: #fff; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.post-nav a { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); font-family: var(--head); font-weight: 700; line-height: 1.4; }
.post-nav a small { color: var(--brown); font-size: 13px; display: inline-flex; gap: 6px; align-items: center; }
.post-nav a.next { text-align: right; align-items: flex-end; }
.post-nav a:hover { border-color: var(--gold); box-shadow: var(--shadow); }

/* ---------- course page ---------- */
.course-hero { background: var(--soft-2); }
.info-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.info-pill { display: flex; gap: 12px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; }
.info-pill i { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(201, 151, 63, .15); color: var(--brown); }
.info-pill small { display: block; color: var(--muted); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.info-pill strong { color: var(--ink); font-family: var(--head); }
.course-block h3 { font-size: 19px; }
.ticks ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; }
.ticks li::before { content: "\f00c"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--brown); color: #fff; font-size: 10px; display: flex; align-items: center; justify-content: center; }
.accr { margin-top: 30px; text-align: center; }
.accr > span { font-family: var(--head); font-weight: 700; color: var(--muted); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.accr-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 14px; }
.accr-logo { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; }
.accr-logo p { margin: 0; }
.accr-logo img { max-height: 70px; width: auto; }
.course-page .el-content > .elementor > .elementor-section:not(:has(.nw-widget)) { max-width: 900px; margin: 0 auto; }
.narrow-wide { max-width: 1000px; }
.enquire-box { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: center; background: #fff; border-radius: 20px; padding: 36px; box-shadow: var(--shadow-lg); border-top: 4px solid var(--gold); }
.enquire-box h2 { font-size: 26px; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; margin-bottom: 18px; }
.enquiry-form.compact .form-grid { grid-template-columns: 1fr 1fr; }
.form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink); }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea { font: inherit; font-weight: 400; font-size: 15.5px; color: var(--ink); background: var(--soft-2); border: 1px solid #d9dde5; border-radius: 10px; padding: 12px 14px; width: 100%; transition: border-color .2s, box-shadow .2s, background .2s; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(201, 151, 63, .18); }
.form-grid .invalid { border-color: #c0392b; }
.form-note { font-size: 13px; color: var(--muted); margin: 12px 0 0; }
.form-note.ok { color: #1e7a46; font-weight: 600; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 36px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.c-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.c-card > i { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: var(--gold-2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.c-card h3 { font-size: 17px; margin-bottom: 6px; }
.c-card p { margin: 0 0 6px; font-size: 15px; }
.c-card a { color: var(--ink); font-weight: 600; }
.c-card a:hover { color: var(--brown); }
.c-card.franchise { background: var(--soft); border-color: transparent; }
.form-card h2 { font-size: 26px; margin-bottom: 6px; }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: 0; filter: grayscale(.2); }

/* ---------- gallery ---------- */
.masonry { columns: 4 240px; column-gap: 16px; }
.m-item { display: block; margin-bottom: 16px; border-radius: 12px; overflow: hidden; break-inside: avoid; position: relative; }
.m-item img { width: 100%; transition: transform .4s; }
.m-item:hover img { transform: scale(1.04); }

/* ---------- blog pager ---------- */
.pager { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 46px; }
.pager a, .pager span { min-width: 44px; height: 44px; padding: 0 12px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 700; border: 1px solid var(--line); color: var(--ink); }
.pager a:hover { border-color: var(--brown); color: var(--brown); }
.pager .current { background: var(--brown); border-color: var(--brown); color: #fff; }
.pager .gap { border: 0; min-width: 20px; }

/* ---------- footer ---------- */
.site-footer { background: #0b1830; color: #aab5ca; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr; gap: 40px; padding-top: 70px; padding-bottom: 50px; }
.site-footer h3 { color: #fff; font-size: 17px; margin-bottom: 18px; }
.f-about p { margin: 18px 0 20px; line-height: 1.7; }
.f-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.f-links a { color: #aab5ca; }
.f-links a:hover { color: var(--gold-2); }
.f-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.f-contact li { display: flex; gap: 12px; line-height: 1.6; }
.f-contact i { color: var(--gold); margin-top: 5px; width: 16px; text-align: center; }
.f-contact a { color: #dfe5ef; }
.f-contact a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); font-size: 14px; }
.fb-in { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 20px; padding-bottom: 20px; flex-wrap: wrap; }
.to-top { color: #aab5ca; display: inline-flex; gap: 8px; align-items: center; }
.fab-call { display: none; }

/* ---------- 404 ---------- */
.notfound { padding: 110px 0; }
.big404 { font-family: var(--head); font-weight: 800; font-size: 120px; line-height: 1; color: var(--soft); -webkit-text-stroke: 2px var(--gold); display: block; margin-bottom: 10px; }
.center-row { justify-content: center; }
.lead-dark { color: var(--muted); font-size: 18px; }

/* ---------- lightbox ---------- */
.lb { position: fixed; inset: 0; background: rgba(8, 14, 28, .92); z-index: 500; display: none; align-items: center; justify-content: center; padding: 50px 60px; }
.lb.open { display: flex; }
.lb img { max-width: 100%; max-height: 100%; border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.lb button { position: absolute; background: rgba(255, 255, 255, .12); border: 0; color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 18px; cursor: pointer; }
.lb button:hover { background: rgba(255, 255, 255, .25); }
.lb .lb-close { top: 14px; right: 14px; }
.lb .lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb .lb-next { right: 12px; top: 50%; transform: translateY(-50%); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .nav-item > a { padding: 10px 9px; font-size: 14.5px; }
  .hide-md { display: none !important; }
}
@media (max-width: 1080px) {
  /* off-canvas navigation */
  .nav-toggle { display: inline-flex; }
  .main-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); background: #fff; z-index: 200; transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility 0s linear .3s; overflow-y: auto; padding: 0 0 30px; margin: 0; box-shadow: -10px 0 40px rgba(0, 0, 0, .15); display: flex; flex-direction: column; }
  body.nav-open .main-nav { transform: none; visibility: visible; transition: transform .3s ease, visibility 0s; }
  body.nav-open .nav-overlay { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); font-family: var(--head); font-weight: 800; color: var(--navy); }
  .nav-close { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: #fff; font-size: 18px; cursor: pointer; color: var(--navy); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 12px; }
  .nav-item { border-bottom: 1px solid #f0f1f4; }
  .nav-item > a { padding: 14px 10px; font-size: 16px; }
  .nav-item > a .caret { display: none; }
  .nav-item.is-active > a::after { display: none; }
  .nav-item.is-active > a { color: var(--brown); }
  .sub-toggle { display: flex; position: absolute; right: 2px; top: 6px; width: 40px; height: 40px; border: 0; background: var(--soft); border-radius: 10px; align-items: center; justify-content: center; cursor: pointer; color: var(--navy); }
  .sub-toggle i { transition: transform .2s; font-size: 12px; }
  .nav-item.open > .sub-toggle i { transform: rotate(180deg); }
  .has-sub > a { padding-right: 52px !important; }
  .nav-sub, .nav-sub .nav-sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-radius: 0; min-width: 0; padding: 0 0 8px 12px; display: none; background: transparent; }
  .nav-item.open > .nav-sub { display: block; }
  .nav-sub .nav-item { border: 0; }
  .nav-sub .nav-item > a { padding: 10px; font-size: 15px; white-space: normal; line-height: 1.4; }
  .nav-sub .sub-toggle { top: 2px; width: 36px; height: 36px; }
  .nav-cta { display: flex; margin: 18px 20px 0; }
  .header-actions { margin-left: auto; }
}
@media (max-width: 991px) {
  .hero-in { grid-template-columns: 1fr; gap: 36px; padding-top: 50px; padding-bottom: 60px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .with-sidebar { grid-template-columns: 1fr; }
  .side-col { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .enquire-box { grid-template-columns: 1fr; }
  .cta-in { flex-direction: column; align-items: flex-start; }
  .sec { padding: 68px 0; }
  .exp-badge { right: 12px; }
}
@media (max-width: 767px) {
  body { font-size: 15.5px; }
  .container { padding: 0 16px; }
  .topbar-social, .hide-sm { display: none !important; }
  .topbar-contact { gap: 4px 16px; font-size: 12.5px; justify-content: center; width: 100%; }
  .topbar-in { min-height: 38px; }
  :root { --header-h: 66px; }
  .brand img { width: 44px; height: 44px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { font-size: 10.5px; }
  .sec { padding: 56px 0; }
  .sec-head { margin-bottom: 30px; }
  .sec-desc, .sec-desc p { font-size: 15.5px; }
  .hero .lead { font-size: 16px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-media::after { display: none; }
  .adm-in { flex-direction: column; text-align: center; }
  .adm-actions { margin: 6px 0 0; justify-content: center; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .stats { padding: 36px 0; }
  .stat strong { font-size: 28px; }
  .stat > i { width: 48px; height: 48px; font-size: 18px; }
  .stat > div > span { font-size: 13.5px; }
  .exp-badge { position: static; margin-top: -30px; margin-left: 16px; margin-right: 16px; position: relative; max-width: none; }
  .form-grid, .enquiry-form.compact .form-grid { grid-template-columns: 1fr; }
  .enquire-box { padding: 24px; }
  .page-hero { padding: 44px 0 40px; }
  .page-hero::after { width: 200px; height: 200px; border-width: 26px; right: -70px; top: -70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 54px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav a.next { text-align: left; align-items: flex-start; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1 1 auto; }
  .card-body { padding: 18px 18px 20px; }
  .el-content .elementor-widget-text-editor { font-size: 15.5px; }
  .map-wrap iframe { height: 300px; }
  .fab-call { display: flex; position: fixed; right: 16px; bottom: 16px; width: 56px; height: 56px; border-radius: 50%; background: var(--brown); color: #fff; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 10px 26px rgba(138, 90, 28, .45); z-index: 90; }
  .fab-call:hover { color: #fff; }
  .lb { padding: 50px 10px; }
  .masonry { columns: 2 140px; column-gap: 10px; }
  .m-item { margin-bottom: 10px; }
  .big404 { font-size: 88px; }
  .logo-tile { height: 90px; }
}
.course-card .meta { display: block; }
.course-card .meta i { margin-right: 6px; }
/* grid children may shrink below their content width (prevents mobile overflow) */
.split > *, .grid > *, .hero-in > *, .contact-grid > *, .footer-grid > *, .with-sidebar > *, .enquire-box > *, .stats-grid > *, .form-grid > * { min-width: 0; }
