* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior:smooth;
}

body {
    /* background: #e7e7e1; */
    background: #f9f9f9;
    font-family: 'Lora', sans-serif;
    color: #333;
    cursor: default;
}

.container {
    font-family: 'Lora', sans-serif;
    max-width: 75rem;
    margin: 0rem auto;
    padding: 0rem 0.938rem;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@keyframes scrolling {
    from {
        opacity:0;
        scale: 0.5;
    }
    to {
        opacity:1;
        scale:1;
    }
}

/* Sections */
section {
    padding: 1rem;
    scroll-margin-top: 4rem;
}

h2 {
    text-align: center;
    margin: 0.5rem 0rem;
    font-size: 1.5rem;
    font-weight: normal;
}

h3 {
    text-align: center;
    color:#1d1c12;
    margin-bottom: 0.75rem;
    font-size:1.25rem;
    font-weight: normal;
}

h4 {
    text-align: center;
    color:#1d1c12;
    font-size:1.25rem;
    font-weight: normal;
}

/* Gradient between sections */

.spacing-between-sections-down {
    height:5rem;
    background-image: linear-gradient(to top, #f9f9f9, #e7debb);
    -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0.66), transparent);
}

.spacing-between-sections-up {
    height:5rem;
    background-image: linear-gradient(to top, #e7debb, #f9f9f9);
    -webkit-mask-image: linear-gradient(transparent, rgba(0, 0, 0, 0.66));
}

/* Header */
    .logo {
        height: 4rem;
        width: 4rem;
        cursor: pointer;
    }

    .logo-mobile {
        display: none; /* Hide by default */
    }

    header {
        background: #232524;
        overflow:hidden;
        position: sticky;
        top: 0;
        padding-top:0.125rem;
        padding-bottom:0.125rem;
        z-index: 5; /* Ensure content is above other elements */
    }

    .logo .logo-mobile header {
        height:9vh;
    }

    header .desktop-only {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding:0rem 0.75rem;
        flex-wrap:wrap;
    }

    .nav-menu {
        display: flex;
        gap: 1.5rem;
    }

    .nav-link {
        position:relative;
        font-size:1.3rem;
        font-family: "Lora", sans-serif;
        text-decoration: none;
        color: #e7e4bb;
    }

    .hover-underline:before{
        content:"";
        position:absolute;
        bottom: -0.125rem;
        left: 50%;
        height: 0.125rem;
        width:0;
        background: #e7e4bb;
        transition: 0.15s;
    }

    .hover-underline:hover::before{
        width:100%;
        left:0;
    }

    .nav-link:hover {
        color: #e7e4bbe7;
        transition: 0.15s ease-in-out;
    } 

    .mobile-menu-icon {
        display: none; /* Hide by default */
    }

    .bar {
        display: block;
        width: 1.75rem;
        height: 0.25rem;
        margin: 0.20rem auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: #e7e4bb;
    }
    
/* Hero Section */
#hero {
    position: relative;
    width:100%;
    min-height:90vh;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 100%;
    width:100%;
    height:100%;
    object-fit: cover;
    z-index: 1; /* Ensure content is above video */
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    text-align:center;
    text-shadow: 0rem 0.125rem 0.5rem rgba(0,0,0,0.7);
    padding-bottom: 2vh; 
} 

.hero-content .btn {
    align-items: center;
    display: flex;
    font-size: 1.3rem;
    top: 77vh;
    flex-direction: column;
    background: #333;
    color: #fff;
    justify-content: flex-end;
    box-shadow: 0rem 0.125rem 0.5rem rgba(0,0,0,0.3);
    border-radius: 1.563rem;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 0rem 0.125rem 0.5rem rgba(0,0,0,0.7);
    position: relative; /* Ensure button stays within flow */
}

/* #hero h2 {
    font-size: 2rem;
    text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
} */

#hero p {
    margin-top: 1.2rem;
    font-size: 1.5rem;
    margin:0.5rem 0;
    margin-bottom: 1rem;
}

