:root {
  --primary-color: #14b8a6;
  --primary-light: #e6fffa;
  --secondary-color: #0891b2;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #3b82f6;
  --purple-color: #8b5cf6;
  --dark-color: #1f2937;
  --light-color: #f8fafc;
}

/* Custom Bootstrap Colors */
.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #0f766e;
  border-color: #0f766e;
}

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

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

.btn-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
}

.btn-gradient-primary:hover {
  background: linear-gradient(135deg, #0f766e, #0e7490);
  color: white;
}

.text-purple {
  color: var(--purple-color) !important;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Brand Icon */
.brand-icon {
  width: 40px;
  height: 40px;
}

/* App Screenshots */
.app-screenshot {
  transition: transform 0.3s ease;
}

.app-screenshot:hover {
  transform: rotate(0deg) !important;
}

.rotate-2 {
  transform: rotate(2deg);
}

.rotate--1 {
  transform: rotate(-1deg);
}

.rotate-1 {
  transform: rotate(1deg);
}

.rotate--2 {
  transform: rotate(-2deg);
}

/* Feature Cards */
.feature-card {
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb !important;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color) !important;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Step Numbers */
.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Support Icons */
.support-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.support-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Navbar */
.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Badge */
.badge {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

/* FAQ Styles */
.faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f3f4f6 !important;
}

.faq-answer {
  transition: all 0.3s ease;
}

.cursor-pointer {
  cursor: pointer;
}

/* Hover Cards */
.hover-card {
  transition: all 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Rating Buttons */
.rating-btn {
  transition: all 0.3s ease;
  min-width: 120px;
  min-height: 120px;
  flex-direction: column;
}

.rating-btn:hover {
  transform: scale(1.05);
}

.rating-btn.active {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-3 {
    font-size: 2.5rem;
  }

  .display-5 {
    font-size: 2rem;
  }

  .hero-section {
    min-height: 60vh;
  }

  .app-screenshot {
    transform: none !important;
  }

  .rating-btn {
    min-width: 100px;
    min-height: 100px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
}

/* Loading animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

/* Form styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25);
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25);
}

/* Card hover effects */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
}

/* Link hover effects */
a {
  transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0f766e;
}

/* Accordion customization */
.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(20, 184, 166, 0.25);
}

/* Alert customizations */
.alert-warning {
  background-color: #fef3c7;
  border-color: #fcd34d;
  color: #92400e;
}

.alert-info {
  background-color: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}

.alert-success {
  background-color: #d1fae5;
  border-color: #86efac;
  color: #065f46;
}

.alert-danger {
  background-color: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}


.text-footer {
  color: #ffffff !important;
}
.bg-page {
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%) !important;
}
