/* Logo Styling */
.logo-component {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 8px;
  color: #1a1a1a;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--default-color);
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--default-color);
  margin-top: -2px;
}

.crown-icon {
  width: 16px;
  height: 16px;
}

/* Footer Logo Styling */
.footer-logo-component .logo-icon {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a1a;
}

.footer-logo-component .logo-main,
.footer-logo-component .logo-sub {
  color: #ffffff;
}

/* Service Features Styling */
.service-features {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.service-features li {
  padding: 4px 0;
  color: var(--default-color);
  font-size: 0.9rem;
}

.service-features li:before {
  content: "✓";
  color: var(--accent-color);
  margin-right: 8px;
  font-weight: bold;
}

/* Platform CTA Styling */
.platform-cta {
  background: linear-gradient(135deg, var(--surface-color), var(--light-background-color));
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.platform-cta h3 {
  color: var(--heading-color);
  font-size: 2rem;
  margin-bottom: 15px;
}

.platform-cta p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* Enhanced Button Styling */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #0056b3);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-outline-light {
  border-radius: 20px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* Contact Form Enhancements */
#contactForm .form-control {
  border-radius: 8px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

#contactForm .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Footer Enhancements */
.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-color);
}

/* Responsive Logo Adjustments */
@media (max-width: 768px) {
  .logo-main {
    font-size: 1.3rem;
  }
  
  .logo-sub {
    font-size: 0.7rem;
  }
  
  .logo-icon {
    width: 28px;
    height: 28px;
  }
  
  .crown-icon {
    width: 14px;
    height: 14px;
  }
}

/* Animation Enhancements */
.service-item {
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stats Section Enhancements */
.stats-item {
  transition: all 0.3s ease;
}

.stats-item:hover {
  transform: scale(1.05);
}

/* About Section Enhancements */
.about .content ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Custom scrollbar for better UX */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-background-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
}
