@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --cosmic-purple: #6D28D9;
  --electric-violet: #8B5CF6;
  --deep-indigo: #312E81;
  --neon-cyan: #22D3EE;
  --crimson-glow: #DC2626;
  --midnight-black: #050505;
  --platinum-gold: #E7C77A;
  --glass-bg: rgba(23, 23, 23, 0.7);
  --glass-border: rgba(109, 40, 217, 0.2);
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--midnight-black) !important;
  color: var(--text-primary) !important;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--midnight-black);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--deep-indigo), var(--cosmic-purple));
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--electric-violet);
}

/* Background Cosmic Texture */
.cosmic-background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url('../assets/cosmic-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.65;
  filter: saturate(1.1) brightness(0.9);
}

.cosmic-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.8) 80%);
  pointer-events: none;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.cosmic-glow-text {
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, #FFF, var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-glow-text {
  text-shadow: 0 0 20px rgba(231, 199, 122, 0.4);
  background: linear-gradient(135deg, #FFF, var(--platinum-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.purple-glow-text {
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, #FFF, var(--electric-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px var(--electric-violet));
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--electric-violet));
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #FFF;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 0.25em;
  margin-top: -2px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: #FFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: width 0.3s ease;
}

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

/* Services Dropdown */
.services-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  width: 240px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
}

.nav-item:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: rgba(109, 40, 217, 0.15);
  color: var(--neon-cyan);
  padding-left: 18px;
}

/* CTA Header Button */
.cta-header-btn {
  background: transparent;
  border: 1px solid var(--cosmic-purple);
  color: #FFF;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(109, 40, 217, 0.2);
}

.cta-header-btn:hover {
  background: var(--cosmic-purple);
  border-color: var(--electric-violet);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Fixed Spade Card Scroll Element */
#storytelling-spade-card {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 240px;
  height: auto;
  aspect-ratio: 1;
  z-index: 5;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  filter: drop-shadow(0 0 30px rgba(109,40,217,0.6));
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
  will-change: transform, filter;
  display: flex;
  justify-content: center;
  align-items: center;
}

#storytelling-spade-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Base Layout Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

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

.hero-tag {
  display: inline-block;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 6px 16px;
  border-radius: 9999px;
  color: var(--neon-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--cosmic-purple);
  border: 1px solid var(--electric-violet);
  color: #FFF;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.3);
}

.btn-primary:hover {
  background: var(--electric-violet);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #FFF;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hero-bullet-icon {
  color: var(--neon-cyan);
  font-weight: bold;
}

/* Trust Strip */
.trust-strip {
  background: rgba(10, 10, 10, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 0;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  font-size: 1.2rem;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
  background: var(--cosmic-purple);
  color: #FFF;
  box-shadow: 0 0 15px var(--electric-violet);
  transform: scale(1.1);
}

.trust-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFF;
}

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

/* Generic Section Styles */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Premium Card Components */
.premium-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 50%);
  pointer-events: none;
}

.premium-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.15);
  transform: translateY(-6px);
}

/* Core Services Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.services-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* We leave spacing inside the middle of the services grid on home page for the card */
.services-container {
  position: relative;
}

.service-icon {
  font-size: 2.25rem;
  color: var(--electric-violet);
  margin-bottom: 24px;
}

.service-card-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-link {
  color: var(--neon-cyan);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.service-card-link:hover {
  gap: 10px;
}

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 32px 24px;
}

.why-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--neon-cyan);
  margin: 0 auto 20px auto;
}

.why-card:hover .why-card-icon {
  background: var(--neon-cyan);
  color: var(--midnight-black);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.why-card-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-card-desc {
  font-size: 0.85rem;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--cosmic-purple), var(--neon-cyan));
  z-index: -1;
  opacity: 0.3;
}

.process-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--cosmic-purple);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.15);
}

.process-step {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--cosmic-purple), var(--electric-violet));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #FFF;
  box-shadow: 0 0 15px rgba(109, 40, 217, 0.5);
}

.process-icon {
  font-size: 2rem;
  color: var(--neon-cyan);
  margin-bottom: 16px;
}

.process-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.process-card-desc {
  font-size: 0.85rem;
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, rgba(49, 46, 129, 0.4), rgba(109, 40, 217, 0.15));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 64px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content {
  max-width: 600px;
}

