/* Manas Group - Premium Style Sheets */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;700;800&display=swap');

:root {
  --bg-color: #05050a;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  
  /* Art Studio Colors */
  --art-primary: #ec4899;
  --art-secondary: #a855f7;
  --art-glow: rgba(236, 72, 153, 0.15);
  --art-gradient: linear-gradient(135deg, #ec4899, #8b5cf6, #f59e0b);
  
  /* Outdoor & Adventure Colors */
  --outdoor-primary: #06b6d4;
  --outdoor-secondary: #10b981;
  --outdoor-glow: rgba(6, 182, 212, 0.15);
  --outdoor-gradient: linear-gradient(135deg, #06b6d4, #10b981, #3b82f6);
  
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #080810;
}
::-webkit-scrollbar-thumb {
  background: #1e1e2f;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2d2d44;
}

/* Base Body Styles */
body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  mix-blend-mode: difference;
}

.custom-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

/* Hide desktop cursor elements on touch devices */
@media (hover: none) {
  .custom-cursor,
  .custom-cursor-glow {
    display: none;
  }
}

/* Particle Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

/* Ambient Radial Glows */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 2;
  transition: all 1s ease;
}

.ambient-glow-1 {
  top: -10%;
  left: -10%;
  background: var(--art-gradient);
  animation: pulse-glow 15s infinite alternate;
}

.ambient-glow-2 {
  bottom: -10%;
  right: -10%;
  background: var(--outdoor-gradient);
  animation: pulse-glow 15s infinite alternate-reverse;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.12;
  }
  100% {
    transform: scale(1.2) translate(50px, 30px);
    opacity: 0.22;
  }
}

/* Main Layout Wrapper */
.main-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
}

.hero-content {
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    to right,
    #ffffff,
    #ffffff 40%,
    var(--art-primary),
    var(--outdoor-primary),
    #ffffff 80%,
    #ffffff
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-in 1s 1s forwards;
  cursor: pointer;
  transition: color 0.3s;
}

.scroll-indicator:hover {
  color: var(--text-primary);
}

@keyframes fade-in {
  to { opacity: 0.6; }
}

.scroll-mouse {
  width: 22px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: currentColor;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-anim 1.6s infinite;
}

@keyframes scroll-anim {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 15px);
  }
}

/* The Gateway - Split Card Layout */
.gateway-section {
  padding: 4rem 0 8rem 0;
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 1rem auto 0 auto;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
}

@media (max-width: 968px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Business Cards - Premium Glassmorphism */
.business-card {
  position: relative;
  background: rgba(10, 10, 18, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(50px);
  opacity: 0;
}

.business-card.reveal-active {
  transform: translateY(0);
  opacity: 1;
}

.business-card:nth-child(1) {
  transition-delay: 0.1s;
}

.business-card:nth-child(2) {
  transition-delay: 0.25s;
}

/* Card Radial Gradients for Subtle Depth */
.card-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glow-art {
  background: radial-gradient(circle, var(--art-primary) 0%, var(--art-secondary) 100%);
  top: -10%;
  right: -10%;
}

.card-glow-outdoor {
  background: radial-gradient(circle, var(--outdoor-primary) 0%, var(--outdoor-secondary) 100%);
  top: -10%;
  right: -10%;
}

/* Grid Overlay Design Pattern */
.card-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.6s;
}

/* Interactive Card Hover States */
.business-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.15);
}

.business-card-art:hover {
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5), 
               0 0 40px var(--art-glow);
}

.business-card-outdoor:hover {
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5), 
               0 0 40px var(--outdoor-glow);
}

.business-card:hover .card-glow {
  opacity: 0.45;
}

.business-card:hover .card-grid-pattern {
  opacity: 0.8;
}

/* Card Content Details */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s ease;
  color: var(--text-primary);
}

