/* ULTRA VIBRANT, MAKEMEPULSE INSPIRED CSS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap');

:root {
  --neon-pink: #FF0055;
  --neon-orange: #FF5500;
  --neon-purple: #9D00FF;
  --neon-red: #FF0022;
  --bg-dark: #050505;
  --text-light: #FFFFFF;
  --ease-fluid: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.learn-more-link {
    color: #ff0033;
    font-weight: bold;
    text-decoration: none;
}

.learn-more-link:hover {
    text-decoration: underline;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--neon-pink);
  background-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform, width, height;
  transition: width 0.25s var(--ease-fluid), height 0.25s var(--ease-fluid), border-color 0.25s var(--ease-fluid), background-color 0.25s var(--ease-fluid), transform 0.15s var(--ease-fluid);
  mix-blend-mode: difference;
}

.custom-cursor.active {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 85, 0, 0.15);
  border-color: var(--neon-orange);
  transform: translate(-50%, -50%) scale(1.2);
}

.custom-cursor.click {
  transform: translate(-50%, -50%) scale(0.85);
}

/* Typography */
h1, h2, h3 {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.85;
}

.mega-text {
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: -0.02em;
}

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

/* Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: var(--bg-dark); /* IMPORTANT */
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #ddff00;
  text-shadow: 
    0 0 4px rgba(221, 255, 0, 0.4),
    0 0 8px rgba(221, 255, 0, 0.3),
    0 0 16px rgba(221, 255, 0, 0.2);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  color: #ddff00;
  text-shadow: 
    0 0 4px rgba(221, 255, 0, 0.4),
    0 0 8px rgba(221, 255, 0, 0.3),
    0 0 16px rgba(221, 255, 0, 0.2);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #ddff00;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(221, 255, 0, 0.6);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  font-weight: 900;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3d0015, #4a0080, #800040, #4a0030);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(255, 0, 85, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(157, 0, 255, 0.25) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 85, 0, 0.2) 0%, transparent 40%);
  animation: heroGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 0, 85, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroOrb1 8s ease-in-out infinite;
  pointer-events: none;
}

/* Floating geometric shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 15%;
  border: 3px solid #FF0055;
  box-shadow: 0 0 30px rgba(255, 0, 85, 0.5), inset 0 0 30px rgba(255, 0, 85, 0.2);
  animation: shapeFloat1 12s ease-in-out infinite;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  border: 3px solid #9D00FF;
  box-shadow: 0 0 25px rgba(157, 0, 255, 0.5), inset 0 0 25px rgba(157, 0, 255, 0.2);
  animation: shapeFloat2 10s ease-in-out infinite;
}

.hero-shape-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 20%;
  background: #FF5500;
  box-shadow: 0 0 30px rgba(255, 85, 0, 0.6);
  animation: shapeFloat3 8s ease-in-out infinite;
}

@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  33% { transform: translate(-30px, -40px) scale(1.2); opacity: 0.6; }
  66% { transform: translate(20px, -20px) scale(0.9); opacity: 0.3; }
}

@keyframes shapeFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, -15px) rotate(240deg); }
}

@keyframes shapeFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(15px, -25px) rotate(180deg); }
}

@keyframes shapeFloat3 {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.3); opacity: 0.2; }
}

.hero-text-wrapper {
  position: relative;
  z-index: 2;
}

.hero h1 {
  position: relative;
  animation: heroTextReveal 1.2s var(--ease-fluid) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-orange), var(--neon-purple));
  animation: heroLineReveal 1s var(--ease-bounce) 0.8s forwards;
}

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

@keyframes heroLineReveal {
  to {
    width: 200px;
  }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  33% { transform: translate(-30px, -40px) scale(1.2); opacity: 0.6; }
  66% { transform: translate(20px, -20px) scale(0.9); opacity: 0.3; }
}

.hero p {
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 700;
  max-width: 600px;
  margin-top: 2rem;
  line-height: 1.2;
}

/* Marquee */
.marquee-container {
  position: absolute;
  bottom: 5vh;
  left: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.6;
}

.marquee-text {
  display: inline-block;
  font-size: 5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 0, 85, 0.3);
  animation: marquee 12s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Panels */
.panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  contain: layout style;
}

/* Panel ambient glows on sides */
.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 0, 85, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(270deg, rgba(157, 0, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.panel-content {
  flex: 1;
  z-index: 2;
  position: relative;
}

/* Floating accent shapes in panel content */
.panel-content::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s var(--ease-fluid);
  pointer-events: none;
}

.panel:hover .panel-content::before {
  opacity: 1;
  transform: scale(1);
  right: -50px;
}

.positioning-section {
    padding: 120px 20px;
    background: #0b0b0b;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.positioning-container {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.positioning-heading {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.positioning-text {
    font-size: 20px;
    color: #d4af37; /* gold accent */
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.positioning-subtext {
    font-size: 16px;
    color: #aaaaaa;
    line-height: 1.7;
}

.panel-content h2 {
  font-size: clamp(3rem, 8vw, 10rem);
  margin-bottom: 2rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--text-light);
  transition: color 0.5s var(--ease-fluid), -webkit-text-stroke 0.5s var(--ease-fluid), transform 0.5s var(--ease-fluid), text-shadow 0.5s var(--ease-fluid);
}

.panel:hover .panel-content h2 {
  color: var(--text-light);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.panel-content p {
  font-size: 1.5rem;
  max-width: 500px;
  margin-bottom: 3rem;
  font-weight: 400;
}

.panel-image {
  flex: 1;
  height: 70vh;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: transform 0.6s var(--ease-fluid), box-shadow 0.6s var(--ease-fluid);
  animation: imageFloat 8s ease-in-out infinite;
}

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

.panel:hover .panel-image {
  animation-play-state: paused;
}

.panel:hover .panel-image {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 40px 100px rgba(255, 0, 85, 0.3), 0 0 60px rgba(255, 0, 85, 0.15);
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.1);
  transition: filter 0.6s var(--ease-fluid), transform 0.8s var(--ease-fluid);
}

.panel:hover .panel-image img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.08);
}

/* Vibrant Panel Colors */
.panel-1 { background-color: var(--neon-pink); }
.panel-2 { background-color: var(--neon-purple); flex-direction: row-reverse; }
.panel-3 { background-color: var(--neon-orange); }
.panel-4 { background-color: var(--neon-pink); flex-direction: row-reverse; }
.panel-5 { background-color: var(--neon-purple); }
.panel-6 { background-color: var(--neon-orange); flex-direction: row-reverse; }

/* Buttons */
.btn-huge {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 1.5rem 3rem;
  border: 4px solid var(--text-light);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-huge:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
}

/* General Pages */
.page-hero {
  padding: 15rem 4rem 5rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 10% 50%, rgba(255, 0, 85, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(157, 0, 255, 0.15) 0%, transparent 50%);
  animation: pageHeroAmbient 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pageHeroAmbient {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  background: linear-gradient(to right, var(--neon-pink), var(--neon-orange));
  -webkit-background-clip: text;
  color: transparent;
}

.services-list, .careers-list {
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.services-list::before, .careers-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 0% 30%, rgba(255, 0, 85, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 100% 70%, rgba(157, 0, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.services-list > *, .careers-list > * {
  position: relative;
  z-index: 1;
  contain: layout style;
}

.service-row, .job-row {
  border-top: 2px solid rgba(255,255,255,0.2);
  padding: 4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  will-change: transform, background-color;
}

.service-row::before, .job-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 0, 85, 0.03) 0%, 
    transparent 0%, 
    transparent 100%);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.service-row:hover::before, .job-row:hover::before {
  background: linear-gradient(90deg, 
    rgba(255, 0, 85, 0.08) 0%, 
    rgba(157, 0, 255, 0.05) 50%, 
    rgba(255, 0, 85, 0.08) 100%);
}

.service-row:hover, .job-row:hover {
  background-color: rgba(255,255,255,0.02);
}

.service-row h2, .job-row h3 {
  font-size: 3rem;
  width: 40%;
  position: relative;
}

.service-row h2::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  width: 4px;
  height: 60%;
  background: linear-gradient(to bottom, var(--neon-pink), var(--neon-purple), var(--neon-orange));
  transform: translateY(-50%);
  border-radius: 2px;
}

.service-row-content, .job-row-content {
  width: 55%;
  position: relative;
}

.service-row-content::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 0, 85, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(30px);
  pointer-events: none;
}

