/* General Styles */
:root {
  --color-primary: #151e3f;
  --color-secondary: #3e2f5b;
  --color-accent-gold: #ffc93c;
  --color-accent-pink: #f25081;
  --color-accent-teal: #14ffec;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Rubik", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-secondary) 100%
    )
    fixed;
  min-height: 100vh;
}

section[id] {
  scroll-margin-top: 40px;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--color-accent-gold);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-accent-pink);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-secondary);
}

.btn-primary {
  background: var(--color-accent-gold);
  color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-accent-pink);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent-gold);
  border: 2px solid var(--color-accent-gold);
}

.btn-secondary:hover {
  background: var(--color-accent-gold);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--color-accent-gold);
  margin-bottom: 15px;
  font-weight: 700;
  font-family: var(--font-secondary);
}

.section-header p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Header Styles */
.site-header {
  background-color: rgba(21, 30, 63, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent-gold);
  text-transform: lowercase;
  letter-spacing: -1px;
  font-family: var(--font-secondary);
}

.logo:hover {
  color: var(--color-accent-teal);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.main-nav a {
  color: white;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent-teal);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--color-accent-teal);
}

.main-nav a:hover::after {
  width: 100%;
}

.btn-nav {
  background: var(--color-accent-gold);
  color: var(--color-primary) !important;
  padding: 8px 16px !important;
  border-radius: 20px;
}

.btn-nav:hover {
  background: var(--color-accent-pink);
  color: white !important;
  transform: translateY(-3px);
}

.btn-nav::after {
  display: none;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 102;
}

.menu-icon .bar {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-icon .bar:nth-child(1) {
  top: 0;
}

.menu-icon .bar:nth-child(2) {
  top: 10px;
}

.menu-icon .bar:nth-child(3) {
  top: 20px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(21, 30, 63, 0.8), rgba(62, 47, 91, 0.8)),
    url("./img/Me4hG.jpg") center center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 30, 63, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: var(--font-secondary);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* About Section */
.about-section {
  background: white;
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-accent-gold);
  display: block;
  font-family: var(--font-secondary);
}

.stat-text {
  font-size: 14px;
  color: #666;
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  padding: 80px 0;
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--color-accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-text {
  font-size: 32px;
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-secondary);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-accent-teal);
}

/* Services Section */
.services-section {
  background: white;
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 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.1);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--color-primary);
  font-family: var(--font-secondary);
}

.service-content p {
  margin-bottom: 15px;
  color: #666;
}

.service-content ul {
  list-style-position: inside;
  color: #666;
}

.service-content ul li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.service-content ul li::before {
  content: "•";
  color: var(--color-accent-gold);
  font-weight: bold;
  display: inline-block;
  width: 15px;
  margin-left: -15px;
}

/* Process Section */
.process-section {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  padding: 80px 0;
  color: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  background: var(--color-accent-gold);
  color: var(--color-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-secondary);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--color-accent-teal);
}

/* Testimonials Section */
.testimonials-section {
  background: white;
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-rating {
  color: var(--color-accent-gold);
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonial-content p {
  font-style: italic;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: 20px;
}

.testimonial-author h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--color-primary);
}

.testimonial-author p {
  font-size: 14px;
  color: #777;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  padding: 80px 0;
  color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-accent-gold);
  transition: all 0.3s ease;
}

.faq-question .arrow {
  width: 15px;
  height: 15px;
  border-right: 3px solid var(--color-accent-gold);
  border-bottom: 3px solid var(--color-accent-gold);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question .arrow {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-toggle:checked + .faq-question {
  background: rgba(255, 255, 255, 0.05);
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

/* Contact Section */
.contact-section {
  background: white;
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-map {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.contact-icon {
  font-size: 20px;
  color: var(--color-accent-gold);
  width: 24px;
  text-align: center;
}

.contact-form-wrapper {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent-gold);
  outline: none;
}

.form-group select option {
  background-color: var(--color-accent-teal);
  color: var(--color-primary);
  padding: 10px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent-gold);
  cursor: pointer;
}

.checkbox-consent {
  margin-top: 10px;
}

.required {
  color: var(--color-accent-pink);
}

.form-error {
  background: rgba(242, 80, 129, 0.1);
  color: var(--color-accent-pink);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
}

.form-submit {
  margin-top: 10px;
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  font-size: 24px;
}

.footer-info p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact h3,
.footer-links h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--color-accent-gold);
  font-family: var(--font-secondary);
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-contact .contact-icon {
  font-size: 18px;
  width: 20px;
}

.footer-links a {
  color: #bbb;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent-teal);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #999;
}

/* Thanks Page */
.thanks-section {
  background: white;
  margin: 8rem auto 5rem;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

.thanks-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--color-accent-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon-symbol {
  font-size: 50px;
  color: var(--color-primary);
  font-weight: bold;
}

.thanks-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--color-primary);
  font-family: var(--font-secondary);
}

.thanks-content p {
  margin-bottom: 30px;
  color: #666;
}

/* Legal Pages */
.legal-section {
  background: white;
  padding: 60px 0;
  min-height: 100vh;
}

.legal-content {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.legal-logo {
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

.legal-content h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--color-primary);
  text-align: center;
  font-family: var(--font-secondary);
}

.legal-body {
  margin-bottom: 40px;
}

.legal-body h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--color-primary);
  font-family: var(--font-secondary);
}

.legal-body h3 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--color-secondary);
}

.legal-body p {
  margin-bottom: 15px;
  color: #555;
}

.legal-body ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.legal-body li {
  margin-bottom: 8px;
  color: #555;
}

.legal-content .btn {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(21, 30, 63, 0.95);
  color: white;
  padding: 20px;
  z-index: 1000;
  transition: bottom 0.5s ease-in-out;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content h3 {
  font-size: 20px;
  color: var(--color-accent-gold);
  font-family: var(--font-secondary);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 38px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .process-steps {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color-primary);
    z-index: 101;
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .menu-toggle:checked ~ .main-nav {
    height: 100vh;
    overflow-y: auto;
  }

  .menu-toggle:checked ~ .menu-icon .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }

  .menu-toggle:checked ~ .menu-icon .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked ~ .menu-icon .bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }

  .main-nav ul {
    flex-direction: column;
    margin-top: 60px;
    padding: 20px;
  }

  .main-nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav a {
    display: block;
    padding: 15px 0;
  }

  .main-nav a label {
    display: block;
    width: 100%;
    cursor: pointer;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .benefit-card,
  .service-card,
  .testimonial-card {
    padding: 20px;
  }

  .legal-content {
    padding: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cookie-content {
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}
