                                       :root {
                                          --primary-color: #6f22db;
                                          --accent-color: #a76df2;
                                          --text-color: #333;
                                          --background-color: #ffffff;
                                          --light-gray: #f2f2f2;
                                      }
                                      
                                      body {
                                          margin: 0;
                                          font-family: Arial, sans-serif;
                                          background: var(--light-gray);
                                          color: var(--text-color);
                                      }
                                      
                                      header {
                                          height: 70vh;
                                          min-height: 450px;
                                          display: flex;
                                          align-items: center;
                                          justify-content: center;
                                          background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero_image.png') center center/cover no-repeat;
                                          color: white;
                                          position: relative;
                                          text-align: center;
                                      }
                                      
                                      nav {
                                          position: absolute;
                                          top: 0;
                                          left: 50%;
                                          transform: translateX(-50%);
                                          width: 90%;
                                          max-width: 1200px;
                                          margin-top: 1em;
                                          display: flex;
                                          justify-content: space-between;
                                          align-items: center;
                                          padding: 1em 2em;
                                          background: rgba(0, 0, 0, 0.6);
                                          backdrop-filter: blur(6px);
                                          z-index: 2;
                                          border-radius: 8px;
                                      }
                                      
                                      nav h1 {
                                          font-size: 1.5em;
                                          font-weight: bold;
                                      }
                                      
                                      nav ul {
                                          list-style: none;
                                          display: flex;
                                          gap: 2em;
                                          margin: 0;
                                      }
                                      
                                      nav a {
                                          color: #fff;
                                          text-decoration: none;
                                          font-weight: 500;
                                          position: relative;
                                      }
                                      
                                      nav a::after {
                                          content: '';
                                          position: absolute;
                                          width: 0;
                                          height: 2px;
                                          left: 0;
                                          bottom: -4px;
                                          background-color: var(--accent-color);
                                          transition: width 0.3s ease;
                                      }
                                      
                                      nav a:hover::after {
                                          width: 100%;
                                      }
                                      
                                      .logo-wrapper {
                                          display: flex;
                                          align-items: center;
                                          gap: 0.75em;
                                      }
                                      
                                      .logo {
                                          height: 60px;
                                          width: auto;
                                          animation: float 3s ease-in-out infinite;
                                          border-radius: 50%;
                                          background: white;
                                          padding: 6px;
                                          box-shadow: 0 0 15px rgba(184, 137, 248, 0.4);
                                          transition: transform 0.3s ease;
                                      }
                                      
                                      .logo:hover {
                                          transform: scale(1.1) rotate(3deg);
                                      }
                                      
                                      @keyframes float {
                                          0% {
                                              transform: translateY(0px);
                                          }
                                          50% {
                                              transform: translateY(-6px);
                                          }
                                          100% {
                                              transform: translateY(0px);
                                          }
                                      }
                                      
                                      .hero {
                                          z-index: 1;
                                          padding: 2em 1em;
                                      }
                                      
                                      .hero h2 {
                                          font-size: 2.25em;
                                          margin: 0.5em 0;
                                      }
                                      
                                      .hero p {
                                          font-size: 1.1em;
                                          margin-bottom: 1.2em;
                                      }
                                      
                                      .hero button,
                                      .cta-btn,
                                      form button[type="submit"] {
                                          padding: 0.85em 2em;
                                          font-size: 1.05em;
                                          font-weight: bold;
                                          border-radius: 8px;
                                          border: 2px solid transparent;
                                          cursor: pointer;
                                          background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
                                          color: #fff;
                                          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
                                          transition: all 0.3s ease-in-out;
                                      }
                                      
                                      .hero button:hover,
                                      .cta-btn:hover,
                                      form button[type="submit"]:hover {
                                          background: #fff;
                                          color: var(--primary-color);
                                          border-color: var(--primary-color);
                                          transform: translateY(-2px);
                                      }
                                      
                                      .cta {
                                          margin-top: 2em;
                                          animation: popIn 1.2s ease-out;
                                      }
                                      
                                      .cta-text {
                                          font-size: 1.3em;
                                          color: #f0eaff;
                                          margin-bottom: 0.8em;
                                      }
                                      
                                      @keyframes popIn {
                                          0% {
                                              opacity: 0;
                                              transform: scale(0.95);
                                          }
                                          100% {
                                              opacity: 1;
                                              transform: scale(1);
                                          }
                                      }
                                      
                                      section {
                                          padding: 2em;
                                          background: var(--background-color);
                                          margin-top: 1em;
                                      }
                                      
                                      .service-list {
                                          display: flex;
                                          gap: 2em;
                                          flex-wrap: wrap;
                                          justify-content: space-around;
                                      }
                                      
                                      .service {
                                          flex: 1 1 30%;
                                          background: var(--light-gray);
                                          padding: 1em;
                                          border-radius: 5px;
                                          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
                                          transition: transform 0.3s ease, box-shadow 0.3s ease;
                                          text-align: center;
                                      }
                                      
                                      .service img {
                                          max-width: 100px;
                                          height: auto;
                                          margin-bottom: 0.75em;
                                      }
                                      
                                      .service:hover {
                                          transform: translateY(-5px);
                                          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
                                      }
                                      
                                      .service-btn {
                                          margin-top: 1em;
                                          padding: 0.6em 1.5em;
                                          font-size: 1em;
                                          font-weight: bold;
                                          color: white;
                                          background: var(--primary-color);
                                          border: none;
                                          border-radius: 8px;
                                          cursor: pointer;
                                          transition: background 0.3s ease, transform 0.3s ease;
                                      }
                                      
                                      .service-btn:hover {
                                          background: var(--accent-color);
                                          transform: translateY(-2px);
                                      }
                                      
                                      .gallery {
                                          display: flex;
                                          flex-wrap: wrap;
                                          justify-content: center;
                                          gap: 1.5em;
                                          margin-top: 1.5em;
                                          padding: 0 1em;
                                      }
                                      
                                      .gallery img {
                                          max-width: 100%;
                                          width: 100%;
                                          max-width: 400px;
                                          height: auto;
                                          border-radius: 10px;
                                          object-fit: cover;
                                          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
                                          transition: transform 0.3s ease, box-shadow 0.3s ease;
                                      }
                                      
                                      .gallery img:hover {
                                          transform: scale(1.03);
                                          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
                                      }
                                      
                                      .carousel-container {
                                          position: relative;
                                          max-width: 600px;
                                          margin: 2em auto;
                                          display: flex;
                                          align-items: center;
                                          justify-content: space-between;
                                          padding: 1em;
                                          background: #fff;
                                          border-radius: 10px;
                                          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
                                      }
                                      
                                      .carousel-image-wrapper {
                                          flex: 1;
                                          text-align: center;
                                          position: relative;
                                      }
                                      
                                      .carousel-image-wrapper img {
                                          width: 100%;
                                          max-width: 500px;
                                          height: auto;
                                          border-radius: 8px;
                                          transition: opacity 0.5s ease;
                                      }
                                      
                                      footer {
                                          background: white;
                                          color: (var(--primary-color));
                                          text-align: center;
                                          padding: 1.5em 0;
                                          font-size: 1em;
                                          margin-top: 2em;
                                      }
                                      
                                      footer p {
                                          margin: 0;
                                      }
                                      
                                      .badge {
                                          position: absolute;
                                          top: 10px;
                                          left: 10px;
                                          background: var(--primary-color);
                                          color: white;
                                          padding: 0.3em 0.8em;
                                          font-size: 0.9em;
                                          font-weight: bold;
                                          border-radius: 5px;
                                          z-index: 2;
                                      }
                                      
                                      .nav-btn {
                                          background: rgba(106, 13, 173, 0.7);
                                          border: none;
                                          color: white;
                                          font-size: 2rem;
                                          padding: 0.4em 0.6em;
                                          border-radius: 50%;
                                          cursor: pointer;
                                          transition: background 0.3s;
                                      }
                                      
                                      .nav-btn:hover {
                                          background: rgba(106, 13, 173, 1);
                                      }
                                      
                                      .dots-container {
                                          text-align: center;
                                          margin-top: 1em;
                                      }
                                      
                                      .dot {
                                          height: 12px;
                                          width: 12px;
                                          margin: 0 5px;
                                          background-color: #bbb;
                                          border-radius: 50%;
                                          display: inline-block;
                                          transition: background-color 0.3s;
                                          cursor: pointer;
                                      }
                                      
                                      .dot.active {
                                          background-color: var(--primary-color);
                                      }
                                      
                                      .testimonial {
                                          max-width: 700px;
                                          margin: 2em auto;
                                          background: linear-gradient(135deg, #f3eaff, #f8f3ff);
                                          padding: 1.5em 2em;
                                          border-left: 6px solid var(--primary-color);
                                          font-style: italic;
                                          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
                                          border-radius: 8px;
                                          text-align: center;
                                      }
                                      
                                      .testimonial span {
                                          display: block;
                                          margin-top: 1em;
                                          font-weight: bold;
                                          color: var(--primary-color);
                                      }
                                      
                                      #gallery {
                                          background: #f9f6ff;
                                          padding: 3em 1em;
                                      }
                                      
                                      .gallery-wrapper {
                                          display: flex;
                                          flex-wrap: wrap;
                                          gap: 2em;
                                          align-items: center;
                                          justify-content: center;
                                          max-width: 1200px;
                                          margin: 0 auto;
                                      }
                                      
                                      .gallery-side-info {
                                          flex: 1 1 400px;
                                          max-width: 500px;
                                      }
                                      
                                      .gallery-side-info h2 {
                                          color: var(--primary-color);
                                          font-size: 2em;
                                          margin-bottom: 0.5em;
                                      }
                                      
                                      .gallery-blurb {
                                          font-size: 1.1em;
                                          color: #555;
                                          margin-bottom: 1em;
                                      }
                                      
                                      .detail-list {
                                          list-style: none;
                                          padding-left: 0;
                                          font-size: 1em;
                                          line-height: 1.8em;
                                      }
                                      
                                      .detail-list li {
                                          margin-bottom: 0.4em;
                                      }
                                      
                                      .carousel-container {
                                          flex: 1 1 500px;
                                          max-width: 600px;
                                      }
                                      /* CONTACT SECTION FIX */
                                      
                                      #contact form {
                                          display: flex;
                                          flex-direction: column;
                                          gap: 1em;
                                          max-width: 500px;
                                          margin: 0 auto;
                                          padding: 1em 0;
                                      }
                                      
                                      #contact input,
                                      #contact textarea {
                                          padding: 0.9em;
                                          border: 1px solid #ccc;
                                          border-radius: 8px;
                                          font-size: 1em;
                                          width: 100%;
                                      }
                                      
                                      #contact button[type="submit"] {
                                          background: linear-gradient(135deg, #7d2aeb, #b889f8);
                                          color: white;
                                          padding: 0.9em;
                                          font-size: 1.1em;
                                          font-weight: bold;
                                          border: none;
                                          border-radius: 10px;
                                          cursor: pointer;
                                          box-shadow: 0 6px 16px rgba(184, 137, 248, 0.3);
                                          transition: background 0.3s, transform 0.2s ease;
                                      }
                                      
                                      #contact button[type="submit"]:hover {
                                          background: #fff;
                                          color: #b889f8;
                                          border: 2px solid #b889f8;
                                          transform: translateY(-2px);
                                      }
                                      /* CONTACT INFO SECTION */
                                      
                                      .contact-info {
                                          background: linear-gradient(135deg, #7d2aeb, #b889f8);
                                          padding: 2em;
                                          text-align: center;
                                          margin-top: 2em;
                                          border-top: 2px solid #e0d6f6;
                                      }
                                      
                                      .contact-info h3 {
                                          color: white;
                                          margin-bottom: 1em;
                                      }
                                      
                                      .contact-info p,
                                      .contact-info a {
                                          margin: 0.5em 0;
                                          font-size: 1.1em;
                                          color: white;
                                          text-decoration: none;
                                      }
                                      
                                      .contact-info a:hover {
                                          text-decoration: underline;
                                      }
                                      
                                      #packages,
                                      #addons {
                                          background: #f9f6ff;
                                          padding: 3em 1em;
                                          text-align: center;
                                      }
                                      
                                      .package-list {
                                          display: flex;
                                          flex-wrap: wrap;
                                          gap: 2em;
                                          justify-content: center;
                                          margin-top: 2em;
                                      }
                                      
                                      .package-card {
                                          background: #fff;
                                          border-radius: 10px;
                                          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
                                          padding: 2em;
                                          flex: 1 1 280px;
                                          max-width: 300px;
                                      }
                                      
                                      .package-card.highlight {
                                          border: 3px solid var(--primary-color);
                                          transform: scale(1.02);
                                      }
                                      
                                      .package-card h3 {
                                          color: var(--primary-color);
                                          margin-bottom: 0.5em;
                                      }
                                      
                                      .price {
                                          font-size: 1.5em;
                                          color: var(--accent-color);
                                          margin-bottom: 1em;
                                      }
                                      
                                      .package-card ul {
                                          list-style: none;
                                          padding: 0;
                                          font-size: 1.05em;
                                          margin-bottom: 1em;
                                      }
                                      
                                      .package-btn {
                                          background: var(--primary-color);
                                          color: white;
                                          border: none;
                                          padding: 0.8em 1.5em;
                                          font-weight: bold;
                                          border-radius: 8px;
                                          cursor: pointer;
                                          transition: background 0.3s ease;
                                      }
                                      
                                      .package-btn:hover {
                                          background: var(--accent-color);
                                      }
                                      
                                      .addon-list {
                                          list-style: none;
                                          padding: 0;
                                          font-size: 1.1em;
                                          margin-top: 1em;
                                          margin-bottom: 2em;
                                      }
                                      
                                      .fine-print {
                                          font-size: 0.9em;
                                          color: #666;
                                      }
                                      
                                      .cta-center {
                                          margin-top: 2em;
                                      }
                                      
                                      .cta-btn {
                                          background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
                                          color: white;
                                          padding: 1em 2em;
                                          font-size: 1.2em;
                                          border-radius: 12px;
                                          font-weight: bold;
                                          border: none;
                                          cursor: pointer;
                                          transition: background 0.3s ease, transform 0.3s ease;
                                      }
                                      
                                      .cta-btn:hover {
                                          background: white;
                                          color: var(--primary-color);
                                          border: 2px solid var(--primary-color);
                                          transform: translateY(-2px);
                                      }
                                      /* Improved Booking Form Styling */
                                      
                                      .booking-container {
                                          width: 95%;
                                          max-width: 600px;
                                          background: #ffffff;
                                          padding: 3em 2em;
                                          border-radius: 20px;
                                          box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
                                          margin: 4em auto;
                                          animation: fadeSlideIn 0.8s ease forwards;
                                      }
                                      
                                      form {
                                          display: flex;
                                          flex-direction: column;
                                          gap: 1.5em;
                                      }
                                      
                                      input,
                                      select,
                                      textarea {
                                          padding: 1em;
                                          font-size: 1.05em;
                                          border: 2px solid #ddd;
                                          border-radius: 10px;
                                          transition: border-color 0.3s, box-shadow 0.3s;
                                          background: #f7f3ff;
                                      }
                                      
                                      input:focus,
                                      select:focus,
                                      textarea:focus {
                                          border-color: var(--primary-color);
                                          box-shadow: 0 0 8px rgba(167, 109, 242, 0.4);
                                          outline: none;
                                          background: #ffffff;
                                      }
                                      
                                      button[type="submit"] {
                                          background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
                                          color: white;
                                          padding: 1em;
                                          font-size: 1.1em;
                                          font-weight: bold;
                                          border: none;
                                          border-radius: 12px;
                                          cursor: pointer;
                                          box-shadow: 0 6px 16px rgba(167, 109, 242, 0.3);
                                          transition: background 0.3s, transform 0.2s ease;
                                      }
                                      
                                      button[type="submit"]:hover {
                                          background: #fff;
                                          color: var(--primary-color);
                                          border: 2px solid var(--primary-color);
                                          transform: translateY(-2px);
                                      }
                                      /* Fancy confirmation popup */
                                      
                                      .confirmation {
                                          display: none;
                                          text-align: center;
                                          margin-top: 2em;
                                          font-size: 1.3em;
                                          font-weight: bold;
                                          color: #2ecc71;
                                          background: #e8fff3;
                                          padding: 1.2em;
                                          border-radius: 12px;
                                          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
                                          animation: popUp 0.6s ease-in-out forwards;
                                      }
                                      
                                      @keyframes fadeSlideIn {
                                          from {
                                              opacity: 0;
                                              transform: translateY(30px);
                                          }
                                          to {
                                              opacity: 1;
                                              transform: translateY(0);
                                          }
                                      }
                                      
                                      @keyframes popUp {
                                          0% {
                                              transform: scale(0.9);
                                              opacity: 0;
                                          }
                                          100% {
                                              transform: scale(1);
                                              opacity: 1;
                                          }
                                      }
                                      
                                      @media (max-width: 768px) {
                                          nav {
                                              flex-direction: column;
                                              padding: 1em;
                                              gap: 1em;
                                          }
                                          nav ul {
                                              flex-direction: column;
                                              align-items: center;
                                              gap: 1em;
                                          }
                                          header {
                                              height: auto;
                                              min-height: 60vh;
                                              padding: 2em 1em;
                                          }
                                          .hero {
                                              margin-top: 18em;
                                              /* Push down the hero section below nav */
                                              text-align: center;
                                          }
                                          .hero h2 {
                                              font-size: 1.6em;
                                          }
                                          .hero p {
                                              font-size: 1em;
                                          }
                                          .cta-text {
                                              font-size: 1.1em;
                                          }
                                          .service-list {
                                              flex-direction: column;
                                              align-items: center;
                                          }
                                          .service {
                                              flex: 1 1 80%;
                                              max-width: 400px;
                                          }
                                          .gallery-wrapper {
                                              flex-direction: column;
                                              align-items: center;
                                          }
                                          .carousel-container {
                                              flex-direction: column;
                                              max-width: 90%;
                                              padding: 1em 0.5em;
                                          }
                                          .gallery-side-info {
                                              text-align: center;
                                          }
                                          form {
                                              width: 100%;
                                          }
                                          .booking-container {
                                              padding: 2em 1em;
                                          }
                                          footer {
                                              padding: 1em;
                                              font-size: 0.9em;
                                          }
                                      }
                                      
                                      @media (max-width: 480px) {
                                          nav h1 {
                                              font-size: 1.2em;
                                          }
                                          .hero h2 {
                                              font-size: 1.4em;
                                          }
                                          .hero button,
                                          .cta-btn {
                                              font-size: 1em;
                                              padding: 0.75em 1.5em;
                                          }
                                          .package-list {
                                              flex-direction: column;
                                          }
                                          .package-card {
                                              max-width: 90%;
                                          }
                                          .service-btn {
                                              font-size: 0.9em;
                                              padding: 0.5em 1em;
                                          }
                                          .dots-container {
                                              margin-top: 1em;
                                          }
                                          .dot {
                                              height: 10px;
                                              width: 10px;
                                          }
                                      }