.service-row:hover .service-row-content::before {
  opacity: 1;
  right: -30px;
  transform: scale(1.2);
}

.service-row-content p, .job-row-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.8);
}

.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--neon-purple);
  color: white;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  padding: 8rem 4rem 4rem;
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: -2px;
}

/* Animations */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Forms & Modals */
.form-input {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(255,255,255,0.05);
}

.form-input option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: var(--bg-dark);
    margin: 10% auto;
    padding: 4rem;
    border: 1px solid var(--neon-pink);
    width: 90%;
    max-width: 600px;
    position: relative;
    border-radius: 20px;
}

.close-modal {
    color: var(--text-light);
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--neon-pink);
}

/* Footer Grid Layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: left;
}

.footer-brand .footer-logo { margin-bottom: 1rem; }

.footer-links h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-orange);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { font-size: 1.2rem; font-weight: 700; transition: color 0.3s; }
.footer-links a:hover { color: var(--neon-pink); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* Responsive Images */
.service-row img, .page-hero img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .service-row img, .page-hero img {
    max-height: 300px;
  }
}

@media (max-width: 600px) {
  .service-row img, .page-hero img {
    max-height: 250px;
  }
}

/* Responsive & Touch */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor { display: none !important; }
  * { cursor: auto !important; }
}

@media (max-width: 900px) {
  header { padding: 1.5rem 2rem; }
  .nav-links { 
    display: none; 
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #050505;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle { display: block; }
  .panel { flex-direction: column !important; padding: 4rem 2rem; }
  .panel-image { width: 100%; height: 40vh; margin-top: 2rem; }
  .hero { padding: 0 2rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .marquee-text { font-size: 3rem; }
  .service-row, .job-row { flex-direction: column; }
  .service-row h2, .job-row h3, .service-row-content, .job-row-content { width: 100%; }
  .service-row h2, .job-row h3 { margin-bottom: 2rem; }
  .page-hero { padding: 12rem 2rem 4rem; }
  .page-hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
}

@media (max-width: 600px) {
  header { padding: 1rem 1.5rem; }
  .logo { font-size: 1.2rem; }
  .hero { padding: 0 1.5rem; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .hero p { font-size: 1rem; }
  .marquee-text { font-size: 2rem; }
  .marquee-container { bottom: 8vh; }
  .panel { padding: 3rem 1.5rem; }
  .panel-content h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .panel-image { height: 30vh; }
  .mega-text { font-size: clamp(2rem, 8vw, 3rem); }
  .services-list, .careers-list { padding: 2rem 1.5rem; }
  .service-row, .job-row { padding: 2rem 0; }
  .service-row h2, .job-row h3 { font-size: 2rem; }
  .footer-logo { font-size: 2.5rem; }
  footer { padding: 4rem 1.5rem 2rem; }
  .page-hero { padding: 10rem 1.5rem 3rem; }
  .btn-huge { font-size: 1.1rem; padding: 1rem 1.5rem; min-height: 44px; }
  .modal-content { width: 95%; margin: 20% auto; padding: 1.5rem; }
  .form-input { padding: 1rem; font-size: 1rem; min-height: 44px; }
  select.form-input { min-height: 44px; }
  .footer-content { flex-direction: column; gap: 2rem; }
  .floating-heart { font-size: 40px; }
  .hero-shape { display: none; }
}

@media (max-width: 400px) {
  .logo { font-size: 1rem; letter-spacing: 0; }
  .page-hero h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .panel-content h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .btn-huge { font-size: 1rem; padding: 0.8rem 1.5rem; }
  .service-row h2, .job-row h3 { font-size: 1.6rem; }
}

/* Calendar Styles */
.calendar-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
}

.calendar-popup {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 320px;
}

.calendar-popup.active {
  display: block;
  animation: calFadeIn 0.3s ease;
}

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

.calendar-container {
  background: rgba(20, 20, 20, 0.98);
  border: 2px solid var(--neon-pink);
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-header button {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.calendar-header button:hover {
  color: var(--neon-pink);
}

.cal-month {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.5rem;
}

.cal-weekdays span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.cal-days button {
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 0.8rem 0.5rem;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cal-days button:hover:not(:disabled) {
  background: rgba(255, 0, 85, 0.2);
  color: var(--neon-pink);
}

.cal-days button.selected {
  background: var(--neon-pink);
  color: white;
}

.cal-days button:disabled {
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.cal-days button.today {
  border: 2px solid var(--neon-orange);
}

.selected-date-display {
  margin-top: 0.8rem;
  color: var(--neon-pink);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: whatsappPulse 3s ease-in-out infinite;
}

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

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* Floating Hearts Animation */
.floating-hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-heart {
  position: absolute;
  font-size: 80px;
  opacity: 0.25;
  animation: heartBeat 1.5s ease-in-out infinite;
  color: var(--neon-pink);
  filter: drop-shadow(0 0 20px rgba(255, 0, 85, 0.5));
}

.floating-heart:nth-child(odd) {
  color: var(--neon-purple);
}

.floating-heart:nth-child(3n) {
  color: var(--neon-orange);
  font-size: 60px;
  animation-duration: 1.8s;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  14% {
    transform: scale(1.15);
    opacity: 0.3;
  }
  28% {
    transform: scale(1);
    opacity: 0.2;
  }
  42% {
    transform: scale(1.15);
    opacity: 0.3;
  }
  70% {
    transform: scale(1);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

/* Sparkle effect */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--text-light);
  border-radius: 50%;
  opacity: 0;
  animation: sparkleAnim 3s ease-in-out infinite;
}

@keyframes sparkleAnim {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 0.8; transform: scale(1); }
}

/* Ambient Background Layer */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.ambient-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 85, 0.3) 0%, transparent 70%);
  top: 10%;
  left: -100px;
  animation-delay: 0s;
}

.ambient-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.3) 0%, transparent 70%);
  top: 50%;
  right: -50px;
  animation-delay: -5s;
}

