:root {
  --bg-primary: #0e172a;
  --bg-secondary: #1e293b;
  --text-primary: #f1f5f9;
  --accent-pink: #f43f5e;
  --accent-blue: #22d3ee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

section[id] {
  scroll-margin-top: 40px;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}
option {
  background-color: #3e4757;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: var(--bg-primary);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(
    90deg,
    var(--accent-pink) 0%,
    var(--accent-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-blue);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

#menu-toggle {
  display: none;
}

/* Main Page Styles */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background-color: var(--bg-secondary);
}

section:nth-child(odd) {
  background-color: var(--bg-primary);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.section-title p {
  color: var(--text-primary);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--accent-pink) 0%,
    var(--accent-blue) 100%
  );
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url("./img/gnnsN.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.hero-content {
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3,
.service-card p,
.service-card ul {
  padding: 0 20px;
}

.service-card h3 {
  margin: 20px 0 15px;
  font-size: 1.5rem;
  color: var(--accent-blue);
}

.service-card p {
  margin-bottom: 15px;
}

.service-card ul {
  margin-bottom: 20px;
  padding-left: 40px;
}

.service-card ul li {
  margin-bottom: 8px;
}

/* Features Section */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    90deg,
    var(--accent-pink) 0%,
    var(--accent-blue) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 20px;
  color: white;
}

.feature-text h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Steps Section */
.steps-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    90deg,
    var(--accent-pink) 0%,
    var(--accent-blue) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.step-line {
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: -50px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--accent-pink) 0%,
    var(--accent-blue) 100%
  );
}

.step-item:last-child .step-line {
  display: none;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
}

.testimonial-text {
  position: relative;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  left: -15px;
  top: -20px;
  opacity: 0.2;
  color: var(--accent-pink);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  background-color: transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-toggle {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq-question {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.15)
  );
}

.faq-question-text {
  flex: 1;
  margin-right: 10px;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon:before,
.faq-icon:after {
  content: "";
  position: absolute;
  background-color: var(--accent-blue);
  transition: all 0.3s ease;
}

.faq-icon:before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

.faq-icon:after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

.faq-answer {
  max-height: 0;
  padding: 0 30px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.02);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-left: 2px solid var(--accent-blue);
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 0 0 12px 12px;
  opacity: 0;
}

.faq-answer p {
  margin: 0;
  padding: 10px 0;
  color: var(--text-primary);
  opacity: 0.9;
  line-height: 1.7;
}

/* Styles for open accordion */
.faq-toggle:checked ~ .faq-question {
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.15)
  );
}

.faq-toggle:checked ~ .faq-question .faq-icon:after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-toggle:checked ~ .faq-question .faq-icon:before {
  background-color: var(--accent-pink);
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
  padding: 20px 30px;
  opacity: 1;
}

/* Contact Form Section */
.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23F1F5F9'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-right: 40px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input {
  margin-top: 5px;
  margin-right: 10px;
}

.checkbox-group label {
  flex: 1;
}

.checkbox-group a {
  color: var(--accent-blue);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* Footer Styles */
footer {
  background-color: var(--bg-secondary);
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-info p {
  margin-top: 15px;
  opacity: 0.8;
}

.footer-contact p,
.footer-links li,
.footer-legal li {
  margin: 10px 0;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links a,
.footer-legal a {
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--accent-blue);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-location,
.icon-phone,
.icon-email {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-color: var(--text-primary);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.icon-location {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z'/%3E%3C/svg%3E");
}

.icon-phone {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E");
}

.icon-email {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z'/%3E%3C/svg%3E");
}

/* Cookie Popup */
#cookie-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

#cookie-popup p {
  margin: 0;
  padding-right: 20px;
}

#accept-cookies {
  background: linear-gradient(
    90deg,
    var(--accent-pink) 0%,
    var(--accent-blue) 100%
  );
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
}

/* Policy Pages Styles */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
}

.policy-header {
  text-align: center;
  margin-bottom: 30px;
}

.policy-header h1 {
  color: var(--text-primary);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.policy-header p {
  color: var(--text-primary);
  opacity: 0.8;
}

.policy-content {
  color: var(--text-primary);
  line-height: 1.8;
}

.policy-content h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  margin: 30px 0 15px;
}

.policy-content h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  margin: 25px 0 10px;
}

.policy-content p {
  margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}

.back-link {
  text-align: center;
  margin-top: 30px;
}

.back-link a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-link a:hover {
  color: var(--accent-pink);
}

/* Success Icon Styles */
.success-icon {
  text-align: center;
  margin-bottom: 30px;
}

.success-icon span {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    90deg,
    var(--accent-pink) 0%,
    var(--accent-blue) 100%
  );
  border-radius: 50%;
  line-height: 80px;
  font-size: 40px;
  color: white;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-secondary);
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    padding: 20px 0;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 10px 0;
  }

  #menu-toggle:checked ~ .nav-links {
    left: 0;
  }

  #menu-toggle:checked ~ .menu-toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  #menu-toggle:checked ~ .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked ~ .menu-toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .step-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .step-number {
    margin: 0 auto;
  }

  .step-line {
    display: none;
  }

  .step-content {
    text-align: center;
  }

  .contact-form-container {
    padding: 20px;
  }
}