.btn {
        display: inline-block;
        padding: 0.625rem 1.5rem;
        background: #e7e4bb;
        opacity: 85%;
        color: #333333;
        font-size: 1.5rem;
        text-decoration: none;
        border-radius: 0.313rem;
        transition: 0.3s ease-in-out;
        z-index:2;
}

.btn:hover {
        background: #e7e4bb;
        opacity: 90%;
        color: #222222;
        transition: 0.1s ease-in-out;         
} 

/* About Section */
    #about {
        text-align: center;
        font-size:1.5rem;
    }

    .about-title{
        position:relative;
        line-height:1;
        z-index:2;
    }

    .about-image{
        position:relative;
        left:0;
        right:0;
        height:auto;
        max-width:100%;
        object-fit:contain;
    }

    .description {
        position:relative;
        max-width: 50rem;
        margin: 0 auto;
        line-height: 1.2;
        font-size: 1.125rem;
        color: #555;
        padding: 0 1.25rem;
        text-align: center;

        animation: scrolling linear;
        animation-timeline: view();
        animation-range: entry 0%;
    }

    .loni-img{
        -webkit-mask-image:linear-gradient(red,transparent);
        mask-image:linear-gradient(red,transparent);
        border-top-left-radius: 1.25rem;
        border-top-right-radius:1.25rem;
    }
/* Gallery */
    .gallery-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
        gap: 0.938rem;
        max-width:100%;
    }
    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 0.5rem;
        box-shadow: 0rem 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
        cursor:pointer;       
        height: auto;
        object-fit:contain;
        aspect-ratio:9/16;

        animation: scrolling linear;
        animation-timeline: view();
        animation-range: entry 0%;
    }
    .gallery-item img {
        max-width:100%;
        height:100%;
        width: 100%;
        transition: transform 0.3s ease-in-out;
        
    }
    .gallery-item:hover img {
        transform: scale(1.03);
    }
    .gallery-item .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .gallery-item:hover .overlay {
        opacity: 0.2;
    }
    .gallery-item .overlay span {
        font-size: 1.25rem;
    }

/* Modal for Gallery */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 1001;
    }

    .prev-btn {
    left: 1rem;
}

    .next-btn {
        right: 1rem;
    }

    .modal-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    }

    .modal-nav:disabled {
        background: rgba(255, 255, 255, 0.1);
        cursor: not-allowed;
    }

    .modal-content {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border-radius: 0.5rem;
    }

    .modal-close {
        position: absolute;
        top: 1.25rem;
        right: 1.875rem;;
        color: #fff;
        font-size: 2.5rem;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .modal-close:hover {
        color: #f0a500;
    }

    #modal-caption {
        color: #fff;
        font-size: 1.125rem;
        margin-top: 0.625rem;
        text-align: center;
        padding: 0rem 1.25rem;
    }

/* Price Cards */

.price-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 1.25rem 0rem;
}

.price-cards .mobile-only {
    display:none;
}

.price-card {
  background: #fff;
  border: 0.125rem solid #e7e4bb;
  border-radius: 1rem;
  box-shadow: 0rem 0.25rem 1.5rem rgba(0,0,0,0.07);
  padding: 1rem;
  width: 16.75rem;
  max-width: 18.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.2s;
  cursor:default;

  animation: scrolling linear;
  animation-timeline: view();
  animation-range: entry 0%;
}

.price-card:hover {
  box-shadow: 0rem 0.5rem 2rem rgba(0,0,0,0.1);
  transform: translateY(-0.1rem);
    transition: transform 0.3s ease-in-out, box-shadow 0.2s;
}

.price-card.popular {
  border: 0.125rem solid #f0a500;
  box-shadow: 0rem 0.5rem 2rem rgba(240,165,0,0.08);
}
.price-card-header {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  margin: 0.5rem 0rem;
}
.price-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
}
.price-card-badge {
  position:absolute;
  background: #f0a500;
  color: #fff;
  font-size: 1.125rem;
  padding: 0.188rem 0.625rem;
  border-radius: 0.75rem;
  margin-left: 0.5rem;
  text-align:center;
  top: -0.9rem;
  z-index:1;
}