.cta-banner-title {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.cta-banner-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Footer Styles */
footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 24px 0;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-brand-desc {
  margin: 16px 0 24px 0;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--cosmic-purple);
  color: #FFF;
  box-shadow: 0 0 10px var(--electric-violet);
  transform: scale(1.1);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-contact-list i {
  color: var(--neon-cyan);
  font-size: 1rem;
}

.footer-newsletter-text {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 6px;
  color: #FFF;
  font-size: 0.85rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--electric-violet);
}

.newsletter-btn {
  background: var(--cosmic-purple);
  border: none;
  color: #FFF;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--electric-violet);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #FFF;
}

/* Chatbot Interface */
#spade-chat-widget {
  position: fixed;
  bottom: 95px;
  right: 24px;
  z-index: 9999;
  width: 380px;
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  font-family: 'Inter', sans-serif;
  color: #FFF;
  overflow: hidden;
  display: none;
  flex-direction: column;
  backdrop-filter: blur(16px);
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-header {
  background: linear-gradient(135deg, var(--deep-indigo), var(--cosmic-purple));
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.chat-header-title {
  font-weight: 700;
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 22px;
  transition: color 0.2s ease;
}

.chat-close-btn:hover {
  color: #FFF;
}

.chat-body {
  padding: 20px;
  height: 320px;
  overflow-y: auto;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-msg {
  padding: 12px 16px;
  border-radius: 12px;
  max-width: 85%;
  line-height: 1.4;
  word-wrap: break-word;
}

.chat-msg.bot {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-msg.user {
  background: var(--cosmic-purple);
  color: #FFF;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.chat-opt-btn {
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: var(--neon-cyan);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  transition: all 0.2s ease;
}

.chat-opt-btn:hover {
  background: var(--neon-cyan);
  color: var(--midnight-black);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.chat-input-area {
  padding: 14px 20px;
  background: #0a0a0a;
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 8px;
  color: #FFF;
  font-size: 0.85rem;
  outline: none;
}

.chat-input:focus {
  border-color: var(--electric-violet);
}

.chat-send-btn {
  background: var(--cosmic-purple);
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

.chat-send-btn:hover {
  background: var(--electric-violet);
}

/* Chatbot Floating Trigger Button */
.chat-trigger-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--cosmic-purple), var(--deep-indigo));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.4);
  border: 1px solid var(--neon-cyan);
  transition: all 0.3s ease;
}

.chat-trigger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.6);
}

.chat-trigger-icon {
  color: white;
  font-size: 26px;
}

/* WhatsApp Floating sticky */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-svg {
  width: 28px;
  height: 28px;
  fill: #FFF;
}

/* Inner Page Layout Styles */
.inner-hero {
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.inner-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* About Page Details */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1rem;
}

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

.value-card {
  padding: 32px;
}

.value-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--neon-cyan);
}

/* Contact Forms & CRM styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
}

.contact-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 48px;
}

.contact-form-title {
  font-size: 1.75rem;
  margin-bottom: 32px;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFF;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  color: #FFF;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: border 0.3s ease;
}

.form-control:focus {
  border-color: var(--electric-violet);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.25);
}

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

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-card {
  padding: 32px;
}

.contact-info-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

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

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

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--neon-cyan);
}

.contact-info-label {
  font-weight: 600;
  color: #FFF;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-value {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.contact-info-value:hover {
  color: var(--neon-cyan);
}

/* Booking Scheduler Page */
.scheduler-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.simulated-calendar {
  margin-top: 32px;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  text-align: left;
}

.calendar-header {
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.calendar-day-name {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 8px 0;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-primary);
}

.calendar-day:hover:not(.empty):not(.disabled) {
  background: rgba(109, 40, 217, 0.2);
  color: var(--neon-cyan);
}

.calendar-day.active {
  background: var(--cosmic-purple) !important;
  color: #FFF !important;
  box-shadow: 0 0 10px rgba(109, 40, 217, 0.5);
}

.calendar-day.disabled {
  color: rgba(255, 255, 255, 0.15);
  cursor: not-allowed;
}

.calendar-day.empty {
  cursor: default;
}

.slots-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
}

.slots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-height: 240px;
  overflow-y: auto;
}

.slot-btn {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFF;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  transition: all 0.2s ease;
}

.slot-btn:hover {
  border-color: var(--neon-cyan);
  background: rgba(34, 211, 238, 0.05);
}

.slot-btn.selected {
  background: var(--neon-cyan);
  color: var(--midnight-black);
  border-color: var(--neon-cyan);
  font-weight: 600;
}

