/* Bird & Pet Talk Podcast Studio - Custom Styles */

/* ===== CSS Variables ===== */
:root {
  --primary-orange: #ff7a00;
  --secondary-orange: #ff8f33;
  --light-beige: #fff3e6;
  --soft-green: #e6f7ec;
  --white: #ffffff;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* ===== Utility Classes ===== */
.text-orange {
  color: var(--primary-orange) !important;
}

.bg-orange {
  background-color: var(--primary-orange) !important;
}

.btn-orange {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--white);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-orange:hover {
  background-color: var(--secondary-orange);
  border-color: var(--secondary-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== Brand Logo Styling ===== */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1;
}

.brand-main {
  color: var(--dark);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
}

.brand-main::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
  border-radius: 1px;
  opacity: 0.8;
}

.brand-by {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
  margin: 0 2px;
  position: relative;
  top: 1px;
}

.brand-secondary {
  color: var(--primary-orange);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.brand-secondary::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -2px;
  right: -2px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
  border-radius: 3px;
  z-index: -1;
  opacity: 0.1;
}

/* Brand logo hover effects */
.brand-logo:hover .brand-main {
  color: var(--primary-orange);
  transition: color 0.3s ease;
}

.brand-logo:hover .brand-secondary {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-main::after {
  width: 0;
  transition: width 0.3s ease;
}

/* ===== Navigation ===== */
.navbar {
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.navbar-brand {
  font-size: 1.25rem;
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--primary-orange) !important;
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  margin: 0 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  perspective: 1200px;
  background: linear-gradient(135deg, #ff7a00 0%, #ff8f33 50%, #2c3e50 100%);
}

/* 3D Banner Background */
.hero-3d-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  perspective: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-3d-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Themed Sliders */
.themed-slider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-style: preserve-3d;
}

.themed-slider.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) rotateY(0deg);
}

/* 3D Banner Cards */
.slider-3d-item {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100px) scale(0.8);
  top: 0;
  left: 0;
}

.slider-3d-item.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0) scale(1);
  z-index: 10;
  position: relative;
}

.banner-3d-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  cursor: pointer;
}

.slider-3d-item:hover .banner-3d-card {
  transform: rotateY(180deg);
}

.banner-3d-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.banner-3d-front {
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
}

.banner-3d-back {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  padding: 40px;
  text-align: center;
}

.banner-3d-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
  padding: 30px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.slider-3d-item:hover .banner-overlay {
  transform: translateY(-10px);
}

.banner-overlay h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-back-content {
  position: static;
  background: none;
  transform: none;
}

.banner-back-content i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--primary-orange);
}

.banner-back-content h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.banner-back-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Theme Toggle Buttons */
.theme-toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.theme-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-2px);
}

.theme-btn.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}

/* 3D Banner Controls */
.banner-3d-controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 5;
}

.banner-3d-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--primary-orange);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.banner-3d-btn:hover {
  background: var(--primary-orange);
  color: white;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 122, 0, 0.4);
}

/* 3D Banner Indicators */
.banner-3d-indicators {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 5;
}

.banner-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.banner-indicator.active {
  background: white;
  transform: scale(1.5);
  border-color: var(--primary-orange);
  box-shadow: 0 0 15px rgba(255, 122, 0, 0.6);
}

