/* ═══════════════════════════════════════════════════════════
   GLAMOUR CASCADE — Shared Stylesheet
   Covers: tokens, reset, utilities, nav, footer, breadcrumb,
           and all reusable component styles.
═══════════════════════════════════════════════════════════ */

/* ══ DESIGN TOKENS ══════════════════════════════════════════ */
:root {
  --gl: #F8E8D0;
  --g2: #EDD0A8;
  --g3: #DCBB8E;
  --g4: #CB9468;
  --g5: #C9906A;
  --g6: #B07840;
  --g7: #9A5F32;
  --g8: #8A5028;
  --g9: #6B3518;
  --cream:  #FDF6EE;
  --creamD: #F5EAD8;
  --brown:  #3D1F0A;
  --dark:   #1A0A02;
  --gray:   #6B7280;
  --white:  #FFFFFF;
  --ff-h: 'Playfair Display', Georgia, serif;
  --ff-b: 'Poppins', sans-serif;
  --ease: 0.35s ease;
  --sh-sm: 0 2px 14px rgba(138,80,40,.10);
  --sh-md: 0 6px 30px rgba(138,80,40,.18);
  --sh-lg: 0 14px 50px rgba(138,80,40,.28);
}

/* ══ RESET ══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-b); color: var(--brown); background: var(--cream); line-height: 1.6; }
img  { max-width: 100%; display: block; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: var(--ff-b); }

/* ══ UTILITIES ══════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sp { padding: 92px 0; }
.tc { text-align: center; }

.label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--g7); margin-bottom: 10px;
}
.label::before { content: '─ '; }
.label::after  { content: ' ─'; }

h2.title {
  font-family: var(--ff-h);
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  font-weight: 700; color: var(--brown); line-height: 1.22;
  margin-bottom: 14px;
}
.sub {
  font-size: 15px; color: var(--gray);
  max-width: 560px; margin: 0 auto 48px; line-height: 1.75;
}
.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--g4), var(--g8));
  border-radius: 2px; margin: 14px auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 14px; font-weight: 600; letter-spacing: .4px;
  border: 2px solid transparent; cursor: pointer;
  transition: var(--ease); white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--g4), var(--g8));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(154,95,50,.35);
}
.btn-gold:hover  { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(154,95,50,.45); }
.btn-wh          { background: transparent; border-color: var(--white); color: var(--white); }
.btn-wh:hover    { background: var(--white); color: var(--g8); }
.btn-border      { background: transparent; border-color: var(--g5); color: var(--g7); }
.btn-border:hover{ background: var(--g5); color: var(--white); }

/* ── Fade-in on scroll (only active when JS has loaded) ── */
.fi { opacity: 1; transform: none; }
.js-fi .fi { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.js-fi .fi.on { opacity: 1; transform: translateY(0); }

/* ══ NAVBAR ═════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .35s, box-shadow .35s;
}
#nav.solid {
  background: rgba(253,246,238,.97);
  box-shadow: 0 2px 22px rgba(138,80,40,.12);
}
#nav.solid::before {
  content: ''; position: absolute; inset: 0;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  pointer-events: none; z-index: -1;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 78px;
}
.brand { display: flex; align-items: center; }
.brand img {
  height: 58px; width: auto; object-fit: contain;
  transition: var(--ease);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.25));
}
#nav.solid .brand img { filter: none; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.9);
  transition: var(--ease); position: relative;
}
/* On inner pages (non-home), nav starts solid */
body:not([data-page="home"]) #nav { background: rgba(253,246,238,.97); box-shadow: 0 2px 22px rgba(138,80,40,.12); }
body:not([data-page="home"]) #nav::before {
  content: ''; position: absolute; inset: 0;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  pointer-events: none; z-index: -1;
}
body:not([data-page="home"]) .brand img { filter: none; }
body:not([data-page="home"]) .nav-links a { color: var(--brown); }
body:not([data-page="home"]) .hamburger span { background: var(--brown); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--g4); transition: var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--g4); }
#nav.solid .nav-links a { color: var(--brown); }
.nav-cta {
  background: linear-gradient(135deg, var(--g4), var(--g8)) !important;
  color: var(--white) !important; padding: 9px 22px; border-radius: 50px;
  font-weight: 600 !important; transition: transform var(--ease), box-shadow var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: var(--sh-md) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--ease); }