.booking-confirm-form {
  display: none;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  animation: slideIn 0.3s ease forwards;
}

/* Success Modal Styles */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.success-modal {
  background: #121212;
  border: 1px solid var(--neon-cyan);
  border-radius: 16px;
  padding: 48px;
  width: 480px;
  text-align: center;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.2);
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px auto;
}

/* Service Detail Pages */
.service-details-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.service-body h2 {
  font-size: 2rem;
  margin: 40px 0 20px 0;
}

.service-body h2:first-of-type {
  margin-top: 0;
}

.service-body p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.service-body ul {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-body li {
  position: relative;
  padding-left: 28px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.service-body li::before {
  content: '♠';
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
  font-size: 1.1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 20px;
}

.faq-question {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #FFF;
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(12px);
}

.sidebar-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

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

.sidebar-menu-link {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sidebar-menu-link:hover, .sidebar-menu-link.active {
  background: rgba(109, 40, 217, 0.15);
  border-color: var(--electric-violet);
  color: #FFF;
  padding-left: 20px;
}

/* Insights / Resources Page Layout */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.insight-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  align-items: center;
}

.insight-cover {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--deep-indigo), var(--cosmic-purple));
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.insight-cover-icon {
  font-size: 2rem;
  color: var(--neon-cyan);
}

.insight-cover-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.3;
}

.insight-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.insight-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Gate download Modal */
.gate-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.gate-modal {
  background: #121212;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  width: 480px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gate-modal-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  text-align: center;
}

.gate-modal-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
}

/* Blog Page System */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.blog-search-wrapper {
  flex-grow: 1;
  max-width: 400px;
  position: relative;
}

.blog-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px 12px 40px;
  border-radius: 8px;
  color: #FFF;
  font-size: 0.95rem;
  outline: none;
}

.blog-search-input:focus {
  border-color: var(--electric-violet);
}

.blog-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

.blog-filters {
  display: flex;
  gap: 12px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--cosmic-purple);
  border-color: var(--electric-violet);
  color: #FFF;
  box-shadow: 0 0 10px rgba(109, 40, 217, 0.3);
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--deep-indigo), var(--cosmic-purple));
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.blog-thumbnail-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cosmic-purple);
  color: #FFF;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Single Blog Post Reader Layout */
.single-blog-wrapper {
  display: none; /* Controlled via JS */
  grid-template-columns: 1fr;
  gap: 32px;
}

.blog-back-btn {
  background: none;
  border: none;
  color: var(--neon-cyan);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.blog-back-btn:hover {
  text-decoration: underline;
}

.blog-post-header {
  margin-bottom: 40px;
}

.blog-post-title {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blog-post-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 24px;
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-post-author-avatar {
  width: 32px;
  height: 32px;
  background: var(--cosmic-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #FFF;
  font-size: 0.8rem;
}

.blog-post-grid {
  display: grid;
  grid-template-columns: 0.3fr 1.7fr;
  gap: 48px;
}

.blog-post-toc-wrapper {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.blog-post-toc-title {
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neon-cyan);
}

.blog-post-toc {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 16px;
}

.blog-post-toc a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.blog-post-toc a:hover {
  color: #FFF;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.7;
}

.blog-post-content h2 {
  font-size: 1.85rem;
  margin: 40px 0 20px 0;
}

.blog-post-content p {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.blog-post-share {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-post-share-title {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  #storytelling-spade-card {
    width: 280px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .services-grid, .services-grid-three, .why-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::after {
    display: none;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top > :first-child, .footer-top > :last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 16px;
  }
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #050505;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .mobile-toggle {
    display: block;
  }
  .services-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
    padding: 0 0 0 16px;
  }
  .nav-item:hover .services-dropdown {
    transform: none;
  }
  .dropdown-link {
    padding: 8px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  #storytelling-spade-card {
    display: none; /* Hide scroll card on mobile to maintain performance/readability */
  }
  .services-grid, .services-grid-three, .why-grid, .process-grid, .about-grid, .contact-grid, .simulated-calendar, .service-details-layout, .insights-grid, .blog-grid, .blog-post-grid {
    grid-template-columns: 1fr;
  }
  .slots-panel {
    border-left: none;
    padding-left: 0;
    margin-top: 24px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #spade-chat-widget {
    width: calc(100% - 32px);
    right: 16px;
    bottom: 85px;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 40px 24px;
  }
  .blog-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-filters {
    overflow-x: auto;
    padding-bottom: 8px;
  }
}