/* 3D Floating Icons */
.floating-icon {
  position: absolute;
  font-size: 2.5rem;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.icon-3d {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.icon-3d:hover {
  transform: rotateY(180deg) scale(1.1);
}

.icon-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.icon-2 {
  top: 25%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.icon-3 {
  bottom: 35%;
  left: 8%;
  animation-delay: 4s;
  animation-duration: 9s;
}

.icon-4 {
  top: 20%;
  right: 25%;
  animation-delay: 1s;
  animation-duration: 6s;
}

.icon-5 {
  bottom: 25%;
  right: 12%;
  animation-delay: 3s;
  animation-duration: 7s;
}

.icon-6 {
  top: 50%;
  left: 5%;
  animation-delay: 2.5s;
  animation-duration: 8s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
  }
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
}

.hero-text-wrapper {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.text-3d {
  background: linear-gradient(45deg, #fff, var(--primary-orange), #fff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease infinite;
  text-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  color: white;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  position: relative;
  margin: 0 auto 10px;
  backdrop-filter: blur(10px);
}

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

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 25px;
  }
}

.scroll-text {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  animation: fade-in-out 2s infinite;
}

@keyframes fade-in-out {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* ===== About Us Section ===== */
.about-content {
  padding: 20px;
}

.feature-card {
  padding: 25px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.15);
  border-color: var(--primary-orange);
}

.feature-card i {
  color: var(--primary-orange);
  min-width: 30px;
  font-size: 1.5rem;
}

.image-grid img {
  transition: var(--transition);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.image-grid img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Ensure About section is visible */
#about {
  display: block !important;
  position: relative;
  z-index: 1;
}

/* ===== Booking Form ===== */
.booking-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.progress-bar-container {
  margin-bottom: 30px;
}

.progress {
  height: 8px;
  background-color: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  transition: width 0.5s ease;
}

.progress-steps {
  max-width: 300px;
  margin: 0 auto;
}

.step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  transition: var(--transition);
}

.step.active {
  background: var(--primary-orange);
  color: var(--white);
  transform: scale(1.2);
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateX(50px);
  transition: var(--transition);
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.form-content h3 {
  color: var(--dark);
  margin-bottom: 25px;
  font-weight: 600;
}

.form-check-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-check {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.form-check:hover {
  border-color: var(--primary-orange);
  background: var(--light-beige);
}

.form-check-input:checked + .form-check-label {
  color: var(--primary-orange);
  font-weight: 600;
}

.form-check-input:checked ~ .form-check-label {
  color: var(--primary-orange);
  font-weight: 600;
}

.form-check-input:checked {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.form-check-label {
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--light-gray);
  padding: 12px 16px;
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.25);
}

.form-navigation {
  margin-top: 30px;
}

.calendly-section {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.calendly-placeholder {
  border: 2px dashed var(--primary-orange);
  border-radius: 12px;
  transition: var(--transition);
}

.calendly-placeholder:hover {
  background: var(--light-beige);
}

/* ===== Contact Section ===== */
.contact-form {
  height: 100%;
}

.info-card {
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.info-card i {
  min-width: 40px;
}

.social-links {
  transition: var(--transition);
}

.social-links:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  color: var(--dark);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== Footer ===== */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
}

footer a {
  transition: var(--transition);
}

footer a:hover {
  color: var(--primary-orange) !important;
}

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

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

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .booking-form-container {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .carousel-controls {
    padding: 0 10px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .form-check-group {
    gap: 10px;
  }
  
  .form-check {
    padding: 15px;
  }
  
  .progress-steps {
    max-width: 250px;
  }
  
  .step {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .pulse-animation {
    animation: none;
  }
}

/* ===== Focus States ===== */
.btn:focus,
.form-control:focus,
.nav-link:focus,
.social-link:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

/* ===== Enhanced Animations ===== */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Enhanced hover effects */
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.15);
}

.btn-orange:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 122, 0, 0.3);
}

/* Glowing effects */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.8);
  }
}

.glow-effect {
  animation: glow 2s ease-in-out infinite;
}

/* Magnetic button effect */
.btn-orange {
  position: relative;
  overflow: hidden;
}

.btn-orange::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

/* Enhanced form animations */
.form-check {
  position: relative;
  overflow: hidden;
}

.form-check::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
  border-radius: 12px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.form-check:hover::before {
  opacity: 1;
}

/* Loading animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Enhanced scroll animations */
.animate-on-scroll.visible {
  animation: slideInUp 0.8s ease forwards;
}

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

/* Interactive background effect */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 122, 0, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 143, 51, 0.3) 0%, transparent 50%);
  z-index: 2;
  animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Enhanced 3D text effect */
.text-3d:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 20px rgba(255, 122, 0, 0.5));
}

/* Floating animation enhancement */
@keyframes float-enhanced {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg) scale(1.05);
  }
  75% {
    transform: translateY(-15px) rotate(3deg) scale(1.08);
  }
}

.floating-icon:hover {
  animation: float-enhanced 0.6s ease-in-out;
  transform: scale(1.2);
  filter: drop-shadow(0 8px 15px rgba(255, 122, 0, 0.4));
}

/* ===== Modern 3D Neon Modal Styles ===== */
.modal-modern .neon-modal {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
  border: 2px solid transparent;
  border-radius: 15px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.15),
    0 0 60px rgba(255, 122, 0, 0.08),
    inset 0 0 20px rgba(255, 122, 0, 0.05);
  transform: perspective(1000px) rotateX(1deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  max-width: 500px;
}