#nav.solid .hamburger span { background: var(--brown); }
.drawer-header, .drawer-foot, .drawer-backdrop { display: none; }

/* ══ BREADCRUMB & INNER PAGE HERO ═══════════════════════════ */
.page-hero {
  position: relative; padding: 140px 0 72px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--g9) 60%, var(--g8) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../assets/images/gc_logo.png') center/300px no-repeat;
  opacity: .04; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .label { color: var(--g3); }
.page-hero h1 {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: var(--white); line-height: 1.18; margin-bottom: 12px;
}
.page-hero p {
  font-size: 15.5px; color: rgba(255,255,255,.72); max-width: 540px; line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 12.5px; margin-top: 22px;
}
.breadcrumb a { color: var(--g3); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.45); }
.breadcrumb .current { color: rgba(255,255,255,.85); font-weight: 500; }

/* ══ STATS BAR ══════════════════════════════════════════════ */
#stats, .stats-bar {
  background: linear-gradient(135deg, var(--g8), var(--g9));
  padding: 58px 0;
}
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat {
  text-align: center; padding: 18px 12px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.stat:last-child { border-right: none; }
.stat-ico { font-size: 26px; color: var(--g3); margin-bottom: 10px; }
.stat-n { font-family: var(--ff-h); font-size: 2.7rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-l { font-size: 12.5px; color: var(--g3); letter-spacing: .8px; margin-top: 5px; }

/* ══ SERVICE CARDS ══════════════════════════════════════════ */
.srv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.srv-card {
  position: relative; border-radius: 18px; overflow: hidden;
  height: 315px; cursor: pointer; box-shadow: var(--sh-sm);
}
.srv-card img { width:100%; height:100%; transition: transform .5s ease; }
.srv-card:hover img { transform: scale(1.08); }
.srv-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,2,.88) 0%, transparent 52%);
  transition: var(--ease);
}
.srv-card:hover .srv-ov { background: linear-gradient(to top, rgba(138,80,40,.92) 0%, rgba(26,10,2,.28) 100%); }
.srv-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px; }
.srv-ico {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--g4), var(--g7));
  border-radius: 11px; display: flex; align-items: center;
  justify-content: center; font-size: 17px; color: var(--white); margin-bottom: 10px;
}
.srv-name { font-family: var(--ff-h); font-size: 1.28rem; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.srv-desc {
  font-size: 13px; color: rgba(255,255,255,.80); line-height: 1.5;
  max-height: 0; overflow: hidden; transition: max-height .42s ease;
}
.srv-card:hover .srv-desc { max-height: 70px; }
.srv-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; color: var(--g3);
  margin-top: 10px; opacity: 0; transform: translateY(7px); transition: var(--ease);
}
.srv-card:hover .srv-link { opacity: 1; transform: translateY(0); }

/* ══ ABOUT SPLIT ════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.about-img-wrap img { height: 500px; width: 100%; border-radius: 20px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g4), var(--g8));
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; box-shadow: var(--sh-md);
}
.about-badge-n { font-family: var(--ff-h); font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.about-badge-l { font-size: 11px; color: var(--g2); letter-spacing: 1px; }
.about-label { font-size: 11px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--g7); margin-bottom: 10px; }
.about-title { font-family: var(--ff-h); font-size: 2.1rem; font-weight: 700; color: var(--brown); line-height: 1.25; margin-bottom: 18px; }
.about-p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.about-checks { margin: 22px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.about-check { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--brown); }
.about-check i { color: var(--g5); font-size: 15px; }

/* ══ COURSE CARDS (ACADEMY) ═════════════════════════════════ */
.tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 38px; flex-wrap: wrap; }
.tab {
  padding: 9px 22px; border-radius: 50px;
  border: 2px solid var(--g4); font-size: 13px; font-weight: 600;
  color: var(--g7); cursor: pointer; transition: var(--ease); background: transparent;
}
.tab.on, .tab:hover {
  background: linear-gradient(135deg, var(--g4), var(--g8));
  color: var(--white); border-color: transparent;
}
.courses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.c-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: var(--sh-sm); transition: var(--ease);
}
.c-card:hover { transform: translateY(-7px); box-shadow: var(--sh-md); }
.c-img { height: 195px; overflow: hidden; }
.c-img img { width:100%; height:100%; transition: transform .45s; }
.c-card:hover .c-img img { transform: scale(1.07); }
.c-body { padding: 20px; }
.c-badge {
  display: inline-block; background: var(--gl); color: var(--g8);
  font-size: 10.5px; font-weight: 600; letter-spacing: .8px;
  padding: 3px 11px; border-radius: 50px; margin-bottom: 9px;
}
.c-title { font-family: var(--ff-h); font-size: 1.1rem; font-weight: 600; color: var(--brown); margin-bottom: 8px; }
.c-meta { display: flex; gap: 14px; font-size: 11.5px; color: var(--gray); margin-bottom: 13px; }
.c-meta span { display: flex; align-items: center; gap: 4px; }
.c-meta i { color: var(--g5); }
.c-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--creamD); padding-top: 13px;
}
.c-price { font-family: var(--ff-h); font-size: 1.05rem; color: var(--g7); font-weight: 700; }
.c-enroll {
  font-size: 12px; font-weight: 600; color: var(--g7);
  display: flex; align-items: center; gap: 4px; transition: var(--ease);
}
.c-enroll:hover { color: var(--g4); }

