:root {
  --primary: #bb877a;
  --secondary: #debcb2;
  --accent: #99a98f;
  --light: #f9f5f2;
  --dark: #333333;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
  margin-top: 60px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
  scroll-margin-top: 10px;
}

h1,
h2,
h3 {
  font-weight: 600;
  color: var(--primary);
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

p {
  margin-bottom: 15px;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(153, 169, 143, 0.2);
}

.btn:hover {
  background-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(187, 135, 122, 0.3);
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5% 12%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  max-width: fit-content;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

.language-switch {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.language-switch button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--dark);
  opacity: 0.6;
  transition: var(--transition);
  padding: 5px;
}

.language-switch button.active {
  opacity: 1;
  color: var(--primary);
}

.language-switch span {
  margin: 0 5px;
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
}

/* About Me */
.about-me-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.about-me-image {
  flex: 0 0 300px;
}

.about-me-image img {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 5px solid white;
}

.about-me-text {
  flex: 1;
}

.about-me-title {
  margin-left: 0px;
}

.qualifications {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.qualifications h3 {
  color: var(--accent);
}

.qualifications ul {
  list-style-type: none;
}

.qualifications ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.qualifications ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1em;
}

/* About You */
.about-you {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(187, 135, 122, 0.1);
  border-bottom: 1px solid rgba(187, 135, 122, 0.1);
}

.about-you::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50,10 Q60,0 70,10 T90,10 T100,20 T100,40 T90,50 T70,50 T50,60 T30,50 T10,50 T0,40 T0,20 T10,10 T30,10 T50,10" fill="none" stroke="rgba(187,135,122,0.1)" stroke-width="1"/></svg>');
  opacity: 0.3;
}

.about-you-content {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.about-you-content ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.about-you-content ul li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1em;
}

.about-you-content ul {
  list-style-type: none;
}

/* Areas */
.areas {
  background-color: white;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.area-card {
  background-color: var(--light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(187, 135, 122, 0.1);
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.area-icon {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.area-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.area-list {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
  margin-top: 15px;
}

.area-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.area-list li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.5em;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.area-card:hover .area-list li::before {
  color: var(--primary);
}

/* Services */
.services {
  background-color: var(--light);
  border-top: 1px solid rgba(187, 135, 122, 0.1);
  border-bottom: 1px solid rgba(187, 135, 122, 0.1);
}

.service-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--accent);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--secondary);
}

.service-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  background-color: rgba(153, 169, 143, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
}

/* What to Expect */
.what-to-expect {
  background-color: white;
  border-top: 1px solid rgba(187, 135, 122, 0.1);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background-color: var(--light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  border: 1px solid rgba(187, 135, 122, 0.1);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 15px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Contact */
.contact {
  background-color: white;
}

.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-text {
  margin-bottom: 30px;
}

/* Footer */
footer {
  color: var(--accent);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
}

.social-links a {
  color: var(--accent);
  font-size: 20px;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--secondary);
  transform: translateY(-3px);
}

.copyright {
  margin-bottom: 16px;
  font-size: 14px;
  opacity: 0.7;
}

.divider {
  height: 30px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="10" viewBox="0 0 100 10"><path d="M0,5 Q25,0 50,5 T100,5" fill="none" stroke="%2399a98f" stroke-width="2"/></svg>');
  background-repeat: repeat-x;
  background-size: 100px 10px;
  margin-bottom: 80px;
  margin-top: 100px;
  opacity: 0.5;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
  background: none;
  border: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Responsive */
@media (max-width: 992px) {
  .about-me-content {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .about-me-image {
    flex: 0 0 250px;
  }

  nav ul li {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  h2 {
    font-size: 1.8rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 30px;
  }

  nav ul li {
    margin: 15px 0;
  }

  .language .language-switch {
    margin-left: 15px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.logo-loader {
  animation: pulse 1.8s infinite ease-in-out;
}

.logo-loader img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(222, 188, 178, 0.3));
}

@keyframes pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

.js-loading {
  overflow: hidden;
}

.side-decorations {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.side-deco {
  position: fixed;
  opacity: 0.3;
}

.side-deco.butterflies {
  top: 40%;
  right: 10px;
  width: 620px;
  transform: rotate(-20deg);
}

.side-deco.flower-1 {
  bottom: 20%;
  left: 20px;
  width: 620px;
  transform: rotate(+20deg);
}

@media (max-width: 768px) {
  .side-deco.butterflies {
    bottom: 5%;
    right: 1px;
    width: 310px;
  }

  .side-deco.flower-1 {
    top: 5%;
    left: 1px;
    width: 310px;
  }
}

.form-msg {
  display: none;
  text-align: center;
  margin-top: 20px;
}

.bacp-logo {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.bacp-logo-img {
  height: 80px;
  opacity: 0.9;
}
