/* ── 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;
}

/* ── PAGE LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(201, 168, 76, 0.2),
      rgba(8, 8, 16, 0.95) 55%
    ),
    linear-gradient(135deg, #0f0f1e, #06060f);
  backdrop-filter: blur(4px);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  background: rgba(4, 4, 10, 0.72);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.loader-logo img {
  width: 90px;
  max-width: 100%;
  display: block;
  margin: 0 auto 0.8rem;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.8));
}

.loader-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.spinner-ring {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid rgba(232, 160, 180, 0.24);
  border-top-color: var(--gold);
  animation: spinner-spin 0.7s linear infinite;
}

@keyframes spinner-spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  margin-top: 0.85rem;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── 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;
}

/* ── FLOATING SOCIAL ICONS ── */
.floating-social {
  position: fixed;
  bottom: 70px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.social-float {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.instagram-float {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737);
  color: white;
}

.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}

/* ── 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.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
.nav-brand {
  display: flex;
  align-items: center;
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav-logo {
  height: 50px;
  width: 100px;
}
.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: 30px;
  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;
}

/* Portfolio Page Styles */

/* Founder Hero Section */
.founder-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.founder-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;
}

.founder-hero-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%
  );
}

.founder-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .founder-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.founder-image-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.founder-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.founder-image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: 1;
}

.founder-intro {
  text-align: center;
}

@media (min-width: 900px) {
  .founder-intro {
    text-align: left;
  }
}

.founder-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.5rem;
}

.founder-eyebrow::before {
  content: "✦";
  font-size: 0.6rem;
}

.founder-name {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.founder-name .gold {
  color: var(--gold);
}

.founder-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.founder-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 900px) {
  .founder-social {
    justify-content: flex-start;
  }
}

.social-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* About Section */
.founder-about {
  padding: 60px 5%;
  background: var(--bg2);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  color: var(--muted);
  line-height: 1.9;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--gold2);
}