/* ══ WHY CARDS ══════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.why-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(203,148,104,.22);
  border-radius: 16px; padding: 30px 22px; text-align: center; transition: var(--ease);
}
.why-card:hover { background: rgba(203,148,104,.14); border-color: var(--g4); transform: translateY(-4px); }
.why-ico {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--g4), var(--g7));
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 23px; color: var(--white); margin: 0 auto 18px;
}
.why-t { font-family: var(--ff-h); font-size: 1.05rem; color: var(--white); margin-bottom: 9px; }
.why-d { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.6; }

/* ══ GALLERY GRID ═══════════════════════════════════════════ */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 230px 230px;
  gap: 12px;
}
.gal-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(5) { grid-column: span 2; }
.gal-item img { width:100%; height:100%; transition: transform .5s; }
.gal-item:hover img { transform: scale(1.07); }
.gal-ov {
  position: absolute; inset: 0;
  background: rgba(138,80,40,.62);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--ease);
}
.gal-item:hover .gal-ov { opacity: 1; }
.gal-ov i { font-size: 26px; color: var(--white); }

/* ══ AWARDS ═════════════════════════════════════════════════ */
.aw-strip { display: flex; gap: 28px; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
.aw-card {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 22px 18px; background: var(--white); border-radius: 16px;
  box-shadow: var(--sh-sm); width: 145px; text-align: center; transition: var(--ease);
}
.aw-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.aw-ico { font-size: 30px; color: var(--g5); }
.aw-name { font-size: 12px; font-weight: 600; color: var(--brown); line-height: 1.35; }
.aw-by  { font-size: 10px; color: var(--gray); }
.cert-row {
  display: flex; gap: 20px; align-items: center;
  justify-content: center; flex-wrap: wrap; margin-top: 44px;
}
.cert {
  padding: 11px 26px; border: 2px solid var(--g4);
  border-radius: 8px; font-size: 13.5px; font-weight: 700;
  color: var(--g7); letter-spacing: 1.2px; transition: var(--ease);
}
.cert:hover { background: var(--g4); color: var(--white); }

/* ══ TESTIMONIALS ═══════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.t-card {
  background: var(--white); border-radius: 20px; padding: 30px 26px;
  box-shadow: var(--sh-sm); position: relative; transition: var(--ease);
}
.t-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.t-card::before {
  content: '\201C'; position: absolute; top: 14px; right: 22px;
  font-family: Georgia,serif; font-size: 76px; color: var(--g2); line-height: 1;
}
.t-stars { color: var(--g5); font-size: 14px; margin-bottom: 13px; }
.t-text { font-size: 13.5px; color: var(--gray); line-height: 1.72; margin-bottom: 18px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 11px; }
.t-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g3), var(--g6));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-h); font-weight: 700; font-size: 17px; color: var(--white); flex-shrink: 0;
}
.t-name { font-weight: 600; color: var(--brown); font-size: 14px; }
.t-role { font-size: 11.5px; color: var(--g6); }

/* ══ TEAM CARDS ═════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.tm-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: var(--sh-sm); transition: var(--ease); text-align: center;
}
.tm-card:hover { transform: translateY(-7px); box-shadow: var(--sh-md); }
.tm-img { height: 335px; overflow: hidden; position: relative; }
.tm-img img { width:100%; height:335px; object-fit:cover; transition: transform .5s; }
.tm-card:hover .tm-img img { transform: scale(1.05); }
.tm-soc {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(138,80,40,.88), transparent);
  display: flex; justify-content: center; gap: 10px;
  padding: 22px 12px 12px;
  transform: translateY(100%); transition: var(--ease);
}
.tm-card:hover .tm-soc { transform: translateY(0); }
.tm-soc a {
  width: 30px; height: 30px; background: rgba(255,255,255,.18);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: 12.5px; transition: var(--ease);
}
.tm-soc a:hover { background: var(--g4); }
.tm-body { padding: 17px; }
.tm-name { font-family: var(--ff-h); font-size: 1.05rem; color: var(--brown); margin-bottom: 3px; }
.tm-role { font-size: 12px; color: var(--g6); font-weight: 500; }
.tm-exp  { font-size: 11.5px; color: var(--gray); margin-top: 5px; }

/* ══ BRANDS ROW ═════════════════════════════════════════════ */
.brands-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 36px; }
.brand-pill {
  padding: 13px 28px; background: var(--white);
  border: 1.5px solid var(--creamD); border-radius: 10px;
  font-weight: 700; font-size: 12.5px; color: var(--gray);
  letter-spacing: 1.2px; transition: var(--ease); box-shadow: var(--sh-sm);
}
.brand-pill:hover { border-color: var(--g4); color: var(--g7); transform: translateY(-2px); box-shadow: var(--sh-md); }

