/* Global styles */
:root {
  --primary-bg: #2A1A4A;
  --accent-color: #C6FF00;
  --text-color: #EAEAEA;
  --block-bg-start: #2A1A4A;
  --block-bg-end: #0F0F2F;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

.button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-bg);
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(198, 255, 0, 0.3);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(198, 255, 0, 0.4);
  opacity: 1;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--block-bg-start), var(--block-bg-end));
}

.section-title {
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: rgba(42, 26, 74, 0.9);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
}

.nav-desktop {
  display: flex;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
}

.nav-desktop li {
  margin-left: 30px;
}

.nav-desktop a {
  color: var(--text-color);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--accent-color);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--primary-bg);
  z-index: 1001;
  padding: 80px 40px;
  transition: right 0.3s ease;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile ul {
  list-style: none;
}

.nav-mobile li {
  margin-bottom: 20px;
}

.nav-mobile a {
  color: var(--text-color);
  font-size: 1.2rem;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--accent-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url('../img/QG5vcu.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(42, 26, 74, 0.8), rgba(15, 15, 47, 0.9));
  z-index: -1;
}

.hero-content {
  max-width: 650px;
  animation: fadeIn 1.5s ease;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 30px;
  color: var(--text-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: float 5s ease-in-out infinite;
}

/* Benefits Section */
.benefits {
  background-color: rgba(15, 15, 47, 0.7);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(42, 26, 74, 0.9), rgba(15, 15, 47, 0.9));
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* Audit Types Section */
.audit-types {
  position: relative;
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.audit-card {
  background: linear-gradient(135deg, rgba(42, 26, 74, 0.8), rgba(15, 15, 47, 0.8));
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.audit-card:hover {
  transform: translateY(-10px);
}

.audit-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.audit-content {
  padding: 30px;
}

.audit-title {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Process Section */
.process {
  background-color: rgba(15, 15, 47, 0.7);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 2px;
  background-color: var(--accent-color);
}

.step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 1;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(42, 26, 74, 0.8), rgba(15, 15, 47, 0.8));
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: 5rem;
  color: rgba(198, 255, 0, 0.1);
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--accent-color);
}

.testimonial-position {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* FAQ Section */
.faq {
  background-color: rgba(15, 15, 47, 0.7);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  background: linear-gradient(135deg, rgba(42, 26, 74, 0.9), rgba(15, 15, 47, 0.9));
  cursor: pointer;
  position: relative;
  font-weight: 700;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(42, 26, 74, 0.6), rgba(15, 15, 47, 0.6));
}

.faq-item.active .faq-answer {
  padding: 20px;
  height: auto;
}

/* Form Section */
.contact-form {
  position: relative;
  background: url('../img/q4wLen.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(42, 26, 74, 0.9), rgba(15, 15, 47, 0.9));
  z-index: -1;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(42, 26, 74, 0.8), rgba(15, 15, 47, 0.8));
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(198, 255, 0, 0.3);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(198, 255, 0, 0.2);
  border-radius: 8px;
  color: var(--text-color);
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(198, 255, 0, 0.3);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23EAEAEA%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 30px;
  color: var(--text-color);
}

/* Fix for dropdown options to ensure text is visible */
select.form-control option {
  background-color: var(--primary-bg);
  color: var(--text-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info {
  background: linear-gradient(135deg, rgba(42, 26, 74, 0.8), rgba(15, 15, 47, 0.8));
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
}

.contact-map {
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: rgba(15, 15, 47, 0.9);
  padding: 60px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 20px;
}

.footer-about {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-color);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact-icon {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 10px;
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(42, 26, 74, 0.95), rgba(15, 15, 47, 0.95));
  padding: 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  transition: bottom 0.5s ease;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-btn {
  white-space: nowrap;
}

/* Policy Pages */
.policy-page {
  padding-top: 140px;
  padding-bottom: 80px;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(42, 26, 74, 0.8), rgba(15, 15, 47, 0.8));
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(198, 255, 0, 0.2);
}

.policy-title {
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 30px;
}

.policy-content h3 {
  color: var(--accent-color);
  margin: 30px 0 15px;
}

.policy-content p,
.policy-content ul,
.policy-content ol {
  margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
  margin-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}

.policy-back {
  display: inline-block;
  margin-top: 30px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Thank You Page */
.thank-you {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  animation: fadeIn 1s ease;
}

.thank-you h1 {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 30px;
}

.thank-you p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .process-steps::before {
    left: 25px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .step {
    padding-left: 70px;
  }
  
  .hero {
    min-height: 600px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .button {
    padding: 10px 25px;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  .policy-container {
    padding: 30px 20px;
  }
}
