/* ── TOKENS ── */
:root {
  --bg: #080810;
  --bg2: #0e0e18;
  --bg3: #13131e;
  --gold: #c9a84c;
  --gold2: #e8c96a;
  --gold3: #f5e6b8;
  --gold-dim: rgba(201, 168, 76, 0.18);
  --gold-glow: rgba(201, 168, 76, 0.35);
  --pink: #e8a0b4;
  --pink2: #f5c6d8;
  --white: #faf8f2;
  --muted: rgba(250, 248, 242, 0.55);
  --border: rgba(201, 168, 76, 0.2);
  --border2: rgba(201, 168, 76, 0.08);
  --card: rgba(255, 255, 255, 0.03);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  --f-display: "Cormorant", serif;
  --f-head: "Tenor Sans", sans-serif;
  --f-body: "Raleway", sans-serif;
}

/* ── RESET ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}

/* ── ANNOUNCEMENT BAR ── */
.topbar {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    #b8860b 50%,
    var(--gold) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  position: relative;
  z-index: 10;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.topbar a {
  color: var(--bg);
  text-decoration: underline;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 16, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
.nav-brand {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav-brand small {
  display: block;
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--f-body);
  margin-top: 0.1rem;
}
.nav-links {
  display: none;
  gap: 2rem;
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 5% 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 50%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 80% at 80% 30%,
      rgba(232, 160, 180, 0.05) 0%,
      transparent 60%
    ),
    url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1800&q=80")
      center/cover no-repeat;
  filter: brightness(0.18);
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 16, 0.98) 0%,
    rgba(8, 8, 16, 0.7) 55%,
    rgba(8, 8, 16, 0.4) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 4rem;
  }
}

/* LEFT */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  background: var(--gold-dim);
  color: var(--gold2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 2px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.5s ease both;
}
.hero-eyebrow::before {
  content: "✦";
  font-size: 0.6rem;
}

.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-h1 .gold {
  color: var(--gold);
}
.hero-h1 .italic {
  font-style: italic;
  color: var(--gold2);
}

.hero-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.6s 0.15s ease both;
}

.hero-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2rem;
  font-weight: 400;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.25s ease both;
}
.pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold3);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}

/* Welcome Voice Button */
.voice-btn {
  background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
  color: #1a1a1a;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.voice-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.voice-btn:active {
  transform: scale(0.98);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border2);
  animation: fadeUp 0.6s 0.3s ease both;
}
.ht-item {
  line-height: 1;
}
.ht-num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.ht-lbl {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

/* ── FORM CARD ── */
.form-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(201, 168, 76, 0.05) inset;
  animation: fadeUp 0.7s 0.15s ease both;
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold2),
    var(--gold),
    transparent
  );
}
.fc-header {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.15),
    rgba(201, 168, 76, 0.05)
  );
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.8rem;
  text-align: center;
}
.fc-header h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold2);
  margin-bottom: 0.2rem;
}
.fc-header p {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}
.fc-body {
  padding: 1.6rem 1.8rem;
}

.fg {
  margin-bottom: 0.95rem;
}
.fg label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.fg input,
.fg select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 0.78rem 1rem;
  font-size: 0.86rem;
  font-family: var(--f-body);
  color: var(--white);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
}
.fg input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.fg input:focus,
.fg select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}
.fg select option {
  background: var(--bg3);
  color: var(--white);
}

