/* The page is NOT responsive. You can implement responsiveness yourself if you wanna have some fun 😃 */

:root {
  --color-primary: #B76E79;
  --color-secondary: #F7C6C7;
  --color-tertiary: #4B1E3E;
  --color-primary-darker: #A05A65;
  --color-secondary-darker: #E8B3B4;
  --color-tertiary-darker: #3A182F;
  --color-primary-opacity: #B76E793a;
  --color-secondary-opacity: #F7C6C731;
  --color-tertiary-opacity: #4B1E3E2d;
  --gradient-primary: linear-gradient(to top left, #B76E79, #F7C6C7);
  --gradient-secondary: linear-gradient(to top left, #F5E1D3, #FFF9F4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #4B1E3E;
  line-height: 1.9;
  background-color: #FFF9F4;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* GENERAL ELEMENTS */
.section {
  padding: 15rem 3rem;
  border-top: 1px solid #F5E1D3;

  transition: transform 1s, opacity 1s;
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}

.section__title {
  max-width: 80rem;
  margin: 0 auto 8rem auto;
}

.section__description {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section__header {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 500;
}

.btn {
  display: inline-block;
  background-color: var(--color-primary);
  font-size: 1.6rem;
  font-family: inherit;
  font-weight: 500;
  border: none;
  padding: 1.25rem 4.5rem;
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover,
.btn:focus {
  background-color: var(--color-primary-darker);
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

.btn--book {
  display: inline-block;
  padding: 1.4rem 4rem;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #B76E79, #F7C6C7); /* rose to blush */
  border: none;
  border-radius: 50px; /* pill shape */
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.3);
}

.btn--book:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.45);
}

.btn--book:active {
  transform: scale(0.97);
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.btn--book::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.6s;
}

.btn--book:hover::after {
  left: 100%;
}
p {
  color: #8B7A6B;
}

button:focus {
  outline: none;
}

img {
  transition: filter 0.5s;
}

.lazy-img {
  filter: blur(20px);
}

/* NAVIGATION */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
  width: 100%;
  padding: 0 5rem;
  z-index: 100;
  background: rgba(255, 249, 244, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(183, 110, 121, 0.1);
  transition: all 0.3s ease;
}

/* nav and sticky class at the same time */
.nav.sticky {
  position: fixed;
  top: 0;
  background: rgba(255, 249, 244, 0.98);
  backdrop-filter: blur(25px);
  box-shadow: 0 2px 20px rgba(75, 30, 62, 0.08);
  border-bottom: 1px solid rgba(183, 110, 121, 0.15);
}

.nav__logo {
  height: 10rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(75, 30, 62, 0.1));
}

.nav__logo:hover {
  transform: scale(1.05);
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
}

.nav__item {
  position: relative;
}

.nav__link:link,
.nav__link:visited {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-tertiary);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.nav__link:hover,
.nav__link:focus {
  color: var(--color-primary);
  background: rgba(183, 110, 121, 0.08);
  transform: translateY(-2px);
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.nav__link:active {
  transform: translateY(0);
}

/* Special styling for Booking link */
.nav__item:last-child .nav__link:link,
.nav__item:last-child .nav__link:visited {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-weight: 600;
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
  margin-left: 1rem;
}

.nav__item:last-child .nav__link:hover,
.nav__item:last-child .nav__link:focus {
  background: linear-gradient(135deg, var(--color-primary-darker), var(--color-secondary-darker));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
  color: #fff;
  outline: 2px solid white;
  outline-offset: 2px;
}

.nav__item:last-child .nav__link:active {
  transform: translateY(-1px);
}

/* Mobile navigation button */
.nav__mobile-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
}

.nav__mobile-btn span {
  width: 2.5rem;
  height: 0.3rem;
  background-color: var(--color-tertiary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__mobile-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.6rem, 0.6rem);
}

.nav__mobile-btn.active span:nth-child(2) {
  opacity: 0;
}

.nav__mobile-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.6rem, -0.6rem);
}

/* Active link indicator */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 60%;
}

