/* ==========================================
   Design System & Theme Variables
   ========================================== */
:root {
  /* Dark Theme Variables (Obsidian & Gold) */
  --bg-primary: #040508;
  --bg-secondary: #0a0b12;
  --bg-glass: rgba(10, 11, 18, 0.7);
  --bg-glass-hover: rgba(16, 18, 30, 0.85);
  --border-color: rgba(255, 255, 255, 0.04);
  --border-color-hover: rgba(212, 175, 55, 0.25);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-primary: #d4af37; /* Metallic Gold */
  --accent-secondary: #f3a152; /* Warm Gold Glow */
  --accent-gradient: linear-gradient(135deg, #d4af37 0%, #f3a152 100%);
  --accent-gradient-hover: linear-gradient(135deg, #f3a152 0%, #d4af37 100%);
  
  --shadow-primary: rgba(0, 0, 0, 0.6);
  --shadow-glow: rgba(212, 175, 55, 0.12);
  
  /* Shared values */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container-max-width: 1200px;
}

/* Light Theme Variables (Boutique Creative Ivory & Warm Gold) */
body.light-theme {
  --bg-primary: #faf8f5;
  --bg-secondary: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.8);
  --bg-glass-hover: rgba(255, 255, 255, 0.95);
  --border-color: rgba(0, 0, 0, 0.05);
  --border-color-hover: rgba(180, 140, 20, 0.25);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --accent-primary: #b48c14; /* Darker Gold for visibility */
  --accent-secondary: #dd8530; /* Warm sunset accent */
  --accent-gradient: linear-gradient(135deg, #b48c14 0%, #dd8530 100%);
  --accent-gradient-hover: linear-gradient(135deg, #dd8530 0%, #b48c14 100%);
  
  --shadow-primary: rgba(15, 23, 42, 0.04);
  --shadow-glow: rgba(180, 140, 20, 0.06);
}

/* ==========================================
   Base Styles & Reset
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.light-theme {
  /* Subtle executive paper grid texture to add premium depth */
  background-image: radial-gradient(rgba(180, 140, 20, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

/* ==========================================
   Background Blobs Animation
   ========================================== */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.55;
}

.blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  animation: float-blob 25s infinite alternate ease-in-out;
}

body.light-theme .blob {
  mix-blend-mode: multiply;
  opacity: 0.07;
}

.blob-1 {
  width: 450px;
  height: 450px;
  background-color: rgba(212, 175, 55, 0.12); /* Gold blob */
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 550px;
  height: 550px;
  background-color: rgba(127, 0, 255, 0.1); /* Purple blob */
  bottom: -200px;
  right: -100px;
  animation-duration: 35s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background-color: rgba(243, 161, 82, 0.08); /* Sunset blob */
  top: 35%;
  left: 45%;
  animation-duration: 20s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, 50px) scale(1.1);
  }
  100% {
    transform: translate(-40px, 120px) scale(0.95);
  }
}

/* ==========================================
   Typography Utilities & Badges
   ========================================== */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
}

body.light-theme .badge {
  background: rgba(180, 140, 20, 0.06);
  border-color: rgba(180, 140, 20, 0.12);
}

.section-header {
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  max-width: 620px;
  margin: 0 auto;
}

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

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #040508;
  box-shadow: 0 4px 20px var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-2px);
}

.btn-outline-instagram {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: #fff;
  border-color: transparent;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 5, 8, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.4s ease;
}

body.light-theme .main-header {
  background: rgba(250, 248, 245, 0.7);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 30px;
  width: auto;
  border-radius: var(--radius-sm);
  margin-right: 0.75rem;
}

.logo-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.btn-nav {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-color-hover);
}

body.light-theme .theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.theme-toggle-btn .sun-icon {
  display: none;
}

body.light-theme .theme-toggle-btn .moon-icon {
  display: none;
}