.modal-modern .neon-modal::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange), #ffa500, var(--primary-orange));
  border-radius: 15px;
  z-index: -1;
  animation: neon-border 3s linear infinite;
  opacity: 0.6;
}

@keyframes neon-border {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Modal Header Styles */
.modal-modern .neon-header-success {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(34, 139, 34, 0.2));
  border-bottom: 2px solid rgba(40, 167, 69, 0.3);
  border-radius: 13px 13px 0 0;
  padding: 15px;
  position: relative;
}

.modal-modern .neon-header-error {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(178, 34, 34, 0.2));
  border-bottom: 2px solid rgba(220, 53, 69, 0.3);
  border-radius: 13px 13px 0 0;
  padding: 15px;
  position: relative;
}

.modal-modern .neon-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
  animation: neon-pulse 2s ease-in-out infinite;
}

@keyframes neon-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.modal-modern .neon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.3rem;
  text-shadow: none;
}

.modal-modern .neon-icon-success {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(40, 167, 69, 0.6);
  animation: neon-glow-success 2s ease-in-out infinite;
}

.modal-modern .neon-icon-error {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.6);
  animation: neon-glow-error 2s ease-in-out infinite;
}

@keyframes neon-glow-success {
  0%, 100% {
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.6);
  }
  50% {
    box-shadow: 0 0 35px rgba(40, 167, 69, 0.8);
  }
}

@keyframes neon-glow-error {
  0%, 100% {
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.6);
  }
  50% {
    box-shadow: 0 0 35px rgba(220, 53, 69, 0.8);
  }
}

.modal-modern .neon-close-btn {
  background: rgba(108, 117, 125, 0.1);
  border: 1px solid rgba(108, 117, 125, 0.3);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-modern .neon-close-btn:hover {
  background: rgba(108, 117, 125, 0.2);
  transform: rotate(90deg);
  box-shadow: 0 0 15px rgba(108, 117, 125, 0.4);
  color: var(--dark);
}

/* Modal Body Styles */
.modal-modern .neon-body {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  position: relative;
}

.modal-modern .neon-animation-success {
  margin-bottom: 20px;
}

.modal-modern .neon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(34, 139, 34, 0.2));
  border: 2px solid rgba(40, 167, 69, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  animation: neon-rotate-success 3s linear infinite;
  box-shadow: 
    0 0 30px rgba(40, 167, 69, 0.3),
    inset 0 0 20px rgba(40, 167, 69, 0.2);
}

.modal-modern .neon-circle-error {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(178, 34, 34, 0.2));
  border: 2px solid rgba(220, 53, 69, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  animation: neon-rotate-error 3s linear infinite;
  box-shadow: 
    0 0 30px rgba(220, 53, 69, 0.3),
    inset 0 0 20px rgba(220, 53, 69, 0.2);
}

@keyframes neon-rotate-success {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes neon-rotate-error {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(-180deg) scale(1.1);
  }
  100% {
    transform: rotate(-360deg) scale(1);
  }
}

.modal-modern .neon-icon-main {
  font-size: 2rem;
  color: #28a745;
  text-shadow: 0 0 20px rgba(40, 167, 69, 0.6);
  animation: neon-pulse-icon 2s ease-in-out infinite;
}

.modal-modern .neon-icon-main-error {
  font-size: 2rem;
  color: #dc3545;
  text-shadow: 0 0 20px rgba(220, 53, 69, 0.6);
  animation: neon-pulse-icon 2s ease-in-out infinite;
}

@keyframes neon-pulse-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.modal-modern .neon-heading {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.4rem;
  text-shadow: none;
  margin-bottom: 15px;
}

.modal-modern .neon-text-muted {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal-modern .neon-card-next {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 143, 51, 0.12));
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: 12px;
  padding: 18px;
  margin-top: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.1),
    inset 0 0 15px rgba(255, 122, 0, 0.05);
}

.modal-modern .neon-subtitle {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: none;
}

.modal-modern .neon-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-modern .neon-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.modal-modern .neon-step:hover {
  background: rgba(248, 249, 250, 1);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-modern .neon-step-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.8rem;
  box-shadow: 0 0 15px rgba(255, 122, 0, 0.3);
}

