/* Enhanced compliance.css with marketing-focused styling */

:root {
  --primary-color: #4361ee;
  --primary-light: #4895ef;
  --primary-lighter: #4cc9f0;
  --accent-color: #8021e0;
  --dark-bg: #111111;
  --card-bg: rgba(25, 25, 25, 0.7);
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Hero section */
#hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url("/assets/img/compliance-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  #hero {
    background-attachment: fixed !important;
  }
}

/* Featured tag */
.featured-tag {
  display: inline-block;
  background: rgba(67, 97, 238, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.8rem;
  color: var(--primary-lighter);
  border: 1px solid rgba(67, 97, 238, 0.3);
}

.featured-tag i {
  margin-right: 0.5rem;
  color: var(--primary-lighter);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(90deg, var(--primary-light), var(--primary-lighter));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Compliance Badge */
.compliance-badge {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  animation: pulse 2s infinite;
}

.compliance-badge-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(67, 97, 238, 0.2);
  border: 3px solid var(--primary-light);
  color: #fff;
  text-align: center;
  transform: rotate(-5deg);
  box-shadow: 0 0 25px rgba(76, 201, 240, 0.3);
}

.compliance-badge-inner span {
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  color: var(--primary-lighter);
}

.compliance-badge-inner p {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 0;
  flex-wrap: wrap;
}

.badge {
  background-color: rgba(15, 15, 15, 0.7);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge:hover {
  transform: translateY(-5px);
  background-color: rgba(67, 97, 238, 0.1);
  border-color: rgba(67, 97, 238, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

.badge span {
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid var(--primary-light);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn i {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/* Sections */
.sections {
  padding: 5rem 0;
}

.bg-accent {
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.08) 0%, rgba(76, 201, 240, 0.05) 100%);
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-lighter));
  margin: 0 auto 1.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.content-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Business Value Metrics */
.value-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.metric-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(67, 97, 238, 0.2);
}

.metric-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.metric-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Framework Grid */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.framework-item {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.framework-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(67, 97, 238, 0.2);
}

.framework-item i {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
  display: block;
}

.framework-item span {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Timeline */
.timeline-container {
  display: flex;
  justify-content: space-between;
}

.timeline-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-lighter));
  z-index: -1;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(67, 97, 238, 0.4);
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-light);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Feature Cards */
.feature-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(67, 97, 238, 0.2);
}

.feature-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

.solution-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-lighter);
  margin-bottom: 0.5rem;
}

.solution-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Solution Cards */
.solution-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(67, 97, 238, 0.2);
}

.solution-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

/* Highlight box */
.highlight-box {
  background: rgba(67, 97, 238, 0.1);
  border-radius: 8px;
  padding: 1.25rem;
  border-left: 4px solid var(--primary-light);
  margin-bottom: 1.5rem;
}

.highlight-box p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Compliance Features Grid */
.compliance-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(67, 97, 238, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feature-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Compliance Features */
@media (max-width: 768px) {
  .compliance-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-item {
    padding: 1.25rem;
  }
  
  .feature-content h4 {
    font-size: 1rem;
  }
}

/* Service Features */
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.service-feature-item:hover {
  transform: translateX(5px);
}

.service-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-feature-item:hover .service-feature-icon {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(67, 97, 238, 0.3);
}

.service-feature-content span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Feature link */
.feature-link {
  display: inline-block;
  color: var(--primary-lighter);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-link:hover {
  color: var(--primary-light);
}

.feature-link i {
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* Workflow steps */
.workflow-container {
  background: rgba(15, 15, 15, 0.7);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.workflow-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.workflow-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (min-width: 992px) {
  .workflow-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 60px;
    width: calc(100% - 120px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-lighter));
    z-index: -1;
  }
}

.workflow-step {
  text-align: center;
  width: 170px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 600;
}

.step-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Industry Cards */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(67, 97, 238, 0.2);
}

.industry-icon {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.industry-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.industry-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.industry-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  margin-top: auto;
}

.industry-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.industry-features li i {
  color: var(--success-color);
  margin-right: 0.8rem;
  font-size: 0.9rem;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.15) 0%, rgba(114, 9, 183, 0.1) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(67, 97, 238, 0.3) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  border-radius: 50%;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(114, 9, 183, 0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  background: rgba(15, 15, 15, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Contact Form */
.contact-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-col {
  flex: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(30, 30, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

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

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
}

.client-industries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.industry-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.industry-logo:hover {
  transform: scale(1.1);
}

.industry-logo i {
  font-size: 2.5rem;
  color: var(--primary-light);
}

.industry-logo span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.badge-item {
  background: rgba(15, 15, 15, 0.5);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-item:hover {
  transform: translateY(-5px);
  background: rgba(67, 97, 238, 0.1);
  border-color: rgba(67, 97, 238, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge-item i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

.badge-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Back to top button */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#myBtn:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .gradient-text {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .workflow-steps {
    justify-content: center;
  }
  
  .timeline-container {
    flex-direction: column;
  }
  
  .timeline-item {
    margin-bottom: 2rem;
  }
  
  .timeline-item::after {
    display: none;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .gradient-text {
    font-size: 2rem;
  }
  
  #hero {
    min-height: auto;
    padding: 6rem 0;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .framework-grid {
    grid-template-columns: 1fr;
  }
  
  .badge {
    width: 100%;
    justify-content: center;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
}