/* 
  ========================================================================
  CHRISTIAN DAMIETE THANKGOD - RESTRUCTURED VUSI THEMBEKWAYO SITE DESIGN
  Aesthetics: High-contrast luxury, Obsidian Black, Gold borders, and 
  horizontal roles grid flow.
  Gradient Theme: Vusi screenshot Orange-to-Purple horizontal linear gradient.
  ========================================================================
*/

/* 1. DESIGN TOKENS & SYSTEM PROPERTIES */
:root {
  /* Color Palette */
  --bg-obsidian: #060709;
  --bg-card: #0e1014;
  --bg-card-hover: #14181f;
  --color-gold: #d4af37;
  --color-gold-light: #f3d993;
  --color-gold-glow: rgba(212, 175, 55, 0.18);
  --color-amber: #f5a623;
  --color-white: #ffffff;
  --color-text-primary: #f3f4f6;
  --color-text-secondary: #9ca3af;
  --color-text-dark: #07080a;
  --color-border: #1a1e27;
  --color-border-hover: rgba(212, 175, 55, 0.45);
  --color-fiverr: #df2537;
  
  /* Vusi Screenshot Orange-to-Purple Horizontal Gradient */
  --gradient-vusi: linear-gradient(90deg, #f49b2c 0%, #b82cbd 50%, #7614db 100%);
  --gradient-vusi-glow: rgba(184, 44, 189, 0.25);
  
  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-signature: 'Dancing Script', cursive;
  
  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacings */
  --container-max-width: 1200px;
  --section-padding: clamp(4.5rem, 9vw, 9rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-obsidian);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Custom premium scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* 3. LAYOUT UTILITIES */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-tag.center {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-white);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

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

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  line-height: 1.6;
}

/* Background Glowing Orbs */
.glow-orb {
  position: absolute;
  width: clamp(300px, 45vw, 700px);
  height: clamp(300px, 45vw, 700px);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.orb-primary {
  top: 3%;
  left: -15%;
  background: var(--color-gold);
}

.orb-secondary {
  top: 40%;
  right: -15%;
  background: var(--color-amber);
}

.orb-tertiary {
  bottom: 8%;
  left: 15%;
  background: var(--color-gold);
}

/* Premium Buttons (Vusi Screenshot Gradient style) */
.btn-primary,
.btn-outline {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
}

/* Glassy lens top highlight */
.btn-primary::before,
.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Diagonal reflection shine sweep */
.btn-primary::after,
.btn-outline::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 20%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.05) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(28deg);
  pointer-events: none;
  z-index: 3;
  transition: none;
}

.btn-primary {
  background: var(--gradient-vusi);
  color: var(--color-white);
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -4px 10px rgba(0, 0, 0, 0.25),
    0 4px 20px var(--gradient-vusi-glow);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.025);
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -4px 12px rgba(0, 0, 0, 0.15),
    0 10px 28px rgba(184, 44, 189, 0.45),
    0 0 12px rgba(244, 155, 44, 0.25);
  filter: brightness(1.15);
}

.btn-outline {
  background: rgba(14, 16, 20, 0.8);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 32px;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -3px 8px rgba(255, 255, 255, 0.02),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
  transform: translateY(-4px) scale(1.025);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-white);
  border-top-color: rgba(255, 255, 255, 0.45);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -3px 8px rgba(255, 255, 255, 0.05),
    0 8px 24px rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