.btn-gold {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    #b8860b 0%,
    var(--gold) 40%,
    var(--gold2) 100%
  );
  color: var(--bg);
  border: none;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--f-body);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
  margin-top: 0.4rem;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--gold-glow);
  filter: brightness(1.1);
}
.form-note {
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.success-msg {
  display: none;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1.2rem;
  text-align: center;
  color: var(--gold2);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ── GOLD DIVIDER ── */
.gdiv {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}

/* ── SECTION BASE ── */
.sec {
  padding: 90px 5%;
  position: relative;
}
.sec.dark {
  background: var(--bg2);
}
.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.sec-label::before,
.sec-label::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
h2.sh {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.8rem;
}
h2.sh em {
  font-style: italic;
  color: var(--gold);
}
.sdesc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
}

/* ── ABOUT (LOCATION) ── */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.about-workspace {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-workspace img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-workspace:hover img {
  transform: scale(1.05);
}

.about-location .sec-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.about-location h2 {
  font-family: var(--f-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-location h2 em {
  color: var(--gold);
  font-style: normal;
}

.location-details p {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(250, 248, 242, 0.78);
  line-height: 1.6;
}

.location-details .loc-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.location-details a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.location-details a:hover {
  color: var(--gold2);
}

.location-map {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-map iframe {
  display: block;
  width: 100%;
}

.about-location .cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}

.about-location .cta-btn:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

/* Mobile - Stack items vertically for straight alignment */
@media (max-width: 768px) {
  .about-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .about-workspace {
    width: 100%;
  }

  .about-workspace img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .about-location {
    width: 100%;
  }

  .about-location h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-location .sec-label {
    font-size: 0.7rem;
  }

  .location-map {
    width: 100%;
    margin-bottom: 1.2rem;
  }

  .location-map iframe {
    height: 200px;
  }

  .location-details p {
    font-size: 0.85rem;
  }

  .about-location .cta-btn {
    display: block;
    text-align: center;
    padding: 0.9rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-workspace img {
    height: 180px;
  }

  .location-map iframe {
    height: 180px;
  }
}

/* ── COURSES ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.cc {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform 0.35s,
    border-color 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}
.cc:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.12);
}
.cc-img-wrap {
  overflow: hidden;
  position: relative;
}
.cc-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
  filter: brightness(0.85);
}
.cc:hover .cc-img {
  transform: scale(1.08);
  filter: brightness(0.95);
}
.cc-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 16, 0.9));
}
.cc-tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.cc-body {
  padding: 1.3rem 1.2rem;
}
.cc-name {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.cc-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.cc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border2);
}
.cc-dur {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
}
.cc-btn {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.cc-btn:hover {
  color: var(--gold2);
}

/* ── WHY US ── */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3.5rem;
}
@media (min-width: 900px) {
  .why-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.wc {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 1.5rem 1.3rem;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.wc:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.wc-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
}
.wc-name {
  font-family: var(--f-head);
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.wc-text {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

.why-text-side .sdesc {
  max-width: 100%;
  margin-bottom: 1.5rem;
}
.why-list {
  list-style: none;
  margin-top: 1rem;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border2);
  font-size: 0.85rem;
  color: rgba(250, 248, 242, 0.75);
  line-height: 1.6;
}
.why-list li:last-child {
  border: none;
}
.why-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ── CAREER ── */
.career-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3.5rem;
}
@media (min-width: 900px) {
  .career-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sc {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: border-color 0.3s;
}
.sc:hover {
  border-color: var(--gold);
}
.sc-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.sc-lbl {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.5;
}
.career-list {
  list-style: none;
  margin-top: 1.5rem;
}
.career-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border2);
  font-size: 0.87rem;
  color: rgba(250, 248, 242, 0.78);
  line-height: 1.55;
}
.career-list li:last-child {
  border: none;
}
.ci {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.tc {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 1.8rem;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.tc:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-5px);
}
.tc-quote {
  font-family: var(--f-display);
  font-size: 5rem;
  line-height: 0.7;
  color: rgba(201, 168, 76, 0.1);
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
}
.tc-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}
.tc-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.tc-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tc {
    padding: 1rem;
  }

  .tc-quote {
    font-size: 3rem;
  }

  .tc-text {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }

  .tc-author {
    gap: 0.5rem;
  }

  .tc-av {
    width: 36px;
    height: 30px;
  }

  .tc-name {
    font-size: 0.85rem;
  }

  .tc-role {
    font-size: 0.7rem;
  }
}
.tc-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.1rem;
}
.tc-role {
  font-size: 0.7rem;
  color: var(--gold);
}

/* ── FAQ ── */
.faq-wrap {
  max-width: 780px;
  margin: 3.5rem auto 0;
}
.fi {
  border: 1px solid var(--border2);
  border-radius: 4px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.fi.open {
  border-color: var(--gold);
}
.fq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  gap: 1rem;
  user-select: none;
  transition: color 0.2s;
}
.fq:hover {
  color: var(--gold);
}
.fi-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    background 0.2s;
}
.fi.open .fi-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--bg);
}
.fa {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
}
.fi.open .fa {
  max-height: 220px;
  padding-bottom: 1.3rem;
}

/* ── BOTTOM CTA ── */
#cta {
  background:
    linear-gradient(
      135deg,
      rgba(8, 8, 16, 0.98) 0%,
      rgba(14, 14, 24, 0.95) 100%
    ),
    url("https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?w=1600&q=80")
      center/cover;
  padding: 90px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  background: var(--gold-dim);
  color: var(--gold2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.cta-h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-h2 em {
  font-style: italic;
  color: var(--gold);
}
.cta-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  padding: 2.5rem 5%;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.f-brand {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.f-info {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.9;
}
.f-info a {
  color: var(--gold);
  text-decoration: none;
}
.fl h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.3);
  margin-bottom: 0.8rem;
}
.fl a {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}
.fl a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border2);
  font-size: 0.7rem;
  color: rgba(250, 248, 242, 0.2);
  text-align: center;
}

