/* ============================================
   SUPPORT PAGE - Fresh Emerald Green Theme
   Calming, helpful, professional
   ============================================ */

:root {
  /* Emerald Green palette */
  --support-emerald-deep: #047857;
  --support-emerald: #059669;
  --support-emerald-light: #10B981;
  --support-mint: #34D399;
  
  /* Warm accents */
  --support-amber: #F59E0B;
  --support-amber-light: #FBBF24;
  
  /* Backgrounds */
  --support-bg: #F0FDF4;
  --support-bg-alt: #ECFDF5;
  --support-white: #FFFFFF;
  
  /* Text */
  --support-text: #1A1A1A;
  --support-text-muted: #4B5563;
  
  /* Shadows */
  --support-shadow-sm: 0 2px 8px rgba(4, 120, 87, 0.08);
  --support-shadow-md: 0 8px 24px rgba(4, 120, 87, 0.12);
  --support-shadow-lg: 0 16px 48px rgba(4, 120, 87, 0.15);
}

/* ============================================
   BASE OVERRIDES
   ============================================ */

body {
  background: var(--support-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================
   NAVBAR - Emerald Gradient
   ============================================ */

body .navbar.bg-metal {
  background: linear-gradient(135deg, var(--support-emerald-deep) 0%, var(--support-emerald) 50%, var(--support-emerald-light) 100%);
  box-shadow: var(--support-shadow-md);
}

body .navbar .navbar-brand {
  color: #fff;
}

body .navbar .navbar-brand::before {
  background: var(--support-amber);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

body .navbar .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

body .navbar .nav-link:hover,
body .navbar .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   HERO HEADER
   ============================================ */

.support-hero {
  background: linear-gradient(180deg, var(--support-white) 0%, var(--support-bg) 100%);
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.support-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.support-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--support-text);
  margin-bottom: 1rem;
}

.support-hero h1 span {
  color: var(--support-emerald);
}

.support-hero .lead {
  font-size: 1.125rem;
  color: var(--support-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SUPPORT SECTION
   ============================================ */

.support-section {
  flex: 1;
  padding: 40px 0 80px;
}

.support-section .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--support-text);
  margin-bottom: 0.5rem;
}

/* ============================================
   CONTACT CARD
   ============================================ */

.contact-card {
  background: var(--support-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--support-shadow-md);
  border: 1px solid rgba(16, 185, 129, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--support-emerald), var(--support-mint));
}

/* ============================================
   FORM STYLING
   ============================================ */

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--support-text);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--support-text);
  background: var(--support-bg);
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  background: var(--support-white);
  border-color: var(--support-emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-control::placeholder {
  color: #9CA3AF;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-neon {
  background: linear-gradient(135deg, var(--support-emerald), var(--support-emerald-light));
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-neon:active {
  transform: translateY(0);
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  background: var(--support-bg-alt);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.2s ease;
}

.info-card:hover {
  background: var(--support-white);
  box-shadow: var(--support-shadow-sm);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--support-emerald), var(--support-emerald-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--support-text);
  margin-bottom: 0.25rem;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--support-text-muted);
  margin: 0;
  line-height: 1.5;
}

.info-card a {
  color: var(--support-emerald);
  text-decoration: none;
  font-weight: 500;
}

.info-card a:hover {
  text-decoration: underline;
}

/* ============================================
   FAQ PREVIEW
   ============================================ */

.faq-preview {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.faq-preview h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--support-text);
  margin-bottom: 1rem;
}

.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--support-text);
  margin-bottom: 0.25rem;
}

.faq-item p {
  font-size: 0.85rem;
  color: var(--support-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */

.success-message {
  background: var(--support-bg-alt);
  border: 2px solid var(--support-emerald-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  display: none;
}

.success-message.show {
  display: block;
}

.success-message .icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--support-emerald), var(--support-emerald-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.success-message h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--support-text);
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--support-text-muted);
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--support-bg-alt);
  border-top: 1px solid rgba(16, 185, 129, 0.08);
  padding: 2rem 0;
  margin-top: auto;
}

.footer p {
  color: var(--support-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
  .contact-card {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .support-hero {
    padding: 40px 0 30px;
  }
  
  .support-section {
    padding: 30px 0 60px;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .btn-neon {
    width: 100%;
  }
}