.price-card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-top:auto;
  margin-bottom:1rem;
  justify-content: center;
}

.price-card-price .old-price {
  font-size: 1.25rem;
  color: #d3d3d3;
  text-decoration: line-through;
  font-weight: 400;
}

.price-card-price span {
    font-size: 1.25rem;
}

.price-card-price small {
  display: block;
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
}

.price-card-features {
  list-style: none;
  position:relative;
  text-align: center;
  margin-bottom:1rem;
  width: 100%;
}
.price-card-features li {
  font-size: 1rem;
  color: #444;
  align-items: center;
  padding: 0.5rem 0rem;
  gap: 0.5rem;
  border-bottom: 0.1rem solid #e7e4bb
}

.price-card-btn {
    background: #e7e4bb;
    color: #333;
    border: none;
    border-radius: 1.5rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-family: 'Lora', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.price-card-btn:hover {
  background: #f0a500;
  color: #fff;
}

/* Schedule container */
.schedule-container {
    display:flex;
    justify-content: center;
    flex-wrap:wrap;
 /* new */
    position:relative;
    min-height:42rem;
    overflow:hidden;
    align-items: center;
}

.calendar-wrap {
    padding: 1rem;
    background-color: #fff;
    border-radius: 1rem;
    margin: 0.3rem; 
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.07);
    /*new*/
    transition: transform 0.3s ease-out;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.calendar-container {
    position: relative;
    width: 100%;
    will-change: transform;
    transform: translateZ(0);
}

.slide-out-left {
    animation: slideOutLeft 0.3s forwards;
}

.slide-in-left {
    animation: slideInLeft 0.3s forwards;
}

.slide-out-right {
    animation: slideOutRight 0.3s forwards;
}

.slide-in-right {
    animation: slideInRight 0.3s forwards;
}

@keyframes slideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-4%); opacity: 0; }
}