/* ── FLOATING ── */
.wa {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 300;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.wa:hover {
  transform: scale(1.12);
}
.wa-tip {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg3);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa:hover .wa-tip {
  opacity: 1;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 299;
  background: linear-gradient(
    90deg,
    #b8860b,
    var(--gold),
    var(--gold2),
    var(--gold),
    #b8860b
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(201, 168, 76, 0.3);
  transition: opacity 0.3s;
}
.sticky-cta span {
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.sticky-cta a {
  background: var(--bg);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.sticky-cta a:hover {
  background: var(--bg3);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ═══════════ CERTIFICATES SLIDER ═══════════ */
.cert-slider {
  overflow: hidden;
  padding: 2rem 0;
  margin-top: 2rem;
}
.cert-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}
.cert-track:hover {
  animation-play-state: paused;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}
.cert-card {
  flex-shrink: 0;
  width: 280px;
  height: 300px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}
.cert-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.15);
}
.cert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
@media (max-width: 600px) {
  .cert-card {
    width: 220px;
    height: 220px;
  }
}

/* Course Modal */
.course-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 30px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.course-modal-content {
  background-color: var(--card);
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  animation: slideIn 0.3s;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.course-modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.course-modal-close:hover {
  color: var(--gold);
}

.course-modal-img {
  width: 100%;
  height: 280px !important;
  object-fit: cover;
}

.course-modal-title {
  font-family: var(--f-head);
  color: var(--text);
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 1.5rem;
}

.course-modal-desc {
  color: var(--text2);
  padding: 0 20px 15px;
  margin: 0;
  line-height: 1.6;
}

.course-modal-details {
  padding: 0 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-modal-details span {
  background: var(--bg);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text2);
}

.course-modal-btn {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  text-align: center;
  padding: 15px 20px;
  margin: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0 0 12px 12px;
  transition: all 0.3s;
}

.course-modal-btn:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  transform: translateY(-2px);
}

/* Responsive Modal */
@media (max-width: 600px) {
  .course-modal-content {
    margin: 10% auto;
    width: 95%;
    max-width: none;
  }

  .course-modal-img {
    height: 250px !important;
  }

  .course-modal-title {
    font-size: 1.2rem;
    padding: 15px 15px 8px;
    text-align: center;
  }

  .course-modal-desc {
    padding: 0 15px 12px;
    font-size: 0.9rem;
    text-align: center;
  }

  .course-modal-details {
    padding: 0 15px 15px;
    justify-content: center;
  }

  .course-modal-details span {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .course-modal-btn {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

/* Our Works Modal */
.works-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  animation: fadeIn 0.3s;
}

.works-modal-content {
  background-color: var(--card);
  margin: 5% auto;
  padding: 30px;
  width: 90%;
  max-width: 1000px;
  border-radius: 10px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.works-modal-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  color: var(--text);
  cursor: pointer;
  z-index: 10;
}

.works-modal-close:hover {
  color: var(--gold);
}

.works-modal-title {
  font-family: var(--f-head);
  font-size: 2rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 25px;
}

.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.works-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.works-gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .works-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .works-gallery img {
    height: 150px;
  }
}

/* Instagram Videos Section */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* Tablet */
@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .insta-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .insta-thumb {
    aspect-ratio: 16/9;
  }
}

/* Footer Mobile Responsive */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .fl {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Workspace Section */
.workspace-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.workspace-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.workspace-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.workspace-image:hover img {
  transform: scale(1.05);
}

.workspace-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold);
  padding: 10px 25px;
  border-radius: 30px;
  font-family: var(--f-head);
  font-size: 14px;
  white-space: nowrap;
}

.workspace-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.workspace-map iframe {
  width: 100%;
  height: 100%;
}

.map-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold);
  padding: 10px 25px;
  border-radius: 30px;
  font-family: var(--f-head);
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .workspace-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.insta-video {
  cursor: pointer;
  transition: all 0.3s ease;
}

.insta-video:hover {
  transform: translateY(-5px);
}

.insta-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.insta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insta-video:hover .insta-thumb img {
  transform: scale(1.05);
}

.insta-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #e1306c;
  transition: all 0.3s ease;
}

.insta-video:hover .insta-play {
  background: #e1306c;
  color: #fff;
}

.insta-label {
  text-align: center;
  padding: 10px;
  font-size: 0.75rem;
  color: var(--text2);
}

.insta-follow-btn {
  display: inline-block;
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.insta-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .insta-thumb {
    aspect-ratio: 1/1;
  }
}