/* Light sweep trigger on hover */
.btn-primary:hover::after,
.btn-outline:hover::after {
  left: 160%;
  transition: all 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Active pressed state */
.btn-primary:active,
.btn-outline:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-large {
  padding: 20px 40px;
  font-size: 0.95rem;
}

.btn-small {
  padding: 12px 24px;
  font-size: 0.8rem;
}

.btn-full-width {
  width: 100%;
}

/* 4. TOP BAR & GLASS NAVIGATION (Vusi Style) */
.top-contacts-strip {
  background: var(--gradient-vusi);
  height: 40px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  transition: transform var(--transition-fast);
}

.top-bar-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.top-bar-item svg {
  color: var(--color-white);
}

.top-bar-item:hover {
  opacity: 0.9;
}

/* Navbar sitting below top strip */
.navbar-wrapper {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 7, 9, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: top var(--transition-fast), padding var(--transition-fast), background var(--transition-fast);
}

.navbar-wrapper.scrolled {
  top: 0;
  background: rgba(6, 7, 9, 0.98);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  transition: var(--transition-fast);
}

.navbar-wrapper.scrolled .navbar-container {
  height: 72px;
}

/* Elegant Cursive Logo signature design */
.brand-logo-cursive {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-signature {
  font-family: var(--font-signature);
  font-size: 2.1rem;
  color: var(--color-white);
  font-weight: 600;
}

.logo-sub-tagline {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-text-secondary);
  letter-spacing: 3.5px;
  margin-top: 4px;
}

/* Nav toggle for mobile drawer */
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle-btn .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-links-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link-item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link-item:hover {
  color: var(--color-white);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-link-item:hover::after {
  width: 100%;
}

.nav-cta-btn {
  margin-left: 10px;
}

/* Hide top strip when scrolled */
.top-contacts-strip.hidden {
  transform: translateY(-40px);
}

/* 5. HERO SECTION (Full-bleed conference background) */
.hero-section {
  padding-top: calc(120px + var(--section-padding));
  padding-bottom: var(--section-padding);
  position: relative;
  z-index: 2;
  background-image: url('../assets/conference_stage_crowd.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 7, 9, 0.88) 0%, rgba(6, 7, 9, 0.78) 50%, rgba(6, 7, 9, 0.94) 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Prestige badges stacked (Vusi style) */
.prestige-badges-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.badge-item {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 2px;
  color: var(--color-gold);
  border-left: 2px solid var(--color-gold);
  padding-left: 14px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-30px);
  animation: revealBadge 0.9s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
}

/* Staggered entry animation delays */
.badge-item:nth-child(1) { animation-delay: 0.15s; }
.badge-item:nth-child(2) { animation-delay: 0.35s; }
.badge-item:nth-child(3) { animation-delay: 0.55s; }
.badge-item:nth-child(4) { animation-delay: 0.75s; }
.badge-item:nth-child(5) { animation-delay: 0.95s; }

@keyframes revealBadge {
  0% {
    opacity: 0;
    transform: translateX(-25px);
    filter: blur(3px);
    border-left-color: rgba(212, 175, 55, 0.1);
  }
  30% {
    border-left-color: rgba(212, 175, 55, 0.4);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    border-left-color: var(--color-gold);
  }
}

/* Typewriter Title styling */
.hero-title-typewriter {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--color-white);
  margin-bottom: 24px;
  min-height: 130px; /* Pre-allocates space to prevent layout shifting */
  text-transform: uppercase;
}

.typewriter-cursor {
  color: var(--color-gold);
  font-weight: 200;
  animation: blink 0.75s step-end infinite;
  margin-left: 4px;
}

@keyframes blink {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}

.hero-description-white {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 45px;
  max-width: 650px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  background: var(--bg-card);
  padding: 12px;
  transition: var(--transition-smooth);
}

.hero-image-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--color-gold), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: brightness(0.9) contrast(1.05);
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-image-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-hover);
  box-shadow: 0 35px 70px rgba(212, 175, 55, 0.12);
}

.hero-image-card:hover .hero-img {
  filter: brightness(1.02) contrast(1.05);
}

/* Hero Quote badge */
.hero-quote-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  right: 30px;
  background: rgba(14, 16, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-hover);
  border-left: 3px solid var(--color-gold);
  padding: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.hero-quote-badge p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.hero-quote-badge span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
}

/* 6. TRUST STRIP (Partners) */
.trust-strip-section {
  background: #090a0d;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 45px 0;
  position: relative;
  z-index: 2;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 28px;
  text-transform: uppercase;
  opacity: 0.6;
}

.partners-logos-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logo-item {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 850;
  color: var(--color-text-secondary);
  opacity: 0.35;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.partner-logo-item:hover {
  opacity: 0.9;
  color: var(--color-gold);
}

/* 7. HIGH-IMPACT EDITORIAL NARRATIVE (Vusi Receipts section) */
.editorial-narrative-section {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 2;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: flex-start;
}

.editorial-hook-question {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-white);
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.editorial-hook-question span {
  color: var(--color-gold-light);
}

.editorial-receipts-banner {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 850;
  margin-bottom: 35px;
  color: var(--color-white);
}

.editorial-receipts-banner .accent-gold {
  color: var(--color-gold);
}

.editorial-body-paragraph {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.editorial-body-paragraph.highlight-border {
  border-left: 3px solid var(--color-gold);
  padding-left: 20px;
  color: var(--color-white);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.01);
  padding-top: 10px;
  padding-bottom: 10px;
}

.editorial-body-paragraph.font-bold-gold {
  color: var(--color-gold-light);
  font-weight: 600;
}

.editorial-actions-row {
  margin-top: 40px;
}

/* Sidebar Details Card */
.editorial-sidebar {
  position: sticky;
  top: 140px;
}

.sidebar-prestige-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 40px 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.sidebar-prestige-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-amber));
}