.business-card-art:hover .card-icon {
  background: var(--art-gradient);
  border-color: transparent;
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.business-card-outdoor:hover .card-icon {
  background: var(--outdoor-gradient);
  border-color: transparent;
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.card-badge {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
}

.business-card-art .card-badge {
  color: var(--art-primary);
  border-color: rgba(236, 72, 153, 0.2);
}

.business-card-art:hover .card-badge {
  background: rgba(236, 72, 153, 0.1);
  border-color: var(--art-primary);
}

.business-card-outdoor .card-badge {
  color: var(--outdoor-primary);
  border-color: rgba(6, 182, 212, 0.2);
}

.business-card-outdoor:hover .card-badge {
  background: rgba(6, 182, 212, 0.1);
  border-color: var(--outdoor-primary);
}

/* Card Typography & Text Body */
.card-body {
  margin-bottom: 2.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* Specialty Tags list */
.specialty-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.specialty-tag {
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.business-card-art:hover .specialty-tag {
  border-color: rgba(236, 72, 153, 0.15);
  background: rgba(236, 72, 153, 0.02);
  color: #f1f5f9;
}

.business-card-outdoor:hover .specialty-tag {
  border-color: rgba(6, 182, 212, 0.15);
  background: rgba(6, 182, 212, 0.02);
  color: #f1f5f9;
}

/* Custom Interactive Buttons */
.card-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

/* Art Studio Button - Magenta Neon */
.btn-art {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(236, 72, 153, 0.3);
  color: var(--text-primary);
}

.btn-art::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--art-gradient);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  opacity: 0.9;
}

.business-card-art:hover .btn-art, .btn-art:hover {
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.35);
}

.business-card-art:hover .btn-art::before, .btn-art:hover::before {
  left: 0;
}

/* Outdoor & Adventure Button - Cyan/Green Neon */
.btn-outdoor {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--text-primary);
}

.btn-outdoor::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--outdoor-gradient);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  opacity: 0.9;
}

.business-card-outdoor:hover .btn-outdoor, .btn-outdoor:hover {
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35);
}

.business-card-outdoor:hover .btn-outdoor::before, .btn-outdoor:hover::before {
  left: 0;
}

/* Button Icon Animations */
.card-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-btn:hover svg {
  transform: translateX(5px);
}

