/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background: #0f172a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h1 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.125rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.125rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.tagline {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #cbd5e1;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: #60a5fa;
  background: rgba(30, 41, 59, 0.6);
}

.nav-link--legal {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 0.5rem 1.25rem;
}

.nav-link--legal:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-1px);
  color: white;
}

/* Main Content */
.main {
  padding-top: 80px; /* Account for fixed header */
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  pointer-events: none;
}

.hero-title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-description {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* Sections */
.section-title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #f1f5f9;
  letter-spacing: -0.02em;
}

/* Projects Section */
.projects {
  padding: 6rem 0;
  background: #1e293b;
}

.projects-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0 2rem 0;
  margin-top: 3rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #475569 #334155;
}

.projects-scroll::-webkit-scrollbar {
  height: 8px;
}

.projects-scroll::-webkit-scrollbar-track {
  background: #334155;
  border-radius: 4px;
}

.projects-scroll::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.projects-scroll::-webkit-scrollbar-thumb:hover {
  background: #60a5fa;
}

.project-card {
  background: #334155;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid #475569;
  min-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-color: #60a5fa;
}

.project-card.coming-soon {
  border-color: #374151;
  cursor: default;
}

.project-card.coming-soon:hover {
  transform: none;
  border-color: #475569;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.project-card.coming-soon .project-title {
  color: #94a3b8;
}

.project-card.coming-soon .project-description {
  color: #64748b;
}

.project-card.loading {
  border-color: #374151;
  cursor: default;
  animation: pulse 2s infinite;
}

.project-card.loading:hover {
  transform: none;
  border-color: #374151;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.project-icon {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-icon svg {
  transition: all 0.3s ease;
  width: 64px;
  height: 64px;
}

.project-icon img {
  transition: all 0.3s ease;
  border-radius: 12px;
  background: rgba(96, 165, 250, 0.1);
  padding: 8px;
  width: 64px;
  height: 64px;
}

.project-card:hover .project-icon svg {
  transform: scale(1.1);
}

.project-card:hover .project-icon img {
  transform: scale(1.1);
  background: rgba(96, 165, 250, 0.2);
}

