/* Global Styles */
:root {
  --bg-color: #1f1f1f;
  --accent-color: #39ff14;
  --text-color: #ffffff;
  --text-muted: #dddddd;
  --gradient-start: #4b0082;
  --gradient-end: #8a2be2;
  --shadow-color: rgba(57, 255, 20, 0.3);
  --container-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 20px auto 0;
  box-shadow: 0 0 15px var(--shadow-color);
}

p {
  margin-bottom: 15px;
  color: var(--text-muted);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
  text-shadow: 0 0 5px var(--shadow-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 80px 0;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: var(--text-color);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(74, 11, 130, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  text-decoration: none;
  box-shadow: 0 0 30px var(--accent-color);
  transform: translateY(-3px);
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.7s ease;
}

.btn-primary:hover:before {
  left: 100%;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(31, 31, 31, 0.95);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-color);
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: 1px;
  position: relative;
  display: block;
  text-shadow: 0 0 15px var(--shadow-color);
}

.logo a:hover {
  color: var(--accent-color);
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin-left: 25px;
}

.main-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
}

.main-nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.main-nav a:hover:after {
  width: 100%;
}

.nav-contact {
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  padding: 8px 20px !important;
  border-radius: 50px;
}

.nav-contact:hover:after {
  display: none;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
}

.menu-button {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-icon {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon:before,
.menu-icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  transition: transform 0.3s ease;
}

.menu-icon:before {
  top: -10px;
}

.menu-icon:after {
  bottom: -10px;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(31, 31, 31, 0.95);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cookie-content p {
  margin: 0 20px 10px 0;
  flex: 1;
  min-width: 250px;
}

.cookie-btn {
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: var(--text-color);
  padding: 10px 25px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  box-shadow: 0 0 15px var(--accent-color);
  transform: translateY(-2px);
}

.cookie-link {
  color: var(--text-muted);
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
      to bottom,
      rgba(31, 31, 31, 0.8),
      rgba(31, 31, 31, 0.9)
    ),
    url("./img/bKIqe.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: 0;
  padding: 0;
}

.hero-section .container {
  max-width: 800px;
  margin-top: 5rem;

  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-muted);
}

/* About Section */
.about-section {
  background-color: #232323;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services-section {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #232323;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(57, 255, 20, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  color: var(--text-color);
  padding: 20px 20px 10px;
  font-size: 1.4rem;
}

.service-card p {
  padding: 0 20px 25px;
  color: var(--text-muted);
}

/* Benefits Section */
.benefits-section {
  background-color: #232323;
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
  background-color: #1a1a1a;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: white;
  box-shadow: 0 5px 15px rgba(74, 11, 130, 0.3);
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background-color: #232323;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  flex: 1;
  min-width: 280px;
  position: relative;
}

.testimonial:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(57, 255, 20, 0.1);
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
}

.testimonial-author {
  text-align: right;
}

/* FAQ Section */
.faq-section {
  background-color: #232323;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-toggle {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq-question {
  display: block;
  padding: 20px;
  background-color: #1a1a1a;
  color: var(--text-color);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #282828;
}

.faq-question:after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question:after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #1f1f1f;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
  padding: 20px;
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #232323;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 5px;
  color: var(--text-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 10px var(--shadow-color);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
}

/* Custom select option styling */
select option {
  background-color: #1a1a1a;
  color: var(--text-color);
  padding: 15px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  margin: 0;
  font-weight: normal;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer Styles */
.site-footer {
  background-color: #1a1a1a;
  padding: 60px 0 20px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-col p {
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.9rem;
}

/* Thank You Page */
.thank-you-section {
  text-align: center;
  margin: 8rem auto 3rem;
  padding: 60px 20px;
  max-width: 700px;
  background-color: #232323;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thank-you-section h1 {
  color: var(--accent-color);
  margin-bottom: 30px;
}

.thank-you-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Policy Pages */
.policy-section {
  padding: 120px 0 60px;
}

.policy-content {
  background-color: #232323;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin: 0 auto;

  word-break: break-word;
  overflow-wrap: break-word;
}

.policy-content h1 {
  text-align: center;
  margin-bottom: 40px;
}

.policy-content h2 {
  text-align: left;
  font-size: 1.8rem;
  margin-top: 40px;
}

.policy-content h2:after {
  margin: 15px 0 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-section h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-section {
    height: 80vh;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  /* Mobile Menu */
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(20, 20, 20, 0.98);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav li {
    margin: 0 0 20px;
  }

  .main-nav a {
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
  }

  .menu-toggle:checked ~ .main-nav {
    right: 0;
  }

  .menu-toggle:checked + .menu-button .menu-icon {
    background: transparent;
  }

  .menu-toggle:checked + .menu-button .menu-icon:before {
    transform: rotate(45deg);
    top: 0;
  }

  .menu-toggle:checked + .menu-button .menu-icon:after {
    transform: rotate(-45deg);
    bottom: 0;
  }

  .about-content,
  .testimonials-slider {
    flex-direction: column;
  }

  .testimonial {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  section {
    padding: 50px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .policy-content {
    padding: 30px 20px;
  }
}

/* Animations and Effects */
@keyframes glow {
  0% {
    box-shadow: 0 0 10px var(--shadow-color);
  }
  50% {
    box-shadow: 0 0 20px var(--shadow-color);
  }
  100% {
    box-shadow: 0 0 10px var(--shadow-color);
  }
}

.btn-primary {
  animation: glow 2s infinite;
}

.logo a {
  animation: glow 3s infinite;
}
