/* Custom Styles for Smart Serve Labs */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%);
  border-bottom: 1px solid #e9ecef;
}

.app-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background-color: #ffffff;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

.app-icon-placeholder {
  width: 80px;
  height: 80px;
  background-color: #e9ecef;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #6c757d;
  margin-bottom: 20px;
}

.app-icon-large {
  width: 120px;
  height: 120px;
  font-size: 48px;
  margin: 0 auto 30px auto;
}

.screenshot-placeholder {
  width: 100%;
  height: 500px;
  background-color: #e9ecef;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  margin-bottom: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #e7f1ff;
  color: #0d6efd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.text-gradient {
  background: -webkit-linear-gradient(#0d6efd, #0dcaf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-padding {
  padding: 80px 0;
}

footer {
  background-color: #ffffff;
  border-top: 1px solid #e9ecef;
  padding: 60px 0 20px;
  color: #495057;
}

footer .footer-heading {
  color: #212529;
  font-weight: 600;
  margin-bottom: 20px;
}

footer a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #0d6efd;
}

/* Support Page Specifics */

.support-section {
  padding-bottom: 90px;
}

.support-contact-card {
  height: auto;
  min-height: 0;
  border-radius: 16px;
  background-color: #ffffff;
}

.support-guidance {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.support-feedback-card {
  margin-top: 3rem;
  margin-bottom: 0;
}

.support-app-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

/* Privacy Page Specifics */

.privacy-app-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}

/* Brand Logo */

.brand-logo-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .brand-logo-img {
    width: 32px;
    height: 32px;
  }
}

