/* Reset */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Quicksand', sans-serif;
      background-color: #ffff;
      color: #333;
      padding-top: 160px;
      overflow-x: hidden;
    }

    .header-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 120px;
      background-color: #ffff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 1000;
    }

    .header-left,
    .header-center,
    .header-right {
      flex: 1;
      display: flex;
      align-items: center;
    }

    .header-center {
      justify-content: center;
      gap: 20px;
      /* Added spacing between title and call-to-action */
    }

    .header-right {
      justify-content: flex-end;
      align-items: center;
      gap: 60px;
      /* Adds spacing between CTA and logo */
    }

    .title {
      font-family: 'League Spartan', sans-serif;
      font-weight: 900;
      font-size: 3.5rem;
      color: #5e2a2a;
    }

    .logo-img {
      height: 100%;
      max-height: 160px;
      width: auto;
      object-fit: contain;
    }

    .hamburger {
      width: 30px;
      height: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      z-index: 1101;
    }

    .hamburger span {
      display: block;
      height: 4px;
      background-color: #5e2a2a;
      border-radius: 2px;
    }

    .sidebar {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100%;
      background-color: #ffff;
      box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
      padding-top: 120px;
      transition: left 0.3s ease;
      z-index: 1100;
      font-family: 'Quicksand';
      font-size: 25px;
      color: #5e2a2a;
    }

    .sidebar ul {
      list-style: none;
      padding: 20px;
    }

    .sidebar ul li {
      margin-bottom: 20px;
    }

    .sidebar ul li a {
      text-decoration: none;
      color: #5e2a2a;
      font-size: 25px;
    }

    .sidebar.active {
      left: 0;
    }

    .sub-header-bar {
      position: fixed;
      top: 120px;
      left: 0;
      right: 0;
      height: 40px;
      background-color: #ffffff;
      /* fully opaque white */
      color: #c2a165;
      font-family: 'Crimson Text', serif;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      z-index: 999;
      animation: fadePulse 3s ease-in-out infinite;
    }

    @keyframes fadePulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
      z-index: 1000;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .the-experience {
      font-family: 'Tangerine', sans-serif;
      font-weight: 900;
      font-size: 45px;
      color: #5e2a2a;
      margin: 0;
      white-space: nowrap;
    }

    .main-content {
      font-size: 18px;
      font-family: 'source sans pro';
      font-weight: 300;
      letter-spacing: 0.5px;
      /* brings letters closer */
      line-height: 1.5;
      color: #5e2a2a;
      padding-top: 0;
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .main-content h2 {
      max-width: 700px;
      margin: 10px auto;
      font-weight: inherit;
      font-size: inherit;
      font-family: inherit;
      color: inherit;
    }

    .fancy-every {
      font-family: 'Tangerine', cursive;
      font-weight: 700;
      font-size: 1.4em;
      color: #5e2a2a;
      letter-spacing: 1px;
    }

    .main-content-box-text {
      font-size: 22px;
      font-family: 'source sans pro';
      font-weight: 300;
      letter-spacing: 0.5px;
      /* brings letters closer */
      line-height: 1.5;
      color: #5e2a2a;
      padding-top: 0;
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .main-content-box-header {
      font-size: 38px;
      font-family: 'Merriweather', serif;
      font-weight: 400;
      font-style: normal;
      /* ensure not italic */
      color: #5e2a2a;
      padding-top: 0;
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 5px;
    }
    .main-content-box-header-need {
      font-size: 29px;
      font-family: 'Merriweather', serif;
      font-weight: 400;
      font-style: normal;
      /* ensure not italic */
      color: #5e2a2a;
      padding-top: 0;
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 5px;
    }

    .contact-box {
      position: fixed;
      bottom: 80px;
      right: 40px;
      background-color: #5e2a2a;
      padding: 20px;
      border-radius: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      font-family: 'League Spartan', sans-serif;
      font-weight: 900;
      font-size: 15px;
      color: #000;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1001;
    }

    .contact-box img {
      width: 50px;
      height: 50px;
    }

    .decor-img {
      height: 350px;
      padding: 5px;
      width: auto;
      object-fit: cover;
      border-radius: 20px;
      margin-top: 10px;
    }

    .beige-box {
      background-color: #f0efeb; /* unchanged */
      border-radius: 30px;
      width: 350px;
      padding: 40px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      opacity: 0.98; /* better CSS syntax */
      margin: 50px auto; /* combines top & bottom */
    }

    .beige-box-the-experience {
        background-color: #f0efeb;
        border-radius: 30px;
        width: 1175px;
        max-width: 100%;
        padding: 20px;
        margin: 10px auto 30px auto;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        box-sizing: border-box;
    }

    .need {
      background-color: #f0efeb;
      border-radius: 30px;
      width: 750px;
      padding: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      opacity: 98%;
      align-items: center;
      margin: 0 auto;
    }
    .decor-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      width: 100%;
      max-width: 700px;
    }

    .decor-label img,
    .decor-label span {
      margin: 0;
      /* remove default spacing */
      padding: 0;
      /* remove padding */
    }

    .decor-label img {
      display: block;
      /* removes inline spacing caused by baseline alignment */
    }

    .decor-label {
      display: flex;
      /* horizontal alignment */
      justify-content: center;
      align-items: center;
      gap: 10px;
      /* no extra space between items unless you add it */
    }

    .decor-text {
      font-family: 'Tangerine', sans-serif;
      font-weight: 900;
      font-size: 80px;
      color: #5e2a2a;
      margin: 0;
      white-space: nowrap;
    }

    .flower-icon {
      width: 200px;
      height: 75px;
      padding-left: 40px;
      margin: 0;
    }

    .flower-icon.inverted {
      transform: scaleY(-1);
    }

    .full-width-image {
      position: relative;
      width: 100%;
      margin: 60px 0 0 0;
      padding: 0;
      margin-bottom: 100px;
      margin-top: 100px;
    }

    .full-width-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .review-box-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;
      width: 700px;
    }

    .white-overlay-box {
      background-color: #ffff;
      border-radius: 30px;
      min-height: 100px;
      padding: 23px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      font-family: 'Tangerine', sans-serif;
      font-size: 25px;
      line-height: 1.5;
      color: #333;
      width: 100%;
    }

    .review-section .stars {
      font-size: 60px;
      color: #5e2a2a;
      margin-bottom: 10px;
    }

    .actual-review {
      background-color: #ffff;
      border-radius: 30px;
      min-height: 120px;
      padding: 23px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      display: flex;
      margin-top: 5px;
      margin-bottom: 10px;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      font-family: "source sans pro";
      font-size: 24px;
      font-style: italic;
      color: #111111;
      /*transform: scaleY(3.0);
      transform: scaleX(0.7);*/
      font-weight: 300; 
      color: #333;
      width: 100%;
    }