/* ══ CTA PARALLAX ═══════════════════════════════════════════ */
.cta-section { position: relative; padding: 104px 24px; text-align: center; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background: url('assets/images/gallery/back.jpg') center/cover no-repeat;
}
.cta-ov {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,10,2,.90), rgba(138,80,40,.76));
}
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-title {
  font-family: var(--ff-h);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700; color: var(--white); margin-bottom: 14px;
}
.cta-sub { font-size: 15.5px; color: rgba(255,255,255,.78); line-height: 1.72; margin-bottom: 34px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══ CONTACT FORM ═══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 60px; align-items: start; }
.ci-title { font-family: var(--ff-h); font-size: 1.6rem; color: var(--brown); margin-bottom: 16px; }
.ci-p { font-size: 14.5px; color: var(--gray); line-height: 1.75; margin-bottom: 28px; }
.ci-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.ci-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--g4), var(--g7));
  border-radius: 11px; display: flex; align-items: center;
  justify-content: center; font-size: 15px; color: var(--white);
}
.ci-row strong { display: block; font-size: 12px; color: var(--g7); margin-bottom: 1px; }
.ci-row span   { font-size: 14px; color: var(--brown); }
.form-box { background: var(--white); border-radius: 20px; padding: 38px; box-shadow: var(--sh-md); }
.form-box h3 { font-family: var(--ff-h); font-size: 1.45rem; color: var(--brown); margin-bottom: 22px; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 12.5px; font-weight: 600; color: var(--brown); margin-bottom: 5px; }
.fc {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--creamD); border-radius: 10px;
  font-family: var(--ff-b); font-size: 13.5px; color: var(--brown);
  background: var(--cream); transition: var(--ease);
}
.fc:focus { outline: none; border-color: var(--g4); background: var(--white); box-shadow: 0 0 0 3px rgba(203,148,104,.15); }
textarea.fc { resize: vertical; min-height: 96px; }

/* ══ FAQ ACCORDION ══════════════════════════════════════════ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: var(--sh-sm); border: 1px solid var(--creamD);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 14.5px;
  color: var(--brown); transition: var(--ease); gap: 12px;
}
.faq-q:hover { color: var(--g7); }
.faq-q i { color: var(--g5); font-size: 13px; transition: transform var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  font-size: 14px; color: var(--gray); line-height: 1.75;
  max-height: 0; overflow: hidden; padding: 0 24px;
  transition: max-height .45s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ══ FOOTER ═════════════════════════════════════════════════ */