/* Achievements Section */
.founder-achievements {
  padding: 60px 5%;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .achievements-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.achievement-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.achievement-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.achievement-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.achievement-number {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.achievement-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin: 0.5rem 0;
}

.achievement-desc {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Experience Timeline */
.founder-experience {
  padding: 60px 5%;
  background: var(--bg2);
}

.timeline {
  max-width: 700px;
  margin: 3rem auto 0;
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-dot {
  position: absolute;
  left: -27px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg);
}

.timeline-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.timeline-year {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-family: var(--f-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.timeline-company {
  font-size: 0.9rem;
  color: var(--gold2);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Certifications */
.founder-certifications {
  padding: 60px 5%;
}

.certifications-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 700px;
  margin: 2rem auto 0;
}

@media (min-width: 600px) {
  .certifications-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem;
}

.cert-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}

.cert-info h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.cert-info p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* CTA Section */
.founder-cta {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  text-align: center;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 500px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Footer */
.founder-footer {
  padding: 40px 5% 20px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
}

/* Course Section Action Buttons */
.action-buttons-container {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-action {
  padding: 1rem 2rem;
  font-size: 0.9rem;
  min-width: 180px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-alt {
  background: transparent !important;
  border: 2px solid var(--gold) !important;
  color: var(--gold) !important;
  position: relative;
  overflow: hidden;
}

.btn-outline-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-outline-alt:hover::before {
  left: 100%;
}

.btn-outline-alt:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

/* Mobile Responsive for Buttons */
@media (max-width: 600px) {
  .action-buttons-container {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-action {
    width: 100%;
    max-width: 280px;
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* ═══════════ PORTFOLIO PAGE STYLES ═══════════ */

/* Hero Section */
.pf-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  overflow: hidden;
}

.pf-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 50%,
      rgba(201, 168, 76, 0.08) 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.15);
  z-index: 0;
}

.pf-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 16, 0.95) 0%,
    rgba(8, 8, 16, 0.6) 100%
  );
}

.pf-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pf-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.pf-intro {
  text-align: center;
}

@media (min-width: 900px) {
  .pf-intro {
    text-align: left;
  }
}

.pf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  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 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.pf-eyebrow::before {
  content: "✦";
}

.pf-name {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.pf-name .gold {
  color: var(--gold);
}

.pf-name em {
  font-style: italic;
  color: var(--gold2);
}

.pf-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pf-social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 900px) {
  .pf-social-links {
    justify-content: flex-start;
  }
}

.pf-social {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s;
}

.pf-social:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.pf-image-wrap {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.pf-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.pf-image-border {
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: 1;
}

/* Section Styles */
.pf-section {
  padding: 60px 5%;
}

.pf-dark {
  background: var(--bg2);
}

/* Highlights Grid */
.pf-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pf-highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pf-highlight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s;
}

.pf-highlight-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.pf-highlight-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.pf-highlight-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pf-highlight-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0.5rem;
}

/* Services Grid */
.pf-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 600px) {
  .pf-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .pf-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pf-service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.pf-service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.pf-service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pf-service-card h3 {
  font-family: var(--f-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.pf-service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Gallery Grid */
.pf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 600px) {
  .pf-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pf-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.pf-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.pf-gallery-item:hover img {
  transform: scale(1.1);
}

/* Testimonials */
.pf-testimonials {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pf-testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.pf-testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white);
  font-style: italic;
  margin-bottom: 1rem;
}

.pf-testimonial-author {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

/* Magazine Grid */
.pf-magazine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 600px) {
  .pf-magazine-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pf-magazine-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
  padding: 0.5rem;
}

.pf-magazine-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Contact */
.pf-contact-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pf-contact-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pf-contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.pf-contact-card:hover {
  border-color: var(--gold);
}

.pf-contact-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.pf-contact-card h3 {
  font-family: var(--f-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pf-contact-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA Section */
.pf-cta {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  text-align: center;
}

.pf-cta-text {
  font-size: 1rem;
  color: var(--muted);
  margin: 1rem 0 2rem;
}

.pf-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 500px) {
  .pf-cta-buttons {
    flex-direction: row;
  }
}

/* Footer */
.pf-footer {
  padding: 40px 5% 20px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.pf-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.pf-footer-brand h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pf-footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
}

.pf-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pf-footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.pf-footer-links a:hover {
  color: var(--gold);
}

.pf-footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
}

/* ── SECTION BASE ── */
.sec {
  padding: 30px 5%;
  position: relative;
}
.gdiv {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Mobile: About section fixes */
@media (max-width: 768px) {
  .sec {
    padding: 20px 4%;
  }

  #about {
    padding: 25px 0;
  }

  #about .sec-inner {
    padding: 0 4%;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  #about .sec-inner:first-child {
    margin-bottom: 15px;
  }

  #about .sec-inner .sh {
    font-size: 2rem;
  }

  h2.sh {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  #about .sec-inner .sdesc {
    font-size: 0.85rem;
  }

  .workspace-container {
    margin-top: 15px;
  }

  .why-wrap {
    margin-top: 20px;
    gap: 20px;
  }
}
.sec.dark {
  background: var(--bg2);
}
.sec-inner {
  max-width: 100%;
  margin: 0 auto;
}

#about .sec-inner:last-child {
  max-width: 100%;
  width: 100%;
  padding: 0 5%;
}

.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;
  margin-top: 20px;
}
.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(2.5rem, 5vw, 4rem);
  font-weight: 800;
  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;
  }

  h2.sh {
    font-size: clamp(1.8rem, 5.5vw, 2.5rem);
  }
}

/* ── COURSES ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

/* ═══════════ 3D FLIP COURSE CARDS ═══════════ */

.course-card {
  perspective: 1200px;
  height: 480px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.course-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  overflow-x: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

/* ── FRONT FACE ── */
.card-front {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-front .course-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-front .course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}

.card-front:hover .course-image img {
  transform: scale(1.08);
  filter: brightness(1);
}

.course-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 8, 16, 0.95));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
}

.course-tag {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
  align-self: flex-end;
}

.click-hint {
  font-size: 0.65rem;
  color: var(--gold2);
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  align-self: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.course-image:hover .click-hint {
  opacity: 1;
  transform: translateY(0);
}

.course-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-family: var(--f-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.course-description {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex: 1;
}

.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.course-duration {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Flip Button */
.flip-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 25px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--f-body);
  white-space: nowrap;
}

.flip-btn:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
  transform: scale(1.05);
}

