/* Unified Button System */

/* Base Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 160px;
  box-sizing: border-box;
}

/* Primary Button (Yellow/Gold) */
.btn-primary {
  background: linear-gradient(135deg, #f7be16, #ffc107);
  color: white;
  box-shadow: 0 6px 20px rgba(247, 190, 22, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e6a914, #e6c200);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 190, 22, 0.4);
}

/* Secondary Button (White with Gold Border) */
.btn-secondary {
  background: white;
  color: #333;
  border: 2px solid #f7be16;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #f7be16;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 190, 22, 0.3);
}

/* WhatsApp Button (Green) */
.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Dark Button */
.btn-dark {
  background: #333;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
  background: #444;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Button Sizes */
.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  min-width: 120px;
}

.btn-large {
  padding: 18px 35px;
  font-size: 1.1rem;
  min-width: 200px;
}

.btn-xl {
  padding: 20px 40px;
  font-size: 1.2rem;
  min-width: 250px;
}

/* Rounded Button Variant */
.btn-rounded {
  border-radius: 50px;
}

/* Full Width Button */
.btn-full {
  width: 100%;
  min-width: auto;
}

/* Hero CTA Buttons */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #333;
  padding: 18px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 160px;
  justify-content: center;
}

.hero-cta-btn.contact-btn:hover {
  background: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-cta-btn.whatsapp-btn {
  background: #25d366;
  color: white;
}

.hero-cta-btn.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Legacy Button Classes (for backward compatibility) */
.contact-btn {
  background-color: #f7be16;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-btn.large {
  padding: 15px 40px;
  font-size: 18px;
}

.contact-btn:hover {
  background-color: #e0a800;
}

.cta-button {
  background-color: #ffc107;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  background-color: #e0a800;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #444;
  transform: translateY(-2px);
}

.urgent-cta-btn {
  display: inline-block;
  background-color: #f7be16;
  color: #333;
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(247, 190, 22, 0.3);
}

.urgent-cta-btn:hover {
  background-color: #e6a914;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(247, 190, 22, 0.4);
}

.urgent-cta-btn i {
  margin-right: 10px;
  animation: pulse 2s infinite;
}

/* Floating CTA for Mobile */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffc107;
  color: #333;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 99;
  text-transform: uppercase;
  font-size: 16px;
}

.pulse-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  animation: pulse 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .floating-cta {
    display: block;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    min-width: 140px;
  }

  .btn-large {
    padding: 15px 30px;
    font-size: 1rem;
    min-width: 180px;
  }

  .btn-xl {
    padding: 18px 35px;
    font-size: 1.1rem;
    min-width: 220px;
  }

  .hero-cta-btn {
    padding: 15px 25px;
    font-size: 1rem;
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .contact-btn,
  .contact-btn.large {
    padding: 10px 20px;
    font-size: 14px;
  }

  .floating-cta {
    font-size: 14px;
    padding: 10px 16px;
    bottom: 15px;
    right: 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    min-width: 120px;
  }

  .btn-large {
    padding: 12px 25px;
    font-size: 0.9rem;
    min-width: 160px;
  }

  .urgent-cta-btn {
    font-size: 14px;
    padding: 12px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}