body.light-theme .theme-toggle-btn .sun-icon {
  display: block;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

.hidden {
  display: none !important;
}

/* ==========================================
   Section Background Overlays (Visual Depth Mesh)
   ========================================== */
.hero-section {
  padding: 8rem 0 6rem 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
}

body.light-theme .hero-section {
  background: radial-gradient(circle at 15% 25%, rgba(180, 140, 20, 0.03) 0%, transparent 60%);
}

.metrics-section {
  padding: 6rem 0;
  position: relative;
  background-color: rgba(10, 11, 18, 0.2);
  background-image: radial-gradient(circle at 50% 50%, rgba(243, 161, 82, 0.02) 0%, transparent 70%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

body.light-theme .metrics-section {
  background-color: rgba(255, 255, 255, 0.4);
  background-image: radial-gradient(circle at 50% 50%, rgba(180, 140, 20, 0.02) 0%, transparent 70%);
}

.pillars-section {
  padding: 6rem 0;
  background: radial-gradient(circle at 85% 85%, rgba(127, 0, 255, 0.03) 0%, transparent 65%);
}

.portfolio-showcase-section {
  padding: 6rem 0;
  position: relative;
  background-color: rgba(10, 11, 18, 0.25);
  background-image: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

body.light-theme .portfolio-showcase-section {
  background-color: rgba(255, 255, 255, 0.5);
  background-image: radial-gradient(circle at 80% 20%, rgba(180, 140, 20, 0.02) 0%, transparent 60%);
}

.brands-section {
  padding: 6rem 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
}

.connect-section {
  padding: 8rem 0;
  position: relative;
  background-image: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
                    linear-gradient(180deg, rgba(4, 5, 8, 0) 0%, rgba(10, 11, 18, 0.5) 100%);
  border-top: 1px solid var(--border-color);
}

body.light-theme .connect-section {
  background-image: radial-gradient(circle at 50% 50%, rgba(180, 140, 20, 0.05) 0%, transparent 60%),
                    linear-gradient(180deg, rgba(250, 248, 245, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
}

/* ==========================================
   Hero Container & Profile Card
   ========================================== */
.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  max-width: 680px;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Visual: Glassmorphic Profile Card */
.profile-card {
  padding: 2.5rem;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  box-shadow: -15px 15px 30px rgba(0,0,0,0.4);
}

.profile-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
  border-color: var(--border-color-hover);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #040508;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px var(--shadow-glow);
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info h3 {
  font-size: 1.25rem;
}

.profile-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.profile-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.01);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

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

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  background-color: var(--border-color);
  margin: 0 0.5rem;
}

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

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.pill-tag i {
  width: 12px;
  height: 12px;
  color: var(--accent-primary);
}

/* ==========================================
   Metrics Section & Social Brand SVG Logos
   ========================================== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.metric-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px var(--shadow-primary);
}

.metric-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-hover);
  box-shadow: 0 10px 30px var(--shadow-glow);
}

.metric-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
}

/* Official Social Brand SVG Styling */
.social-logo-svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: all 0.3s ease;
}

.button-svg {
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
}

.btn-svg-inline {
  margin-left: 0.35rem;
  width: 14px;
  height: 14px;
}

/* Platform Specific Brand Highlights */
.instagram-card {
  border-left: 4px solid #e1306c;
}
.instagram-card .social-logo-svg {
  color: #e1306c;
}

.youtube-card {
  border-left: 4px solid #ff0000;
}
.youtube-card .social-logo-svg {
  color: #ff0000;
  fill: rgba(255, 0, 0, 0.05);
}

.threads-card {
  border-left: 4px solid #ffffff;
}
body.light-theme .threads-card {
  border-left-color: #000000;
}
.threads-card .social-logo-svg {
  color: var(--text-primary);
}

.tiktok-card {
  border-left: 4px solid #00f2fe;
}
.tiktok-card .social-logo-svg {
  color: #00f2fe;
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-count {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.metric-name {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.metric-trend {
  font-size: 0.75rem;
  color: var(--accent-secondary);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.metric-trend i {
  width: 12px;
  height: 12px;
}

/* ==========================================
   Content Pillars
   ========================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(243, 161, 82, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-hover);
  box-shadow: 0 10px 30px var(--shadow-primary);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px var(--shadow-glow);
}

.pillar-icon i {
  width: 22px;
  height: 22px;
  color: #040508;
}

.pillar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.pillar-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ==========================================
   Showcase Tab Navigation & Content Panels
   ========================================== */
.tabs-container {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.tabs-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.tab-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--border-color-hover);
  color: var(--text-primary);
}

.tab-btn.active {
  background: var(--accent-gradient);
  color: #040508;
  border-color: transparent;
  box-shadow: 0 4px 15px var(--shadow-glow);
}

.tab-btn.active .social-logo-svg {
  color: #040508;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fade-in 0.5s ease-out;
}

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

/* YouTube Video Cards (With Real Thumbnails) */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-hover);
  box-shadow: 0 8px 30px var(--shadow-glow);
}

.video-thumbnail-wrap {
  height: 170px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(4, 5, 8, 0.1) 50%, rgba(4, 5, 8, 0.85) 100%);
}

body.light-theme .video-thumbnail-wrap::after {
  background: linear-gradient(to bottom, rgba(250, 248, 245, 0.1) 50%, rgba(250, 248, 245, 0.85) 100%);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--accent-gradient);
  color: #040508;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.play-overlay {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(4, 5, 8, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
  background: var(--accent-primary);
  color: #040508;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 4px 15px var(--shadow-glow);
}

.video-meta {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-meta h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
  height: 2.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}

.video-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 0.8rem;
}

.video-stats span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.video-stats i {
  width: 14px;
  height: 14px;
}

.video-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: auto;
  transition: all 0.2s ease;
}

