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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 100%);
  min-height: 100vh;
}

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

/* Utility Classes */
.text-blue {
  color: #2563eb;
}
.text-purple {
  color: #7c3aed;
}
.text-pink {
  color: #ec4899;
}
.bg-blue {
  background-color: #3b82f6;
}
.bg-purple {
  background-color: #8b5cf6;
}
.bg-pink {
  background-color: #f472b6;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #eff6ff;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: #2563eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #2563eb;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background-color: #fed7aa;
  color: #c2410c;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-orange {
  background-color: #ea580c;
  color: white;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-description {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Stats Section */
.stats {
  padding: 64px 0;
  background-color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 8px;
}

.stat-label {
  color: #6b7280;
  font-size: 16px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: bold;
  margin-bottom: 16px;
  color: #1f2937;
}

.section-description {
  font-size: 20px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f2937;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Payment Methods Section */
.payment-methods {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.payment-methods-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .payment-methods-content {
    grid-template-columns: 1fr 1fr;
  }
}

.payment-methods-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: bold;
  margin-bottom: 24px;
}

.payment-methods-description {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.7;
}

.payment-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-methods-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .payment-methods-visual {
    flex-direction: row;
    justify-content: center;
  }
}

.payment-card {
  background: white;
  color: #1f2937;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  min-width: 200px;
}

.payment-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}

.payment-icon {
  font-size: 24px;
}

.payment-issues .issue,
.payment-benefits-visual .benefit {
  padding: 4px 0;
  font-size: 14px;
}

.vs-arrow {
  font-size: 24px;
  font-weight: bold;
  color: #fbbf24;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.traditional {
  border-left: 4px solid #ef4444;
}

.modern {
  border-left: 4px solid #10b981;
}

/* Countries Section */
.countries {
  padding: 80px 0;
  background-color: #eff6ff;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.country-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.country-flag {
  font-size: 48px;
  margin-bottom: 12px;
}

.country-name {
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.country-wallet {
  font-size: 14px;
  color: #6b7280;
}

.crypto-badge {
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: white;
}

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

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-container {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.success-message {
  text-align: center;
  padding: 32px;
}

.success-icon {
  font-size: 64px;
  color: #10b981;
  margin-bottom: 16px;
}

.success-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.success-text {
  color: #6b7280;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-card,
.benefits-card {
  background: #f8fafc;
  padding: 32px;
  border-radius: 12px;
}

.info-title,
.benefits-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1f2937;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.info-label {
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 4px;
}

.info-text {
  color: #6b7280;
  font-size: 14px;
}

.info-link {
  background: none;
  border: none;
  color: #2563eb;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

.info-link:hover {
  color: #1d4ed8;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  color: #10b981;
  font-weight: bold;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 48px 0;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-link {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
}

.footer-copyright {
  color: #6b7280;
}

/* Loading State */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0;
  }

  .features,
  .countries,
  .contact,
  .payment-methods {
    padding: 60px 0;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-large {
    width: 100%;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .payment-methods-visual {
    flex-direction: column;
  }
}

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

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.country-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Google Translate Widget Styling */
.translate-widget {
  display: none;
}

@media (min-width: 768px) {
  .translate-widget {
    display: block;
  }
}

/* Override Google Translate default styles */
#google_translate_element {
  font-family: inherit;
}

.goog-te-gadget {
  font-family: inherit !important;
  font-size: 14px !important;
}

.goog-te-gadget-simple {
  background-color: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  font-size: 14px !important;
  color: #374151 !important;
}

.goog-te-gadget-simple:hover {
  background-color: #f1f5f9 !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
  color: #374151 !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
  color: #6b7280 !important;
}

/* Hide Google Translate banner */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Style the dropdown */
.goog-te-menu-frame {
  max-height: 300px !important;
  overflow-y: auto !important;
}

/* Mobile responsive - hide on small screens */
@media (max-width: 767px) {
  #google_translate_element {
    display: none;
  }
}