.modal-modern .neon-step span {
  color: var(--dark);
  font-size: 0.85rem;
}

.modal-modern .neon-help-card {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.9), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(108, 117, 125, 0.2);
  border-radius: 12px;
  padding: 15px;
  margin-top: 15px;
  backdrop-filter: blur(10px);
}

.modal-modern .neon-help-text {
  color: var(--gray);
  font-size: 0.85rem;
}

/* Modal Footer Styles */
.modal-modern .neon-footer {
  background: rgba(248, 249, 250, 0.9);
  border-top: 1px solid rgba(108, 117, 125, 0.2);
  padding: 15px 20px;
  border-radius: 0 0 13px 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.modal-modern .neon-btn-secondary {
  background: rgba(108, 117, 125, 0.1);
  border: 1px solid rgba(108, 117, 125, 0.3);
  color: var(--gray);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-modern .neon-btn-secondary:hover {
  background: rgba(108, 117, 125, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.2);
  color: var(--dark);
}

.modal-modern .neon-btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(255, 122, 0, 0.3);
}

.modal-modern .neon-btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-orange), #ffa500);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(255, 122, 0, 0.4);
}

.modal-modern .neon-btn-error {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(220, 53, 69, 0.3);
}

.modal-modern .neon-btn-error:hover {
  background: linear-gradient(135deg, #ff6b6b, #dc3545);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
}

/* Modal Animation */
.modal-modern .neon-modal {
  animation: modal-slide-in 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modal-slide-in {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateX(10deg) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateX(2deg) scale(1);
  }
}

/* Modal Backdrop */
.modal-backdrop.show {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(15, 15, 30, 0.9));
  backdrop-filter: blur(10px);
}

/* ===== Custom Cursor with 3D Podcast Effects ===== */
* {
  cursor: none !important;
}

/* Main Custom Cursor */
.cursor-main {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);
  animation: cursor-pulse 2s ease-in-out infinite;
}

.cursor-main::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Podcast Icon Cursor */
.cursor-podcast {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 24px;
  color: var(--primary-orange);
  animation: podcast-rotate 3s linear infinite;
}

/* Cursor Trail Effects */
.cursor-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: trail-fade 1s ease-out forwards;
}

/* Sound Wave Cursor Effect */
.cursor-soundwave {
  position: fixed;
  pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-soundwave::before,
.cursor-soundwave::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: soundwave-expand 1.5s ease-out infinite;
}

.cursor-soundwave::after {
  animation-delay: 0.5s;
}

/* 3D Rotating Microphone Cursor */
.cursor-mic-3d {
  position: fixed;
  pointer-events: none;
  z-index: 9995;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cursor-mic-3d i {
  font-size: 28px;
  color: var(--primary-orange);
  text-shadow: 0 0 20px rgba(255, 122, 0, 0.8);
  animation: mic-3d-rotate 4s linear infinite;
  transform-style: preserve-3d;
}

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9994;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.3), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(2px);
}

/* Interactive Cursor States */
.cursor-main.hovering {
  width: 40px;
  height: 40px;
  border-color: var(--secondary-orange);
  background: rgba(255, 122, 0, 0.1);
}

.cursor-main.clicking {
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(255, 122, 0, 0.2);
}

/* Cursor on Links and Buttons */
a:hover ~ .cursor-main,
button:hover ~ .cursor-main,
.btn:hover ~ .cursor-main {
  border-color: var(--secondary-orange);
  width: 35px;
  height: 35px;
  background: rgba(255, 143, 51, 0.1);
}

a:hover ~ .cursor-podcast,
button:hover ~ .cursor-podcast,
.btn:hover ~ .cursor-podcast {
  opacity: 1;
}

a:hover ~ .cursor-glow,
button:hover ~ .cursor-glow,
.btn:hover ~ .cursor-glow {
  opacity: 1;
}

/* Cursor on Form Inputs */
input:hover ~ .cursor-main,
textarea:hover ~ .cursor-main,
select:hover ~ .cursor-main {
  border-color: var(--primary-orange);
  width: 30px;
  height: 30px;
  background: rgba(255, 122, 0, 0.15);
}

input:focus ~ .cursor-mic-3d,
textarea:focus ~ .cursor-mic-3d,
select:focus ~ .cursor-mic-3d {
  opacity: 1;
}

