/* Audit Page Styles */

/* Audit Page Header */
.audit-header {
  background: #0a0f1e;
  padding: 80px 0 60px;
  text-align: center;
}

.audit-header__title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}

.audit-header__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
}

.audit-dropdown {
  max-width: 500px;
  margin: 0 auto;
}

.audit-dropdown__select {
  width: 100%;
  padding: 16px 20px;
  font-size: 17px;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
}

.audit-dropdown__select:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.5);
}

.audit-dropdown__select:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 0 4px rgba(0, 191, 255, 0.1);
}

.audit-dropdown__select option {
  background: #1a2332;
  color: #ffffff;
  padding: 8px;
  font-size: 16px;
}

.audit-dropdown__select optgroup {
  font-weight: 600;
  color: var(--brand-light);
  background: #0f1823;
}

/* Hero Section */
.audit-hero {
  position: relative;
  background: linear-gradient(135deg, #0f1823 0%, #1a2332 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.audit-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 157, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 40% 20%, rgba(123, 97, 255, 0.1) 0%, transparent 40%);
  animation: heroGradient 20s ease-in-out infinite;
}

@keyframes heroGradient {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, -20px) scale(1.1); }
  66% { transform: translate(20px, -10px) scale(1.05); }
}

.audit-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.audit-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.1;
}

.audit-hero__desc {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 48px 0;
  line-height: 1.5;
}

.audit-hero__features {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.audit-hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-light);
}

.audit-hero__feature svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-light);
}

/* Filters Section */
.audit-filters {
  background: rgba(26, 35, 50, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
  position: sticky;
  top: 80px;
  z-index: 100;
}

.filters-container {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.filter-group input,
.filter-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-primary);
}

/* Countries Grid */
.audit-countries {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 48px 0;
}

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

.country-card {
  background: rgba(26, 35, 50, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 191, 255, 0.3);
  background: rgba(26, 35, 50, 0.8);
}

.country-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.country-card__flag {
  font-size: 48px;
  line-height: 1;
}

.country-card__info h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.country-card__region {
  font-size: 14px;
  color: var(--brand-light);
  font-weight: 600;
}

.country-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.country-card__detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.country-card__detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--brand-light);
  flex-shrink: 0;
}

.country-card__actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.country-card__link {
  color: var(--brand-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.country-card__link:hover {
  color: #ffffff;
}

.country-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  min-width: 140px;
  height: auto;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #00bfff 0%, #0099ff 100%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 191, 255, 0.35);
}

.country-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 191, 255, 0.45);
}

/* Process Section */
.audit-process {
  background: rgba(0, 191, 255, 0.02);
  padding: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 32px;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-brand);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Services Section */
.audit-services {
  padding: 80px 0;
}

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

.service-card {
  background: rgba(26, 35, 50, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 191, 255, 0.3);
}

.service-card__icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 191, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.service-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--brand-light);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* CTA Section */
.audit-cta {
  background: #0a0f1e;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.audit-cta-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.audit-cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 50%, rgba(0, 191, 255, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(0, 255, 157, 0.2) 0%, transparent 40%);
  filter: blur(60px);
  opacity: 0.6;
  animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
}

.audit-cta-content {
  position: relative;
  background: rgba(26, 35, 50, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 64px;
  text-align: center;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.audit-cta-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-brand);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.audit-cta-icon svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.audit-cta-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.audit-cta-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.audit-cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.audit-cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-light);
  font-weight: 600;
}

.audit-cta-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-light);
}

.audit-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .audit-hero {
    padding: 100px 0 60px;
  }
  
  .audit-hero__features {
    gap: 24px;
  }
  
  .filters-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .filter-group {
    width: 100%;
  }
  
  .countries-grid {
    grid-template-columns: 1fr;
  }
  
  .audit-cta-content {
    padding: 48px 32px;
  }
  
  .audit-cta-features {
    flex-direction: column;
    gap: 16px;
  }
  
  .audit-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .audit-cta-buttons .btn {
    width: 100%;
  }
}