.video-link-btn:hover {
  background: var(--accent-gradient);
  color: #040508;
  border-color: transparent;
}

/* Instagram Reels Cards */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.reel-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.reel-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-hover);
  box-shadow: 0 8px 30px var(--shadow-glow);
}

.reel-thumbnail-wrap {
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-thumbnail-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(4, 5, 8, 0.1) 60%, rgba(4, 5, 8, 0.85) 100%);
}

body.light-theme .reel-thumbnail-wrap::after {
  background: linear-gradient(to bottom, rgba(250, 248, 245, 0.1) 60%, rgba(250, 248, 245, 0.85) 100%);
}

.reel-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.reel-card:hover .reel-thumbnail {
  transform: scale(1.05);
}

.reel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  background: #e1306c;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.reel-overlay {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(4, 5, 8, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  color: #fff;
  transition: all 0.3s ease;
}

.reel-card:hover .reel-overlay {
  background: #e1306c;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.reel-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.reel-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  height: 2.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}

.reel-theme {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

/* ==========================================
   Brand Partnerships Section & Logo Cards
   ========================================== */
.brand-group h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
  border-left: 3px solid var(--accent-primary);
  padding-left: 0.75rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.brand-logo-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.brand-logo-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-glow);
}

.brand-logo-graphics {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.brand-logo-card:hover .brand-logo-graphics {
  background: var(--accent-gradient);
  color: #040508;
  border-color: transparent;
  transform: scale(1.08);
}

.brand-logo-graphics i {
  width: 18px;
  height: 18px;
  color: var(--accent-primary);
}

.brand-logo-card:hover .brand-logo-graphics i {
  color: #040508;
}

.brand-name-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* +More Brands Special Glow Styling */
.brand-more-card {
  border: 1px dashed var(--accent-primary);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(243, 161, 82, 0.05) 100%);
}

.brand-more-card .brand-logo-graphics {
  background: rgba(243, 161, 82, 0.08);
  border-color: rgba(243, 161, 82, 0.2);
}

.brand-more-card .brand-logo-graphics i {
  color: var(--accent-secondary);
}

.brand-more-card:hover {
  border-style: solid;
  border-color: var(--accent-secondary);
  box-shadow: 0 8px 25px rgba(243, 161, 82, 0.15);
}

/* ==========================================
   Connect Form Layout & Form Controls
   ========================================== */
.connect-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
  text-align: left;
}

.connect-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.connect-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.connect-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.direct-contact-wrap {
  margin-top: 1rem;
}

.direct-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-glass);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  max-width: fit-content;
}

.direct-contact-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
}

.direct-contact-item h4 {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.direct-email-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.direct-email-link:hover {
  color: var(--accent-primary);
}

/* Glassmorphic Form */
.form-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
  background-color: rgba(0, 0, 0, 0.01);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
}

body.light-theme .form-group input:focus,
body.light-theme .form-group select:focus,
body.light-theme .form-group textarea:focus {
  box-shadow: 0 0 0 2px rgba(180, 140, 20, 0.1);
  background-color: #fff;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

body.light-theme .form-group select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
}

.btn-block {
  width: 100%;
}

.form-status-msg {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 500;
  animation: fade-in 0.3s ease;
}

.form-status-msg.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status-msg.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==========================================
   Footer Section & Social Brands Icon Boxes
   ========================================== */
.main-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4.5rem 0 2rem 0;
  transition: background-color 0.4s ease;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-info {
  max-width: 400px;
}

.footer-info .logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links h4 {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-icons {
  display: flex;
  gap: 1.25rem;
}

.social-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-box:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* Color themed hovers for official brand SVGs */
.instagram-icon:hover {
  border-color: #e1306c;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.youtube-icon:hover {
  border-color: #ff0000;
  background: #ff0000;
}

.threads-icon:hover {
  border-color: var(--text-primary);
  background: #000000;
}

body.light-theme .threads-icon:hover {
  background: #000000;
  border-color: #000000;
  color: #fff;
}

.tiktok-icon:hover {
  border-color: #00f2fe;
  background: #010101;
  box-shadow: 2px 2px 0px #00f2fe, -2px -2px 0px #fe0979;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  
  .profile-card {
    transform: none;
  }
  
  .profile-card:hover {
    transform: translateY(-5px);
  }
  
  .connect-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .connect-info {
    text-align: center;
    align-items: center;
  }
  
  .direct-contact-item {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .form-card {
    padding: 1.75rem;
  }
  .main-nav {
    display: none; /* Mobile navigation toggle support */
  }
  
  .main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  
  .main-nav.active ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  
  .main-nav.active .btn-nav {
    text-align: center;
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .profile-card {
    padding: 1.5rem;
  }
  
  .profile-stats {
    padding: 0.8rem;
  }
  
  .stat-num {
    font-size: 1.3rem;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
}