@keyframes slideInLeft {
    from { transform: translateX(4%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(4%); opacity: 0; }
}

@keyframes slideInRight {
    from { transform: translateX(-4%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.calendar-wrap.shift-left {
    transform: translateX(calc(-50% - 15rem)); /* Half the width of requestServices */
}

/* Minimalistic calendar styles */

#user-calendar {
    margin-bottom:1rem;
}
.calendar-week-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;
}
.calendar-day-col {
    flex: 1;
    background: #ffffff;
    border-radius: 0.5rem;
    min-width: 5rem;
    max-width:6rem;
}

.calendar-day-col.today-highlight {
    border: 0.125rem solid #f0a500; /* Highlight with a border matching your theme */
}

.calendar-day-header {
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top:0.5rem;
    font-size:1rem;
}
.calendar-slots-col {
    display: flex;
    flex-direction: column;
}
.slot {
    font-family: 'Lora', sans-serif;
    border: none;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    margin: 0.125rem 0.05rem 0rem 0.05rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.slot:hover {
    opacity:0.7;
    transition:0.1s;
}
.slot.available {
    background: #d6f5d6;
    color: #222;
}
.slot.taken {
    background: #ffd699;
    color: #222;
    cursor: not-allowed;
}

.slot.past {
    background: #e0e0e0; /* Grey out past slots */
    color: #666;
    cursor: not-allowed;
}

.slot.holiday {
    background: #f3b3d6; /* Grey out holiday slots */
    color: #70405a;
    cursor: not-allowed;
}

.slot.week {
  background:transparent;
  color: black;
  border: 0.125rem solid #f0a500;
  border-radius: 0.5rem;
  cursor: default;
}

.slot.selected {
  border: 0.125rem solid #60f000;
  transition: 0.05s;
}

.calendar-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.week-nav-btn {
    background: #e7e4bb;
    color: #333;
    border: none;
    border-radius: 1.5rem;
    padding: 0.625rem 1rem;
    font-size: 1.1rem;
    font-family: 'Lora', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.week-nav-btn:hover {
  background: #f0a500;
  color: #fff;
}

.hint {
    text-align:center;
    font-size:1.125rem;
    scroll-margin-top:5rem;
}

/* Booking form styles */
.requestServices {
    display: block;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.07);
    padding: 1.5rem;
    margin: 0.5rem;
    max-width: 500px;
    scroll-margin-top:5rem;
    opacity:0;
    transition: 0.3s;
    /*new*/
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    transform: translateX(100px);
    position: absolute;
    right: -600px;
    width: 30rem;
}

.requestServices.active {
    display: block;
    opacity:1;
    transform: translateX(0);
    right: 0;
    margin-right: 15rem /* Half the width of requestServices */
}

label {
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
}

.requestServices input,
.requestServices select {
    width: 100%;
    padding: 0.33rem;
    margin-top: 0.25rem;
    border-radius: 0.25rem;
    border: 1px solid #e7e4bb;
    font-size: 1rem;
}

.booking-hint {
  color: #666;
  font-size: 0.9em;
  margin-top: 0.5rem;
  display: block;
}

#subscribe-email {
    width:5%;
}

.form-buttons {
    display:flex;
    gap:1rem;
    justify-content: center;
}

.requestServices button {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    border: none;
    background: #e7e4bb;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
}
.requestServices button:hover {
    background: #f0a500;
    color: #fff;
}

.disclaimer {
    width: 48rem;
    max-width: 100%;
    margin: 1rem auto 0rem;
    font-size: 0.9rem;
    color: #555;
    opacity: 1;
    /* transform: translateY(-30px); */
    transition: opacity 1s ease-in;
    background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 0.125rem 0.200rem rgba(0, 0, 0, 0.1);
    border-left: 0.125rem solid #aca97c;
    border-right: 0.125rem solid #aca97c;
}
/* 
.disclaimer.is-visible {
    opacity: 1;
    transform: translateY(0);
} */

.disclaimer h3{
    text-align:center;
    color: #333;
    border-bottom: 0.1rem solid #e7e4bb;
    padding-bottom: 0.5rem;
}

.disclaimer h4{
    text-align:start;
    margin-top:0.5rem;
    margin-bottom:0.5rem;
    color: #333;
    font-size: 1.125rem;
}

.disclaimer p {
    line-height: 1;
    color: #666;
    margin-bottom:0.25rem;
    font-size:0.9rem;
}

.disclaimer li {
    margin-left: 1rem;
}

.disclaimer-cards{
    display:flex;
    justify-content: center;
    flex-wrap:wrap;
    gap: 1rem;
    margin:1rem;
}

.disclaimer-price-card {
  background: #fff;
  border: 0.125rem solid #e7e4bb;
  border-radius: 1rem;
  box-shadow: 0rem 0.25rem 1.5rem rgba(0,0,0,0.07);
  padding: 0.625rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.2s;
  cursor:default;
  font-size:0.9rem;
  text-align:center;
}
.disclaimer-price-card:hover {
  box-shadow: 0rem 0.5rem 2rem rgba(0,0,0,0.1);
  transform: translateY(-0.075rem);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.links {
    position:relative;
    font-family: "Lora", sans-serif;
    text-decoration: none;
    color: #aca97c;
}

.links:hover {
    color: #6a694f;
    transition: 0.15s ease-in-out;
} 

option, select, input {
    font-family: 'Lora', sans-serif;
}

/* Location Section */
    #location {
        font-size:1.875rem;
        padding: 0rem 0.938rem;
        text-align: center;
    }

/* Contact Form */
    #contact form {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        padding: 0.938rem;
    }

    #contact input, #contact textarea {
        padding: 1rem;
        border: 0.063rem solid #ddd;
        border-radius: 0.625rem;
        font-size: 1rem;
        transition: border-color 0.3s ease;
        font-family: 'Lora', sans-serif;
    }

    #contact input:focus, #contact textarea:focus {
        border-color: #6b7280;
        outline: none;
    }

    #contact textarea {
        resize: vertical;
        min-height: 6.25rem;
    }
    #contact button {
        font-family: 'Lora', sans-serif;
        padding: 0.625rem;
        background: #6b7280;
        color: #fff;
        border: none;
        border-radius: 0.313rem;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.3s ease;
    }