/* Status Badge Styles */
.status-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.status-badge.live {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-badge.beta {
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.status-badge.coming-soon {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.project-card:hover .status-badge.live {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
}

.project-card:hover .status-badge.beta {
  background: rgba(96, 165, 250, 0.15);
  border-color: rgba(96, 165, 250, 0.3);
}

.project-card:hover .status-badge.coming-soon {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.3);
}

.project-title {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

.project-description {
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: #0f172a;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.125rem;
  color: #94a3b8;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  color: #94a3b8;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: #1e293b;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

/* Email Contact */
.email-contact {
  text-align: center;
  background: #334155;
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid #475569;
  transition: all 0.3s ease;
}

.email-contact:hover {
  border-color: #60a5fa;
  transform: translateY(-2px);
}

.email-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.email-icon svg {
  transition: all 0.3s ease;
}

.email-contact:hover .email-icon svg {
  transform: scale(1.1);
}

.email-contact h3 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.email-contact p {
  color: #94a3b8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.email-link {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.email-link:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-1px);
}

/* Social Section */
.social-section {
  text-align: center;
}

.social-section h4 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.social-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #475569 #334155;
  justify-content: center;
}

.social-grid::-webkit-scrollbar {
  height: 6px;
}

.social-grid::-webkit-scrollbar-track {
  background: #334155;
  border-radius: 3px;
}

.social-grid::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.social-grid::-webkit-scrollbar-thumb:hover {
  background: #60a5fa;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #334155;
  border-radius: 8px;
  text-decoration: none;
  color: #e2e8f0;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #475569;
  min-width: 100px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: #60a5fa;
  background: #3f4c5c;
}

.social-link svg {
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
}

.social-link:hover svg {
  transform: scale(1.1);
}

.social-link span {
  font-size: 0.8rem;
  text-align: center;
}

/* Legal Section */
.legal-section {
  text-align: center;
}

.legal-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(51, 65, 85, 0.5);
  border-radius: 8px;
  border: 1px solid #475569;
  transition: all 0.3s ease;
}

.legal-item:hover {
  border-color: #60a5fa;
  background: rgba(51, 65, 85, 0.8);
}

.legal-link {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 0.9rem;
}

.legal-link:hover {
  color: #60a5fa;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3rem 0 1rem;
  border-top: 1px solid #1e293b;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #f1f5f9;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.footer-section p {
  color: #64748b;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  text-align: center;
  color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main {
    padding-top: 140px; /* Increased padding for mobile header */
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .logo {
    text-align: center;
  }

  .logo h1 {
    font-size: 1.75rem; /* Smaller logo on mobile */
  }

  .tagline {
    font-size: 0.75rem; /* Smaller tagline on mobile */
  }

  .nav-list {
    gap: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .projects-scroll {
    gap: 1rem;
  }

  .project-card {
    min-width: 280px;
    padding: 2rem;
  }

  /* Projects grid for /projects/ page - mobile optimization */
  .projects-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* View All Projects button mobile optimization */
  #view-all-container a {
    width: 100% !important;
    justify-content: center !important;
  }

  .about-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .social-grid {
    gap: 0.75rem;
  }

  .social-link {
    min-width: 90px;
    padding: 0.75rem;
  }

  .email-contact {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .main {
    padding-top: 120px; /* Further optimized for small mobile */
  }

  .header-content {
    padding: 0.75rem 0; /* Reduced header padding */
    gap: 0.5rem; /* Tighter spacing */
  }

  .logo h1 {
    font-size: 1.5rem; /* Even smaller on very small screens */
    margin-bottom: 0.125rem; /* Reduced margin */
  }

  .tagline {
    font-size: 0.7rem; /* Very compact tagline */
  }

  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .projects, .about, .contact {
    padding: 4rem 0;
  }

  .projects-scroll {
    gap: 0.75rem;
  }

  .project-card {
    padding: 1.5rem;
    min-width: 260px;
  }

  /* Even tighter grid spacing on small mobile */
  .projects-grid {
    gap: 1rem !important;
  }

  /* Smaller button text on mobile */
  #view-all-container a {
    font-size: 0.875rem !important;
    padding: 0.75rem 1.5rem !important;
  }

  .social-grid {
    gap: 0.5rem;
  }

  .social-link {
    min-width: 80px;
    padding: 0.75rem 0.5rem;
  }

  .social-link span {
    font-size: 0.75rem;
  }

  .email-contact {
    padding: 1.5rem;
  }

  .email-contact h3 {
    font-size: 1.25rem;
  }
}

/* Support Page Styles */
.support-hero {
  background: #1e293b;
  padding: 4rem 0;
}

.support-hero .hero-title {
  font-size: 2.5rem;
  color: #f1f5f9;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.support-hero .hero-description {
  color: #cbd5e1;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.support-options {
  background: #0f172a;
  padding: 4rem 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.support-card {
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-section {
  background: #0f172a;
  padding: 3rem 0;
}

.support-section h2 {
  color: #f1f5f9;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-card h3 {
  color: #f1f5f9;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-section {
  background: #334155;
  border: 1px solid #475569;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #3b82f6;
  max-width: 100%;
  box-sizing: border-box;
}

.form-section h4 {
  color: #60a5fa;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.form-section h4 svg {
  flex-shrink: 0;
}

.form-section p {
  color: #cbd5e1;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

/* Remove the two-column layout completely */

.form-input {
  padding: 0.875rem 1rem;
  border: 1px solid #475569;
  border-radius: 8px;
  background: #1e293b;
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
}

.captcha-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  width: 100%;
  text-align: center;
  position: relative;
}

.captcha-container > div {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
}

.captcha-container .h-captcha {
  margin: 0 auto !important;
  display: block !important;
}

/* Desktop captcha centering */
@media (min-width: 769px) {
  .captcha-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .captcha-container > div {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  .captcha-container .h-captcha {
    margin: 0 auto !important;
    display: block !important;
    position: relative !important;
    left: auto !important;
    transform: none !important;
  }
}

.submit-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  width: 100%;
  box-sizing: border-box;
}

.submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.email-section {
  background: #334155;
  border: 1px solid #475569;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #10b981;
  max-width: 100%;
  box-sizing: border-box;
}

.email-section h4 {
  color: #34d399;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.email-section h4 svg {
  flex-shrink: 0;
}

.email-section p {
  color: #cbd5e1;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}

.email-btn {
  display: block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 250px;
  margin: 0 auto;
}

.email-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.thank-you-message {
  display: none;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.thank-you-message h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.thank-you-message p {
  font-family: 'Inter', sans-serif;
  opacity: 0.95;
  margin: 0;
}

.faq-item {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.faq-item h3 {
  color: #f1f5f9;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #cbd5e1;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 0;
}

/* Support Page Mobile Styles */
@media (max-width: 768px) {
  .support-hero {
    padding: 2.5rem 0;
  }
  
  .support-hero .hero-title {
    font-size: 2rem;
    padding: 0 1rem;
  }
  
  .support-hero .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .support-options {
    padding: 2.5rem 0;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .support-section {
    padding: 2rem 0;
  }
  
  .support-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .contact-container {
    padding: 0 0.5rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .contact-card {
    padding: 1rem;
    margin: 0 0 1.5rem 0;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .contact-card h3 {
    font-size: 1.3rem;
  }
  
  .form-section, .email-section {
    padding: 1rem;
    margin: 0 0 1rem 0;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .form-section h4, .email-section h4 {
    font-size: 1rem;
    flex-wrap: wrap;
  }
  
  .form-section h4 svg, .email-section h4 svg {
    width: 18px;
    height: 18px;
  }
  
  .contact-form {
    gap: 0.75rem;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .form-row {
    width: 100%;
    margin: 0;
  }
  
  .form-input {
    padding: 0.75rem 0.5rem;
    font-size: 16px; /* Prevents zoom on iOS */
    width: 100%;
    margin: 0;
    min-width: 0;
  }
  
  .captcha-container {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .captcha-container > div {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  .captcha-container .h-captcha {
    transform: scale(0.7) !important;
    transform-origin: center !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .submit-btn, .email-btn {
    padding: 1rem 1rem;
    font-size: 1rem;
    min-height: 50px;
    width: 100%;
    margin: 0;
  }
  
  .email-btn {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .faq-item {
    padding: 1.25rem;
  }
  
  .faq-item h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .support-hero .hero-title {
    font-size: 1.75rem;
  }
  
  .support-section h2 {
    font-size: 1.5rem;
  }
  
  .contact-container {
    padding: 0 0.25rem;
  }
  
  .contact-card {
    padding: 0.875rem;
    margin: 0 0 1rem 0;
  }
  
  .form-section, .email-section {
    padding: 0.875rem;
    margin: 0 0 0.875rem 0;
  }
  
  .form-input {
    padding: 0.625rem 0.5rem;
  }
  
  .contact-form {
    gap: 0.625rem;
  }
  
    .captcha-container .h-captcha {
    transform: scale(0.6) !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .email-btn {
    max-width: 180px;
  }
}

/* Small devices (375px and down) */
@media (max-width: 375px) {
  .contact-container {
    padding: 0 0.25rem;
  }
  
  .contact-card {
    padding: 0.875rem;
    margin: 0;
  }
  
  .form-section, .email-section {
    padding: 0.875rem;
    margin: 0 0 0.875rem 0;
  }
  
  .captcha-container {
    margin: 0.5rem 0;
    padding: 0;
    overflow: hidden;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    position: relative;
  }
  
  .captcha-container > div {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    position: relative;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .captcha-container .h-captcha {
    transform: scale(0.5) !important;
    margin: 0 auto !important;
    display: block !important;
    max-width: 100% !important;
    transform-origin: center !important;
    position: relative !important;
    left: 0 !important;
  }
  
  .email-btn {
    max-width: 150px;
    font-size: 0.8rem;
  }
}

/* Extra small devices (phones, 320px and down) */
@media (max-width: 320px) {
  .contact-container {
    padding: 0 0.125rem;
  }
  
  .contact-card {
    padding: 0.75rem;
    margin: 0;
  }
  
  .form-section, .email-section {
    padding: 0.75rem;
    margin: 0 0 0.75rem 0;
  }
  
  .form-input {
    padding: 0.5rem;
    font-size: 16px;
  }
  
  .contact-form {
    gap: 0.5rem;
  }
  
  .captcha-container {
    margin: 0.5rem 0;
    padding: 0;
    overflow: hidden;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    position: relative;
  }
  
  .captcha-container > div {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    position: relative;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .captcha-container .h-captcha {
    transform: scale(0.4) !important;
    margin: 0 auto !important;
    display: block !important;
    max-width: 100% !important;
    transform-origin: center !important;
    position: relative !important;
    left: 0 !important;
  }
  
  .email-btn {
    max-width: 160px;
    font-size: 0.9rem;
  }
}
