/* ═══════════════════════════════════════════ */
/* PlateKaro Custom Styles                     */
/* ═══════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── HERO SECTION ─── */
.hero-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #ea580c 100%);
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height for mobile */
}

/* ─── FLOATING ANIMATION ─── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes float-delay {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-5deg);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
  animation: float-delay 8s ease-in-out infinite;
}

/* ─── FORM FOCUS STYLES ─── */
input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

/* ─── BUTTON LOADING STATE ─── */
button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* ─── FAQ ANIMATION ─── */
.faq-answer {
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ─── SCROLLBAR STYLING ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #fff7ed;
}

::-webkit-scrollbar-thumb {
  background: #ea580c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c2410c;
}

/* ─── SELECTION COLOR ─── */
::selection {
  background: #ea580c;
  color: white;
}

/* ─── MODAL BACKDROP ─── */
#successModal {
  transition: opacity 0.3s ease;
}

#modalContent {
  transition: all 0.3s ease;
}

/* ─── MOBILE SPECIFIC ─── */
@media (max-width: 640px) {
  .hero-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

/* ─── WHATSAPP BUTTON PULSE ─── */
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

a[aria-label="Chat on WhatsApp"]::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}

a[aria-label="Chat on WhatsApp"] {
  position: relative;
}
