/* 
=========================================
AmaMart Coming Soon Landing Page Stylesheet
=========================================
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --green: #16A34A;
  --green-hover: #15803d;
  --orange: #FF6B00;
  --orange-hover: #e05e00;
  --dark: #111111;
  --dark-accent: #181818;
  --white: #FFFFFF;
  --gray: #8E8E93;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.18);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(22, 163, 74, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 0, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Preloader Screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  height: 80px;
  width: auto;
  animation: logoPulse 1.8s ease-in-out infinite;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  border-top-color: var(--orange);
  animation: spin 1s linear infinite;
}

/* Floating Elements & Blobs */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.18;
  animation: floatBlobs 20s infinite alternate ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--orange);
  top: -10%;
  left: -10%;
  animation-duration: 25s;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: var(--green);
  bottom: -15%;
  right: -10%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: #0ea5e9;
  top: 40%;
  left: 60%;
  animation-duration: 22s;
  animation-delay: -8s;
  opacity: 0.1;
}

.floating-emoji {
  position: absolute;
  pointer-events: none;
  font-size: 2.2rem;
  z-index: -1;
  opacity: 0.12;
  transition: transform 0.2s ease-out;
  user-select: none;
}

/* Navigation & Branding */
header {
  width: 100%;
  padding: 2rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* General Section Styling */
section {
  padding: 6rem 0;
  position: relative;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.hero-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.brand-logo-container {
  margin-bottom: 0.5rem;
  transform: scale(0.9);
  opacity: 0;
  animation: logoReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

.brand-logo {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  color: #FFA366;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.05);
  animation: pulseBadge 3s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero-title span.accent-green {
  background: linear-gradient(135deg, #4ade80, var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.accent-orange {
  background: linear-gradient(135deg, #ff9d5c, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

/* Button UI Components */
.cta-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 1rem;
}

.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  outline: none;
  user-select: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #FF8C39);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #FF7B1A, #FFA366);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border-hover);
  transform: translateY(-3px) scale(1.02);
  color: var(--white);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(0.99);
}

/* Button Ripple Styling */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/* Features Section */
.features-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Responsive Grid & Glassmorphism Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

/* Specific Accent Colors on Hover for Icons */
.feature-card:nth-child(1):hover .feature-icon-wrapper {
  background: rgba(22, 163, 74, 0.15);
  border-color: rgba(22, 163, 74, 0.3);
  box-shadow: 0 0 15px rgba(22, 163, 74, 0.2);
}

.feature-card:nth-child(2):hover .feature-icon-wrapper {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.feature-card:nth-child(3):hover .feature-icon-wrapper {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
}

.feature-card:nth-child(4):hover .feature-icon-wrapper {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}

.feature-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Countdown Section */
.countdown-section {
  background: relative;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.countdown-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  min-width: 140px;
  flex: 1;
  max-width: 170px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.countdown-box:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.countdown-num-wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.countdown-value {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}

.countdown-value.pop {
  animation: numPop 0.3s ease-out;
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-top: 0.5rem;
}

.countdown-box:nth-child(even) .countdown-label {
  color: var(--green);
}

/* About Section */
.about-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.about-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.about-text p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-badge {
  align-self: flex-start;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: #4ade80;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-illustration {
  position: relative;
  width: 250px;
  height: 250px;
}

.illust-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(255, 107, 0, 0.2));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blobMorph 8s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illust-icon {
  font-size: 6rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  animation: floatIllust 4s ease-in-out infinite alternate;
}

/* Contact Section */
.contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.contact-item:hover {
  transform: translateX(5px);
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-item:nth-child(1):hover .contact-icon {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
  color: #0ea5e9;
}

.contact-item:nth-child(2):hover .contact-icon {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.3);
  color: var(--orange);
}

.contact-item:nth-child(3):hover .contact-icon {
  background: rgba(22, 163, 74, 0.15);
  border-color: rgba(22, 163, 74, 0.3);
  color: var(--green);
}

.contact-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a.contact-value:hover {
  color: var(--orange);
}

/* Notify Form Panel */
.notify-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.notify-card::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  pointer-events: none;
}

.notify-card-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.notify-card-subtitle {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.1rem 1.25rem 1.1rem 3rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-input:focus {
  border-color: var(--orange);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
}

.form-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 1.1rem;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-input:focus + .form-icon {
  color: var(--orange);
}

.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1.1rem;
}

.whatsapp-link-btn {
  margin-top: 1.5rem;
  background: #16A34A;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.25);
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
  width: 100%;
  animation: pulseWhatsapp 2.2s infinite;
}

.whatsapp-link-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--green-hover);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.4);
}

.whatsapp-icon {
  font-size: 1.4rem;
}

/* Success Panel (Hidden Initially) */
.success-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  animation: successFadeIn 0.5s ease forwards;
}

.success-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.15);
  border: 2px solid rgba(22, 163, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #4ade80;
  box-shadow: 0 0 20px rgba(22, 163, 74, 0.2);
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
}

.success-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.5;
}

/* Footer Section */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-logo {
  height: 32px;
  width: auto;
}

.footer-copy {
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-love {
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-love span {
  color: #ef4444;
  display: inline-block;
  animation: heartbeat 1.2s infinite;
}

/* Modal Popup styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 90%;
  max-width: 480px;
  background: #151515;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange);
  transform: rotate(90deg);
}

/* Animations declarations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.3)); }
}

@keyframes logoReveal {
  0% { transform: scale(0.85) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes pulseBadge {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.05);
    border-color: rgba(255, 107, 0, 0.25);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 107, 0, 0.25);
    border-color: rgba(255, 107, 0, 0.6);
  }
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(22, 163, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

@keyframes floatBlobs {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(80px, 50px) rotate(180deg) scale(1.1);
  }
  100% {
    transform: translate(-50px, 80px) rotate(360deg) scale(0.95);
  }
}

@keyframes numPop {
  0% { transform: scale(1.2); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

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

@keyframes blobMorph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  34% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
  67% { border-radius: 50% 60% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes floatIllust {
  from { transform: translateY(0px) rotate(0deg); }
  to { transform: translateY(-15px) rotate(4deg); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  40% { transform: scale(1.15); }
  60% { transform: scale(1.25); }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Scroll Animation Hooks */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Responsive BREAKPOINTS */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    padding: 3rem 2.5rem;
    gap: 3rem;
  }
  .about-text {
    text-align: center;
    align-items: center;
  }
  .about-text h3 {
    font-size: 2rem;
  }
  .about-badge {
    align-self: center;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .hero-section {
    padding-top: 6rem;
  }
  
  .hero-content {
    gap: 1.5rem;
  }
  
  .brand-logo {
    height: 90px;
  }
  
  .countdown-container {
    gap: 1rem;
  }
  
  .countdown-box {
    padding: 1.5rem 1rem;
    min-width: 110px;
    max-width: 140px;
  }
  
  .countdown-value {
    font-size: 2.8rem;
  }
  
  .notify-card {
    padding: 2.2rem 1.8rem;
  }
  
  .modal-container {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .brand-logo {
    height: 80px;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .countdown-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 320px;
    margin: 1.5rem auto 0 auto;
  }
  
  .countdown-box {
    max-width: 100%;
    min-width: 0;
  }
  
  .about-content {
    padding: 2.5rem 1.5rem;
  }
}