/* Footer Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 1.25rem 0rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    background-color: #e7e4bb;
    opacity: 75%;
}

.social-link i {
    font-size: 1.5rem;
    color: #333;
}

.social-link:hover {
    color: #fff;
    background-color: #f0a500;
    opacity: 90%;
    transform: translateY(-0.125rem);
}

.social-link:hover i {
    color: #fff;
}

.phone-link {
    color: #333;
    text-decoration: none;
    font-size: 1.5rem; /* Match h4 size or adjust as needed */
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #f0a500;
}

/* Clipboard Button */
.clipboard-btn {
    display: inline-block;
    padding: 0.313rem 0.625rem;
    background: #6b7280;
    color: #fff;
    border: none;
    border-radius: 0.313rem;
    font-size: 0.9rem;
    font-family: 'Lora', sans-serif;
    font-weight: 500;
    cursor: pointer;
    margin: 0.625rem 0rem;
    transition: background-color 0.3s ease;
}

.clipboard-btn:hover {
    background-color: #4b5563;
}

/* Footer */

iframe {
    width: 25rem;
    height: 20rem;
    border: solid 0.063rem #e7e4bb;
    border-radius: 0.5rem;
    box-shadow: 0rem 0.25rem 1.5rem rgba(0,0,0,0.07);
}

footer {
    align-items: flex-start;
    background: #f4f4f4;
    text-align: center;
    padding: 1rem 0;
    position: sticky;
    flex-wrap: wrap;
}

footer h2 {
    font-family: 'Lora', sans-serif;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .container {
    padding: 1.25rem 1.25rem 0.625rem;
}

footer p {
    font-size: 0.9rem;
    color: #666;
}

.footer-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    max-width: 75rem;
    align-items:center;
    margin: 0rem auto 0rem auto;
}

.footer-flex > section {
    flex: 1 1 0;
    min-width: 20rem;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 1rem 0;
    align-items: center;
}

#location .container, #contact .container {
    background: none;
    box-shadow: none;
    padding: 0rem;
}

#contact .container {
    /* background: #f9f9f9; */
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 1rem;;
}

#location h2, #contact h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: left;
}

.bottom-bar {
font-family: "Lora", sans-serif;
font-size: 1rem;
bottom:0rem;
width: 100%;
color: #e7e4bb;
text-align: center;
z-index: 1000; /* Ensures bar stays on top of other elements */
background: #232524;
text-align: center;
padding: 0.125rem;
position: sticky;
top: 0rem;
}

.website-signature{
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 2.5rem;
    right: 1.5rem;
    z-index: 999;
    background: #e7e4bb;
    border: none;
    border-radius: 1.5rem;
    width: 3rem;
    height: 2.5rem;
    cursor: pointer;
    box-shadow: 0rem 0.125rem 0.5rem rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#scrollTopBtn.show {
    background: #e7e4bb;
    color: #fff;
    opacity: 90%;
    transition: 0.3s ease-in-out; 
    pointer-events: auto;
}

/* CAPTCHA */
.captcha-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.captcha-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.captcha-content h3 {
    margin-bottom: 1.5rem;
}