/* Cursor on Modal */
.modal:hover ~ .cursor-main {
  border-color: var(--primary-orange);
  width: 45px;
  height: 45px;
  background: rgba(255, 122, 0, 0.05);
}

.modal:hover ~ .cursor-soundwave {
  opacity: 1;
}

/* ===== Cursor Animations ===== */
@keyframes cursor-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes podcast-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes trail-fade {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
}

@keyframes soundwave-expand {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}

@keyframes mic-3d-rotate {
  0% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  25% {
    transform: rotateY(90deg) rotateX(15deg);
  }
  50% {
    transform: rotateY(180deg) rotateX(0deg);
  }
  75% {
    transform: rotateY(270deg) rotateX(-15deg);
  }
  100% {
    transform: rotateY(360deg) rotateX(0deg);
  }
}

/* ===== Cursor Particle Effects ===== */
.cursor-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9993;
  width: 6px;
  height: 6px;
  background: var(--primary-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: particle-float 2s ease-out forwards;
}

@keyframes particle-float {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) translateY(-30px);
  }
}

/* ===== Cursor Text Effects ===== */
.cursor-text {
  position: fixed;
  pointer-events: none;
  z-index: 9992;
  background: var(--primary-orange);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  transform: translate(-50%, -150%);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.cursor-text.show {
  opacity: 1;
}

/* ===== Cursor on Specific Elements ===== */
.brand-logo:hover ~ .cursor-text {
  content: "Tales by Tmingle";
  opacity: 1;
}

.navbar-brand:hover ~ .cursor-text {
  content: "Home";
  opacity: 1;
}

.btn-orange:hover ~ .cursor-text {
  content: "Click to Book";
  opacity: 1;
}

/* ===== Responsive Cursor ===== */
@media (max-width: 768px) {
  * {
    cursor: auto !important;
  }
  
  .cursor-main,
  .cursor-podcast,
  .cursor-trail,
  .cursor-soundwave,
  .cursor-mic-3d,
  .cursor-glow,
  .cursor-particle,
  .cursor-text {
    display: none !important;
  }
}

/* ===== Animated Scroll to Top Icon ===== */
.scroll-to-top {
  position: fixed !important;
  bottom: 60px !important;
  right: 30px !important;
  z-index: 999999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  pointer-events: none;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}

.scroll-icon-3d {
  width: 60px;
  height: 60px;
  perspective: 1000px;
  position: relative;
}

.scroll-icon-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  animation: scrollIconFloat 3s ease-in-out infinite;
}

.scroll-icon-wrapper:hover {
  transform: rotateY(180deg) scale(1.1);
}

.scroll-icon-wrapper i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: white;
  z-index: 10;
  transition: all 0.3s ease;
}

.scroll-icon-wrapper:hover i {
  transform: translate(-50%, -50%) scale(1.2);
  color: #fff;
}

.scroll-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
  transition: all 0.3s ease;
}

.scroll-icon-wrapper:hover::before {
  box-shadow: 0 12px 35px rgba(255, 122, 0, 0.6);
}

.scroll-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary-orange);
  border-radius: 50%;
  opacity: 0;
  animation: waveExpand 2s ease-out infinite;
}

.wave-1 {
  animation-delay: 0s;
}

.wave-2 {
  animation-delay: 0.5s;
}

.wave-3 {
  animation-delay: 1s;
}

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

@keyframes waveExpand {
  0% {
    width: 60px;
    height: 60px;
    opacity: 0.8;
    border-width: 2px;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
    border-width: 1px;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 50px !important;
    right: 20px !important;
    z-index: 999999 !important;
  }
  
  .scroll-icon-3d {
    width: 50px;
    height: 50px;
  }
  
  .scroll-icon-wrapper i {
    font-size: 20px;
  }
  
  .wave {
    width: 50px;
    height: 50px;
  }
  
  .wave-1,
  .wave-2,
  .wave-3 {
    animation: waveExpand 2s ease-out infinite;
  }
  
  .wave-1 {
    animation-delay: 0s;
  }
  
  .wave-2 {
    animation-delay: 0.5s;
  }
  
  .wave-3 {
    animation-delay: 1s;
  }
  
  @keyframes waveExpand {
    0% {
      width: 50px;
      height: 50px;
      opacity: 0.8;
      border-width: 2px;
    }
    100% {
      width: 80px;
      height: 80px;
      opacity: 0;
      border-width: 1px;
    }
  }
}