/* ── BACK FACE ── */
.card-back {
  background: linear-gradient(
    160deg,
    rgba(20, 20, 32, 0.98) 0%,
    rgba(12, 12, 20, 0.99) 100%
  );
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  border-color: var(--gold);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.15),
    0 20px 50px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.back-header {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.2) 0%,
    rgba(201, 168, 76, 0.05) 100%
  );
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1.2rem 1.5rem;
  text-align: center;
  position: relative;
}

.back-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold2),
    var(--gold),
    transparent
  );
}

.back-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
  margin-bottom: 0.5rem;
}

.back-title {
  font-family: var(--f-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold2);
  letter-spacing: 0.02em;
}

.back-body {
  flex: 1;
  padding: 1.2rem 1.5rem;
}

.back-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.back-modules h4 {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.back-modules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.back-modules li {
  font-size: 0.78rem;
  color: rgba(250, 248, 242, 0.75);
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.4;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.back-modules li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
}

.back-modules li:last-child {
  border-bottom: none;
}

.back-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.back-stat {
  text-align: center;
}

.bs-num {
  display: block;
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.bs-label {
  display: block;
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.back-footer {
  display: flex;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(0, 0, 0, 0.2);
}

.flip-back-btn {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--f-body);
}

.flip-back-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.back-enroll-btn {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.6rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.back-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
  filter: brightness(1.1);
}

/* Card hover lift effect */
.course-card:hover .card-front {
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 168, 76, 0.2);
}

/* Scrollbar for back card content */
.card-back::-webkit-scrollbar {
  width: 4px;
}
.card-back::-webkit-scrollbar-track {
  background: transparent;
}
.card-back::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}



/* ═══════════ RESPONSIVE: FLIP CARDS ═══════════ */
@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .course-card {
    height: auto;
  }

  .card-inner {
    height: auto;
    position: relative;
  }

  .card-front {
    position: relative;
    inset: auto;
  }

  .card-back {
    position: absolute;
    inset: 0;
  }

  .card-front .course-image {
    height: 200px;
  }

  .course-content {
    padding: 1.2rem;
  }

  .course-title {
    font-size: 1.1rem;
  }

  .course-description {
    font-size: 0.8rem;
  }

  .back-header {
    padding: 1rem 1.2rem;
  }

  .back-title {
    font-size: 1.1rem;
  }

  .back-body {
    padding: 1rem 1.2rem;
  }

  .back-desc {
    font-size: 0.78rem;
  }

  .back-modules li {
    font-size: 0.72rem;
  }

  .back-footer {
    padding: 0.8rem 1.2rem;
    flex-direction: column;
    gap: 0.6rem;
  }

  .flip-back-btn,
  .back-enroll-btn {
    padding: 0.7rem;
  }

  .bs-num {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .course-card {
    height: auto;
  }

  .card-inner {
    height: auto;
    position: relative;
  }

  .card-front {
    position: relative;
    inset: auto;
  }

  .card-back {
    position: absolute;
    inset: 0;
  }

  .card-front .course-image {
    height: 180px;
  }

  .course-content {
    padding: 1rem;
  }

  .course-title {
    font-size: 1rem;
  }

  .course-description {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }

  .course-meta {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
  }

  .flip-btn {
    width: 100%;
    text-align: center;
  }

  .back-header {
    padding: 0.8rem 1rem;
  }

  .back-title {
    font-size: 1rem;
  }

  .back-body {
    padding: 0.8rem 1rem;
  }

  .back-desc {
    font-size: 0.72rem;
    margin-bottom: 0.8rem;
  }

  .back-modules h4 {
    font-size: 0.65rem;
  }

  .back-modules li {
    font-size: 0.68rem;
    padding: 0.3rem 0;
    padding-left: 1rem;
  }

  .back-stats {
    margin-top: 0.8rem;
    padding: 0.6rem 0;
  }

  .bs-num {
    font-size: 1.1rem;
  }

  .bs-label {
    font-size: 0.55rem;
  }
}

/* ═══════════ WHY CHOOSE US LIST ═══════════ */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  transition: all 0.3s ease;
}

.why-list-item:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.12);
  transform: translateX(8px);
}

.why-list-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.why-list-text {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold2);
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .why-list {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .why-list-item {
    padding: 1rem;
    gap: 0.8rem;
  }

  .why-list-icon {
    font-size: 1.3rem;
    width: 42px;
    height: 42px;
  }

  .why-list-text {
    font-size: 0.85rem;
  }
}