.ambient-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.25) 0%, transparent 70%);
  bottom: 10%;
  left: 30%;
  animation-delay: -10s;
}

.ambient-orb-4 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 0, 34, 0.25) 0%, transparent 70%);
  top: 70%;
  right: 20%;
  animation-delay: -15s;
}

@keyframes orbFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1) rotate(0deg); 
    opacity: 0.3;
  }
  25% { 
    transform: translate(30px, -50px) scale(1.1) rotate(5deg); 
    opacity: 0.5;
  }
  50% { 
    transform: translate(-20px, -100px) scale(0.9) rotate(-5deg); 
    opacity: 0.3;
  }
  75% { 
    transform: translate(-50px, -50px) scale(1.05) rotate(3deg); 
    opacity: 0.5;
  }
}

/* Grain Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grainShift 0.5s steps(10) infinite;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-1%, -1%); }
  20% { transform: translate(1%, 1%); }
  30% { transform: translate(-1%, 1%); }
  40% { transform: translate(1%, -1%); }
  50% { transform: translate(-1%, 0); }
  60% { transform: translate(1%, 0); }
  70% { transform: translate(0, 1%); }
  80% { transform: translate(0, -1%); }
  90% { transform: translate(1%, 1%); }
}

/* Particle Background */
.particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-pink);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; background: var(--neon-pink); }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; background: var(--neon-purple); width: 6px; height: 6px; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; background: var(--neon-orange); }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; background: var(--neon-red); width: 3px; height: 3px; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; background: var(--neon-pink); width: 5px; height: 5px; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; background: var(--neon-purple); }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; background: var(--neon-orange); width: 6px; height: 6px; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; background: var(--neon-red); }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; background: var(--neon-pink); width: 3px; height: 3px; }
.particle:nth-child(10) { left: 15%; animation-delay: 3s; background: var(--neon-purple); width: 5px; height: 5px; }
.particle:nth-child(11) { left: 35%; animation-delay: 5s; background: var(--neon-orange); }
.particle:nth-child(12) { left: 55%; animation-delay: 7s; background: var(--neon-red); width: 6px; height: 6px; }
.particle:nth-child(13) { left: 75%; animation-delay: 9s; background: var(--neon-pink); }
.particle:nth-child(14) { left: 95%; animation-delay: 11s; background: var(--neon-purple); width: 3px; height: 3px; }
.particle:nth-child(15) { left: 25%; animation-delay: 13s; background: var(--neon-orange); width: 5px; height: 5px; }
.particle:nth-child(16) { left: 45%; animation-delay: 15s; background: var(--neon-red); }
.particle:nth-child(17) { left: 65%; animation-delay: 2.5s; background: var(--neon-pink); width: 6px; height: 6px; }
.particle:nth-child(18) { left: 85%; animation-delay: 5.5s; background: var(--neon-purple); }
.particle:nth-child(19) { left: 5%; animation-delay: 8.5s; background: var(--neon-orange); width: 3px; height: 3px; }
.particle:nth-child(20) { left: 50%; animation-delay: 11.5s; background: var(--neon-red); width: 5px; height: 5px; }