/* Minimalist Footer */
.sleek-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(3, 3, 7, 0.6);
  backdrop-filter: blur(10px);
  padding: 3rem 0;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-brand span {
  background: linear-gradient(to right, var(--art-primary), var(--outdoor-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

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

.footer-copy {
  font-size: 0.75rem;
  color: #475569;
}

/* Route Transition Overlay */
.route-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 10000;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-transition-overlay.active {
  transform: scaleY(1);
  transform-origin: top;
}

.transition-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s 0.4s ease;
}

.route-transition-overlay.active .transition-logo {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Interactive Feedback Toast */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-radius: 12px;
  z-index: 10001;
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
}

.toast-msg .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.toast-msg.art .dot {
  background-color: var(--art-primary);
  box-shadow: 0 0 10px var(--art-primary);
}

.toast-msg.outdoor .dot {
  background-color: var(--outdoor-primary);
  box-shadow: 0 0 10px var(--outdoor-primary);
}

/* ==========================================================================
   PREMIUM 3D SLIDING ART PUZZLE (EXTRAORDINARY UPGRADE)
   ========================================================================== */
.puzzle-section {
  max-width: 900px;
  margin: 6rem auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.puzzle-backdrop-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(236,72,153,0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.puzzle-wrapper {
  background: rgba(15, 15, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 30px;
  padding: 4rem 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Floating Geometric Decorations */
.floating-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: float 10s infinite ease-in-out alternate;
}
.deco-1 {
  width: 150px; height: 150px;
  background: rgba(236, 72, 153, 0.2);
  top: -20px; left: -20px;
}
.deco-2 {
  width: 200px; height: 200px;
  background: rgba(168, 85, 247, 0.15);
  bottom: -50px; right: -50px;
  animation-delay: -5s;
}

@keyframes float {
  100% { transform: translateY(30px) scale(1.1); }
}

.puzzle-header {
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
}

.puzzle-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.puzzle-instruction {
  color: #94a3b8;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* Premium Museum Frame */
.premium-frame {
  padding: 12px;
  background: linear-gradient(145deg, #222230, #0a0a10);
  border-radius: 12px;
  box-shadow: 0 40px 60px rgba(0,0,0,0.8), 
              inset 0 2px 5px rgba(255,255,255,0.1),
              inset 0 -2px 10px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}

/* The Board (Now Absolute Positioned for Sliding) */
.puzzle-board {
  width: 300px;
  height: 300px;
  background: #050508;
  position: relative; /* Crucial for absolute pieces */
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.puzzle-board.solved {
  box-shadow: 0 0 50px var(--art-glow), inset 0 0 20px rgba(236, 72, 153, 0.3);
}

/* The Pieces - Upgraded to slide and pop */
.puzzle-piece {
  position: absolute; /* Allows sliding */
  width: 100px;
  height: 100px;
  background-image: url('./mona.jpg');
  background-size: 300px 300px;
  background-repeat: no-repeat;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  cursor: pointer;
  
  /* The magic that makes it slide smoothly! */
  transition: top 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              transform 0.3s ease, 
              border-color 0.3s,
              box-shadow 0.3s;
}

.puzzle-piece:hover {
  filter: brightness(1.15) contrast(1.1);
  z-index: 5;
}

/* 3D Pop-out effect when clicked */
.puzzle-piece.selected {
  transform: scale(0.85);
  border: 2px solid var(--art-primary);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.5);
  z-index: 10;
  border-radius: 12px;
}

/* Melts the seams away when solved */
.puzzle-board.solved .puzzle-piece {
  border-color: transparent;
  border-radius: 0;
  transform: scale(1); /* Ensure no gaps */
}

/* Neon Win Text */
.puzzle-success {
  margin-top: 2rem;
  font-family: var(--font-display);
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--art-primary), 0 0 40px var(--art-secondary);
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  height: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.puzzle-success.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  height: auto;
}

.sparkle {
  color: var(--art-primary);
  animation: pulse 1.5s infinite alternate;
}

/* Premium Scramble Button */
.premium-btn {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.4s;
}

.premium-btn:hover {
  background: rgba(236, 72, 153, 0.1);
  border-color: var(--art-primary);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
  transform: translateY(-2px);
}



/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    padding-top: 6rem;
  }
  .business-card {
    padding: 2.25rem;
    min-height: 480px;
  }
  .card-header {
    margin-bottom: 1.5rem;
  }
  .card-body {
    margin-bottom: 2rem;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
  }
}

/* ==========================================================================
   HOLOGRAPHIC DATA CORE STYLES & ANIMATIONS
   ========================================================================== */
.data-core-container {
    background: linear-gradient(180deg, rgba(15, 15, 20, 0.9), rgba(5, 5, 10, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 4rem 3rem;
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(6, 182, 212, 0.05);
}

.core-title {
    color: #a1a1aa;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}

/* Circuit Board Layout */
.circuit-board {
    position: relative;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* The Glowing Spine */
.circuit-line {
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, #06b6d4, #ec4899, #06b6d4);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

/* The Data Entries */
.data-entry {
    position: relative;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.data-entry:hover {
    transform: translateX(15px);
}

/* Continuous Node Pulsing */
@keyframes nodePulse {
    0% { transform: scale(1); box-shadow: 0 0 5px currentColor; }
    50% { transform: scale(1.3); box-shadow: 0 0 15px currentColor, 0 0 30px currentColor; }
    100% { transform: scale(1); box-shadow: 0 0 5px currentColor; }
}

.glowing-node {
    position: absolute;
    left: -39px; /* Aligns exactly with the circuit line */
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    z-index: 5;
}

.cyan-node {
    color: #06b6d4;
    background: #06b6d4;
    animation: nodePulse 2s infinite ease-in-out;
}

.magenta-node {
    color: #ec4899;
    background: #ec4899;
    animation: nodePulse 2s infinite ease-in-out;
    animation-delay: 1s; /* Offsets the pulse so they blink alternately */
}

/* Typography */
.data-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.data-label {
    color: #a1a1aa;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.data-value {
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.cyan-glow-text {
    color: #fff;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.magenta-glow-text {
    color: #fff;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

.cyan-glow-text:hover { color: #06b6d4; }
.magenta-glow-text:hover { color: #ec4899; }
/* ==========================================================================
   DATA CORE SUBTEXT STYLES
   ========================================================================== */
.data-context {
    color: #8a8a93;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    max-width: 450px;
    letter-spacing: 0.5px;
    font-weight: 400;
}
/* ==========================================================================
   FLOATING ART LINK (Inside Contact Section Only)
   ========================================================================== */
.floating-art-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid #06b6d4;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    z-index: 20;
    /* Continuous floating physics */
    animation: floatBadge 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-art-badge:hover {
    background: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.8);
    transform: scale(1.05);
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ==========================================================================
   UPGRADED BLUE LASER SCANNER
   ========================================================================== */
.laser-scanner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    /* Upgraded to an energy gradient instead of a solid line */
    background: linear-gradient(90deg, transparent, #06b6d4, #ffffff, #06b6d4, transparent);
    box-shadow: 0 0 25px 5px rgba(6, 182, 212, 0.6);
    /* Smoother, cooler scanning speed */
    animation: laserScan 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 10;
    pointer-events: none;
}
/* ==========================================================================
   NEON PLASMA FLOATING ORBS STYLES
   ========================================================================== */
.floating-dock {
    position: fixed;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 99999;
}

.left-dock { left: 30px; }
.right-dock { right: 30px; }

/* Continuous Breathing Glow */
@keyframes plasmaBreathe {
    0%, 100% { box-shadow: 0 0 10px currentColor, inset 0 0 5px currentColor; }
    50% { box-shadow: 0 0 25px currentColor, inset 0 0 15px currentColor; }
}

/* Continuous Radar Spin */
@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.plasma-btn {
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
    width: 60px; /* Starts as an orb */
    border-radius: 50px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    text-decoration: none;
    /* Spring physics for the width expansion */
    transition: width 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}

/* Base Colors for the Glow */
.cyan-plasma { 
    color: #06b6d4; 
    animation: plasmaBreathe 3s infinite ease-in-out; 
}
.magenta-plasma { 
    color: #ec4899; 
    animation: plasmaBreathe 3s infinite ease-in-out; 
    animation-delay: 1.5s; 
}

/* The Spinning Dash Border */
.plasma-ring {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    border: 2px dashed currentColor;
    opacity: 0.6;
    animation: spinRing 6s linear infinite;
    transition: opacity 0.3s, border-style 0.3s, animation-duration 0.3s;
}

.icon-core {
    min-width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plasma-text {
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease 0.1s, transform 0.4s ease 0.1s;
    z-index: 2;
}

/* ==========================================
   IRRESISTIBLE HOVER PHYSICS
   ========================================== */
.plasma-btn:hover {
    width: 200px; /* Expands to full pill */
    background: rgba(20, 20, 25, 0.95);
    box-shadow: 0 0 40px currentColor, inset 0 0 20px currentColor;
}

/* Spin speeds up and turns solid */
.plasma-btn:hover .plasma-ring {
    opacity: 1;
    border-style: solid;
    animation-duration: 1.5s; 
}

/* Icon does a lightning-fast 360 flip */
.plasma-btn:hover .icon-core {
    transform: rotate(360deg) scale(1.1);
}

/* Text glides in with a neon shadow */
.plasma-btn:hover .plasma-text {
    opacity: 1;
    transform: translateX(0);
    text-shadow: 0 0 10px currentColor;
}

/* Right Side Alignment Magic */
.plasma-btn.reverse {
    width: 60px;
    justify-content: flex-end;
}
.plasma-btn.reverse:hover {
    width: 200px;
}
.plasma-btn.reverse .plasma-text {
    transform: translateX(20px);
    margin-right: 15px; 
}
.plasma-btn.reverse:hover .plasma-text {
    transform: translateX(0px);
}
/* ==========================================================================
   UNIQUE HOLOGRAPHIC CONTACT CONSOLE STYLES
   ========================================================================== */
.premium-contact-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 20;
    max-width: 1200px;
    margin: 0 auto;
}

/* The Massive Glass Terminal */
.contact-console {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 4rem;
    gap: 4rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.console-left, .console-right {
    flex: 1;
    min-width: 300px;
}

/* Left Side Typography */
.holographic-title {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(90deg, #ec4899, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.console-desc {
    color: #a1a1aa;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ==========================================
   FUTURISTIC FLOATING FORM INPUTS
   ========================================== */
.input-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.holographic-form input, 
.holographic-form textarea {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0.5rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s ease;
}

/* The label sits inside the input by default */
.holographic-form label {
    position: absolute;
    top: 1rem;
    left: 0.5rem;
    color: #a1a1aa;
    transition: 0.3s ease;
    pointer-events: none;
}

/* When clicked or filled, the label floats up and turns cyan */
.holographic-form input:focus ~ label,
.holographic-form input:not(:placeholder-shown) ~ label,
.holographic-form textarea:focus ~ label,
.holographic-form textarea:not(:placeholder-shown) ~ label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: #06b6d4;
}

/* The glowing line that sweeps across the bottom */
.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #ec4899);
    transition: 0.4s ease;
}

.holographic-form input:focus ~ .focus-border,
.holographic-form textarea:focus ~ .focus-border {
    width: 100%;
}

/* ==========================================
   CYBER BUTTON
   ========================================== */
.cyber-btn {
    background: transparent;
    border: 1px solid #ec4899;
    color: #fff;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.cyber-btn:hover {
    background: rgba(236, 72, 153, 0.2);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}
