/* ===== CUSTOM PROPERTIES ===== */
:root {
  --orange-brand: #F58220;
  --orange-light: #FF9D4D;
  --orange-dark: #D96B0F;
  --black-brand: #0A0A0A;
  --gray-dark: #1A1A1A;
  --gray-medium: #2A2A2A;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}

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

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--orange-brand);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange-light);
}

/* ===== NAVBAR STYLES ===== */
#navbar {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== GRADIENTS ===== */
.bg-gradient-radial {
  background: radial-gradient(circle at top right, var(--orange-light) 0%, var(--orange-brand) 50%, var(--orange-dark) 100%);
}

.gradient-text-dark {
  background: linear-gradient(90deg, #333333, #000000, #333333);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

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

/* ===== GLASS EFFECTS ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-input {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--orange-brand);
}

/* ===== SHADOWS ===== */
.shadow-glow-orange {
  box-shadow: 0 0 40px rgba(245, 130, 32, 0.3);
}

/* ===== ANIMATED BLOBS ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: blob-animation 8s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--orange-light);
  top: 0;
  right: 0;
  animation-delay: 0s;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--orange-dark);
  bottom: 100px;
  left: 0;
  animation-delay: 2s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--orange-light);
  top: 0;
  right: 0;
  animation-delay: 0s;
}

.blob-4 {
  width: 350px;
  height: 350px;
  background: var(--orange-dark);
  bottom: 0;
  left: 0;
  animation-delay: 2s;
}

.blob-5 {
  width: 400px;
  height: 400px;
  background: var(--orange-light);
  top: 0;
  right: 0;
  animation-delay: 0s;
}

@keyframes blob-animation {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-20px, -20px) scale(1.1);
  }
  50% {
    transform: translate(20px, -20px) scale(0.9);
  }
  75% {
    transform: translate(-20px, 20px) scale(1.05);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  animation: bounce 2s infinite;
}

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

/* ===== HOVER EFFECTS ===== */
.hover\:rotate-360:hover {
  transform: rotate(360deg);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .blob {
    width: 250px !important;
    height: 250px !important;
  }
}

/* ===== UTILITY CLASSES ===== */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* ===== COUNTER ANIMATION ===== */
.counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}


/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

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

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }
}