.sidebar-prestige-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 30px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
}

.prestige-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prestige-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.list-bullet-gold {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 6px var(--color-gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.prestige-list strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-white);
  display: block;
  margin-bottom: 4px;
}

.prestige-list span {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  display: block;
}

/* 8. DYNAMIC BRAND ROLE ROWS (Vusi page flow) */
.brand-roles-section {
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 2;
  background: #040507;
}

.role-row-block {
  border-bottom: 1px solid var(--color-border);
  padding: 60px 0;
  transition: var(--transition-smooth);
}

.role-flex-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.role-label-col {
  display: flex;
  align-items: center;
  gap: 24px;
}

.role-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  transition: var(--transition-smooth);
}

.role-title-lbl {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--color-white);
  transition: var(--transition-fast);
}

.role-desc-col p {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.role-link-btn {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  display: inline-block;
  text-transform: uppercase;
}

.role-link-btn:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.role-row-block:hover {
  background: rgba(255, 255, 255, 0.01);
  border-bottom-color: var(--color-gold-glow);
}

.role-row-block:hover .role-number {
  color: var(--color-gold);
  transform: scale(1.05);
}

.role-row-block:hover .role-title-lbl {
  color: var(--color-gold-light);
}

/* 9. CREATIVE HAND STUDIO Spotlight */
.studio-section {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 2;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.studio-paragraph {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

.studio-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.studio-feature-item {
  display: flex;
  gap: 16px;
}

.feature-bullet {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gold);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--color-gold);
}

.studio-feature-item strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-white);
  display: block;
  margin-bottom: 4px;
}

.studio-feature-item p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.studio-visual {
  display: flex;
  justify-content: center;
}

.studio-tabs-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background: var(--bg-card);
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.studio-tabs-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--color-gold), transparent 50%);
  z-index: -1;
  pointer-events: none;
}

.studio-tabs-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

/* Tabs Navigation */
.studio-tabs-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
}

.studio-tab-btn {
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  position: relative;
}

.studio-tab-btn:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.03);
}

.studio-tab-btn.active {
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.08);
}

.studio-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.studio-tab-btn.active::after {
  transform: scaleX(1);
}

/* Tab Panels */
.studio-tabs-content {
  position: relative;
}

.studio-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.studio-tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Main Showreel Player */
.main-video-player-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.tab-caption {
  padding: 14px 4px 4px;
}

.tab-caption h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.tab-caption p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* Portfolio Video Grid */
.portfolio-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.portfolio-video-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.portfolio-video-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.portfolio-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #080a0f;
}

.portfolio-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-video-item:hover .portfolio-video-wrapper video {
  transform: scale(1.08);
}

.portfolio-video-hover-msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.portfolio-video-hover-msg span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 20px;
}

.portfolio-video-item:hover .portfolio-video-hover-msg {
  opacity: 0;
}

.portfolio-item-meta {
  padding: 10px 12px;
  border-top: 1px solid var(--color-border);
}

.portfolio-item-meta h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--color-white);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-item-tag {
  font-size: 0.7rem;
  color: var(--color-gold);
  font-weight: 600;
}

.btn-play-lightbox {
  display: none;
}

/* 10. THE DIGITAL ACADEMY */
.academy-section {
  padding: var(--section-padding) 0;
  background-color: #040507;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 2;
}

.academy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.academy-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.academy-card-img-wrapper {
  height: 120px;
  background: linear-gradient(135deg, #12151c, #0e1014);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.academy-card-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05));
  transition: var(--transition-smooth);
}

.academy-card-title-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-gold);
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

.academy-card-title-badge.vip-badge {
  background: linear-gradient(135deg, var(--color-amber), #cc7a00);
  color: var(--color-white);
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.35);
}

.academy-card-glow-bg {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  filter: blur(20px);
  pointer-events: none;
}

.academy-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.academy-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  transition: var(--transition-fast);
  line-height: 1.35;
}

.academy-card-description {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 30px;
  flex-grow: 1;
}