/* Remove gaps around Why Choose Us section */
#why-us {
  padding-top: 0;
  padding-bottom: 0;
}

/* ── INFINITE SCROLL MARQUEE ── */
.why-scroll-container {
  overflow: hidden;
  background: linear-gradient(90deg, var(--bg2), var(--bg3), var(--bg2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: relative;
}

.why-scroll-container::before,
.why-scroll-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.why-scroll-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg2), transparent);
}

.why-scroll-container::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg2), transparent);
}

.why-scroll-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.why-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.why-scroll-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.why-scroll-icon {
  font-size: 1.3rem;
}

.why-scroll-text {
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#why-us + .gdiv {
  margin-top: 0;
}

/* Remove gap after hero */
#hero + .gdiv {
  margin: 0;
  height: 1px;
}


/* Why choose us section */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 5rem;
  padding: 2rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 900px) {
  .why-wrap {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* Mobile: Stack everything vertically */
@media (max-width: 768px) {
  .why-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
    padding: 0px 0px;
    width: calc(100% - 30px);
    margin-left: 12px;
  }

  .why-text-side {
    width: 100%;
    padding: 15px 10px;
    text-align: center;
  }

  .why-text-side .sec-label {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .why-text-side .sh {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .why-text-side .sh em {
    display: inline;
  }

  .why-text-side .sdesc {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .why-features-carousel {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    overflow-x: hidden;
  }

  .why-features-track {
    gap: 12px;
    animation-duration: 25s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }

  .why-feature-card {
    width: 160px;
    padding: 15px 12px;
    border-radius: 8px;
    gap: 8px;
  }

  .why-feature-icon {
    font-size: 1rem;
  }

  .why-feature-text {
    font-size: 0.75rem;
    line-height: 1.2;
  }
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
.wc {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  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.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.why-text-side {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-text-side .sdesc {
  max-width: 100%;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  margin-left: auto;
  margin-right: auto;
}
.why-list {
  list-style: none;
  margin-top: 1.5rem;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border2);
  font-size: 1rem;
  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.8rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ── WHY FEATURES INFINITE SCROLL ── */
.why-features-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-features-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollWhy 25s linear infinite;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}

@keyframes scrollWhy {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile: Pause by default, show on tap */
@media (max-width: 768px) {
  .why-features-track {
    animation: scrollWhy 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }

  .why-features-carousel:hover .why-features-track {
    animation-play-state: paused;
  }
}

.why-feature-card {
  flex-shrink: 0;
  width: 280px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(30, 30, 30, 0.8) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  justify-content: center;
}

.why-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.why-feature-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-text {
  font-size: 1rem;
  color: rgba(250, 248, 242, 0.9);
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}

/* Pause on hover */
.why-features-carousel:hover .why-features-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 600px) {
  .why-features-carousel {
    padding: 15px 0;
    margin: 20px 0;
  }

  .why-feature-card {
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    gap: 12px;
  }

  .why-feature-text {
    font-size: 0.9rem;
  }

  .why-feature-icon {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .why-features-carousel {
    padding: 12px 0;
    margin: 15px 0;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .why-feature-card {
    width: 180px;
    padding: 15px;
    border-radius: 8px;
    gap: 10px;
    min-height: 70px;
  }

  .why-feature-icon {
    font-size: 1.1rem;
  }

  .why-feature-text {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .why-features-track {
    gap: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .why-feature-card {
    width: 160px;
    padding: 12px;
  }

  .why-feature-text {
    font-size: 0.8rem;
  }
}

/* ── 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: 1rem 2rem 1.2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 100px;
 
}
.footer-col {
  min-width: 220px;
  flex: 1 1 200px;
  
}
.footer-col:where(:first-child) {
  min-width: 300px;
}
.f-brand {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.f-info {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.75;
}
.f-info a {
  color: var(--gold);
  text-decoration: none;
}
.f-info a:hover {
  text-decoration: underline;
}
.fl h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.35);
  margin-bottom: 0.6rem;
}
.fl a {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.3rem;
  transition: color 0.2s ease;
}
.fl a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: 1100px;
  margin: 1.2rem auto 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border2);
  font-size: 0.68rem;
  color: rgba(250, 248, 242, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}
.footer-bottom-left {
  color: rgba(250, 248, 242, 0.45);
  font-size: 0.73rem;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 920px) {
  footer {
    padding: 10px 1%;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 0.8rem;
    width: 100%;
  }
  .footer-col:first-child {
    grid-column: 1 / -1;
  }
  .footer-col:not(:first-child) {
    width: 100%;
  }
  .footer-col.fl:nth-child(2) {
    grid-column: 1;
  }
  .footer-col.fl:nth-child(3) {
    grid-column: 2;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 0.66rem;
    padding-top: 0.7rem;
  }
  .footer-bottom-left {
    margin-bottom: 0.35rem;
  }
}

@media (max-width: 520px) {
  .f-brand {
    font-size: 1.05rem;
  }
  .f-info,
  .fl a,
  .footer-bottom-left,
  .footer-bottom {
    font-size: 0.64rem;
  }
  .fl h4 {
    font-size: 0.66rem;
  }
}

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .f-info,
  .fl {
    width: 100%;
  }

  .fl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .fl h4 {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
  }

  .fl a {
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
  }

  .footer-bottom {
    font-size: 0.65rem;
    padding-top: 0.8rem;
  }


@media (max-width: 600px) {
  .footer-inner {
    padding: 0 0.75rem;
  }

  .fl {
    display: block;
  }

  .fl h4 {
    margin-top: 0.55rem;
  }

  .footer-bottom {
    padding-top: 0.7rem;
  }
}

/* ── 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);
}

/* Mobile: Show reveal immediately */
@media (max-width: 768px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── 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;
  }
}

/* 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;
    display: flex;
    justify-content: space-around;
  }
  .fl {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Workspace Section */
.workspace-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 650px;
  margin: 30px auto 0;
}

.workspace-slider {
  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: 25%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold);
  padding: 20px 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;
}

/* Workspace Slider */
.workspace-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}

.workspace-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.workspace-slide {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
}

.workspace-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workspace-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.workspace-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.workspace-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.workspace-label {
  position: relative;
  display: block;
  text-align: center;
  margin: 15px auto 0;
  background: rgba(0, 0, 0, 0.85);
  color: var(--gold);
  padding: 12px 30px;
  border-radius: 25px;
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: fit-content;
  min-width: 200px;
}

/* Desktop */
@media (min-width: 769px) {
  .workspace-label {
    padding: 14px 35px;
    font-size: 18px;
    margin: 20px auto 0;
    margin-top: 30px;
  }
}

/* Mobile: Workspace slider */
@media (max-width: 768px) {
  .workspace-slider {
    border-radius: 10px;
  }

  .workspace-slide {
    aspect-ratio: 16/9;
  }

  .workspace-label {
    margin-top: 25px;
    padding: 10px 25px;
    font-size: 14px;
    min-width: 150px;
  }

  .workspace-dots {
    margin-top: 12px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .workspace-label {
    padding: 8px 20px;
    font-size: 13px;
    min-width: 120px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .workspace-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    width: calc(100% - 20px);
    margin: 15px auto;
    max-width: 100%;
  }

  .workspace-slider {
    width: 100%;
    border-radius: 8px;
  }

  .workspace-slide {
    aspect-ratio: 16/9;
  }

  .workspace-label {
    margin: 10px auto 0;
    padding: 8px 20px;
    font-size: 13px;
    min-width: 140px;
  }

  .workspace-dots {
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .workspace-container {
    gap: 8px;
    padding: 10px;
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .workspace-slider {
    width: 100%;
    border-radius: 6px;
  }

  .workspace-slide {
    aspect-ratio: 4/3;
  }

  .workspace-label {
    padding: 10px 18px;
    font-size: 12px;
    min-width: 120px;
    margin: 8px auto 0;
    margin-top: 10%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}

/* Ensure heading is always visible */
.why-text-side .sh {
  color: var(--white);
  display: block;
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

/* Mobile: Center Why Choose section */
@media (max-width: 768px) {
  .why-text-side {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 15px;
    position: relative;
    z-index: 1;
  }

  .why-text-side .sec-label {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .why-text-side .sec-label,
  .why-text-side .sh,
  .why-text-side .sdesc {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .why-text-side .sh {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--white) !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .why-text-side .sdesc {
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .why-features-carousel {
    text-align: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }

  .why-features-track {
    width: max-content;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }
}

/* Ensure carousel stays within bounds */
.why-features-carousel {
  overflow: hidden;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.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;
  }
}

/* ═══════════ MAIN PAGE MOBILE SPACING ═══════════ */

@media (max-width: 768px) {
  /* Consistent section padding */
  .sec {
    padding: 25px 4%;
  }

  /* Divider - compact and consistent */
  .gdiv {
    height: 1px;
  }

  /* Hero section */
  #hero {
    padding: 60px 4%;
    min-height: auto;
  }

  .hero-inner {
    gap: 2rem;
  }

  /* CTA section */
  #cta {
    padding: 50px 4%;
  }

  /* Reduce excessive inner margins */
  .faq-wrap {
    margin-top: 2rem;
  }

  .why-list {
    margin-top: 1.5rem;
  }

  .courses-grid {
    margin-top: 2rem;
  }

  .shop-location-container {
    margin-top: 30px;
    padding-top: 20px;
  }

  /* Section labels consistent spacing */
  .sec-label {
    margin-top: 10px;
    margin-bottom: 0.6rem;
  }
}

@media (max-width: 480px) {
  /* Tighter spacing on small phones */
  .sec {
    padding: 20px 4%;
  }

  #hero {
    padding: 50px 4%;
  }

  #cta {
    padding: 40px 4%;
  }

  .faq-wrap {
    margin-top: 1.5rem;
  }

  .why-list {
    margin-top: 1.2rem;
  }

  .courses-grid {
    margin-top: 1.5rem;
  }

  .shop-location-container {
    margin-top: 25px;
    padding-top: 15px;
  }
}

/* ═══════════ PORTFOLIO PAGE MOBILE STYLES ═══════════ */

@media (max-width: 768px) {
  /* Top Bar - More compact */
  .topbar {
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
  }

  /* Navigation - More compact */
  nav {
    padding: 1rem 4%;
  }

  .nav-logo {
    height: 32px;
    width: 70px;
  }

  .nav-cta {
    padding: 0.4rem 1rem;
    font-size: 12px;
  }

  /* Portfolio Hero - Significantly more compact */
  .pf-hero {
    min-height: 60vh;
    padding: 70px 4% 40px;
  }

  .pf-hero-inner {
    gap: 1.5rem;
  }

  .pf-eyebrow {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
  }

  .pf-name {
    font-size: clamp(2.2rem, 8vw, 3rem);
    margin-bottom: 0.8rem;
  }

  .pf-tagline {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .pf-social-links {
    gap: 0.6rem;
  }

  .pf-social {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .pf-image-wrap {
    max-width: 280px;
  }

  .pf-image-border {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
  }

  /* Portfolio Sections - More compact */
  .pf-section {
    padding: 35px 4%;
  }

  .sec-label {
    font-size: 0.72rem;
    margin-bottom: 0.6rem;
    margin-top: 10px;
  }

  .sec-label::after {
    width: 20px;
  }

  h2.sh {
    font-size: clamp(2rem, 7vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  /* Highlights Grid - More compact */
  .pf-highlights-grid {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .pf-highlight-card {
    padding: 1.2rem 0.8rem;
  }

  .pf-highlight-icon {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
  }

  .pf-highlight-num {
    font-size: 2.2rem;
  }

  .pf-highlight-title {
    font-size: 1rem;
    margin-top: 0.3rem;
  }

  /* Services Grid - More compact */
  .pf-services-grid {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .pf-service-card {
    padding: 1.2rem 1rem;
  }

  .pf-service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.6rem;
  }

  .pf-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .pf-service-card p {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  /* Gallery Grid - More compact */
  .pf-gallery-grid {
    gap: 0.6rem;
    margin-top: 1.5rem;
  }

  /* Testimonials - More compact */
  .pf-testimonials {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .pf-testimonial {
    padding: 1.2rem;
  }

  .pf-testimonial-text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
  }

  .pf-testimonial-author {
    font-size: 1.05rem;
  }

  /* Magazine Grid - More compact */
  .pf-magazine-grid {
    gap: 0.6rem;
    margin-top: 1.5rem;
  }

  .pf-magazine-item {
    padding: 0.4rem;
  }

  /* Contact Grid - More compact */
  .pf-contact-wrap {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .pf-contact-card {
    padding: 1rem;
  }

  .pf-contact-icon {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
  }

  .pf-contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .pf-contact-card p {
    font-size: 1.02rem;
    line-height: 1.4;
  }

  /* CTA Section - More compact */
  .pf-cta {
    padding: 40px 4%;
  }

  .pf-cta-text {
    font-size: 1.05rem;
    margin: 0.6rem 0 1.2rem;
  }

  .pf-cta-buttons {
    gap: 0.6rem;
  }

  .btn-action {
    padding: 0.7rem 1.2rem;
    font-size: 0.78rem;
    min-width: 150px;
  }

  /* Footer - More compact */
  .pf-footer {
    padding: 25px 4% 15px;
  }

  .pf-footer-content {
    gap: 1rem;
  }

  .pf-footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }

  .pf-footer-brand p {
    font-size: 0.92rem;
  }

  .pf-footer-links {
    gap: 1rem;
  }

  .pf-footer-links a {
    font-size: 0.92rem;
  }

  .pf-footer-copy {
    font-size: 0.82rem;
  }

  /* Divider - Thinner */
  .gdiv {
    height: 1px;
  }
}

@media (max-width: 480px) {
  /* Extra small screens - Even more compact */
  .pf-hero {
    min-height: 50vh;
    padding: 60px 4% 30px;
  }

  .pf-hero-inner {
    gap: 1rem;
  }

  .pf-eyebrow {
    font-size: 0.68rem;
    padding: 0.25rem 0.6rem;
    margin-bottom: 0.8rem;
  }

  .pf-name {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    margin-bottom: 0.6rem;
  }

  .pf-tagline {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  .pf-social-links {
    gap: 0.4rem;
  }

  .pf-social {
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
  }

  .pf-image-wrap {
    max-width: 220px;
  }

  .pf-section {
    padding: 25px 4%;
  }

  h2.sh {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    font-weight: 800;
  }

  .pf-highlights-grid {
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .pf-highlight-card {
    padding: 1rem 0.6rem;
  }

  .pf-highlight-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .pf-highlight-num {
    font-size: 1.7rem;
  }

  .pf-highlight-title {
    font-size: 0.8rem;
  }

  .pf-services-grid {
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .pf-service-card {
    padding: 1rem 0.8rem;
  }

  .pf-service-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .pf-service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }

  .pf-service-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .pf-gallery-grid {
    gap: 0.4rem;
    margin-top: 1rem;
  }

  .pf-testimonials {
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .pf-testimonial {
    padding: 1rem;
  }

  .pf-testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }

  .pf-testimonial-author {
    font-size: 0.85rem;
  }

  .pf-magazine-grid {
    gap: 0.4rem;
    margin-top: 1rem;
  }

  .pf-magazine-item {
    padding: 0.3rem;
  }

  .pf-contact-wrap {
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .pf-contact-card {
    padding: 0.8rem;
  }

  .pf-contact-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .pf-contact-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
  }

  .pf-contact-card p {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .pf-cta {
    padding: 30px 4%;
  }

  .pf-cta-text {
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem;
  }

  .btn-action {
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    min-width: 130px;
  }

  .pf-footer {
    padding: 20px 4% 12px;
  }

  .pf-footer-content {
    gap: 0.8rem;
  }

  .pf-footer-brand h3 {
    font-size: 1.15rem;
  }

  .pf-footer-brand p {
    font-size: 0.85rem;
  }

  .pf-footer-links {
    gap: 0.8rem;
  }

  .pf-footer-links a {
    font-size: 0.85rem;
  }

  .pf-footer-copy {
    font-size: 0.75rem;
  }
}

/* ═══════════ FOUNDER SECTION ═══════════ */

.shop-location-container {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.founder-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-instagram {
  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;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

@media (max-width: 768px) {
  .shop-location-container {
    margin-top: 40px;
    padding-top: 30px;
  }

  .founder-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-instagram,
  .btn-outline-alt {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 0.85rem;
    text-align: center;
  }

  .btn-outline-alt {
    border: 2px solid var(--gold);
    background: rgba(201, 168, 76, 0.08) !important;
  }
}

@media (max-width: 480px) {
  .founder-buttons {
    gap: 12px;
  }
}
