/* ===== Country Landing Pages ===== */

.country-flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: 999px;
  color: #c4b5fd;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.country-flag-badge .flag {
  font-size: 1.125rem;
  line-height: 1;
}

.country-hero {
  min-height: 85vh;
  padding-top: 5rem;
}

.country-hero .hero-subtitle {
  max-width: 640px;
}

.country-trust-bar {
  background: var(--ai-dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}

.country-trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.country-trust-grid span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.country-trust-grid strong {
  color: var(--ai-cyan);
  font-weight: 600;
}

.country-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.country-service-block {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.country-service-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--ai-glow-purple);
}

.country-service-block h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ai-dark);
  margin-bottom: 0.75rem;
}

.country-service-block .service-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: linear-gradient(135deg, rgba(0,176,238,0.12), rgba(124,58,237,0.12));
  border-radius: 0.875rem;
  margin-bottom: 1rem;
}

.country-service-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.country-service-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.country-service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ai-cyan);
  font-weight: 700;
}

.country-service-list li:last-child {
  border-bottom: none;
}

.country-local-box {
  background: linear-gradient(135deg, rgba(0,176,238,0.08), rgba(124,58,237,0.08));
  border: 1px solid rgba(0,176,238,0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
}

.country-local-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ai-dark);
  margin-bottom: 0.75rem;
}

.country-local-box p {
  color: #475569;
  line-height: 1.75;
  font-size: 0.9375rem;
}

.country-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.country-industry-tag {
  padding: 0.5rem 1rem;
  background: var(--ai-dark-3);
  border: 1px solid rgba(0,176,238,0.2);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  transition: border-color 0.2s, color 0.2s;
}

.country-industry-tag:hover {
  border-color: var(--ai-cyan);
  color: #fff;
}

.country-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.country-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.875rem;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.country-step:hover {
  border-color: rgba(0,176,238,0.3);
}

.country-step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ai-gradient);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}

.country-step h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.country-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.country-faq {
  max-width: 800px;
  margin: 2rem auto 0;
}

.country-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 1.25rem 0;
}

.country-faq-item:first-child {
  border-top: 1px solid #e2e8f0;
}

.country-faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ai-dark);
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.country-faq-item h3::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--ai-purple);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.country-faq-item.open h3::after {
  transform: rotate(45deg);
}

.country-faq-item p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin 0.35s ease;
}

.country-faq-item.open p {
  max-height: 300px;
  margin-top: 0.5rem;
}

.country-testimonial {
  background: var(--ai-dark-3);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.country-testimonial .quote {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.country-testimonial .author {
  font-weight: 700;
  color: #fff;
}

.country-testimonial .role {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.country-cta-section {
  background: var(--ai-gradient-dark);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.country-cta-section h2 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.country-cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
}

.country-nav-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.country-nav-locations a {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 999px;
  color: #64748b;
  transition: all 0.2s;
}

.country-nav-locations a:hover,
.country-nav-locations a.active {
  background: var(--ai-gradient);
  color: #fff;
  border-color: transparent;
}

.country-breadcrumb {
  padding: 1rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.country-breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.country-breadcrumb a:hover {
  color: var(--ai-cyan);
}

@media (min-width: 768px) {
  .country-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .country-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .country-hero .hero-title {
    font-size: 2.5rem;
  }

  .country-process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