.academy-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.academy-card-platform {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.academy-card-platform.gold-label {
  color: var(--color-gold);
}

.academy-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.academy-card:hover .academy-card-icon {
  transform: scale(1.15) rotate(5deg);
}

.academy-card:hover .academy-card-title {
  color: var(--color-gold-light);
}

.vip-academy-card {
  border-color: rgba(245, 166, 35, 0.2);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(245, 166, 35, 0.02) 100%);
}

.vip-academy-card:hover {
  border-color: var(--color-amber);
  box-shadow: 0 15px 30px rgba(245, 166, 35, 0.08);
}

/* 11. IMPACT & STATS SECTION */
.impact-section {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 2;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.impact-paragraph {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.impact-testimonial-quote-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.impact-test-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.impact-test-author-flex {
  display: flex;
  align-items: center;
  gap: 12px;
}

.impact-test-author-flex strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--color-white);
  display: block;
}

.impact-test-author-flex span {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

.impact-stats-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-ticker-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-ticker-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  display: inline-block;
}

.stat-ticker-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-gold-light);
  line-height: 1;
}

.stat-ticker-label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 12px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.stat-ticker-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* 12. SPEAKING BOOKING SECTION */
.booking-section {
  padding: var(--section-padding) 0;
  background-color: #040507;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 2;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: flex-start;
}

.booking-paragraph {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.booking-speaker-topics {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-speaker-topics h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.topic-item {
  display: flex;
  gap: 16px;
}

.topic-bullet {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.topic-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-white);
  display: block;
  margin-bottom: 4px;
}

.topic-item p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* BOOKING FORM DESIGN */
.booking-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.booking-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-amber));
}

.booking-form-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.booking-form-subheading {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  line-height: 1.4;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.3s ease;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-control-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-input {
  background-color: #0a0b0d;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-white);
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  width: 100%;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.15);
}

.form-input:focus {
  border-color: var(--color-gold);
  background-color: #0d0f14;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  max-height: 250px;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239CA3AF' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.form-input.invalid {
  border-color: var(--color-fiverr);
  box-shadow: 0 0 8px rgba(223, 37, 87, 0.15);
}

.form-error-msg {
  display: none;
  font-size: 0.75rem;
  color: var(--color-fiverr);
  margin-top: 6px;
  font-weight: 600;
}

.form-input.invalid + .form-error-msg {
  display: block;
}

.loading-spinner {
  animation: spin 0.8s linear infinite;
  display: inline-block;
  margin-left: 8px;
  flex-shrink: 0;
}

.hidden {
  display: none !important;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.booking-success-screen {
  text-align: center;
  padding: 40px 10px;
  animation: fadeIn 0.4s ease forwards;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin: 0 auto 24px;
}

.success-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 12px;
}

.success-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 13. PREMIUM FOOTER */
.footer-wrapper {
  background-color: #030405;
  border-top: 1px solid var(--color-border);
  padding: 85px 0 45px;
  position: relative;
  z-index: 2;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  margin-bottom: 60px;
}

/* Elegant Cursive Logo in Footer */
.footer-logo-cursive {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-logo-cursive .logo-signature {
  font-family: var(--font-signature);
  font-size: 2.5rem;
  color: var(--color-white);
  font-weight: 600;
}

.footer-logo-cursive .logo-sub-tagline {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-text-secondary);
  letter-spacing: 3.5px;
  margin-top: 6px;
}

.footer-brand-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 20px 0 30px;
  max-width: 450px;
  line-height: 1.6;
}

.footer-social-links-row {
  display: flex;
  gap: 16px;
}

