/* GLOBAL STYLES */
:root {
  --lavender: #8a6fbf;
  --mint: #c2fbef;
  --pink: #ff5da2;
  --dark-gray: #2b2d42;
  --milk-white: #faf9f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-gray);
  background-color: var(--milk-white);
  line-height: 1.6;
}

section[id] {
  scroll-margin-top: 40px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--lavender);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--pink);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--lavender);
  color: var(--milk-white);
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn:hover {
  background-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--pink);
  margin: 0 auto;
}

section {
  padding: 5rem 0;
}

/* HEADER */
header {
  background-color: var(--milk-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-gray);
}

.logo span {
  color: var(--pink);
}

/* BURGER MENU */
.burger-menu {
  display: none;
}

.burger-menu-checkbox {
  display: none;
}

.burger-menu-label {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.desktop-nav {
  display: flex;
}

.nav-links a {
  color: var(--dark-gray);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--pink);
}

.burger-menu .nav-links {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--milk-white);
  height: 0;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: none;
  align-items: center;
}

.burger-menu .nav-links label {
  width: 100%;
}

.burger-menu .nav-links a {
  padding: 1rem 2rem;
  width: 100%;
  display: block;
  border-bottom: 1px solid #eee;
  text-align: center;
}

/* HERO SECTION */
.hero {
  background-image: url("./img/sFRtP.jpg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--milk-white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ABOUT SECTION */
.about {
  background-color: var(--milk-white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* SERVICES SECTION */
.services {
  background-color: var(--mint);
  background-image: linear-gradient(
    135deg,
    var(--milk-white) 0%,
    var(--mint) 100%
  );
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: var(--milk-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  padding: 1.5rem;
}

.service-card h3 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

/* WHY CHOOSE US */
.why-us {
  background-color: var(--milk-white);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.reason-card {
  padding: 2rem;
  background-color: var(--milk-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reason-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.reason-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TESTIMONIALS */
.testimonials {
  background-color: var(--lavender);
  color: var(--milk-white);
}

.testimonials .section-title h2 {
  color: var(--milk-white);
}

.testimonials .section-title::after {
  background-color: var(--mint);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
}

.testimonial-text {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: 10px;
  opacity: 0.2;
  font-family: Georgia, serif;
}

/* WORK STAGES */
.stages {
  background-color: var(--milk-white);
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.stage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.stage-number {
  width: 50px;
  height: 50px;
  background-color: var(--lavender);
  color: var(--milk-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.stage-card h3 {
  margin-bottom: 1rem;
}

.stages-grid .stage-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -10px;
  width: 20px;
  height: 2px;
  background-color: var(--lavender);
  display: none;
}

/* FORM SECTION */
.contact-form {
  background-color: var(--mint);
  background-image: linear-gradient(
    135deg,
    var(--mint) 0%,
    var(--milk-white) 100%
  );
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--milk-white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: var(--lavender);
  outline: none;
}

.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232B2D42' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.form-select option {
  background-color: var(--milk-white);
  color: var(--dark-gray);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
}

.checkbox-input {
  margin-top: 3px;
}

/* CONTACT SECTION */
.contact {
  background-color: var(--milk-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 20px;
  color: var(--lavender);
}

.map-container {
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
}

/* FOOTER */
footer {
  background-color: var(--dark-gray);
  color: var(--milk-white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--pink);
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ddd;
}

.footer-links a:hover {
  color: var(--pink);
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* THANK YOU PAGE */
.thank-you {
  text-align: center;
  margin: 8rem auto 5rem;
  max-width: 600px;
  background-color: var(--milk-white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq {
  background-color: var(--milk-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  position: relative;
}

.faq-checkbox {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq-label {
  display: block;
  padding: 1rem 1.5rem;
  background-color: #f9f9f9;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.faq-label:hover {
  background-color: #f3f3f3;
}

.faq-label::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-checkbox:checked ~ .faq-label::after {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--milk-white);
  padding: 0 1.5rem;
}

.faq-checkbox:checked ~ .faq-content {
  max-height: 500px;
}

/* COOKIE POPUP */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: var(--dark-gray);
  color: var(--milk-white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
  animation: fadeIn 0.5s;
}

.cookie-content {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--lavender);
  color: var(--milk-white);
  border: none;
}

.cookie-accept:hover {
  background-color: var(--pink);
}

.cookie-decline {
  background-color: transparent;
  border: 1px solid #ddd;
  color: #ddd;
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* POLICY PAGES */
.policy-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: var(--milk-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-container h1 {
  margin-bottom: 2rem;
  text-align: center;
}

.policy-container h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--lavender);
}

.policy-container p,
.policy-container ul,
.policy-container ol {
  margin-bottom: 1rem;
}

.policy-container ul,
.policy-container ol {
  padding-left: 2rem;
}

/* UTILITIES */
div {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .stages-grid .stage-card::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .burger-menu-label {
    display: block;
  }

  .desktop-nav {
    display: none;
  }

  .burger-menu {
    display: block;
  }

  .burger-menu-checkbox:checked ~ .nav-links {
    display: flex;

    height: 100%;
    max-height: 320px;
    padding: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 25px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
