/* Base Styles */
:root {
  --color-primary-1: #2ed0c5;
  --color-primary-2: #ffe46b;
  --color-accent-1: #4b0082;
  --color-accent-2: #ff6b6b;
  --color-text: #333333;
  --color-text-light: #7d8ca3;
  --font-primary: "Montserrat", sans-serif;
}

* {
  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: var(--font-primary);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--color-accent-1);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent-2);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--color-primary-1),
    var(--color-primary-2)
  );
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.gradient-text {
  background: linear-gradient(
    to right,
    var(--color-primary-1),
    var(--color-primary-2)
  );
  -webkit-background-clip: text;
  color: transparent;
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent-1);
  letter-spacing: 1px;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 2;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-accent-1);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0px;
}

.menu-icon span:nth-child(2) {
  top: 9px;
}

.menu-icon span:nth-child(3) {
  top: 18px;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin-left: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-accent-1);
}

.nav-link label {
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background-image: url("../img/7Gvrr.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(75, 0, 130, 0.8),
    rgba(46, 208, 197, 0.7)
  );
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(
    to right,
    var(--color-primary-1),
    var(--color-primary-2)
  );
  color: var(--color-text);
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--color-primary-2),
    var(--color-primary-1)
  );
  transition: opacity 0.3s ease;
  z-index: -1;
  opacity: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--color-text);
}

.about-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  display: block;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
  color: var(--color-accent-1);
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-light);
}

/* Advantages Section */
.advantages-section {
  padding: 6rem 0;
  background-color: #fff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.advantage-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: transform 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    to right,
    var(--color-primary-1),
    var(--color-primary-2)
  );
  color: var(--color-accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.advantage-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-accent-1);
}

.advantage-item p {
  color: var(--color-text-light);
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content p {
  font-style: italic;
  color: var(--color-text);
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  color: rgba(46, 208, 197, 0.2);
}

.author-name {
  font-weight: 700;
  color: var(--color-accent-1);
  margin-bottom: 0.25rem;
}

.author-company {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background-color: #fff;
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 17px;
  height: 100%;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--color-primary-1),
    var(--color-primary-2)
  );
  border-radius: 2px;
}

.process-step {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(
    to right,
    var(--color-primary-1),
    var(--color-primary-2)
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1.5rem;
  position: relative;
  z-index: 2;
}

.step-content {
  padding-top: 0.25rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--color-accent-1);
}

.step-content p {
  color: var(--color-text-light);
}

/* Form Section */
.form-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text);
  transition: all 0.3s ease;
  background-color: #fff;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%234B0082' d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1.2rem;
  cursor: pointer;
}

.form-group select option {
  background-color: #fff;
  color: var(--color-text);
  padding: 10px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-primary-1);
  box-shadow: 0 0 0 2px rgba(46, 208, 197, 0.2);
  outline: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.95rem;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    to right,
    var(--color-primary-1),
    var(--color-primary-2)
  );
  color: var(--color-accent-1);
  border: none;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--color-primary-2),
    var(--color-primary-1)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background-color: #fff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent-1);
}

.contact-item p,
.contact-item a {
  color: var(--color-text-light);
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  display: block;
  border-radius: 10px;
}

/* Footer Styles */
.main-footer {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 4rem 0 1rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.footer-description {
  margin-top: 1rem;
  color: #9ca3af;
  max-width: 300px;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  min-width: 160px;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #fff;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-primary-2);
}

.contact-list li {
  margin-bottom: 1rem;
}

.contact-list li span {
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-list li p,
.contact-list li a {
  margin: 0;
  color: #9ca3af;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(31, 41, 55, 0.95);
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.5s ease;
  z-index: 1001;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-consent p {
  color: #fff;
  font-size: 0.95rem;
  margin-right: 1rem;
}

.cookie-consent a {
  color: var(--color-primary-2);
  text-decoration: underline;
}

.btn-cookie {
  background: linear-gradient(
    to right,
    var(--color-primary-1),
    var(--color-primary-2)
  );
  color: var(--color-accent-1);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cookie:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1;
    padding: 6rem 2rem 2rem;
  }

  .menu-toggle:checked ~ .main-nav {
    right: 0;
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-list li {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-logo {
    margin-bottom: 2rem;
  }

  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent p {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}

@media screen and (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .btn-primary {
    padding: 0.8rem 2rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .cookie-consent {
    padding: 1rem;
  }
}

.policy-page {
  padding: 6rem 2rem;
  background-color: #f9f9f9;
}

.policy-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 2px solid;
  border-image: linear-gradient(
      to right,
      var(--color-primary-1),
      var(--color-primary-2)
    )
    1;
}

.policy-title {
  font-size: 1.3rem;
  color: var(--color-accent-1);
  margin-bottom: 2rem;
  text-align: center;
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section h2 {
  font-size: 1.5rem;
  color: var(--color-accent-1);
  margin-bottom: 1rem;
}

.policy-section p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.policy-section ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--color-text);
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-weight: 600;
  color: var(--color-accent-1);
}

.back-link:hover {
  color: var(--color-accent-2);
}