footer { background: var(--dark); }
.ft-top { padding: 68px 0 46px; }
.ft-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.ft-logo { height: 80px; width: auto; object-fit: contain; margin-bottom: 14px; }
.ft-desc { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.72; margin-bottom: 18px; max-width: 270px; }
.ft-soc { display: flex; gap: 9px; }
.ft-s {
  width: 34px; height: 34px; border: 1px solid rgba(203,148,104,.38);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--g4); font-size: 13px; transition: var(--ease);
}
.ft-s:hover { background: var(--g5); border-color: var(--g5); color: var(--white); }
.ft-col-h {
  font-family: var(--ff-h); font-size: .95rem; color: var(--white);
  margin-bottom: 18px; padding-bottom: 9px; border-bottom: 1px solid rgba(203,148,104,.28);
}
.ft-links li { margin-bottom: 9px; }
.ft-links a {
  font-size: 13px; color: rgba(255,255,255,.55); transition: var(--ease);
  display: flex; align-items: center; gap: 6px;
}
.ft-links a:hover { color: var(--g4); padding-left: 3px; }
.ft-links a i { font-size: 9.5px; color: var(--g6); }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.38); flex-wrap: wrap; gap: 8px;
}
.ft-bottom a { color: var(--g4); }

/* ══ SCROLL-TOP ═════════════════════════════════════════════ */
#stb {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--g4), var(--g8));
  color: var(--white); font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md); opacity: 0; transform: translateY(18px); transition: var(--ease);
}
#stb.show { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ═════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .srv-grid      { grid-template-columns: repeat(2,1fr); }
  .courses-grid  { grid-template-columns: repeat(2,1fr); }
  .why-grid      { grid-template-columns: repeat(2,1fr); }
  .team-grid     { grid-template-columns: repeat(2,1fr); }
  .ft-grid       { grid-template-columns: repeat(2,1fr); }
  .about-grid    { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 340px; }
  .about-badge   { bottom: 10px; right: 10px; }
}
@media (max-width: 768px) {
  .stats-row     { grid-template-columns: repeat(2,1fr); }
  .srv-grid, .courses-grid, .why-grid, .testi-grid { grid-template-columns: 1fr; }
  .gal-grid      { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gal-item:nth-child(1), .gal-item:nth-child(5) { grid-column: span 2; }
  .gal-item      { height: 200px; }
  .team-grid     { grid-template-columns: repeat(2,1fr); }
  .contact-grid  { grid-template-columns: 1fr; }
  .ft-grid       { grid-template-columns: 1fr; }
  .f2            { grid-template-columns: 1fr; }
  .hamburger     { display: flex; }
  .sp            { padding: 64px 0; }

  .nav-links     { display: none !important; }

  /* Right-side Drawer */
  .drawer-backdrop {
    display: none; position: fixed; inset: 0;
    background: rgba(26,10,2,.55); backdrop-filter: blur(3px);
    z-index: 8000; opacity: 0; transition: opacity .35s ease;
  }
  /*.drawer-backdrop.show    { display: block; }*/
  .drawer-backdrop.visible { opacity: 1; }
  .nav-links {
    position: fixed !important; top: 0; right: 0; bottom: 0; width: 280px;
    background: var(--dark); flex-direction: column !important;
    align-items: flex-start !important; justify-content: flex-start !important;
    padding: 0 0 32px; gap: 0 !important; z-index: 9000;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; box-shadow: -8px 0 40px rgba(0,0,0,.45);
  }
  .nav-links.open {
    display: flex !important;
    transform: translateX(0) !important;
  }
  .drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; border-bottom: 1px solid rgba(203,148,104,.18);
    width: 100%; margin-bottom: 8px;
  }
  .drawer-logo { height: 44px; width: auto; object-fit: contain; }
  .drawer-close {
    width: 34px; height: 34px; background: rgba(203,148,104,.15);
    border: 1px solid rgba(203,148,104,.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--g4); font-size: 16px; cursor: pointer; transition: var(--ease); flex-shrink: 0;
  }
  .drawer-close:hover { background: var(--g4); color: var(--white); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: flex !important; align-items: center; gap: 12px;
    font-size: 15px !important; color: rgba(255,255,255,.80) !important;
    padding: 14px 22px !important; border-bottom: 1px solid rgba(255,255,255,.05);
    transition: var(--ease) !important;
  }
  .nav-links a::after { display: none !important; }
  .nav-links a:hover { color: var(--g4) !important; background: rgba(203,148,104,.08); padding-left: 28px !important; }
  .nav-links .nav-cta {
    margin: 20px 22px 0 !important; border-radius: 50px !important; padding: 13px 22px !important;
    justify-content: center; background: linear-gradient(135deg, var(--g4), var(--g8)) !important;
    color: var(--white) !important; border-bottom: none !important;
  }
  .nav-links .nav-cta:hover { padding-left: 22px !important; }
  .drawer-foot {
    margin-top: auto; padding: 20px 22px 0; width: 100%;
    border-top: 1px solid rgba(203,148,104,.15);
  }
  .drawer-foot-label { font-size: 10px; letter-spacing: 2px; color: var(--g6); text-transform: uppercase; margin-bottom: 12px; }
  .drawer-socials { display: flex; gap: 10px; }
  .drawer-soc {
    width: 34px; height: 34px; border: 1px solid rgba(203,148,104,.35);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: var(--g4); font-size: 13px; transition: var(--ease);
  }
  .drawer-soc:hover { background: var(--g4); color: var(--white); border-color: var(--g4); }
  .tabs { gap: 6px; }
  .cta-section { padding: 72px 24px; }
  .page-hero { padding: 120px 0 56px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════════════════
   Services dropdown submenu (desktop hover · mobile accordion)
═══════════════════════════════════════════════════════════ */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a .sub-caret { font-size: .7em; margin-left: 5px; transition: transform .25s ease; }
.nav-links .sub-toggle { display: none; }

.nav-links .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 256px;
  background: #fff; border-radius: 12px; padding: 10px; margin: 0; list-style: none;
  box-shadow: 0 18px 44px rgba(60,40,25,.18);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s; z-index: 1200;
}
.nav-links .has-sub:hover > .sub-menu,
.nav-links .has-sub:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-links .has-sub:hover > a .sub-caret { transform: rotate(180deg); }
.nav-links .sub-menu li { width: 100%; }
.nav-links .sub-menu a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px;
  color: var(--brown) !important; white-space: nowrap; font-size: .95rem;
}
.nav-links .sub-menu a i { width: 18px; color: var(--g4); text-align: center; }
.nav-links .sub-menu a::after { display: none !important; }
.nav-links .sub-menu a:hover { background: var(--cream); color: var(--g4) !important; }