@keyframes particleFloat {
  0% { 
    opacity: 0; 
    transform: translateY(100vh) scale(0) rotate(0deg); 
  }
  5% { 
    opacity: 0.8; 
  }
  95% { 
    opacity: 0.2; 
  }
  100% { 
    opacity: 0; 
    transform: translateY(-120vh) scale(1.2) rotate(360deg); 
  }
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-fluid), transform 0.8s var(--ease-fluid);
}

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

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-80px) scale(0.95);
  transition: opacity 0.7s var(--ease-fluid), transform 0.7s var(--ease-fluid), filter 0.7s var(--ease-fluid);
}

.scroll-animate-left.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(80px) scale(0.95);
  transition: opacity 0.7s var(--ease-fluid), transform 0.7s var(--ease-fluid), filter 0.7s var(--ease-fluid);
}

.scroll-animate-right.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.7) translateY(30px);
  transition: opacity 0.9s var(--ease-fluid), transform 0.9s var(--ease-fluid);
}

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

.stagger-children > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s var(--ease-fluid), transform 0.6s var(--ease-fluid), filter 0.6s var(--ease-fluid);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(1deg); }
  66% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  25% { transform: translateY(-10px) rotate(0.5deg) scale(1.02); }
  50% { transform: translateY(-20px) rotate(0deg) scale(1); }
  75% { transform: translateY(-10px) rotate(-0.5deg) scale(0.98); }
}

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

.float-animation { animation: float 6s ease-in-out infinite; }
.float-slow { animation: floatSlow 8s ease-in-out infinite; }
.float-gentle { animation: floatGentle 10s ease-in-out infinite; }
.wave-animation { animation: wave 3s ease-in-out infinite; }

/* Glow Pulse Effects */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 85, 0.3), 0 0 40px rgba(255, 0, 85, 0.1); }
  50% { box-shadow: 0 0 40px rgba(255, 0, 85, 0.6), 0 0 80px rgba(255, 0, 85, 0.3), 0 0 120px rgba(255, 0, 85, 0.1); }
}

@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink); }
  50% { text-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink), 0 0 60px var(--neon-pink), 0 0 80px var(--neon-pink); }
}

@keyframes pulseBorder {
  0%, 100% { border-color: var(--neon-pink); }
  50% { border-color: var(--neon-orange); }
}

@keyframes softGlow {
  0%, 100% { filter: brightness(1) blur(0); }
  50% { filter: brightness(1.2) blur(2px); }
}

.glow-pulse { animation: glowPulse 3s ease-in-out infinite; }
.neon-pulse { animation: neonPulse 2s ease-in-out infinite; }
.pulse-border { animation: pulseBorder 2s ease-in-out infinite; }
.soft-glow { animation: softGlow 4s ease-in-out infinite; }

/* Enhanced Button Hover */
.btn-huge {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-huge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--text-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-huge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-huge:hover::before {
  width: 300px;
  height: 300px;
}

/* Enhanced Service Rows */
.service-row, .job-row {
  position: relative;
}

.service-row::before, .job-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--neon-pink), var(--neon-orange));
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row:hover::before, .job-row:hover::before {
  width: 100%;
}

