/* ============================================================
   contact.css — Contact page
   Load after slp-critical.css + slp-deferred.css
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #4a0072 0%, #3a005a 50%, #9821c8 100%);
  background-color: #4a0072;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.text-yellow {
  color: #ffd54f;
}

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

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  margin: 5px;
  transition: transform 0.2s;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-call {
  background: #ffd54f;
  color: #4a0072;
}

.btn-map {
  background: #fff;
  color: #4a0072;
}

.btn-wa {
  background: #25D366;
  color: #fff;
}

.btn-action:hover {
  transform: translateY(-3px);
}

.hero-section {
  padding: 40px 0;
}

.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding-top: 20px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-form {
  flex: 0 0 400px;
  max-width: 100%;
}

.features-section {
  background: #ffd54f;
  color: #4a0072;
  padding: 60px 0;
  margin-top: 40px;
  border-radius: 30px 30px 0 0;
}

.section-title-dark {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

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

.feature-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 5px solid #9821c8;
}

.feature-icon {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.feature-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: #555;
}

.countries-section {
  padding: 60px 0;
  background: transparent;
}

.section-title-light {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #ffd54f;
  text-transform: uppercase;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.country-card {
  position: relative;
  height: 140px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 213, 79, 0.3);
  transition: transform 0.3s;
}

.country-card:hover {
  transform: translateY(-5px);
  border-color: #ffd54f;
}

.c-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.country-card:hover .c-bg-image {
  transform: scale(1.1);
}

.c-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(74, 0, 114, 0.4) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
}

.c-flag {
  font-size: 28px;
  margin-bottom: 5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.c-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.c-sub {
  font-size: 10px;
  color: #ffd54f;
  font-weight: 600;
  margin-top: 2px;
}

.faq-section {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.12);
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #ffd54f;
}

.faq-q {
  font-weight: 700;
  color: #ffd54f;
  margin-bottom: 8px;
  font-size: 16px;
}

.faq-a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

footer {
  background: #222;
  padding: 40px 0;
  text-align: center;
  border-top: 4px solid #ffd54f;
}

.slp-widget {
  background: #ffffff;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  color: #333;
}

.slp-header {
  background: linear-gradient(135deg, #9821c8 0%, #6a0099 100%);
  color: white;
  padding: 20px;
  text-align: center;
}

.slp-logo-w {
  height: 30px;
  background: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 5px;
}

.slp-header h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.benefits-box {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 8px;
  margin-top: 10px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
}

.benefits-list li {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.benefits-list li span {
  color: #ffd54f;
  font-weight: 800;
  margin-right: 2px;
}

.slp-body {
  padding: 20px;
  background: #fff;
}

.form-group {
  margin-bottom: 12px;
  position: relative;
}

.form-group label {
  font-size: 11px;
  color: #444;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
}

.form-group input:focus {
  outline: none;
  border-color: #9821c8;
  background: #fff;
}

.row {
  display: flex;
  gap: 10px;
}

.col {
  flex: 1;
}

.err {
  color: #d32f2f;
  font-size: 10px;
  font-weight: 600;
  display: none;
  margin-top: 2px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #ffd54f 0%, #ffc107 100%);
  color: #4a0072;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.btn-submit:disabled {
  background: #e0e0e0;
  color: #888;
  cursor: not-allowed;
}

.loader-spinner {
  border: 3px solid rgba(74, 0, 114, 0.2);
  border-radius: 50%;
  border-top: 3px solid #4a0072;
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
  margin-right: 10px;
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #9821c8;
  max-height: 150px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.country-dropdown.show {
  display: block;
}

.country-option {
  padding: 8px;
  font-size: 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.country-option:hover {
  background: #f0f0f0;
}

.success-view {
  display: none;
  padding: 20px;
  text-align: center;
}

.wa-btn-lg {
  display: block;
  background: #25D366;
  color: white;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 15px;
}

@media (max-width: 900px) {
  .header-trust {
    display: none;
  }

  .hero-wrapper {
    flex-direction: column;
  }

  .hero-form {
    width: 100%;
    flex: none;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .trust-badges {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }
}

:focus-visible {
  outline: 3px solid #ffd54f;
  outline-offset: 3px;
  border-radius: 4px;
}