.captcha-content canvas {
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.captcha-content input {
    width: 100%;
    padding: 0.5rem;
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.captcha-content button {
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    background: #4285f4;
    color: white;
    cursor: pointer;
}

.captcha-content button:hover {
    background: #3367d6;
}

.captcha-content button#refresh-booking-captcha {
    background: #f0f0f0;
    color: #333;
}


/* Responsive Design */
/* Responsive Design */
/* Responsive Design */
/* Responsive Design */
/* Responsive Design */
/* Responsive Design */
/* Responsive Design */
/* Responsive Design */
/* Responsive Design */
/* Responsive Design */

/* Mobile phones */
    @media (max-width: 768px) {

        .mobile-only {
            justify-content: center;
            align-items: center;
            display:grid;
            grid-column-gap: 2px;
            align-items: end;
        }

        .desktop-only {
            display: none; /* Hide on mobile */
        }
        
        main {
        flex:1;
        overflow:scroll;
        }

        section {
            padding: 1.125rem 0.625rem; /* Reduced padding for mobile */
            scroll-margin-top:8rem;
        }

        .spacing-between-sections-down {
            height:3rem;
        }

        .spacing-between-sections-up {
            height:3rem;
        }

        header {
            height: 8.2rem; /* Adjusted for mobile */
        }

        .mobile-only-icons{
            padding-left: 1.125rem;
            padding-right: 1.125rem;
            display:grid;
            /* flex-wrap:wrap; */
            grid-template-columns:repeat(3, 1fr);
            grid-column-gap: 2px; 
            /* justify-content: center;
            gap:2rem; */
            align-items: center;
            max-width:100%;
        }

        .mobile-only-icon {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .social-link {
            width:2.5rem;
            height:2.5rem;
            justify-content: center;
            padding:0;
        }

        .logo {
            display:none;
        }

        .logo-mobile {
            display: inline-flex; /* Show on mobile */
            position:relative;
            cursor:pointer;
            max-width:100%;
            height:auto;
            width: 8rem;
        }

        .mobile-navbar {
            display: flex; 
            justify-content: center; 
            align-items: center;
        }
        
        .nav-menu {
            justify-content: space-evenly;
            position:fixed; 
            width: 100%; 
            text-align: center;
            background: #232524;
            padding-left: 0.75rem;
            padding-right: 0.75rem;
            list-style:none;
            left:0;
            top:8.2rem;
            visibility:hidden;
            display:flex;
            opacity: 0;
            transition: opacity 0.1s ease-in-out;
            gap:0.75rem;
            z-index:10;
        }

        .nav-link {
            color: #e7e4bb;
            font-size: 1rem;
        }

        .nav-item {
            margin: 0.25rem 0;
        }

        .nav-menu.active{
            opacity:1;
            visibility:visible;
            transition: opacity 0.3s ease-in-out;
        }

        .mobile-menu-icon {
            display: inline-block; /* Show mobile menu icon */
        }

        .mobile-menu-icon.active .bar:nth-child(2)  {
            opacity: 0; /* Hide the middle bar */
            transition: 0.15s;
        }

        .mobile-menu-icon.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg); /* Rotate top bar */
            transition: 0.15s;
        }

        .mobile-menu-icon.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg); /* Rotate bottom bar */
            transition: 0.15s;
        }
        
        #hero {
            padding-top:0;
            height: 13.5rem; /* Adjust height for smaller screens */
            overflow: visible;;
            min-height:0;
        }

        .hero-content {
            padding-bottom:0;
        }

        .hero-content .btn {
        position:absolute;
        width:50%;
        left:50%;
        transform: translateX(-50%);
        font-size: 1rem; 
        opacity: 1;
        top: 12.25rem; /* Adjusted for smaller screens */
        }

        .hero-video {
            top:auto;
            height:100%;
            border-bottom-style: solid;
            border-bottom-width: 0.1rem;
            border-bottom-color: #333333;
        }

        #hero h2 {
            font-size: 1.8rem;
        }

        #hero p {
            font-size: 1.2rem;
        }

        .container {
            padding: 0rem 0.625rem;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        #gallery {
            padding: 1rem;
        }

        #gallery .gallery-container {
            grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
        }

        .modal-content {
            position:absolute;
        }   

        .next-btn {
            opacity:0;
            height:55vh;
            left:50%;
        }

        .prev-btn {
            opacity:0;
            height:55vh;
            right:50%        
        }

        #about {
            font-size: 1.25rem;
        }

        .about-image img {
            width: 100%;
            height: auto;
            max-width: 100%;
        }

        .price-cards {
            display:grid;
            grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
            align-items: start;
            justify-items: center;
            gap:0.5rem;
            margin: 0.625rem auto;
        }

        .price-cards .mobile-only {
            min-width: 12rem;
            display:grid;
            grid-template-columns:min-content;
            justify-items: center;
        }

        .price-cards .desktop-only{
            display:none;
        }

        .price-card {
            width:auto;
            height:100%;
            max-width: 100%;
            max-height:100%;
            padding: 1.25rem 0.625rem;
        }

        .price-card-title{
            font-size: 1.25rem;
            font-weight: 700;
            color: #333;
        }

        .price-card-header {
            flex-wrap: wrap;
        }

        .price-card-badge {
            position: absolute;
            top: -0.6rem;
            font-size: 0.9rem;
            padding: 0.125rem 0.5rem;
        }

        .price-card-price span {
            font-size: 1rem;
        }

        .price-card-price .old-price {
            font-size: 1rem;
        }

        .price-card-price small {
            font-size:0.9rem;
        }

        .price-card-features li {
            font-size: 0.9rem;
        }

        .gallery-container {
            grid-template-columns: 1fr;
        }

        .disclaimer-cards {
            margin:0;
        }

        /*new*/
        .schedule-container {
        position: static;
        }
        
        .calendar-wrap {
            position: static;
            transform: none;
        }

        .calendar-wrap.shift-left {
        transform: none;
        }

        .calendar-week-row {
            gap: 0rem;
            display: flex;
            grid-template-columns: repeat(7, minmax(0.5rem, 1fr));
            justify-items: center;
            align-items: center;
            justify-content: center;
        }
        .calendar-day-col {
            min-width: unset;
            margin-bottom: 0.25rem;
        }

        .week-nav-btn{
            font-size:0.9rem;
            padding: 0.625rem 1rem;
        }

        .requestServices {
            display:none;
            padding: 1rem;
            max-width: 100%;
            scroll-margin-top:10rem;
            position: static;
            transform: none;
        }

        .requestServices h2 {
            font-size: 1.5rem;
        }

        .requestServices.active {
            display: block;
            position: static;
            right: auto;
            margin-right: 0;
        }

        #hint {
            scroll-margin-top:-3rem;
        }

        .calendar-slots-col
        {
            margin-top:auto;
            /* margin-bottom:auto; */
        }

        .slot {
            padding: 0.25rem 0.375rem;
            font-size:0.85rem;
        }

        .hint {
            scroll-margin-top:8rem;
        }

        #contact form {
            padding: 0.625rem;
        }

       #contact input, #contact textarea {
            font-size: 0.9rem;
        }

        .footer-flex {
        flex-direction: column;
        gap: 1.25rem;
        }

        .footer-flex > section {
            min-width: unset;
        }

        iframe {
            height: 18rem;
            width:20rem;
        }

        footer #contact-title {
            scroll-margin-top:8rem;
            margin-bottom:0;

        }

        .contact-icons {
        gap: 0.75rem; /* Reduce gap on mobile */
        }

        .phone-link {
        font-size: 1.25rem; /* Adjust phone number size on mobile */
        }

        #scrollTopBtn {
        position: fixed;
        bottom: 2.5rem;
        right: 1.5rem;
        z-index: 2;
        background: #e7e4bb;
        border: none;
        border-radius: 1.5rem;
        height: 2.5rem;
        cursor: pointer;
        box-shadow: 0rem 0.125rem 0.5rem rgba(0,0,0,0.2);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        }
        #scrollTopBtn.show {
            background: #e7e4bb;
            opacity: 90%;
            transition: 0.1s ease-in-out; 
            pointer-events: auto;
        }

        .bottom-bar {
        font-size: 0.775rem;
        }
    }