.nav__item:last-child .nav__link::after {
  display: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav {
    padding: 0 2rem;
    height: 7rem;
  }
  
  .nav__logo {
    height: 8rem;
  }
  
  .nav__links {
    gap: 0;
  }
  
  .nav__link:link,
  .nav__link:visited {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
  }
  
  .nav__item:last-child .nav__link:link,
  .nav__item:last-child .nav__link:visited {
    padding: 1rem 2rem;
    margin-left: 0.5rem;
  }
}

.header {
  position: relative;        /* NEW */
  padding: 0 3rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.nav {
  position: relative;        /* NEW so z-index works */
  z-index: 100;
}
.hero-video {
  position: absolute;
  inset: 0;                  /* NEW: top/right/bottom/left: 0 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;                /* below content, above header bg */
  pointer-events: none;      /* clicks go to your buttons/links */
}
/* Put a readable overlay ABOVE the video but BELOW content */
.header::after {             /* was .hero::after */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;                /* above video */
}


.header__title {
  position: relative;
  z-index: 2;
  max-width: 70rem;         /* narrower for readability */
  margin: 0 auto;           /* center horizontally */
  text-align: center;       /* center text */
  display: flex;
  flex-direction: column;   /* stack all items vertically */
  align-items: center;
  justify-content: center;
  gap: 2rem;                /* spacing between h1, h4, button */
  height: 100%;             /* take full hero height */
}

h1 {
  font-size: 5rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

h4 {
  font-size: 2rem;
  font-weight: 400;
  color: #F5E1D3;
  max-width: 55rem;
}

.header__img {
  width: 100%;
  grid-column: 2 / 3;
  grid-row: 1 / span 4;
  transform: translateY(-6rem);
}

.highlight {
  position: relative;
  color: #B76E79;
  background: none; /* remove the current block highlight */
}

h4, .header__title p, .header__subtitle {
  color: #F5E1D3;
}

.header__subtitle {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 3rem;
  max-width: 55rem;
}

/* FEATURES */
/* === PROOF (base) — place OUTSIDE media queries === */
.proof-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 0 auto;
  max-width: 140rem;
  padding: 0 4rem;
}

.proof-item{
  text-align:center;
  padding:4rem 3rem;
  background: linear-gradient(145deg,#ffffff,#f8f9fa);
  border-radius: 2.5rem;
  box-shadow: 0 2rem 4rem rgba(183,110,121,.08), 0 .5rem 1rem rgba(0,0,0,.05);
  border: 2px solid transparent;
  transition: all .4s cubic-bezier(.175,.885,.32,1.275);
  position: relative;
  overflow: hidden;
}

.proof-item::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg,var(--color-primary),var(--color-secondary));
  transform: scaleX(0);
  transition: transform .4s ease;
}

.proof-item:hover{
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 3rem 6rem rgba(183,110,121,.15), 0 1rem 2rem rgba(0,0,0,.1);
  border-color: rgba(183,110,121,.1);
}
.proof-item:hover::before{ transform: scaleX(1); }

.proof__icon{
  width:6rem; height:6rem; margin:0 auto 3rem;
  background: linear-gradient(135deg,var(--color-primary),var(--color-secondary));
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 1.5rem 3rem rgba(183,110,121,.25), inset 0 .2rem .5rem rgba(255,255,255,.3);
  transition: all .4s ease;
}
.proof__icon svg{ width:3rem; height:3rem; fill:#fff; }

.proof__title{ font-size:2.2rem; font-weight:700; color:var(--color-primary); margin-bottom:1.5rem; }
.proof__text{ font-size:1.7rem; color:#555; }
/* Force anchors in proof cards */

/* Buttons used in the proof section CTA */
.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5rem;
}

/* Make .btn safe for <a> on all breakpoints */
.btn,
.btn:link,
.btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;      /* kill underline */
  color: #fff;                /* default text color */
}

/* Primary pill */
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  box-shadow: 0 1rem 2rem rgba(183, 110, 121, 0.25);
  transition: all 0.3s ease;
}
.btn--primary:hover,
.btn--primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 1.5rem 3rem rgba(183, 110, 121, 0.35);
}