/* ---------------- Testimonial Slider + Layout Styles ---------------- */

/* Slider wrapper */
.testimonial-slider {
  position: relative; /* allow nav buttons to be positioned over slides */
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

/* Testimonial container (slide) */
.testimonial-container {
  display: none; 
  flex-direction: row;
  gap: 30px;
  align-items: stretch;
  width: 100%;
  margin: 5px auto; /* reduced top margin */
  max-width: 1100px;
  background: #ffff; 
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 40px;

  /* Slider animation */
  opacity: 0;
  transform-origin: left center;
  transform: perspective(1200px) rotateY(-90deg);
  transition: transform 1s ease, opacity 0.8s ease;
}

/* Show active slide */
.testimonial-container.active {
  display: flex; /* preserve flex layout */
  opacity: 1;
  transform: perspective(1200px) rotateY(0deg);
}

/* Left column */
.testimonial-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 20px;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin: 15px 0;
  color: #3e2c1c; /* deep brown */
}

.testimonial-photo img {
  max-width: 140px;
  border-radius: 10%;
  margin-top: 20px;
  filter: grayscale(100%); /* fully black & white */
}

.testimonial-author {
  display: block;
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #5a4030; /* slightly lighter brown */
}

/* Divider container */
.testimonial-divider {
  display: flex;
  flex-direction: row; /* side by side */
  justify-content: center;
  align-items: stretch; /* full height */
  gap: 4px; /* spacing */
  margin: 0 15px; /* space from columns */
}

/* Thin vertical line */
.testimonial-divider::before {
  content: "";
  width: 1px;
  background-color: #111111;
  flex-grow: 1;
}