@media (max-width: 768px) {
  /* Mobile drawer: Services sub-items collapse behind a +/- toggle. */
  .nav-links .has-sub { position: static; display: flex; flex-wrap: wrap; align-items: center; }
  .nav-links .has-sub > a { flex: 1 1 auto; }
  .nav-links .has-sub > a .sub-caret { display: none; }
  .nav-links .sub-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; flex: 0 0 38px; margin-right: 6px;
    background: rgba(255,255,255,.10); border: none; border-radius: 8px;
    color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
  }
  .nav-links .sub-toggle i { display: none; }
  .nav-links .sub-toggle::before { content: "+"; }
  .nav-links .has-sub.open .sub-toggle::before { content: "\2212"; }
  .nav-links .sub-toggle:hover { background: var(--g4); }
  .nav-links .sub-menu {
    position: static; flex: 1 1 100%; width: 100%;
    opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: rgba(0,0,0,.22); border-left: 3px solid var(--g4);
    border-radius: 8px; margin: 2px 0 10px; padding: 0 6px;
    max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  }
  .nav-links .has-sub.open .sub-menu { max-height: 600px; padding: 6px; }
  .nav-links .sub-menu a { color: rgba(255,255,255,.82) !important; padding-left: 20px !important; font-size: .92rem; }
  .nav-links .sub-menu a i { color: var(--g4); }
  .nav-links .sub-menu a:hover { color: #fff !important; background: rgba(255,255,255,.08); padding-left: 24px !important; }
}

/* ═══════════════════════════════════════════════════════════
   Service detail page — gallery + other-services strip
═══════════════════════════════════════════════════════════ */
.svc-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-gallery-item { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 30px rgba(60,40,25,.12); }
.svc-gallery-item img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform .5s ease; }
.svc-gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .svc-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-gallery { grid-template-columns: 1fr; } .svc-gallery-item img { height: 240px; } }

.svc-other-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.svc-other-card {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: #fff;
  border: 1px solid rgba(120,90,60,.14); border-radius: 14px; text-decoration: none; color: var(--brown);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-other-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(60,40,25,.14); border-color: var(--g4); }
.svc-other-ico { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--cream); color: var(--g4); flex: 0 0 46px; }
.svc-other-name { font-weight: 600; flex: 1; }
.svc-other-go { color: var(--g4); }
