/* ================================================
   ARTS FACTORY ACADEMY — MAIN STYLESHEET
   Brand: Bold Creative | Dark Premium Aesthetic
   Parent: Bovibes Group (bovibesgroup.com)
   ================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --color-blue: #1E90FF;
  --color-green: #2ECC71;
  --color-red: #E74C3C;
  --color-yellow: #F1C40F;
  --color-magenta: #E91E8C;

  /* Dark Theme */
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-elevated: #1C1C1C;

  /* Text */
  --text-primary: #F5F5F5;
  --text-secondary: #A0A0A0;
  --text-muted: #606060;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-pad: 7rem 0;
  --section-pad-sm: 4rem 0;
  --container-max: 1200px;
  --container-pad: 0 1.5rem;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Borders */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(255, 255, 255, 0.15);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.section-pad {
  padding: var(--section-pad);
}

.section-pad-sm {
  padding: var(--section-pad-sm);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes orb-move {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes count-up {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Reveal animations */
.reveal-up {
  animation: fadeUp 0.9s var(--ease-out) both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.delay-1.visible {
  transition-delay: 0.1s;
}

.scroll-reveal.delay-2.visible {
  transition-delay: 0.2s;
}

.scroll-reveal.delay-3.visible {
  transition-delay: 0.3s;
}

.scroll-reveal.delay-4.visible {
  transition-delay: 0.4s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
  border-radius: inherit;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-blue));
  color: #fff;
  box-shadow: 0 4px 24px rgba(233, 30, 140, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-accent);
}

.btn-ghost:hover {
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--color-yellow);
  color: #0A0A0A;
  font-weight: 700;
}

.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 196, 15, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-magenta);
  color: var(--color-magenta);
}

.btn-outline:hover {
  background: var(--color-magenta);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
}

/* ===== SECTION HELPERS ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-magenta);
  background: rgba(233, 30, 140, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(233, 30, 140, 0.25);
  margin-bottom: 1.25rem;
}

.section-tag.light {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-accent {
  color: var(--color-magenta);
}

.text-yellow {
  color: var(--color-yellow);
}

.inline-link {
  color: var(--color-magenta);
  font-weight: 600;
  transition: opacity 0.2s;
}

.inline-link:hover {
  opacity: 0.8;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-color);
}

.navbar {
  padding: 1.5rem 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: all 0.2s;
  color: var(--text-secondary);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-blue));
  color: #fff;
  padding: 0.5rem 1.25rem;
}

.nav-link.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nav-parent-brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-left: 1px solid var(--border-color);
  padding-left: 1.25rem;
  white-space: nowrap;
}

.nav-parent-brand a {
  color: var(--color-yellow);
  font-weight: 600;
  transition: opacity 0.2s;
}

.nav-parent-brand a:hover {
  opacity: 0.8;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 144, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(233, 30, 140, 0.1) 0%, transparent 60%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 30%, transparent 80%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-move 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(30, 144, 255, 0.15);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(233, 30, 140, 0.12);
  bottom: 10%;
  left: 5%;
  animation-delay: 2s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(46, 204, 113, 0.1);
  top: 40%;
  left: 20%;
  animation-delay: 4s;
}

.orb-4 {
  width: 250px;
  height: 250px;
  background: rgba(241, 196, 15, 0.08);
  bottom: 20%;
  right: 15%;
  animation-delay: 6s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulse-ring 1.5s ease-out infinite;
}

.hero-title {
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}

.title-accent {
  color: var(--color-magenta);
  display: inline-block;
}

.title-stroke {
  -webkit-text-stroke: 2px var(--color-yellow);
  color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.4;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--text-primary);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--color-magenta);
  padding: 0.875rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  animation: ticker 20s linear infinite;
  gap: 1.5rem;
  align-items: center;
}

.ticker span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.ticker-dot {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.7rem !important;
}

/* ===== BRAND VIDEO ===== */
.brand-video {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.video-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.video-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.video-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  background: #000;
}

.video-embed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .video-inner {
    gap: 2.5rem;
  }
}

/* ===== MISSION ===== */
.mission {
  border-top: 1px solid var(--border-color);
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
}

.mission-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mission-text {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.mission-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-magenta);
  transition: gap 0.2s;
}

.mission-link:hover {
  gap: 0.75rem;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}

.service-card:hover {
  border-color: rgba(233, 30, 140, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::after {
  opacity: 1;
}

.card-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-magenta);
}