/* Enhanced Panel Hover */
.panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.panel:hover::before {
  opacity: 1;
}

.panel-content h2 {
  transition: color 0.5s ease, -webkit-text-stroke 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel:hover .panel-content h2 {
  transform: translateX(10px);
}

.panel-content p {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.panel:hover .panel-content p {
  transform: translateX(10px);
}

.panel-image {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.panel:hover .panel-image {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 30px 80px rgba(255, 0, 85, 0.3), 0 0 40px rgba(255, 0, 85, 0.1);
}

.panel-image img {
  transition: filter 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel:hover .panel-image img {
  transform: scale(1.1);
}

/* Hero Glow Effect */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 40%, rgba(157, 0, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 85, 0, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255, 0, 85, 0.12) 0%, transparent 40%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { 
    opacity: 0.5; 
    transform: scale(1) translate(0, 0);
    filter: hue-rotate(0deg);
  }
  to { 
    opacity: 1; 
    transform: scale(1.15) translate(-5px, -10px);
    filter: hue-rotate(15deg);
  }
}

/* Enhanced Modal Animation */
.modal {
  animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; backdrop-filter: blur(0px); }
  to { opacity: 1; backdrop-filter: blur(10px); }
}

.modal-content {
  animation: modalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 40px rgba(255, 0, 85, 0.2), 0 0 80px rgba(255, 0, 85, 0.1);
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-50px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Footer Logo Hover */
.footer-logo {
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
}

.footer-logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(255, 0, 85, 0.5);
}

/* Footer Links Animation */
.footer-links a {
  transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
  display: inline-block;
  color: #ddff00;
  text-shadow: 
    0 0 4px rgba(221, 255, 0, 0.3),
    0 0 8px rgba(221, 255, 0, 0.2);
}

.footer-links a:hover {
  transform: translateX(5px);
  color: #ffee00;
  text-shadow: 
    0 0 6px rgba(221, 255, 0, 0.5),
    0 0 12px rgba(221, 255, 0, 0.3);
}

.footer-links h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--neon-orange);
}

.footer-links a:hover {
  transform: translateX(5px);
}

/* Form Input Focus Enhancement */
.form-input:focus {
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.2), 0 0 40px rgba(255, 0, 85, 0.1);
  transform: translateY(-2px);
}

/* Tag Hover Effect */
.tag {
  position: relative;
  overflow: hidden;
}

.tag::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.tag:hover::after {
  width: 200px;
  height: 200px;
}

/* Enhanced Gradient Animation */
.hero {
  background-size: 400% 400%;
  animation: gradientShiftEnhanced 12s ease infinite;
}

@keyframes gradientShiftEnhanced {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 100%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}

/* Page Hero Enhancement */
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 85, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
}

/* Logo Hover Effect */
.logo {
  position: relative;
  display: inline-block;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--neon-pink), var(--neon-orange));
  transition: width 0.4s ease;
}

.logo:hover::after {
  width: 100%;
}

/* Disable animations on touch devices */
@media (hover: none) and (pointer: coarse) {
  .particle-container { display: none; }
}

/* Floating Orb Animation */
@keyframes orbFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 0.3;
  }
  25% { 
    transform: translate(30px, -40px) scale(1.1); 
    opacity: 0.5;
  }
  50% { 
    transform: translate(-20px, -80px) scale(0.9); 
    opacity: 0.3;
  }
  75% { 
    transform: translate(-40px, -40px) scale(1.05); 
    opacity: 0.5;
  }
}

/* Smooth Reveal Animation */
@keyframes revealSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes revealFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal-up { animation: revealSlideUp 1s var(--ease-fluid) forwards; }
.reveal-fade { animation: revealFadeIn 0.8s var(--ease-fluid) forwards; }

/* Magnetic Button Effect */
.magnetic-btn {
  position: relative;
  transition: transform 0.3s var(--ease-fluid);
}

.magnetic-btn:hover {
  transform: scale(1.05);
}

/* Smooth Text Reveal */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s var(--ease-fluid);
}

.text-reveal.visible span {
  transform: translateY(0);
}