.social-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.social-link-icon:hover {
  background: var(--color-gold);
  color: var(--color-text-dark);
  border-color: var(--color-gold);
  box-shadow: 0 0 15px var(--color-gold-glow);
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-column-heading {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.footer-links-list a:hover {
  color: var(--color-gold-light);
  padding-left: 4px;
}

.footer-bottom-row {
  border-top: 1px solid var(--color-border);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright-text {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  opacity: 0.75;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.footer-legal-links a:hover {
  color: var(--color-white);
}

/* 14. CUSTOM REEL LIGHTBOX MODAL */
.video-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 4, 5, 0.96);
  backdrop-filter: blur(8px);
}

.lightbox-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 10;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-lightbox-modal.active .lightbox-wrapper {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 2.5rem;
  color: var(--color-white);
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.lightbox-close-btn:hover {
  opacity: 1;
  color: var(--color-gold);
}

.lightbox-video-container {
  aspect-ratio: 16/9;
  background-color: #000000;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--color-border);
}

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

/* 15. SCROLL REVEALS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* 16. RESPONSIVE MEDIA QUERIES */

/* Large Tablets / Laptops */
@media (max-width: 1024px) {
  :root {
    --section-padding: 5rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .prestige-badges-container {
    align-items: center;
  }
  
  .badge-item {
    border-left: none;
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    padding: 6px 14px;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-image-card {
    max-width: 380px;
  }
  
  .hero-quote-badge {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 30px;
  }
  
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .editorial-sidebar {
    position: relative;
    top: 0;
  }
  
  .sidebar-prestige-card {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .role-flex-container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .role-label-col {
    justify-content: center;
  }
  
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .studio-content {
    text-align: center;
  }
  
  .studio-feature-list {
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Tablets / Mobile Menu triggering */
@media (max-width: 768px) {
  .top-contacts-strip {
    display: none;
  }
  
  .navbar-wrapper {
    top: 0;
  }
  
  .nav-toggle-btn {
    display: flex;
  }
  
  .nav-links-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(8, 9, 11, 0.99);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    z-index: 105;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-links-menu.active {
    right: 0;
  }
  
  .nav-toggle-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav-toggle-btn.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-link-item {
    font-size: 1.1rem;
    width: 100%;
  }
  
  .nav-cta-btn {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column-heading {
    margin-bottom: 16px;
  }
}

/* Small Screens */
@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn-large {
    width: 100%;
    text-align: center;
  }
  
  .impact-stats-cards {
    grid-template-columns: 1fr;
  }
  
  .booking-form-wrapper {
    padding: 30px 20px;
  }
}

/* 17. GALLERY SECTION STYLING */
.gallery-section {
  padding: var(--section-padding) 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 2;
  background-color: #050608;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item-card {
  background: linear-gradient(135deg, rgba(14, 16, 20, 0.75) 0%, rgba(8, 9, 11, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 15px 35px rgba(0, 0, 0, 0.55);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Diagonal reflection sweep for the gallery card */
.gallery-item-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 35%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.03) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 5;
  transition: none;
}

.gallery-img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #000;
  border-bottom: 1px solid var(--color-border);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-info {
  padding: 24px;
  flex-grow: 1;
}

.gallery-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 6px;
  line-height: 1.35;
}

.gallery-info span {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-item-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.45);
  border-top-color: rgba(255, 255, 255, 0.55);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 25px 60px rgba(212, 175, 55, 0.12),
    0 0 15px rgba(212, 175, 55, 0.05);
}

/* Trigger diagonal shine sweep on gallery card hover */
.gallery-item-card:hover::after {
  left: 150%;
  transition: all 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item-card:hover .gallery-img {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.02);
}

.featured-gallery-card {
  border-color: rgba(212, 175, 55, 0.2);
  border-top-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* 14. FIVERR PROFILE CARD INTEGRATION */
.fiverr-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 24px;
  margin-top: 35px;
  margin-bottom: 35px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.fiverr-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #1dbf73 0%, #109655 100%); /* Fiverr Green */
}

.fiverr-profile-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 191, 115, 0.35);
  box-shadow: 0 20px 40px rgba(29, 191, 115, 0.06);
}

.fiverr-profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.fiverr-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.fiverr-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1dbf73;
}

.fiverr-online-indicator {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #1dbf73;
  color: var(--color-white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 8px;
  border: 2px solid var(--bg-card);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fiverr-user-meta {
  flex-grow: 1;
}

.fiverr-username-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.25;
}

.fiverr-user-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.fiverr-user-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1dbf73;
  text-decoration: underline;
}

.fiverr-user-link:hover {
  color: var(--color-white);
}

.fiverr-badge {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 850;
  background-color: rgba(29, 191, 115, 0.12);
  color: #1dbf73;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fiverr-tagline {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-top: 6px;
  font-style: italic;
}

.fiverr-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.star-rating {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffb33e;
}

.review-count {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.fiverr-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  margin-bottom: 16px;
}

.detail-item {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.35;
}

.detail-item strong {
  color: var(--color-white);
  display: inline-block;
  margin-right: 4px;
}

.fiverr-highlight-review {
  background-color: rgba(255, 255, 255, 0.012);
  border-left: 2px solid #1dbf73;
  padding: 12px 16px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 16px;
}

.review-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.45;
  margin-bottom: 4px;
}

.review-client {
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fiverr-summary-bio {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.fiverr-summary-bio p {
  margin-bottom: 8px;
}

.fiverr-summary-bio p:last-child {
  margin-bottom: 0;
}

.fiverr-cta-line {
  font-weight: 600;
  color: var(--color-white);
}

.fiverr-experience-line {
  border-top: 1px dashed var(--color-border);
  padding-top: 10px;
  margin-top: 10px !important;
  font-style: italic;
}

/* Adjust Studio layout slightly to make room for card */
@media (max-width: 1000px) {
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.star-icon {
  fill: #ffb33e;
}

/* 15. STUDIO ACTIONS & GLOSSY BUTTONS */
.studio-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}

.studio-actions .btn-primary,
.studio-actions .btn-outline {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  z-index: 1;
}

/* Base Glossy Overlay styles */
.studio-actions .btn-primary::before,
.studio-actions .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Sweep Reflection Animation Overlay */
.studio-actions .btn-primary::after,
.studio-actions .btn-outline::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 20%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.05) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(28deg);
  pointer-events: none;
  z-index: 3;
  transition: none;
}

/* WORK WITH CREATIVE HAND button overrides */
.studio-actions .btn-primary {
  background: var(--gradient-vusi);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -4px 10px rgba(0, 0, 0, 0.25),
    0 4px 18px var(--gradient-vusi-glow);
}

/* VIEW FIVERR PORTFOLIO button overrides */
.studio-actions .btn-outline {
  background: rgba(14, 16, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -3px 8px rgba(255, 255, 255, 0.02),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hover Reactions & Animations */
.studio-actions .btn-primary:hover {
  transform: translateY(-4px) scale(1.025);
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -4px 12px rgba(0, 0, 0, 0.15),
    0 10px 28px rgba(184, 44, 189, 0.45),
    0 0 12px rgba(244, 155, 44, 0.25);
  filter: brightness(1.1);
}

.studio-actions .btn-outline:hover {
  transform: translateY(-4px) scale(1.025);
  background: rgba(29, 191, 115, 0.05); /* Fiverr Green subtle tint */
  border-color: rgba(29, 191, 115, 0.4);
  border-top-color: rgba(255, 255, 255, 0.45);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -3px 8px rgba(29, 191, 115, 0.05),
    0 8px 24px rgba(29, 191, 115, 0.15);
  color: var(--color-white);
}

/* Light sweep trigger on hover */
.studio-actions .btn-primary:hover::after,
.studio-actions .btn-outline:hover::after {
  left: 160%;
  transition: all 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Active pressed state */
.studio-actions .btn-primary:active,
.studio-actions .btn-outline:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Adjustments for mobile viewports to prevent wrapping layouts or overflowing text */
@media (max-width: 500px) {
  .studio-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .studio-actions .btn-primary,
  .studio-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* 16. FIVERR DASHBOARD WIDGETS */
.fiverr-widgets-container {
  display: flex;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: 35px;
}

/* Override profile card margins inside container and limit max-width */
.fiverr-widgets-container .fiverr-profile-card {
  margin: 0;
  width: 100%;
  max-width: 550px;
}

/* Fiverr Gig Card design */
.fiverr-gig-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.fiverr-gig-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #109655 0%, #1dbf73 100%);
}

.fiverr-gig-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 191, 115, 0.35);
  box-shadow: 0 20px 40px rgba(29, 191, 115, 0.06);
}

.gig-card-img-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #000;
  border-bottom: 1px solid var(--color-border);
}

.gig-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.fiverr-gig-card:hover .gig-card-img {
  transform: scale(1.04);
}

.gig-badge-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1dbf73;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 850;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 5;
}

.gig-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gig-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 850;
  color: var(--color-white);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.fiverr-gig-card:hover .gig-card-title {
  color: #1dbf73;
}

.gig-card-desc {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  line-height: 1.45;
  margin-bottom: 15px;
}

.gig-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.gig-features-list li {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gig-bullet {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #1dbf73;
  flex-shrink: 0;
}

.gig-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 15px;
  margin-top: auto;
}

.gig-price-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.price-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: 0.5px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-white);
}

.gig-order-btn {
  padding: 10px 18px !important;
  font-size: 0.75rem !important;
  background: #1dbf73 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -3px 8px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(29, 191, 115, 0.2) !important;
}

.gig-order-btn:hover {
  background: #109655 !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -3px 8px rgba(0, 0, 0, 0.15),
    0 6px 16px rgba(29, 191, 115, 0.35) !important;
}

@media (max-width: 650px) {
  .fiverr-widgets-container {
    gap: 20px;
  }
}