.service-card:hover .card-icon {
  background: rgba(233, 30, 140, 0.15);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-magenta);
  background: rgba(233, 30, 140, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

.services-cta {
  text-align: center;
}

/* ===== TALENT HUNT ===== */
.talent-hunt {
  background: linear-gradient(160deg, #0d0d0d 0%, #1a0a14 50%, #0a0a14 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.th-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.th-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 1rem 0 1.25rem;
  line-height: 1.1;
}

.th-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.th-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.th-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--color-green);
  flex-shrink: 0;
}

.th-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Card Stack Visual */
.th-visual {
  perspective: 1000px;
}

.th-card-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.th-card {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.card-front {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  z-index: 3;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out);
}

.card-front:hover {
  transform: rotateX(-5deg) rotateY(5deg) translateZ(10px);
}

.card-back-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.3), rgba(30, 144, 255, 0.2));
  transform: rotate(3deg) scale(0.97) translateY(8px);
  z-index: 2;
  height: 100%;
}

.card-back-2 {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(6deg) scale(0.94) translateY(16px);
  z-index: 1;
  height: 100%;
}

.th-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.th-badge {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-blue));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.th-date {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--color-yellow);
  font-weight: 600;
}

.th-card-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.th-card-subtitle {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.th-card-venue {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.th-card-venue svg {
  width: 16px;
  height: 16px;
  color: var(--color-magenta);
  flex-shrink: 0;
}

.th-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.th-categories span {
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
  color: var(--text-secondary);
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  position: relative;
  padding: 2rem 2rem 2rem 0;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--border-color);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.process-step:hover .step-number {
  color: var(--color-magenta);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 3.5rem;
  right: -1px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-magenta), transparent);
  display: block;
}

/* ===== WHY SECTION ===== */
.why {
  background: var(--bg-secondary);
}

.why-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.why-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 1rem 0 1.25rem;
}

.why-content>p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
}

.pillar:hover {
  border-color: rgba(233, 30, 140, 0.3);
  transform: translateX(4px);
}

.pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pillar h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.pillar p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.why-badge-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.why-badge {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1.25rem;
  border-radius: 16px;
  text-align: center;
  letter-spacing: -0.02em;
  transition: transform 0.3s var(--ease-bounce);
}

.why-badge:hover {
  transform: scale(1.05);
}

.badge-blue {
  background: rgba(30, 144, 255, 0.15);
  color: var(--color-blue);
  border: 1px solid rgba(30, 144, 255, 0.25);
}

.badge-green {
  background: rgba(46, 204, 113, 0.15);
  color: var(--color-green);
  border: 1px solid rgba(46, 204, 113, 0.25);
}

.badge-red {
  background: rgba(231, 76, 60, 0.15);
  color: var(--color-red);
  border: 1px solid rgba(231, 76, 60, 0.25);
}

.badge-yellow {
  background: rgba(241, 196, 15, 0.15);
  color: var(--color-yellow);
  border: 1px solid rgba(241, 196, 15, 0.25);
}

.why-quote {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--color-magenta);
  border-radius: 12px;
  padding: 1.5rem;
}

.why-quote blockquote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.why-quote cite {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  font-style: normal;
  font-family: var(--font-display);
}

/* ===== PARTNERS ===== */
.partners {
  border-top: 1px solid var(--border-color);
}

.section-label-center {
  text-align: center;
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.partner-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.partner-item:hover {
  border-color: var(--color-magenta);
  color: var(--text-primary);
  transform: translateY(-3px);
}

.partners-cta-text {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(160deg, var(--bg-primary) 0%, #1a0a14 60%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-color);
}

.cta-inner {
  text-align: center;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.cta-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.15), transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(40px);
}

.cta-inner h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 1rem 0 1.25rem;
}

.cta-inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-parent-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.parent-link {
  color: var(--color-yellow);
  font-weight: 600;
  transition: opacity 0.2s;
}

.parent-link:hover {
  opacity: 0.8;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand img {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--color-magenta);
  border-color: var(--color-magenta);
  transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--color-magenta);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--color-magenta);
}

.footer-parent {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-parent a {
  color: var(--color-yellow);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-display);
  transition: opacity 0.2s;
}

.footer-parent a:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--color-yellow);
  font-weight: 600;
  transition: opacity 0.2s;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: var(--text-muted);
  font-weight: 400;
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-bounce);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid var(--border-color);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #1a1a1a;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

/* ===== CEO SECTION ===== */
.ceo-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.ceo-visual {
  position: relative;
}

.ceo-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #1a1a1a;
}