/* Thick vertical line */
.testimonial-divider::after {
  content: "";
  width: 2px;
  background-color: #111111;
  flex-grow: 1;
}

/* Right column */
.testimonial-right {
  flex: 1.5;
  background: transparent;
  padding: 0;

  display: flex;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
}

.actual-review {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: #4b3a2d; /* readable dark brown */
  margin: 0;
}

/* ---------------- Navigation Arrows ---------------- */

/* Position nav buttons on top of testimonial container */
.testimonial-nav {
  position: absolute;      /* overlay on top of slides */
   top: 5px;             
  left: 50%;               /* center horizontally */
  transform: translateX(-50%);
  z-index: 100;
  text-align: center;
  margin: 0;               /* remove default margins */
}

.testimonial-nav button {
  background: #5e2a2a;
  color: #fff;
  border: none;
  padding: 5px 5px;
  margin: 0 4px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  transition: background 0.3s;
}

.testimonial-nav button:hover {
  background: #5e2a2a;
}




















    /* Footer Bar Styles */
    .footer-wrapper {
      width: 100%;
      display: flex;
      justify-content: center; /* centers the inner .footer-buttons */

    }

    .footer-buttons {
      display: flex;
      justify-content: center; /* ensures buttons are centered inside this container */
      gap: 40px;               /* space between buttons */
      flex-wrap: wrap;          /* optional: wrap on small screens */
    }

    .footer-button {
      background-color: #f0efeb;
      color: #5e2a2a;
      text-decoration: none;
      padding: 15px 25px;
      border-radius: 8px;
      font-size: 18px;
      font-family: 'Crimson Text';
      text-align: center;
      display: inline-block;   /* ensures width is content-based but still reacts to flex */
    }



    .footer-button:hover {
      background-color: #e8e2db;
      /* darker beige hover */
      transform: translateY(-3px);
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    }

    .price {
      font-family: "source sans pro";
    }

    .fancy-every.our-services {
      font-size: 40px;
      /* adjust size as needed */
    }





    .white-overlay-box {
      background: #f0efeb;
      width: 400px;
      height: 200px;
      text-align: justify;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;


    }

    .white-overlay-link {
      text-decoration: none;
      color: inherit;
      display: block;
      /* makes the link cover the full box */
    }

    .white-overlay-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }


    .thin-line {
      width: 100%;
      height: 0.5px;
      background-color: #111111;
      /* muted gold */
      margin: 6px auto 0;
    }

    .thick-line {
      width: 100%;
      height: 2px;
      background-color: #111111;
      /* newspaper black */
      margin: 6px 0 12px;
      /* spacing above and below */
    }

    .bw-image {
      filter: grayscale(100%);
      /* makes the image black and white */
      opacity: 0.3;
      /* keeps your semi-transparent effect */
      width: 100%;
      /* ensures full width if needed */
      display: block;
      /* removes inline spacing issues */
    }

    .review-box-wrapper {
      display: flex;
      /* aligns box + image side by side */
      align-items: stretch;
      /* make children equal height */
      margin-bottom: 10px;
      /* spacing between rows */
      justify-content: center;
      /* centers the flex items horizontally */
    }

    .text-content {
      font-family: "Times New Roman", Times, serif;
      font-weight: 100;
      color: #111111;
      width: 100%;
      /*transform: scaleY(3.0); /* makes letters taller */
      /*transform: scaleX(0.7); /* makes letters taller */
    }

    .text-content h3 {
      transform: scaleY(3.0);
      /* makes letters taller */
      transform: scaleX(0.7);
      /* makes letters taller */
      transform-origin: left center;
      /* optional: keeps it aligned nicely */
    }

    .box-image {
      width: 200px;
      height: 200px;
      max-width: 25%;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

    /* When hovering anywhere on the wrapper, remove grayscale */
    .review-box-wrapper:hover .box-image {
      filter: grayscale(0%);
    }

    /* Initial positions */
    .full-width-bg-la-caille {
      transform: translateX(-100%);
      opacity: 0;
      transition: transform 1.5s ease-out, opacity 1.5s ease-out;
    }

    .full-width-bg-la-caille img {
      width: 80%;
      position: relative;
      display: inline-block;
      width: 1175px;
      /* optional: cap the maximum size */
      height: auto;
      /* maintains aspect ratio */
      display: block;
      /* remove any inline spacing */
      margin: 0 auto;
      margin-bottom: 0px;
      border-radius: 20px; /* adjust px for more or less rounding */
    }


    .full-width-bg-deer-valley img {
      width: 80%;
      max-width: 1175px; /* match la caille width */
      height: auto;
      display: block;
      margin: 0 auto 150px;
      margin-bottom: 0px;
      border-radius: 20px; /* adjust px for more or less rounding */
    }
    .full-width-bg-reception img {
      width: 80%;
      max-width: 1175px;
      height: auto;
      display: block;
      border-radius: 20px; /* adjust px for more or less rounding */
      margin: 0 auto 0px; /* centers and adds bottom space */
    }

    .full-width-bg-dinner-set img {
      width: 80%;
      max-width: 1175px;
      height: auto;
      display: block;
      border-radius: 20px; /* adjust px for more or less rounding */
      margin: 0 auto 150px; /* centers and adds bottom space */
    }


    /* Active class triggers animation */
    .full-width-bg-la-caille.active,
    .beige-box.our-services.active {
      transform: translateX(0);
      opacity: 1;
    }

    .beige-box.our-services,
.need.need-a-planner,
.beige-box.why-choose-us
{
  position: relative;
  width: 80%;
  max-width: 1175px; /* matches your image max-width */
  margin: 30px auto; /* space them below each image */
  padding: 20px;
  box-sizing: border-box;
}


    .beige-box.get-started {
      position: relative;
      width: 80%;
      max-width: 1175px; /* matches your image max-width */
      margin-bottom: 10px;
      padding: 20px;
      box-sizing: border-box;
    }





.modal {
  position: relative;  
  width: 100%;
  background: transparent;
  margin-top: 20px;
  margin-bottom: 80px;
  z-index: 10; /* Add this */
}

    .modal-content {
      background: #5e2a2a;
      padding: 20px;
      font-family: 'playfair display';
      font-weight: 900;
      font-size: 24px;
      color: #e8e2db;
      border-radius: 20px;
      width: 95%;          /* default: take most of the screen width */
      max-width: 800px;    /* prevent it from being too wide on desktops */
      pointer-events: auto; /* Make sure clicks pass through to content */
      margin: 0 auto;      /* keep it centered */
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
      position: relative;
    }

    .modal-content h3 {
      transform: scaleY(3.0); /* makes letters taller */
      transform: scaleX(0.7); /* makes letters taller */
      transform-origin: left center; /* optional: keeps it aligned nicely */
    }
    .modal_2
    {
      font-family: "Tangerine";
      font-size: 16px;
      font-weight: 500
      color: #111111;
      font-size: 24px;
    }

    /* Make input boxes narrower inside the modal */
    .modal-content input {
      width: 80%;           /* adjust as needed, e.g., 70%, 75% */
      display: block;       /* allows margin auto to center */
      margin: 10px auto;    /* vertical spacing + center */
      padding: 10px;
      font-size: 16px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-family: 'Times New Roman', serif;
    }










    /* SMALL LAPTOP */

    @media (max-width: 1920px) {
      /* body {
        font-size: 80%; /* 20% smaller text */
      /*}*/

      .main-content {
        font-size: 18px;
        /* 20% smaller text */
      }

      .footer-button {
        padding: 12px 20px;
        /* smaller buttons */
        font-size: 14px;
      }

      .title {
        font-size: 2.8rem;
        /* reduce heading sizes */
      }

      .footer-buttons {
        padding-top: 20px;
        /* reduce heading sizes */
      }

      .beige-box {
        padding-bottom: 40px;
        /* reduce heading sizes */

      }

      .decor-img {
        max-height: 250px;
      }

      .decor-text {
        font-size: 60px;

        .flower-icon {
          width: 100px;
          height: 25px;
        }

        .fancy-every.our-services {
          font-size: 40px;
          /* adjust size as needed */
        }

        .contact-box {
          bottom: 80px;
          right: 10px;
          padding: 20px;
          border-radius: 20px;
          font-weight: 500;
        }

        .services-text {
          font-size: 12px;
          /* adjust as needed for emphasis */
          line-height: 1.5;
          /* optional: improve readability */
        }
        /* Make full-width images responsive */
        .full-width-bg-la-caille img {
            width: 100% !important; /* takes full width of container */
            max-width: 100% !important;
            height: auto;
            display: block;
        }

        /* Center all beige boxes and remove extra space */
        .beige-box.our-services,
        .need.need-a-planner,
        .beige-box.why-choose-us,
        .beige-box.get-started {
            position: relative !important; /* allows normal flow + margins */
            top: auto !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            transform: none !important;
            z-index: auto !important;
            width: 100% !important; /* full width of container */
            max-width: 100% !important;
            margin: 0 auto !important; /* centers horizontally */
            padding: 20px !important;
            box-sizing: border-box;
        }

        /* Remove side scroll for this screen size */
        body, html {
            overflow-x: hidden;
        }

        /* Keep vertical spacing consistent */
        .beige-box-the-experience {
            margin-top: 60px;
        }

        .review-box-container {
            gap: 5px;
        }

      }

















      /* IPAD */
      @media (max-width: 1024px) {
        body {
          padding-top: 80px;
          padding-bottom: 120px;
          /* 👈 This creates space under the footer */
        }

        .header-bar {
          height: 80px;
          padding: 0 10px;
        }

        .decor-img {
          height: 250px;
          padding: 1px;
          width: 100;
          object-fit: cover;
          border-radius: 20px;
          margin-top: 10px;
        }

        .header-center {
          flex-direction: column;
          gap: 5px;
        }

        .sub-header-bar {
          top: 80px;
          /* was 120px — this pulls it closer to the fixed main header */
        }

        .title {
          font-size: 1.8rem;
        }

        .call-to-action {
          font-size: 12px;
          padding: 5px 10px;
        }

        .logo-img {
          max-height: 50px;
          width: auto;
        }

        .contact-box {
          bottom: 10px;
          right: 10px;
          padding: 10px;
          font-size: 13px;
          width: calc(100% - 20px);
          border-radius: 0;
          border-radius: 20px;
          /* 👈 Rounded corners */
          justify-content: center;
        }
        .flower-icon {
          width: 1px;
          height: 25px;
        }
        .beige-box {
          width: 80vw;
          max-width: none;
          padding: 20px 15px;
        }

        .decor-img {
          max-height: 200px;
        }

        .flower-icon {
          width: 120px;
          height: auto;
          padding-left: 10px;
        }

        .contact-box {
          bottom: 80px;
          right: 10px;
          padding: 20px;
          border-radius: 20px;
          font-weight: 500;
        }

        .white-overlay-box {
          width: 400px;
          height: 170px;
        }

        .box-image {
          width: 150px;
          /* fixed width for all images */
          height: 120px;
          /* fixed height to maintain 1:1 */
        }

        .review-box-wrapper {
          margin-bottom: 1px;
        }

        .decor-text {
          font-size: 60px !important;
        }

        .footer-buttons {
          flex-direction: column;
          align-items: center;
          gap: 5px;
          width: 100%;
        }

        .footer-button {
          width: 100%;
          box-sizing: border-box;
        }

        .services-text {
          font-size: 18px;
          /* adjust as needed for emphasis */
          line-height: 1.5;
          /* optional: improve readability */
        }

        .fancy-every.our-services {
          font-size: 2rem;
          /* adjust size as needed */
        }



        /* Make full-width images responsive */
        .full-width-bg-la-caille img {
            width: 100% !important; /* takes full width of container */
            max-width: 100% !important;
            height: auto;
            display: block;
        }

        /* Center all beige boxes and remove extra space */
        .beige-box.our-services,
        .need.need-a-planner,
        .beige-box.why-choose-us {
            position: relative !important; /* allows normal flow + margins */
            top: auto !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            transform: none !important;
            z-index: auto !important;
            width: 80% !important; /* full width of container */
            max-width: 80% !important;
            margin: 0 auto !important; /* centers horizontally */
            padding: 20px !important;
            box-sizing: border-box;
        }

        /* Optional: remove side scroll for the whole page */
        body, html {
            overflow-x: hidden;
        }

        /* Keep vertical spacing consistent */
        .beige-box-the-experience {
            margin-top: 60px;
        }

        .review-box-container {
            gap: 5px;
        }
.beige-box.get-started {
            position: relative !important; /* allows normal flow + margins */
            top: 200% !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            transform: none !important;
            z-index: auto !important;
            width: 80% !important; /* full width of container */
            max-width: 80% !important;
            margin: 0 auto !important; /* centers horizontally */
            padding: 20px !important;
            box-sizing: border-box;
        }

      }














     /* MOBILE PHONE*/
      /* MOBILE PHONE */
      @media (max-width: 768px) {
        body {
          padding-top: 80px;
          padding-bottom: 120px;
          overflow-x: hidden; /* Prevent horizontal scrolling */
        }

        .header-bar {
          height: 80px;
          padding: 0 10px;
          width: 100%; /* Ensure header stays within viewport */
          box-sizing: border-box;
        }

        .decor-img {
          height: 250px;
          padding: 1px;
          width: 100%; /* Changed from fixed width to 100% */
          object-fit: cover;
          border-radius: 20px;
          margin-top: 10px;
        }

        .header-center {
          flex-direction: column;
          gap: 5px;
        }

        .sub-header-bar {
          top: 80px;
          width: 100%; /* Ensure sub-header stays within viewport */
          box-sizing: border-box;
        }

        .title {
          font-size: 1.8rem;
        }

        .call-to-action {
          font-size: 12px;
          padding: 5px 10px;
        }

        .logo-img {
          max-height: 50px;
          width: auto;
        }

        .contact-box {
          bottom: 10px;
          right: 10px;
          padding: 10px;
          font-size: 13px;
          width: calc(100% - 20px);
          max-width: 95vw; /* Prevent overflow */
          border-radius: 20px;
          justify-content: center;
          box-sizing: border-box;
        }

        .beige-box {
          width: 95vw;
          max-width: 100%; /* Prevent exceeding viewport */
          padding: 20px 15px;
          box-sizing: border-box;
        }

        .decor-img {
          max-height: 180px;
          width: 100%; /* Ensure images don't exceed viewport */
        }

        .flower-icon {
          width: 40px; /* Smaller width for mobile */
          height: auto; /* Maintain aspect ratio */
          padding-left: 20px; /* Reduced padding to balance the smaller size */
          margin: 0;
        }

        .review-box-container {
          width: 100%;
          max-width: 95vw; /* Changed from 700px to prevent overflow */
          gap: 20px;
          margin: 0 auto;
          position: relative;
          left: 0;
          top: 0;
          transform: none;
          display: flex;
          flex-direction: column;
          align-items: center;
          margin-top: 50px;
        }

        .full-width-image {
          position: relative;
          width: 100%;
          padding: 0;
          margin-top: 160px;     /* keep top spacing */
          margin-bottom: 60px;   /* reduce bottom spacing */
        }

        .decor-text {
          font-size: 60px !important;
        }

        .footer-buttons {
          flex-direction: column;
          align-items: center; /* Center buttons horizontally within the container */
          gap: 5px;
          width: 100%; /* Full width to allow centering within parent */
          max-width: 80%; /* Limit container width to 70% of viewport */
          margin: 0 auto; /* Center the container itself */
          box-sizing: border-box;
        }

        .footer-button {
          width: 100%; /* Full width of the parent container (.footer-buttons) */
          max-width: 100%; /* Ensure buttons don’t exceed container */
          box-sizing: border-box;
          text-align: center; /* Ensure text inside buttons is centered */
        }

        .services-text {
          font-size: 18px;
          line-height: 1.5;
        }

        .fancy-every.our-services {
          font-size: 2rem;
        }

        .bw-image {
          display: none !important;
        }

        .white-overlay-box {
          width: 250px;
          height: 125px;
          box-sizing: border-box;
        }

        .text-content {
          font-family: "Times New Roman", Times, serif;
          font-weight: 50;
          font-size: 15px;
          color: #111111;
        }

        .text-content h3 {
          transform: scaleY(3.0);
          transform: scaleX(0.7);
          transform-origin: left center;
        }

        .box-image {
          width: 100px;
          height: 100px;
          filter: grayscale(100%);
          transition: filter 0.5s ease, transform 0.5s ease;
        }

        .box-image.active {
          filter: grayscale(0%);
          transform: translateY(-5px);
        }

        .full-width-bg-la-caille img,
        .full-width-bg-deer-valley img,
        .full-width-bg-reception img,
        .full-width-bg-dinner-set img {
          width: 100% !important;
          max-width: 100% !important;
          border-radius: 12px;
          object-fit: cover;
          display: block;
        }

        /* Ensure scroll animations don't cause overflow */
        .full-width-bg-la-caille,
        .full-width-bg-deer-valley,
        .full-width-bg-reception,
        .full-width-bg-dinner-set {
          width: 100%;
          max-width: 100%;
          overflow-x: hidden;
        }

        /* Reset positioning on beige overlay boxes */
        .beige-box.our-services,
        .need.need-a-planner,
        .beige-box.why-choose-us {
          position: static !important;
          top: auto !important;
          left: auto !important;
          right: auto !important;
          bottom: auto !important;
          transform: none !important;
          z-index: auto !important;
          width: 95vw !important;
          max-width: 100% !important;
          margin: 16px auto !important;
          padding: 20px !important;
          box-sizing: border-box;
        }

        /* Adjust get-started box */
        .beige-box.get-started {
          position: absolute;
          top: 305%;
          left: 2.5%; /* Centered with width: 95% */
          width: 95%;
          max-width: 95vw; /* Prevent overflow */
          padding: 20px;
          background: #f5f5f0;
          border-radius: 12px;
          box-sizing: border-box;
        }

        /* Fix The Experience box width */
        .beige-box-the-experience {
          width: 95vw !important;
          max-width: 100% !important;
          padding: 20px !important;
          margin: 20px auto !important;
          margin-top: 60px !important;
          box-sizing: border-box;
          transform: translateY(-100%); /* Start off-screen to the left */
          opacity: 0; /* Start invisible */
          transition: transform 1.5s ease-out, opacity 1.5s ease-out; /* Smooth transition */
        }
        .beige-box-the-experience.active {
          transform: translateX(0); /* Slide to original position */
          opacity: 1; /* Fully visible */
        }
        .full-width-bg-la-caille {
          transform: translateX(-100%); /* Start off-screen to the left */
          opacity: 0; /* Start invisible */
          transition: transform 1.5s ease-out, opacity 1.5s ease-out; /* Smooth transition */
        }
        .full-width-bg-la-caille.active {
          transform: translateX(0); /* Slide to original position */
          opacity: 1; /* Fully visible */
        }

        .beige-box.why-choose-us {
          margin-top: 20px !important;
        }

        .full-width-bg-reception {
          margin-bottom: 0 !important;
        }

        .flower-icon {
          width: 50px;
          height: 40px;
          padding-left: 40px;
          margin: 0;
        }

        /* Ensure sidebar doesn't cause overflow */
        .sidebar {
          width: 100%;
          max-width: 250px;
          left: -100%; /* Use percentage to prevent overflow */
          transition: left 0.3s ease;
        }

        .sidebar.active {
          left: 0;
        }

        .testimonial-container {
          flex-direction: column;
        }
        .testimonial-divider {
          display: none;
        }
        .testimonial-right {
          margin-top: 20px;
        }
        .testimonial-quote {
          font-size: 18px;
        }
        .actual-review {
          font-size: 18px;
        }
      }

      @media (max-width: 480px) {
        .title {
          font-size: 1.4rem;
        }

        .call-to-action {
          font-size: 10px;
          padding: 5px 8px;
        }

        .decor-text {
          font-size: 48px !important;
        }

        .flower-icon {
          width: 60px; /* Smaller width for mobile */
          height: auto; /* Maintain aspect ratio */
          padding-left: 20px; /* Reduced padding to balance the smaller size */
          margin: 0;
        }

        .main-content h2 {
          font-size: 16px;
        }
        .beige-box-the-experience {
          width: 95vw !important; /* Changed from 800px to prevent overflow */
          max-width: 100% !important;
          padding: 10px !important;
          margin: 10px auto 30px auto !important;
          margin-top: 80px !important;
          box-sizing: border-box;
          transform: translateY(-100%); /* Start off-screen to the left */
          opacity: 0; /* Start invisible */
          transition: transform 1.5s ease-out, opacity 1.5s ease-out; /* Smooth transition */
        }
        .beige-box-the-experience.active {
          transform: translateX(0); /* Slide to original position */
          opacity: 1; /* Fully visible */
        }
      