/* Outline pill */
/* Outline pill */
.btn--secondary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 5rem;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

/* Hover/focus */
.btn--secondary:hover,
.btn--secondary:focus {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff !important;                      /* text goes white */
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(183, 110, 121, 0.2);
}



.btn svg { width: 2rem; height: 2rem; fill: #fff; }



@media (max-width: 1200px){
  .proof-grid{ grid-template-columns: repeat(2,1fr); gap:3rem; padding:0 3rem; }
}
@media (max-width: 480px){
  .proof-grid{ grid-template-columns: 1fr; gap:2rem; padding:0 1rem; }
}
/* keep this if you want anchors to kill underline etc */
.btn,
.btn:link,
.btn:visited {
  text-decoration: none;
}

/* FILLED buttons (keep white text/icon) */
.btn--primary,
.btn--book {
  color: #fff;
}
.btn--primary svg,
.btn--book svg {
  fill: #fff;
}

/* OUTLINE button (secondary) — ensure not white */
.btn--secondary,
.btn--secondary:link,
.btn--secondary:visited {
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary) !important;
}
.btn--secondary svg {
  fill: currentColor !important; /* matches the text color */
}





/* =========================
   OPERATIONS — FULL STYLES
   ========================= */
   .pricing{
    max-width: 100rem;
    margin: 12rem auto 0;
    background: #F6E8E3;                 /* softer than #F5E1D3 */
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(75, 30, 62, .08);
  }
  
  /* TAB STRIP */
  .pricing__tab-container {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    padding: 0 2rem;
    position: relative;
  }
  
  /* Base pill */
  .pricing__tab {
    margin: 0;
    transform: translateY(-50%);
    padding: 1.1rem 2.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    letter-spacing: .2px;
    color: #3A182F;
    background: #fff;                           /* all start white */
    box-shadow: 0 6px 16px rgba(75, 30, 62, .10);
    transition: transform .18s ease, box-shadow .18s ease, 
                background .18s ease, color .18s ease, border-color .18s ease;
  }
  .pricing__tab span {
    margin-right: 1rem;
    font-weight: 700;
  }
  
  /* Keyboard focus */
  .pricing__tab:focus-visible {
    outline: none;
    box-shadow: 0 8px 20px rgba(75, 30, 62, .14), 0 0 0 4px rgba(183, 110, 121, .28);
  }
  
  /* Hover / press lift */
  .pricing__tab:hover {
    transform: translateY(calc(-50% - 2px));
    background: #fdf4f6;                        /* light blush hover */
    box-shadow: 0 10px 22px rgba(75, 30, 62, .14);
  }
  .pricing__tab--active {
    transform: translateY(-66%) scale(1.02);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(183,110,121,.25), 
                0 0 0 3px rgba(183,110,121,.28);
  }
  .pricing__tab:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(183,110,121,.28), 0 8px 20px rgba(75, 30, 62, .14);
  }
  
  /* Colored variants */
  .pricing__tab--1 {
    background: linear-gradient(135deg, #e9c2c8, #f4d6da);
    color: #3A182F;
    border-color: #e2b3ba;
  }
  .pricing__tab--1:hover { background: linear-gradient(135deg, #e2b7be, #efd0d5); }
  
  .pricing__tab--2 {
    background: linear-gradient(135deg, #e9c2c8, #f4d6da);
    color: #3A182F;
    border-color: #e2b3ba;
  }
  .pricing__tab--2:hover { background: linear-gradient(135deg, #e2b7be, #efd0d5); }
  
  .pricing__tab--3 {
    background: linear-gradient(135deg, #e9c2c8, #f4d6da);
    color: #3A182F;
    border-color: #e2b3ba;
  }
  .pricing__tab--3:hover { background: linear-gradient(135deg, #e2b7be, #efd0d5); }
  
  /* Active tab */
  .pricing__tab--active {
    transform: translateY(-66%) scale(1.02);
    box-shadow: 0 14px 34px rgba(75, 30, 62, .22), 0 0 0 4px rgba(183,110,121,.22);
    border-color: rgba(183,110,121,.45);
  }
  .pricing__tab--active.pricing__tab--1,
  .pricing__tab--active.pricing__tab--2 { color: #2d1425; }
  
  /* CONTENT PANEL */
  .pricing__content {
    display: none;                        /* hidden by default */
    font-size: 1.7rem;
    padding: 2.5rem 7rem 6.5rem;
    background: #fffaf7;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(58, 24, 47, .06);
  }
  .pricing__content--active {
    display: block;
  }
  
  /* Legacy header style - overridden by table styles */
  .pricing__content .pricing__header {
    font-size: 2.25rem;
    font-weight: 500;
    color: #3A182F;
  }
  
  .pricing__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
  }
  
  .pricing__icon--1 { background-color: #fde7e9; }   /* tuned to palette */
  .pricing__icon--2 { background-color: #f6d8dd; }
  .pricing__icon--3 { background-color: #eadbe7; }
  
  .pricing__icon svg {
    height: 2.75rem;
    width: 2.75rem;
  }
  .pricing__icon--1 svg { fill: var(--color-secondary-darker); }
  .pricing__icon--2 svg { fill: var(--color-primary); }
  .pricing__icon--3 svg { fill: var(--color-tertiary); }
  
  .pricing__content p {
    color: #8B7A6B;
  }
  
  /* --- Optional small-screen helpers (keeps tabs readable) --- */
  @media (max-width: 640px) {
    .pricing__tab-container {
      flex-wrap: wrap;
      gap: .8rem;
      padding: 0 1.2rem;
    }
      .pricing__tab { padding: .9rem 1.6rem; }
    .pricing__content { padding: 2rem 2rem 3.5rem; }
  }

/* PRICING TABLE STYLES */
.pricing__table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.pricing__table--with-image {
  max-width: 1000px;
}

.pricing__content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.pricing__image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing__diagram {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(75, 30, 62, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing__diagram:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(75, 30, 62, 0.25);
}

.pricing__image-caption {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: var(--color-tertiary);
  font-weight: 500;
  text-align: center;
  font-style: italic;
}

.pricing__table .pricing__header {
  text-align: center;
  color: var(--color-tertiary) !important;
  margin-bottom: 3rem;
  font-size: 2.5rem !important;
  font-weight: 600 !important;
  align-self: initial !important;
}

.pricing__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(247, 198, 199, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.pricing__item:hover {
  background: rgba(247, 198, 199, 0.2);
  transform: translateX(5px);
}

.pricing__service {
  font-weight: 500;
  color: var(--color-tertiary);
  font-size: 1.6rem;
  flex: 1;
}

.pricing__price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.pricing__price {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.8rem;
}

.pricing__note {
  font-size: 1.2rem;
  color: #8B7A6B;
  font-style: italic;
}

.pricing__note-section {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(75, 30, 62, 0.05);
  border-radius: 12px;
  text-align: center;
}

.pricing__note-section h6 {
  color: var(--color-tertiary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.pricing__note-section p {
  color: #8B7A6B;
  font-size: 1.4rem;
  margin: 0;
}

/* Responsive pricing table */
@media (max-width: 768px) {
  .pricing__content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing__diagram {
    max-width: 300px;
  }
  
  .pricing__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .pricing__price-group {
    align-items: flex-start;
  }
  
  .pricing__header {
    font-size: 2rem;
  }
  
  .pricing__table--with-image {
    max-width: 100%;
  }
}
  
/* SLIDER */
.slider {
  max-width: 100rem;
  height: 50rem;
  margin: 0 auto;
  position: relative;

  /* IN THE END */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50rem;

  display: flex;
  align-items: center;
  justify-content: center;

  /* THIS creates the animation! */
  transition: transform 1s;
}

.slide > img {
  /* Only for images that have different size than slide */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__btn {
  position: absolute;
  top: 50%;
  z-index: 10;

  border: none;
  background: rgba(245, 225, 211, 0.7);
  font-family: inherit;
  color: #4B1E3E;
  border-radius: 50%;
  height: 5.5rem;
  width: 5.5rem;
  font-size: 3.25rem;
  cursor: pointer;
}

.slider__btn--left {
  left: 6%;
  transform: translate(-50%, -50%);
}

.slider__btn--right {
  right: 6%;
  transform: translate(50%, -50%);
}

.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.dots__dot {
  border: none;
  background-color: #F5E1D3;
  opacity: 0.7;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  margin-right: 1.75rem;
  cursor: pointer;
  transition: all 0.5s;

  /* Only necessary when overlying images */
  /* box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.7); */
}

.dots__dot:last-child {
  margin: 0;
}

.dots__dot--active {
  /* background-color: #fff; */
  background-color: #4B1E3E;
  opacity: 1;
}

/* TESTIMONIALS */
.testimonial {
  width: 65%;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -5.7rem;
  left: -6.8rem;
  line-height: 1;
  font-size: 20rem;
  font-family: inherit;
  color: var(--color-primary);
  z-index: -1;
}

.testimonial__header {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.testimonial__text {
  font-size: 1.7rem;
  margin-bottom: 3.5rem;
  color: #8B7A6B;
}

.testimonial__author {
  margin-left: 3rem;
  font-style: normal;

  display: grid;
  grid-template-columns: 6.5rem 1fr;
  column-gap: 2rem;
}

.testimonial__photo {
  grid-row: 1 / span 2;
  width: 6.5rem;
  border-radius: 50%;
}

.testimonial__name {
  font-size: 1.7rem;
  font-weight: 500;
  align-self: end;
  margin: 0;
}

.testimonial__location {
  font-size: 1.5rem;
}

.section__title--testimonials {
  margin-bottom: 4rem;
}

/* SIGNUP */
.section--sign-up {
  background-color: #F7C6C7;
  border-top: none;
  border-bottom: 1px solid #F5E1D3;
  text-align: center;
  padding: 10rem 3rem;
}

.section--sign-up .section__header {
  color: #fff;
  text-align: center;
}

.section--sign-up .section__title {
  margin-bottom: 6rem;
}

.section--sign-up .btn {
  font-size: 1.9rem;
  padding: 2rem 5rem;
}






/* AFTERCARE SECTION */
.aftercare-container {
  max-width: 120rem;
  margin: 0 auto;
}

.aftercare-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 6rem;
  flex-wrap: wrap;
}

.aftercare-tab {
  background-color: #F5E1D3;
  border: none;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.5rem 3rem;
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.3s;
  color: #4B1E3E;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.aftercare-tab span {
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.aftercare-tab:hover,
.aftercare-tab:focus {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.aftercare-tab--active {
  background-color: var(--color-primary);
  color: white;
}

.aftercare-tab--active span {
  background-color: white;
  color: var(--color-primary);
}

.aftercare-content {
  display: none;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.5s ease;
}

.aftercare-content--active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.aftercare-card {
  background: linear-gradient(135deg, #FFF9F4, #F5E1D3);
  border-radius: 2rem;
  padding: 4rem;
  box-shadow: 0 2rem 4rem rgba(183, 110, 121, 0.1);
  border: 1px solid var(--color-secondary-opacity);
}

.aftercare-card__title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--color-tertiary);
  margin-bottom: 3rem;
  text-align: center;
}

.aftercare-card__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.aftercare-item {
  background-color: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2rem rgba(183, 110, 121, 0.08);
  border-left: 4px solid var(--color-primary);
}

.aftercare-item h5 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-tertiary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aftercare-item ul {
  list-style: none;
  padding: 0;
}

.aftercare-item li {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #4B1E3E;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.aftercare-item li::before {
  content: "•";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.aftercare-item strong {
  color: var(--color-tertiary);
  font-weight: 600;
}

.aftercare-cta {
  text-align: center;
  margin-top: 6rem;
  padding: 4rem;
  background: linear-gradient(135deg, var(--color-secondary-opacity), var(--color-primary-opacity));
  border-radius: 2rem;
  border: 1px solid var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.aftercare-cta h4 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-tertiary);
  margin-bottom: 1.5rem;
}

.aftercare-cta p {
  font-size: 1.6rem;
  color: #4B1E3E;
  margin-bottom: 2.5rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.btn--contact {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  font-weight: 600;
  padding: 1.5rem 3rem;
  border-radius: 10rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.btn--contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
}

/* Responsive design for aftercare section */
@media (max-width: 768px) {
  .aftercare-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .aftercare-tab {
    width: 100%;
    max-width: 30rem;
    justify-content: center;
  }
  
  .aftercare-card__content {
    grid-template-columns: 1fr;
  }
  
  .aftercare-card {
    padding: 2.5rem;
  }
  
  .aftercare-item {
    padding: 2rem;
  }
}

/* BOOKING SECTION */
.booking-container {
  max-width: 140rem;
  margin: 0 auto;
}

.booking-card {
  background: linear-gradient(135deg, #FFF9F4, #F5E1D3);
  border-radius: 2rem;
  padding: 4rem;
  text-align: center;
  box-shadow: 0 2rem 4rem rgba(183, 110, 121, 0.1);
  border: 1px solid var(--color-secondary-opacity);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.booking-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.booking-card h4 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--color-tertiary);
  margin-bottom: 1.5rem;
}

.booking-card p {
  font-size: 1.6rem;
  color: #4B1E3E;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  border-radius: 10rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link--facebook {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  color: white;
}

.social-link--instagram {
  background: linear-gradient(135deg, #e4405f, #f77737);
  color: white;
}

.social-link--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.social-link:hover,
.social-link:focus {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.social-icon {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.booking-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.info-item {
  background: linear-gradient(135deg, #FFF9F4, #F5E1D3);
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 1.5rem 3rem rgba(183, 110, 121, 0.1);
  border: 2px solid rgba(183, 110, 121, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.info-item:hover,
.info-item:focus {
  transform: translateY(-5px);
  box-shadow: 0 2rem 4rem rgba(183, 110, 121, 0.15);
  border-color: var(--color-primary);
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.info-label {
  font-weight: 700;
  color: var(--color-tertiary);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-value {
  color: #4B1E3E;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #FFF9F4, #F5E1D3);
  color: var(--color-tertiary);
  padding: 6rem 3rem 3rem;
  border-top: 1px solid rgba(183, 110, 121, 0.1);
}

.footer__content {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__section {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  height: 5rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 2rem;
  filter: drop-shadow(0 2px 8px rgba(183, 110, 121, 0.2));
}

.footer__description {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: #4B1E3E;
  opacity: 0.9;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.2);
}

.footer__social-link:hover,
.footer__social-link:focus {
  background: linear-gradient(135deg, var(--color-primary-darker), var(--color-secondary-darker));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.3);
  outline: 2px solid white;
  outline-offset: 2px;
}

.footer__social-icon {
  width: 2rem;
  height: 2rem;
  fill: white;
}

.footer__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--color-tertiary);
  position: relative;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  width: 3rem;
  height: 3px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 1rem;
}

.footer__link {
  color: #4B1E3E;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  display: inline-block;
  position: relative;
}

.footer__link:hover,
.footer__link:focus {
  color: var(--color-primary);
  transform: translateX(5px);
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.footer__link:hover::after {
  width: 100%;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  color: #4B1E3E;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  transition: all 0.3s ease;
  border-left: 4px solid var(--color-primary);
}

.footer__contact-item:hover,
.footer__contact-item:focus {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.1);
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.footer__contact-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(183, 110, 121, 0.2);
  padding-top: 3rem;
  text-align: center;
  margin-top: 2rem;
}

.footer__copyright {
  font-size: 1.4rem;
  color: #4B1E3E;
  opacity: 0.8;
}

.footer__copyright p {
  margin-bottom: 0.5rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .section {
    padding: 10rem 2rem;
  }
  
  .section__header {
    font-size: 3.5rem;
  }
  
  .proof-grid {
    gap: 4rem;
  }
  

  

  
  .pricing__tab-container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .pricing__tab {
    flex: 1;
    min-width: 20rem;
  }
}

@media (max-width: 900px) {
  html {
    font-size: 56.25%; /* 9px */
  }
  
  .section__header {
    font-size: 3rem;
  }
  
  .header__title h1 {
    font-size: 4.5rem;
  }
  
  .header__title h4 {
    font-size: 1.8rem;
  }
  
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 0 2rem;
  }
  
  .proof-item {
    padding: 2.5rem 2rem;
  }
  
  .proof__title {
    font-size: 1.8rem;
  }
  
  .proof__text {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .btn--primary,
  .btn--secondary {
    width: 100%;
    justify-content: center;
  }
  

  
  .pricing__tab-container {
    flex-direction: column;
  }
  
  .pricing__tab {
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
  }
  
  .pricing__table--with-image {
    flex-direction: column;
  }
  
  .pricing__image-section {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .pricing__items {
    width: 100%;
  }
  
  .slider {
    max-width: 60rem;
  }
  
  .testimonial__text {
    font-size: 1.6rem;
  }
  
  .aftercare-card__content {
    grid-template-columns: 1fr;
  }
  
  .booking-info {
    grid-template-columns: 1fr;
  }
  
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 50%; /* 8px */
  }
  
  .section {
    padding: 8rem 1.5rem;
  }
  
  .section__header {
    font-size: 2.8rem;
  }
  
  .section__description {
    font-size: 1.6rem;
  }
  
  /* Navigation */
  .nav {
    padding: 1rem 2rem;
  }
  
  .nav__logo {
    height: 7rem;
  }
  
  .nav__mobile-btn {
    display: flex;
  }
  
  .nav__links {
    position: fixed;
    top: 8rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 8rem);
    background: rgba(255, 249, 244, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 0;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  
  .nav__links.active {
    transform: translateX(0);
  }
  
  .nav__item {
    width: 100%;
    text-align: center;
  }
  
  .nav__link {
    font-size: 1.8rem;
    padding: 1.5rem 2rem;
    width: 100%;
    display: block;
  }
  
  .nav__item:last-child .nav__link {
    margin: 1rem 0;
    width: auto;
    display: inline-block;
  }
  
  /* Header */
  .header__title h1 {
    font-size: 3.8rem;
  }
  
  .header__title h4 {
    font-size: 1.6rem;
  }
  
  .btn--book {
    font-size: 1.6rem;
    padding: 1.2rem 3rem;
  }
  
  /* Proof Section */
  .proof__title {
    font-size: 2rem;
  }
  
  .proof__text {
    font-size: 1.4rem;
  }
  
  /* Pricing */
  .pricing__header {
    font-size: 2.2rem;
  }
  
  .pricing__service {
    font-size: 1.4rem;
  }
  
  .pricing__price {
    font-size: 1.6rem;
  }
  
  /* Testimonials */
  .testimonial__header {
    font-size: 2rem;
  }
  
  .testimonial__text {
    font-size: 1.5rem;
  }
  
  .testimonial__name {
    font-size: 1.4rem;
  }
  
  /* Aftercare */
  .aftercare-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .aftercare-tab {
    width: 100%;
    max-width: 30rem;
    justify-content: center;
  }
  
  .aftercare-card {
    padding: 2.5rem;
  }
  
  .aftercare-card__title {
    font-size: 2.4rem;
  }
  
  .aftercare-item {
    padding: 2rem;
  }
  
  .aftercare-item h5 {
    font-size: 1.6rem;
  }
  
  .aftercare-item li {
    font-size: 1.4rem;
  }
  
  .aftercare-cta {
    padding: 3rem 2rem;
  }
  
  .aftercare-cta h4 {
    font-size: 2rem;
  }
  
  .aftercare-cta p {
    font-size: 1.4rem;
  }
  
  /* Booking */
  .booking-card {
    padding: 2.5rem;
  }
  
  .booking-card h4 {
    font-size: 2.4rem;
  }
  
  .booking-card p {
    font-size: 1.4rem;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    width: 100%;
    max-width: 25rem;
    justify-content: center;
  }
  
  .info-item {
    padding: 2rem 1.5rem;
  }
  
  .info-label {
    font-size: 1.4rem;
  }
  
  .info-value {
    font-size: 1.6rem;
  }
  
  /* Footer */
  .footer {
    padding: 4rem 1.5rem 2rem;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer__logo {
    height: 4rem;
  }
  
  .footer__title {
    font-size: 1.8rem;
  }
  
  .footer__description {
    font-size: 1.5rem;
  }
  
  .footer__link {
    font-size: 1.4rem;
  }
  
  .footer__contact-item {
    font-size: 1.4rem;
    padding: 1.2rem;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__social-link {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .footer__social-icon {
    width: 1.8rem;
    height: 1.8rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 6rem 1rem;
  }
  
  .section__header {
    font-size: 2.4rem;
  }
  
  .section__description {
    font-size: 1.4rem;
  }
  
  /* Navigation */
  .nav {
    padding: 0.8rem 1rem;
  }
  
  .nav__links {
    gap: 1.5rem;
  }
  
  .nav__link {
    font-size: 1.2rem;
  }
  
  /* Header */
  .header__title h1 {
    font-size: 3.2rem;
  }
  
  .header__title h4 {
    font-size: 1.4rem;
  }
  
  .btn--book {
    font-size: 1.4rem;
    padding: 1rem 2.5rem;
  }
  
  /* Proof Section */
  .proof__title {
    font-size: 1.8rem;
  }
  
  .proof__text {
    font-size: 1.3rem;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0 1rem;
  }
  
  .proof-item {
    padding: 2rem 1.5rem;
  }
  
  .proof__icon {
    width: 4rem;
    height: 4rem;
  }
  
  .proof__icon svg {
    width: 2rem;
    height: 2rem;
  }
  

  



  
  /* Pricing */
  .pricing__header {
    font-size: 2rem;
  }
  
  .pricing__service {
    font-size: 1.3rem;
  }
  
  .pricing__price {
    font-size: 1.5rem;
  }
  
  /* Testimonials */
  .testimonial__header {
    font-size: 1.8rem;
  }
  
  .testimonial__text {
    font-size: 1.4rem;
  }
  
  /* Aftercare */
  .aftercare-card {
    padding: 2rem;
  }
  
  .aftercare-card__title {
    font-size: 2.2rem;
  }
  
  .aftercare-item {
    padding: 1.5rem;
  }
  
  .aftercare-item h5 {
    font-size: 1.5rem;
  }
  
  .aftercare-item li {
    font-size: 1.3rem;
  }
  
  .aftercare-cta {
    padding: 2.5rem 1.5rem;
  }
  
  .aftercare-cta h4 {
    font-size: 1.8rem;
  }
  
  .aftercare-cta p {
    font-size: 1.3rem;
  }
  
  /* Booking */
  .booking-card {
    padding: 2rem;
  }
  
  .booking-card h4 {
    font-size: 2.2rem;
  }
  
  .booking-card p {
    font-size: 1.3rem;
  }
  
  .social-link {
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
  }
  
  .info-item {
    padding: 1.5rem 1.2rem;
  }
  
  .info-label {
    font-size: 1.3rem;
  }
  
  .info-value {
    font-size: 1.5rem;
  }
  
  /* Footer */
  .footer {
    padding: 3rem 1rem 2rem;
  }
  
  .footer__logo {
    height: 3.5rem;
  }
  
  .footer__title {
    font-size: 1.6rem;
  }
  
  .footer__description {
    font-size: 1.4rem;
  }
  
  .footer__link {
    font-size: 1.3rem;
  }
  
  .footer__contact-item {
    font-size: 1.3rem;
    padding: 1rem;
  }
  
  .footer__social-link {
    width: 3rem;
    height: 3rem;
  }
  
  .footer__social-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .footer__copyright {
    font-size: 1.2rem;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .header__title h1 {
    font-size: 3rem;
  }
  
  .header__title h4 {
    font-size: 1.4rem;
  }
  
  .section {
    padding: 6rem 2rem;
  }
  
  .section__header {
    font-size: 2.8rem;
  }
}