.ceo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.badge-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.badge-role {
  display: block;
  font-size: 0.8rem;
  color: var(--color-magenta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.ceo-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.ceo-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.ceo-signature {
  font-family: 'Brush Script MT', cursive;
  font-size: 2.5rem;
  color: var(--color-yellow);
  margin-top: 2rem;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .ceo-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ceo-badge {
    right: 20px;
  }
}

/* ===== VERTICALS GRID ===== */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.vertical-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s var(--ease-out);
  display: block;
}

.vertical-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 30, 140, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
}

.v-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vertical-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.vertical-card p {
  font-size: 0.85rem;
  color: var(--color-magenta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ===== PAGE-SPECIFIC: ABOUT ===== */
.about-hero {
  padding: 10rem 1.5rem 6rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 144, 255, 0.1) 0%, transparent 60%);
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.about-story {
  background: var(--bg-secondary);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.about-story-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.leader-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}

.leader-card:hover {
  border-color: rgba(233, 30, 140, 0.3);
  transform: translateY(-4px);
}

.leader-avatar {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-magenta), var(--color-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.leader-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.leader-title {
  font-size: 0.82rem;
  color: var(--color-magenta);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.leader-bio {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ===== PAGE-SPECIFIC: CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-magenta);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-magenta), var(--color-blue));
  color: #fff;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.4);
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.contact-info-card:hover {
  border-color: rgba(233, 30, 140, 0.3);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(233, 30, 140, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-magenta);
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== PAGE-SPECIFIC: BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.blog-card:hover {
  border-color: rgba(233, 30, 140, 0.3);
  transform: translateY(-6px);
}

.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a0a14, #0a0a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body {
  padding: 1.75rem;
}

.blog-card-tag {
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-magenta);
  margin-bottom: 0.75rem;
  display: block;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-read-more {
  color: var(--color-magenta);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}

.blog-read-more:hover {
  gap: 0.6rem;
}

/* ===== PAGE-SPECIFIC: SERVICES ===== */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s;
}

.service-detail-card:hover {
  border-color: rgba(233, 30, 140, 0.3);
  transform: translateX(6px);
}

/* ===== PAGE HERO (reusable) ===== */
.page-hero {
  padding: 10rem 1.5rem 6rem;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(233, 30, 140, 0.08) 0%, transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-bottom: 1.25rem;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== DESKTOP UTILITY ===== */
.desktop-br {
  display: block;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .th-inner {
    gap: 3rem;
  }

  .why-inner {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 5rem 0;
  }

  .navbar {
    padding: 1rem 0;
  }

  .nav-logo img {
    height: 48px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--border-color);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
  }

  .nav-parent-brand {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .th-inner {
    grid-template-columns: 1fr;
  }

  .th-visual {
    order: -1;
  }

  .th-card-stack {
    max-width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-visual {
    order: -1;
  }

  .about-story-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .desktop-br {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .th-ctas {
    flex-direction: column;
  }
}
/* ====== PATCH FIXES ====== */
/* 1. Mobile Nav Padding */
@media (max-width: 900px) {
  .nav-menu li {
    padding: 0.75rem 0;
  }
}

/* 2. WhatsApp Widget Adjustments */
.wa-widget-container {
  bottom: 40px !important;
  right: 20px !important;
  z-index: 99999 !important; 
}

.wa-tooltip-bubble {
  white-space: nowrap;
}

/* 3. Fixing Blog Pages Height */
.blog-post-content {
  min-height: 50vh;
}


/* Bar alias for hamburger (flat-file nav) */
.bar {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}


/* Footer layout fixes */
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}
.site-footer .footer-brand p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 1rem 0 1.25rem;
  max-width: 280px;
}
.site-footer .footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--color-magenta);
  color: var(--color-magenta);
  background: rgba(233,30,140,0.08);
}
.site-footer .footer-links h3,
.site-footer .footer-contact h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.site-footer .footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.site-footer .footer-links ul li a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.site-footer .footer-links ul li a:hover { color: var(--color-magenta); }
.site-footer .footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.site-footer .footer-contact address p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}
.site-footer .footer-contact address p svg { flex-shrink: 0; margin-top: 1px; stroke: var(--color-magenta); }
.site-footer .footer-contact address a { color: inherit; transition: color 0.2s; }
.site-footer .footer-contact address a:hover { color: var(--color-magenta); }
.footer-parent {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-parent a { color: var(--color-yellow); font-weight: 600; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p, .footer-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-secondary); }
@media (max-width: 900px) {
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .site-footer .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* Contact form improvements */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem 2.25rem;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-magenta);
  background: rgba(233,30,140,0.04);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
