.blb_logo {
    display: block;
    width: 6.2rem; /* 100px */
}
.menu_icon {
    display: block;
    width: 4rem; /* 64px */
}
/* ────────────────────────────────────────────────────────────────
   Navigation
   ───────────────────────────────────────────────────────────── */
.nav_main {
    position: sticky;
    top: 0;
    z-index: 9;
    transition: transform 0.75s ease-in-out;
    width: 100%;
    min-height: 20%;  /* ✅ set a realistic height for nav bar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.nav_side_menu {
    position: relative;
}
.nav_side_menu:hover {
    top: 0.1rem;
}

.nav_main_links {
    font-size: 1.5rem;
}

.nav_left,
.nav_right {
    display: flex;
    align-items: center; /* ✅ vertical centering of inner content */
    height: auto;
    position: relative;
}

.nav_left {
    float: left;
}
.nav_right {
    float: right;
}

/* ────────────────────────────────────────────────────────────────
   Side Menu
   ───────────────────────────────────────────────────────────── */
#mySidenav { /* base state */
    width: 0; 
    transition: width .3s ease; 
}
.sidebar-open #mySidenav { /* drawer open on desktop */
    width: 15%; /* ≈ 250 px at 100 % DPI */
} 
.nav_side {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #1b1b1b;
    border: 0.0625rem solid #444;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    border-top-left-radius: 2.125rem;
    border-bottom-left-radius: 2.125rem;
}

.nav_content:nth-child(1) {
    display: flex;
    justify-content: space-between; /* space between left and right */
    align-items: center;
    height: 5%;
    padding: 1rem;
    font-size: 3rem;
}

.a_left, .a_right {
    display: flex;
    align-items: center;
    width: auto;
}

.a_left {
    justify-content: flex-start;
}

.a_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;   /* ✅ vertical centering */
    height: 100%;          /* make sure it has height context */
}

.closebtn_side {
    color: #FFFFFF;
    padding-left: 0.5rem;
    text-decoration: none;
}

.heartbtn_side {
    color: #FF69B4;
    padding-right: 0.5rem;
    text-decoration: none;
}

.heartbtn_side img {
  display: block;
  height: 2rem;          /* or whatever size you want */
}

.nav_content:nth-child(2) { 
    height: 10%;
    width: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.nav_content:nth-child(2) h1 {
    font-size: 3rem;
}
.nav_content:nth-child(3) { 
    color: #F2E7D0; 
    height: 70%;
    width: 100%;
    align-items: flex-start;   /* Align items to the left*/
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1.5rem;
}

.nav_content:nth-child(3) a { 
    font-size: 2rem;
}

.nav_content:nth-child(4) { 
    height: 20%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

/* Use flex-grow ratios — these will perfectly fill the height */
/* Shared style for all sections */
.nav_content {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E3D8BF;
    border-bottom: 0.0625rem solid #444;
    font-size: 1.5rem;
}
  
/* Remove border on last one */
.sidebar-section:last-child {
    border-bottom: none;
}

/* Social Media Links */
.face_btn_2 {
    position: relative;
    bottom: 0;
}
.face_img_2 {
    width: 4rem; /* 64px */
}

.face_btn, .insta_btn, .blank_img {
    padding-bottom: 0.625rem;
}
.face_img, .insta_img, .blank_img {
    width: 2rem; /* 32px */
}

/* ────────────────────────────────────────────────────────────────
   MAIN
   ───────────────────────────────────────────────────────────── */
a,
button,
[role="button"],
[onclick],
input,
textarea,
select,
.carousel-dot {
  -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 1rem; /* 16px */    
}

body {    
    background-color: #0C2721;
    color: #E3D8BF;
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h1, h2, h3, p {
    margin: 0;
}

article {
    color: #F2E7D0;
    position: relative;
    text-align: center;
}

footer {
    margin: 0;
    text-align: center;
    vertical-align: text-bottom;
}

button{
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

a, a:link, a:visited {
    text-decoration: none;
    color: #E3D8BF;
}
a:hover {
    color: #36c8a7;
}

span, span:link, span:visited, span:hover {
    text-decoration: none;
}

.scale-down {
    font-size: 0.8em;   /* everything that uses rem/em just shrinks */
}

/* ────────────────────────────────────────────────────────────────
   Modal Overlay
   ───────────────────────────────────────────────────────────── */
.modal-overlay {
    display: none; /* hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(12, 12, 12, 0.85); /* dark smoke effect */
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #191919;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 90%;              /* responsive width */
    max-width: 625px;        /* limit container width */
    box-sizing: border-box;
}

/* Search Input */
.search-input {
    font-size: 1.5rem;
    padding: 0.75rem 1.25rem;
    width: 100%;
    max-width: 500px;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    position: relative;
    z-index: 1;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 0.15rem;
    right: 0.55rem;
    background: none;
    border: none;
    color: #E3D8BF;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.suggestions-list {
    list-style-type: none;
    margin: 0.5rem 0 0;
    padding: 0;
    width: 100%;
    max-width: 623px;
    max-height: 0;               /* Start collapsed */
    overflow: hidden;            /* Hide content when closed */
    background: #1b1b1b;
    border: 1px solid #444;
    border-radius: 0.5rem;
    color: #E3D8BF;
    text-align: left;
    font-size: 1.25rem;
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    z-index: 10;
    scrollbar-width: thin;
    scrollbar-color: #666 #1b1b1b;
    opacity: 0;                                /* Start invisible */
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* When active/opened */
.suggestions-list.open {
    max-height: 300px;                        /* Expand vertically */
    overflow-y: auto;                         /* Allow scroll */
    opacity: 1;                               /* Fade in */
}

/* The rest remains the same */
.suggestions-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
    gap: 0.5rem;
    transition: background 0.2s ease;
    user-select: none;
}

.suggestions-list li:hover {
    background-color: #2a2a2a;
}

.suggestions-list img {
    height: 1.2rem;
    width: auto;
    flex-shrink: 0;
}

.suggestions-list::-webkit-scrollbar {
    width: 8px;
}
.suggestions-list::-webkit-scrollbar-track {
    background: #1b1b1b;
}
.suggestions-list::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 4px;
}

.search-tooltip {
    display: none;
    position: absolute;
    top: 48.5%;
    left: 50%;
    transform: translate(-50%, -130%); /* Center horizontally, float above modal */
    color: #ff6b6b;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    z-index: 10000;
    white-space: nowrap;
}


/* ────────────────────────────────────────────────────────────────
   1A. HOME PAGE
   ───────────────────────────────────────────────────────────── */
.section_home {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Home Page - Section 1 */
/* Navigation Menu Bar */
.page_content_home:nth-child(1) {
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #262626;
}

/* Home Page - Section 2 */
/* Header */
.page_content_home:nth-child(2) {
    height: 20%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page_content_home:nth-child(2) h1 {
    position: relative;
    font-size: 5rem;
    text-align: center;
    top: 20%;
}

/* Home Page - Section 3 */
/* Carousel Main Buttons */
.page_content_home:nth-child(3) {
    height: 60%;
    width: 100%;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    perspective: 2000px;
}

.carousel-container {
    display: flex;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: transform 0.4s ease;
    transform-origin: center center;
    width: 0;
    height: 0;
    margin: auto;
}
.carousel-item {
    position: absolute;
    top: 0;
    margin: -5.75rem; /* -92px */
    z-index: 4;
}
.a_home_box_1 {
    padding: 2.5rem;
    background-color: #191919;
    border: 0.125rem solid #303030;
    border-radius: 3.125rem;
}
.a_home_box_1 img {
    filter: invert();
    width: 6.25rem; /* 100px */
    height: 6.25rem;
}
.a_home_box_1_text {
    position: relative;
    bottom: 0;
    opacity: 33.4%;
    transition: opacity 1s ease-in-out;
    font-size: 1rem;
}
.a_home_box_1_text.visible {
    opacity: 1 !important;
}
.a_home_box_1_text p{
    color: #F2E7D0; 
    text-align: center; 
    font-family: serif;
    margin-top: 0.25rem;
    font-size: 1.5rem; 
    position: relative;
}

/* Carousel Side Buttons */
.carousel-controls {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
}
.carousel-button {
    background-color: #191919;
    text-align: center;
    height: 18.125rem; /* 290px */
    width: 60rem; /* 514px */
    cursor: pointer;
}
/* Home Page - Section 4 */
/* Footer */
.page_content_home:nth-child(4) {
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.page_content_home {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E3D8BF;
}

/* ────────────────────────────────────────────────────────────────
   1A. CALENDAR PAGE
   ───────────────────────────────────────────────────────────── */
.section_calendar {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Calendar Page - Section 1 */
/* Navigation Menu Bar */
.page_content_calendar:nth-child(1) {
    height: 13%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #262626;
}

/* Calendar Page - Section 2 */
/* Header */
.page_content_calendar:nth-child(2) {
    height: 20%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page_content_calendar:nth-child(2) h1 {
    position: relative;
    font-size: 4rem;
    text-align: center;
    top: 20%;
    padding-bottom: 2rem;
}

/* Calendar Page - Section 3 */
/* Main Calendar */
.page_content_calendar:nth-child(3) {
    height: 60%;
    width:96.5%;
    padding: 2rem;
    filter: grayscale(50%);
    filter: hue-rotate(60deg);
    font-size: 4rem; 
}
.page_content_calendar:nth-child(3) iframe{
    background: #191919;
    background-color: #191919;
    filter: invert(0.9);
    backdrop-filter: hue-rotate(90deg);
    width: 1720px; 
    height: 600px;
    border-radius: 1.25rem;
    outline: 0.5rem solid #ffffff;
}

/* Calendar Page - Section 4 */
/* Footer */
.page_content_calendar:nth-child(4) {
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.page_content_calendar {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E3D8BF;
}

/* ────────────────────────────────────────────────────────────────
   1B. CATEGORY PAGE
   ───────────────────────────────────────────────────────────── */
.section_category {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
}

/* Category Page - Section 1 */
/* Navigation Menu Bar */
.page_content_category:nth-child(1) {
    height: 10%;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #262626;
}

/* Category Page - Section 2 */
/* Header */
.category-wrapper {
    height: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: overlay; /* nice if supported */
    overflow-y: auto;    /* fallback */
    padding-right: 1rem;
    box-sizing: content-box;
}

.category-wrapper .page_content_category:nth-child(1) {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 5vh 0;
    background-color: #0C2721;
}
.category-wrapper .page_content_category:nth-child(1) h1 {
    font-size: 5rem;
    text-align: center;
}

/* Category Page - Section 3 */
/* Categories Groups */
.category-wrapper .page_content_category:nth-child(2) {
    width: 100%;
}
.category-wrapper .page_content_category:nth-child(2) h2 {
    font-size: 2.5rem;
}

/* Category Buttons */
.category-buttons-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; /* 16px */
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0 5vw;
    flex-direction:unset;
}
  
.category-button {
    color: #E3D8BF;
    background-color: #191919;
    border: 0.125rem solid #303030;
    border-radius: 1rem; /* 20px */
    padding: 0.5rem 1.5rem; /* top-bottom 12px, sides 24px */
    font-size: 1.25rem;
    font-family: serif;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.dropdown-section:has(.dropdown-content.visible) > .dropdown-header {
  color: #E3D8BF;
}

.dropdown-header {
    color: #b1924e;
    padding: 0.75em;
    cursor: pointer;
    width: 100%;
    border: none;
    font-size: 2.5rem;
    transition: color 0.3s ease;
    background-color: #0C2721;
    
}
.dropdown-header.open {
    color: #E3D8BF;
}

.dropdown-content {
  display: none;
  padding: 1em;
  background-color: #0C2721;
}

.dropdown-content.visible {
  display: block;
}

.category-button {
  display: inline-block;
  margin: 0.25em;
  padding: 0.5em 1em;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
}

.category-button:hover {
    background-color: #1b1b1b;
    color: #36c8a7;
    box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
}

/* Category Page - Section 4 */
/* Footer */
.category-wrapper .page_content_category:nth-child(3) {
    width: 100%;
    height: 10%;
    flex-shrink: 0;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.page_content_category {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E3D8BF;
}

/* ────────────────────────────────────────────────────────────────
   1B. ABOUT PAGE
   ───────────────────────────────────────────────────────────── */
.section_about {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* About Page - Section 1 */
/* Navigation Menu Bar */
.page_content_about:nth-child(1) {
    height: 10%;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #262626;
}

/* About Page - Section 2 */
/* Header */
.about-wrapper {
    height: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: overlay; /* nice if supported */
    overflow-y: auto;    /* fallback */
    padding-right: 1rem;
    box-sizing: content-box;
}
.about-wrapper .page_content_about:nth-child(1) {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 10vh 0;
    background-color: #0C2721;
}
.section_about h1 {
    font-size: 5rem;
    text-align: center;
}
.section_about h2 {
    font-size: 3.75rem;
    text-align: center;
}
.section_about h3 {
    font-size: 2.5rem;
    text-align: center;
}

/* About Page - Section 3 */
/* Content Description */
.about-wrapper .page_content_about:nth-child(2) {
    width: 100%;
}

.about-wrapper-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.about-wrapper-paragraphs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10vw;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    height: auto;
}

/* Description Section */
.about_p {
    font-family: serif;
    font-size: 1.75rem;
    padding: 0 5%; /* instead of 12.5rem / 200px */
    text-align: center;
}

.about_p1 {
    text-align: center;
    padding: 1vh 3vw;
}
.about_p2 {
    text-align: center;
    padding: 1vh 3vw;
}
.about_p3 {
    text-align: center;
    padding: 1vh 3vw;
}

/* Call to Action Boxes */
.contact_p {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.contact_p_button {
    margin-top: 2rem; /* 50px */
    padding: 0.5rem 1.5rem; /* top-bottom 12px, sides 24px */
    font-size: 1.25rem;
    color: #E3D8BF;
    background-color: #191919;
    border: 0.125rem solid #303030;
    border-radius: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.contact_p_button:hover {
    background-color: #1b1b1b;
    color: #36c8a7;
    box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
}
.contact_p1 {
    font-size: 1rem;
}
.contact_p2 {
    font-size: 1.25rem;
}

/* About Page - Section 4 */
/* Footer */
.about-wrapper .page_content_about:nth-child(3) {
    height: 10%;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    padding: 2.7vh 0 0 0;
}

.page_content_about {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E3D8BF;
}

/* ────────────────────────────────────────────────────────────────
   1B. UNDER CONSTRUCTION PAGE
   ───────────────────────────────────────────────────────────── */
.section_underconstruction {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Under Construction Page - Section 1 */
/* Navigation Menu Bar */
.page_content_underconstruction:nth-child(1) {
    height: 10%;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #262626;
}

/* Under Construction Page - Section 2 */
/* Header */
.page_content_underconstruction:nth-child(2) {
    height: 30%;
    width: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.section_underconstruction h1 {
    font-size: 5rem;
}
.section_underconstruction h2 {
    font-size: 3.75rem;
}
.section_underconstruction h3 {
    font-size: 2.5rem;
}

/* Under Construction Page - Section 3 */
/* Content Description */
.page_content_underconstruction:nth-child(3) {
    height: 50%;
    width: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.underconstruction-wrapper-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.underconstruction-wrapper-paragraphs {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 10vw;
    width: 100%;
    height: 53vh;
    box-sizing: border-box;
}


/* Description Section */

.underconstruction_p {
    font-family: serif;
    font-size: 1.5rem;
    padding: 0 5%; /* instead of 12.5rem / 200px */
    text-align: center;
}

.underconstruction_p1 {
    font-size: 1.625rem;
    text-align: center;
    padding: 0.5rem 3.5vw;
}
.underconstruction_p2 {
    font-size: 1.75rem;
    text-align: center;
    padding: 0.5rem 3vw;
}
.underconstruction_p3 {
    font-size: 2rem;
    text-align: center;
    padding: 0.5rem 2.5vw;
}

/* Call to Action Boxes */
.contact_underconstruction_p {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.contact_underconstruction_p_button {
    margin-top: 2rem; /* 50px */
    padding: 0.5rem 1.5rem; /* top-bottom 12px, sides 24px */
    font-size: 1.25rem;
    color: #E3D8BF;
    background-color: #191919;
    border: 0.125rem solid #303030;
    border-radius: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.contact_underconstruction_p_button:hover {
    background-color: #1b1b1b;
    color: #36c8a7;
    box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
}
.contact_underconstruction_p1 {
    font-size: 1rem;
}
.contact_underconstruction_p2 {
    font-size: 1.25rem;
}

/* Under Construction Page - Section 4 */
/* Footer */
.page_content_underconstruction:nth-child(4) {
    height: 10%;
    width: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.page_content_underconstruction {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E3D8BF;
}

/* ────────────────────────────────────────────────────────────────
   1B. MAIN SERVICES PAGE
    ───────────────────────────────────────────────────────────── */
.section_main_services {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Main Services Page - Section 1 */
/* Navigation Menu Bar */
.page_content_main_services:nth-child(1) {
    height: 10%;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #262626;
}

/* Main Services Page - Section 2 */
/* Header */
.main-services-wrapper {
    height: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: overlay; /* nice if supported */
    overflow-y: auto;    /* fallback */
    padding-right: 1rem;
    box-sizing: content-box;
    background-color: #0C2721;
    padding: 2rem 0;
}

.main-services-wrapper .page_content_main_services:nth-child(1) {
    width: 100%;
    padding: 5vh 0;
    
    background-color: #0C2721;
}
.main-services-wrapper .page_content_main_services:nth-child(1) h1 {
    font-size: 4.5rem;
    text-align: center;
    word-wrap: break-word;
}

/* Main Services Page - Section 3 */
/* Categories Groups */
.main-services-wrapper .page_content_main_services:nth-child(2) {
    width: 100%;
}
/* List Layout */
.vertical-layout {
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
}

.horizontal-layout {
    background-color: #191919;
    color: #ffffff;
    display: flex;
    align-items: stretch;
    border: 0.0625rem solid #195548;
    border-radius: 3.125rem; /* 50px */
    padding: 0;
    margin: 4% 0 0 0;
    flex-wrap: wrap;      /* ⇦ NEW */
    opacity: 100%;
    
}
.horizontal-layout:hover {
    box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
}


/* ───────────  business logo  ─────────── */
.card-part-1 {
    flex: 2 1 8rem;
    border-top-left-radius: 3.125rem;
    border-bottom-left-radius: 3.125rem;
    border-right: 0;
    border-bottom: 0;
    overflow: hidden;
    min-width: 16rem; /* 256px */
    max-width: 16rem;
    min-height: 16rem;
    max-height: 16rem;
}

/* ───────────  Description  ──────────── */
.card-part-2 {
    flex: 3 1 33rem;
    /*background-color: #193C35;*/
    background-color: #193C35;
    border-left: 1px solid #0C2721;
    flex-direction: column;
    padding: 0.5rem 0.5rem;
}

.card-part-2 .p1 {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: left;
    margin: 1rem 0.5rem;
}
.card-part-2 .p2 {
    color: #E3D8BF;
    font-weight: bold;
    font-size: 1rem;
    text-align: left;
    margin: 1rem 0.5rem;
}
.card-part-2 .p3 {
    color: #ffffff;
    font-family: sans-serif;
    font-size: 1.2rem;
    text-align: left;
    margin: 1rem 0.5rem;
}

.category-buttons-inline-ms {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.category-buttons-inline-ms .category-button-ms {
    background-color: #191919;
    color: #E3D8BF;
    border: 0.125rem solid #303030;
    border-radius: 1.25rem;
    padding: 0.375rem 0.875rem; /* 6px, 14px */
    font-size: 1rem;
    font-family: sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0 0.5rem 0.5rem;
}
.category-buttons-inline-ms .category-button-ms:hover {
    background-color: #1b1b1b;
    color: #36c8a7;
    box-shadow: 0 0.125rem 0.125rem #36c8a7;
}

/* ───────────  Location  ─────────── */
.card-part-3 {
    flex: 1 1 18rem;
    /*background-color: #193C35;*/
    color: #ffffff;
    background-color: #193C35;
    border-top-left-radius: 0;
    border-right: 1px solid #0C2721;
    align-items: flex-end;
    justify-content: flex-end;
}
.card-part-3-1 {
    text-align: right;
    font-size: 1.4rem;
    font-family: sans-serif;
    align-items: flex-end;
    justify-content: flex-end;
    margin: 5% 5%;
}
.card-part-3-2 {
    text-align: right;
    font-size: 1.4rem;
    font-family: sans-serif;
    align-items: flex-end;
    justify-content: flex-end;
    margin: 5% 5%;
}
.card-part-3-3 {
    text-align: right;
    font-size: 1.4rem;
    align-items: flex-end;
    justify-content: flex-end;
    margin: 5% 5%;
}
.card-part-3-3 p a {
    color: #63ffa5;
}
.card-part-3o {
    color: #193C35;
    background-color: #193C35;
}

/* ───────────  Social Media  ─────────── */
.card-part-4 {
    display: flex;
    flex: 0 0  4rem;
    align-items: center;
    justify-content: flex-start;
    margin: 1% 0.5% 1% 0;
    flex-direction: column;
}
/* ───────────  Business Card Overlay (Base) ─────────── */
#businessModal.modal-overlay {
    display: none; /* hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(12, 12, 12, 0.9); /* slightly darker overlay */
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
}

/* Modal Card Container */
#businessModal .modal-content {
    position: relative;
    background-color: #1b1b1b;
    color: #E3D8BF;
    border-radius: 1.75rem; /* 50px */
    box-shadow: 0 0 1.5rem rgba(255, 255, 255, 0.15);
    width: 90%;
    max-width: 90%;
    height: 90%;
    max-height: 90vh;

    padding: 0;
    margin: 0 1rem;
    
    box-sizing: border-box;
    text-align: left;
    overflow-y: auto;
    
    /* Scrollbar hidden but still scrollable */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.modal-header-bar {
    position: sticky;
    top: 0;
    background: #171717;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

.modal-header-bar .close-modal {
    background: none;
    border: none;
    color: #E3D8BF;
    font-size: 2rem;
    cursor: pointer;
    position: static; 
    padding: 0 1rem;
}

/* Modal Typography */
/* Optional: Divider Line */
#businessModal hr {
    border: none;
    border-top: 1px solid #444;
    margin: 1.5rem 0;
}

/* ───────────  Business Card Layout Grid (Content) ─────────── */
.modal-business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    width: 100%;
    margin-bottom: 1rem;
}

 /* Business Info 1 */
.modal-business-info-1 {
    color: #E3D8BF;
    padding: 1rem 0 0 1rem;
}
.modal-business-header {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
}
.modal-business-services {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}
.modal-business-info-headings {
    font-family: sans-serif;
    color: #FFFFFF;
    font-size: 1.2rem;
}
.modal-business-info-address {
    font-size: 1.4rem;
    color: #FFFFFF;
}
.modal-business-info-phone {
    font-size: 1.4rem;
    color: #FFFFFF;
}

 /* Business Website Link */
.modal-business-info-website {
    margin: 1rem 0;
    padding: 0.5rem 1.25rem;
    color: #262626;
    background-color: #191919;
    border: 0.125rem solid #303030;
    border-radius: 1rem;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.6rem;
    text-decoration: none;
    font-size: 1.25rem;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.modal-business-info-website:hover {
    background-color: #1b1b1b;
    color: #36c8a7;
    box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
}

 /* Business Image Gallery */
/* Carousel Container With Arrows */
.modal-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 0 0 0;
}

/* Modal Image Gallery Scroll Strip */
.modal-business-gallery {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.75rem;
    padding: 1.5rem 0 0 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin: 1rem 0;
    max-width: 50%; /* 4 images * 64px + spacing */

    /* Scrollbar hidden but still scrollable */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    scroll-padding-left: 0.5rem; /* or try 8px or 1rem */
}

.modal-business-gallery img,
.modal-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
  scroll-snap-align: start;
  border: 1px solid #333;
  transition: transform 0.2s ease, border 0.2s ease;
  cursor: pointer;
}

.modal-business-gallery img:hover,
.modal-thumb:hover {
  transform: scale(1.05);
}

/* Highlight Active Thumbnail */
.modal-thumb.active {
  border: 2px solid #36c8a7;
  transform: scale(1.05);
}

/* Carousel Navigation Arrows */
.carousel-nav-left {
  background: none;
  border: none;
  font-size: 2rem;
  color: #E3D8BF;
  cursor: pointer;
  transition: color 0.2s ease;
  margin: 0 1rem 0 0;
}

.carousel-nav-right {
  background: none;
  border: none;
  font-size: 2rem;
  color: #E3D8BF;
  cursor: pointer;
  transition: color 0.2s ease;
  margin: 0 0 0 1rem;
}

.carousel-nav:hover {
  color: #ffffff;
}

/* Main Zoomable Image */
.modal-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

#modal-carousel-img {
  max-height: 300px;
  border-radius: 0.75rem;
  transition: transform 0.35s ease;
}

.zoom-bounce {
  animation: zoomBounce 0.35s ease;
}

@keyframes zoomBounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* Image Preview Modal */
.image-preview-modal {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  max-width: 80vw;
  max-height: 95vh;
}

#imagePreviewModal img {
  max-width: 75%;
  max-height: 75%;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0,0,0,0.6);
}

/* Scrollbar for WebKit browsers */
.modal-business-gallery::-webkit-scrollbar {
    height: 8px;
}
.modal-business-gallery::-webkit-scrollbar-track {
    background: #1b1b1b;
}
.modal-business-gallery::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 4px;
}

/* Business Hours */
.modal-business-hours {
  margin-top: 0;
}
.modal-business-hours p {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.hours-table {
  width: 50%;
  border-collapse: collapse;
  font-size: 1rem;
  color: #ddd;
}
.hours-table td {
  padding: 0.3rem 0.5rem;
}
.hours-table .day {
  font-weight: 600;
  color: #E3D8BF;
  width: 40%;
}
.hours-table .time {
  color: #aaa;
  text-align: right;
}

 /* Business Info 2 */
 /* Business Map */
.modal-business-info-2 {
    color: #E3D8BF;
    padding: 1rem 0 0 1rem;
}
.modal-business-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0.25rem 0 0 0.25rem;
    padding-right: 1rem; /* prevents overlap with close button */
}
.modal-business-map hr,
.modal-business-map p,
.modal-business-map ul {
    margin: 0;
    gap: 0;
    padding: 0;
}

 /* Business Description */
.modal-business-info-description {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin: 0.5rem 0 0.5rem 0;
}

 /* Business Category Buttons */
 .modal-business-category-buttons-inline-ms {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.modal-business-category-button {
    color: #E3D8BF;
    background-color: #191919;
    border: 0.125rem solid #303030;
    border-radius: 1rem; /* 20px */
    padding: 0.5rem 1.5rem; /* top-bottom 12px, sides 24px */
    font-size: 1.25rem;
    font-family: serif;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.modal-business-category-button:hover {
    background-color: #1b1b1b;
    color: #36c8a7;
    box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
}

.modal-business-category-buttons-inline-ms .modal-business-category-button {
    background-color: #191919;
    color: #E3D8BF;
    border: 0.125rem solid #303030;
    border-radius: 1.25rem;
    padding: 0.375rem 0.875rem; /* 6px, 14px */
    font-size: 1rem;
    font-family: sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.5rem 0.5rem 0.5rem 0;
}
.modal-business-category-buttons-inline-ms .modal-business-category-button:hover {
    background-color: #1b1b1b;
    color: #36c8a7;
    box-shadow: 0 0.125rem 0.125rem #36c8a7;
}

/* Main Services Page - Section 4 */
/* Footer */
.main-services-wrapper .page_content_main_services:nth-child(3) {
    width: 100%;
    height: 10%;
    flex-shrink: 0;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.page_content_main_services {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E3D8BF;
}

/* #################### 2. DPI COMPENSATION #################### */
/* 125 % */
@media (min-resolution:120dpi) {
    html {
        font-size: 80%;
    }
}
/* 150 % */
@media (min-resolution:144dpi) {
    html {
        font-size: 66.667%;
    }
}
/* 175 % */
@media (min-resolution:168dpi) {
    html {
        font-size: 57.143%;
    }
}

/* #################### 3. VIEW-PORT HELPER CLASSES #################### */
/* Classes are toggled by viewport-scale.js */
/* ──  Narrow laptops / split-screen  ─────────────────────────────── */
/* laptop split-screen / narrow 1280-px layouts */
.vw-1280 .sidebar-open #mySidenav { 
    width: 20%;
}
.vw-1280 .carousel-button {
    width: 26rem;
    height: 14rem;
}
.vw-1280 .a_home_box_1 img {
    width: 5rem;
    height: 5rem;
}
.vw-1280 .category-wrapper h1,
.vw-1280 .about-wrapper-header h1,
.vw-1280 .underconstruction-wrapper-header h1 {
    font-size: 4rem;
}
.vw-1280 .category-wrapper h2,
.vw-1280 .about-wrapper-header h2,
.vw-1280 .underconstruction-wrapper-header h2 {
    font-size: 2.2rem;
}
.vw-1280 .category-button-ms,
.vw-1280 .contact_p_button,
.vw-1280 .contact_underconstruction_p_button {
    font-size: 1.125rem;
    padding: .5rem 1.2rem;
}

/* ──  ≤ 400 px  “tiny” phones  ─────────────────────────────────── */
@media (min-width: 301px) and (max-width: 400px) {
    /* ────────────────────────────────────────────────────────────────
    00. NAVIGATION MENU BAR
    ───────────────────────────────────────────────────────────── */
    .xs-phone .blb_logo {
        width: 7.8rem; /* 105.6px */
    }
    .xs-phone .menu_icon {    
        width: 5.4rem; /* 64px */
    }

    /* ────────────────────────────────────────────────────────────────
    Navigation
    ───────────────────────────────────────────────────────────── */
    /* Side Menu */
    .xs-phone .nav_main {
        padding: 2rem 2.55rem;
    }

    /* Side Menu */
    .xs-phone .sidebar-open #mySidenav {
        width: 75%; 
    }
    .xs-phone .nav_side {
        border-top-left-radius: 3rem;
        border-bottom-left-radius: 3rem;
    }

    .xs-phone .nav_content:nth-child(1) {
        align-items: center;
        justify-content: space-between; /* space between left and right */
        padding: 1.5rem;
        font-size: 5rem;
    }

    .xs-phone .a_left, .xs-phone .a_right {
        display: flex;
        align-items: center;
        width: auto;
    }

    .xs-phone .a_left {
        justify-content: flex-start;
    }

    .xs-phone .a_right {
        display: flex;
        justify-content: flex-end;
        align-items: center;   /* ✅ vertical centering */
        height: 100%;          /* make sure it has height context */
    }

    .xs-phone .closebtn_side {
        color: #FFFFFF;
        padding-left: 1rem;
        text-decoration: none;
    }

    .xs-phone .heartbtn_side {
        position: relative;
        color: #FF69B4;
        padding-right: 1.5rem;
        text-decoration: none;
        top: 0.15rem;
    }

    .xs-phone .heartbtn_side img {
        display: block;
        height: 2.5rem;          /* or whatever size you want */
        }

    .xs-phone .nav_content:nth-child(2) { 
        height: 10%;
        width: 100%;
        align-content: center;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .xs-phone .nav_content:nth-child(2) h1 {
        font-size: 4rem; 
    }
    .xs-phone .nav_content:nth-child(3) { 
        align-items: flex-start;   /* Align items to the left*/
        flex-direction: column;
        justify-content: flex-start;
        gap: 1rem;
        padding: 2rem;
    }

    .xs-phone .nav_content:nth-child(3) a {
        font-size: 3rem;
    }

    .xs-phone .nav_content:nth-child(4) { 
        align-items: center;
        justify-content: center;
    }

    /* Use flex-grow ratios — these will perfectly fill the height */
    /* Shared style for all sections */
    .xs-phone .nav_content {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
    }

    /* Social Media */
    .xs-phone .face_img_2 {
        width: 6rem; /* 64px */
    }

    .xs-phone .face_btn, .xs-phone .insta_btn, .xs-phone .blank_img {
        padding-bottom: 0.75rem;
    }
    .xs-phone .face_img, .xs-phone .insta_img, .xs-phone .blank_img {
        width: 2.25rem; /* 32px */
    }

    /* ────────────────────────────────────────────────────────────────
    Modal Overlay
    ───────────────────────────────────────────────────────────── */
    .xs-phone .modal-overlay {
        justify-content:center;
        align-items: flex-start;
    }

    /* Modal Content */
    .xs-phone .modal-content {
        top: 2rem;
        padding: 2rem;
    }

    /* Search Input */
    .xs-phone .search-input {
        font-size: 2rem;
        width: 100%;
        max-width: 90%;
    }

    /* Close Button */
    .xs-phone .close-modal {
        top: -0.75rem;
        right: -0.25rem;
        font-size: 3rem;
    }

    .xs-phone .suggestions-list {
        font-size: 1.75rem;
    }

    .xs-phone .suggestions-list li:hover {
        background-color: #2a2a2a;
    }

    .xs-phone .suggestions-list img {
        height: 1.2rem;
        width: auto;
        flex-shrink: 0;
    }

    .xs-phone .suggestions-list::-webkit-scrollbar {
        width: 8px;
    }
    .xs-phone .suggestions-list::-webkit-scrollbar-track {
        background: #1b1b1b;
    }
    .xs-phone .suggestions-list::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 4px;
    }

    .xs-phone .search-tooltip {
        top: 5rem;
        font-size: 1.25rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1A. HOME PAGE
    ───────────────────────────────────────────────────────────── */

    /* Home Page - Section 1 */
    /* Navigation Menu Bar */
    .xs-phone .page_content_home:nth-child(1) {
        height: 10%;
        align-items: center;
        justify-content: center;
    }

    /* Home Page - Section 2 */
    /* Header */
    .xs-phone .page_content_home:nth-child(2) {
        align-items: center;
        justify-content: center;
    }
    .xs-phone .page_content_home:nth-child(2) h1 {
        font-size: 5.5rem;
        padding: 0 2rem
    }

    /* Home Page - Section 3 */
    /* Carousel Main Buttons */
    .xs-phone .page_content_home:nth-child(3) {
        height: 60%;
        width: 100%;
    }

    .xs-phone .carousel-wrapper {
        perspective: 1600px;
    }

    .xs-phone .carousel-item {
        margin: -8.15rem; /* -84px */
    }

    .xs-phone .a_home_box_1 img {
        filter: invert();
        width: 11rem; /* 100px */
        height: 11rem;
    }

    .xs-phone .a_home_box_1_text p{
        margin-top: 1rem;
        font-size: 2.25rem; 
    }

    /* Carousel Side Buttons */
    .xs-phone .carousel-button {
        height: 20.125rem; /* 290px */
        width: 15.125rem; /* 514px */
    }
    /* Home Page - Section 4 */
    /* Footer */
    .xs-phone .page_content_home:nth-child(4) {
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }

    /* ────────────────────────────────────────────────────────────────
   1A. CALENDAR PAGE
    ───────────────────────────────────────────────────────────── */
    .xs-phone .section_calendar {
        height: 100vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* Calendar Page - Section 1 */
    /* Navigation Menu Bar */
    .xs-phone .page_content_calendar:nth-child(1) {
        height: 10%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #262626;
    }

    /* Calendar Page - Section 2 */
    /* Header */
    .xs-phone .page_content_calendar:nth-child(2) {
        height: 20%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .xs-phone .page_content_calendar:nth-child(2) h1 {
        position: relative;
        font-size: 4.5rem;
        text-align: center;
        padding-top: 1rem;
    }

    /* Calendar Page - Section 3 */
    /* Main Calendar */
    .xs-phone .page_content_calendar:nth-child(3) {
        height: 75%;
        width: 90%;
        padding: 2rem;
        padding-top: 4rem;
        filter: grayscale(50%);
        filter: hue-rotate(60deg);
    }

    .xs-phone .page_content_calendar:nth-child(3) iframe{
        background: #191919;
        background-color: #191919;
        filter: invert(0.9);
        backdrop-filter: hue-rotate(90deg);
        width: 360px; 
        height: 580px;
        border-radius: 1.25rem;
        outline: 0.5rem solid #ffffff;
    }

    /* Calendar Page - Section 4 */
    /* Footer */
    .xs-phone .page_content_calendar:nth-child(4) {
        height: 15%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 2rem;
        font-size: 2rem;
    }

    .xs-phone .page_content_calendar {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #E3D8BF;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. CATEGORY PAGE
    ───────────────────────────────────────────────────────────── */

    /* Category Page - Section 1 */
    /* Navigation Menu Bar */
    .xs-phone .page_content_category:nth-child(1) {
        align-items: center;
        justify-content: center;
    }

    /* Category Page - Section 2 */
    /* Header */
    .xs-phone .category-wrapper {
        padding-right: 0.25rem;
    }

    .xs-phone .category-wrapper .page_content_category:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    /* Category Page - Section 3 */
    /* Categories Groups */
    .xs-phone .category-wrapper .page_content_category:nth-child(2) {
        width: 100%;
    }
    .xs-phone .category-wrapper .page_content_category:nth-child(2) h2 {
        font-size: 3.75rem;
    }

    /* Category Buttons */
    .xs-phone .category-buttons-inline {
        gap: 2rem; /* 16px */
        padding: 0 2.5vw;
        flex-direction: column;
    }
    
    .xs-phone .category-button {
        border-radius: 1.5rem; /* 20px */
        font-size: 3rem;
    }

     .xs-phone .dropdown-header {
        padding: 0.75em;
        cursor: pointer;
        width: 100%;
        border: none;
        font-size: 3em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        background-color: #0C2721;
    }

    .xs-phone .dropdown-content {
        display: none;
        padding: 1em;
        background-color: #0C2721;
    }

     .xs-phone .dropdown-content.visible {
        display: block;
    }

     .xs-phone .category-button {
        display: inline-block;
        margin: 0.25em;
        padding: 0.5em 1em;
        border: none;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.75rem;
    }

     .xs-phone .category-button:hover {
            background-color: #1b1b1b;
            color: #36c8a7;
            box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
    }

    /* Category Page - Section 4 */
    /* Footer */
    .xs-phone .category-wrapper .page_content_category:nth-child(3) {
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }

    /* ################# About Page - Start ################ */
    /* About Page - Section 1 */
    /* Navigation Menu Bar */
    .xs-phone .page_content_about:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    /* About Page - Section 2 */
    /* Header */
    .xs-phone .about-wrapper {
        height: 90%;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: overlay; /* nice if supported */
        overflow-y: auto;    /* fallback */
        padding-right: 1rem;
        box-sizing: content-box;
    }
    .xs-phone .about-wrapper .page_content_about:nth-child(1) {
        width: 100%;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 7.5vh 0 5vh 0;
    }

    .xs-phone .section_about h1 {
        font-size: 6rem;
        text-align: center;
    }
    .xs-phone .section_about h2 {
        font-size: 4.75rem;
    }
    .xs-phone .section_about h3 {
        font-size: 3.5rem;
    }

    /* About Page - Section 3 */
    /* Content Description */
    .xs-phone .about-wrapper .page_content_about:nth-child(2) {
        width: 100%;
    }

    .xs-phone .about-wrapper-paragraphs {
        padding: 0 2.5vw 20vw 2.5vw;
    }

    /* Description Section */
    .xs-phone .about_p {
        padding: 0 1.5%; /* instead of 12.5rem / 200px */
        text-align: left;
        font-size: 2.25rem;
    }

    .xs-phone .about_p1 {
        text-align: left;
        padding: 2vh 3.5vw 0.75vh 3.5vw;
    }
    .xs-phone .about_p2 {
        text-align: left;
    }
    .xs-phone .about_p3 {
        text-align: left;
    }

    /* Call to Action Boxes */
    .xs-phone .contact_p_button {
        padding: 1.5vw 12.5vh; /* top-bottom 12px, sides 24px */
        font-size: 2.25rem;
        border-radius: 1.5rem;
    }
    .xs-phone .contact_p1 {
        font-size: 1.5rem;
    }
    .xs-phone .contact_p2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    /* About Page - Section 4 */
    /* Footer */
    .xs-phone .about-wrapper .page_content_about:nth-child(3) {
        position: relative;
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        padding: 1vh 0 0 0;
        bottom: 3.5vh;
    }

    /* ################# Under Construction Page - Start ################ */
    /* Under Construction Page - Section 1 */
    /* Navigation Menu Bar */
    .xs-phone .page_content_underconstruction:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    /* Under Construction Page - Section 2 */
    /* Header */
    .xs-phone .page_content_underconstruction:nth-child(2) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .xs-phone .section_underconstruction h1 {
        font-size: 5rem;
    }
    .xs-phone .section_underconstruction h2 {
        font-size: 3.75rem;
    }
    .xs-phone .section_underconstruction h3 {
        font-size: 2.5rem;
    }

    /* Under Construction Page - Section 3 */
    /* Content Description */
    .xs-phone .page_content_underconstruction:nth-child(3) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .xs-phone .underconstruction-wrapper-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .xs-phone .underconstruction-wrapper-paragraphs {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 5vw;
        width: 100%;
        height: 63vh;
        box-sizing: border-box;
    }

    /* Description Section */
    .xs-phone .underconstruction_p {
        padding: 0 1.25%; /* instead of 12.5rem / 200px */
        text-align: center;
    }

    .xs-phone .underconstruction_p1 {
        font-size: 2rem;
    }
    .xs-phone .underconstruction_p2 {
        font-size: 2.25rem;
    }
    .xs-phone .underconstruction_p3 {
        font-size: 2.5rem;
    }

    /* Call to Action Boxes */
    .xs-phone .contact_underconstruction_p_button {
        padding: 1.5vw 12.5vh; /* top-bottom 12px, sides 24px */
        font-size: 2.25rem;
        border-radius: 1.5rem;
    }
    .xs-phone .contact_underconstruction_p1 {
        font-size: 1.5rem;
    }
    .xs-phone .contact_underconstruction_p2 {
        font-size: 1.75rem;
    }

    /* Under Construction Page - Section 4 */
    /* Footer */
    .xs-phone .page_content_underconstruction:nth-child(4) {
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. MAIN SERVICES PAGE
        ───────────────────────────────────────────────────────────── */
    /* Main Services Page - Section 1 */
    /* Navigation Menu Bar */
    .xs-phone .page_content_main_services:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    /* Main Services Page - Section 2 */
    .xs-phone .main-services-wrapper {
        padding: 4rem 0;
    }
    /* Header */
    .xs-phone .main-services-wrapper .page_content_main_services:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;

    }
    .xs-phone .main-services-wrapper .page_content_main_services:nth-child(1) h1 {
        font-size: 3.25rem;
    }

    /* Main Services Page - Section 3 */
    /* Categories Groups */
    .xs-phone .main-services-wrapper .page_content_main_services:nth-child(2) {
        width: 100%;
    }
    /* List Layout */
    .xs-phone .vertical-layout {
        display: flex;
        flex-direction: column;
        padding: 2rem 5vw;
    }
    .xs-phone .horizonal-layout {
        display: flex;
        margin: 4% 0 0 0;
    }

    /* ───────────  business logo  ─────────── */
    .xs-phone .card-part-1 {
        border-bottom-left-radius: 0;
        border-right: 1px solid #0C2721;
        border-bottom: 1px solid #0C2721;
        min-width: 14rem; /* 192px */
        max-width: 14rem;
        min-height: 14rem;
        max-height: 14rem;
    }

    /* ───────────  Description  ──────────── */
    .xs-phone .card-part-2 .p1 {
        font-size: 2rem;
    }
    .xs-phone .card-part-2 .p2 {
        font-size: 1.6rem;
    }
    .xs-phone .card-part-2 .p3 {
        font-size: 1.8rem;
        margin: 1.5rem 0.5rem;
    }
    .xs-phone .category-buttons-inline-ms .category-button-ms {
        font-size: 1.4rem;
    }

    /* ───────────  Location  ─────────── */
    .xs-phone .card-part-3 {
        background-color: #191919;
        border-top-right-radius: 3.125rem;
        border-right: 0;
    }
    .xs-phone .card-part-3-1 {
        font-size: 2.1rem;
        margin: 5% 7.5%;
    }
    .xs-phone .card-part-3-2 {
        font-size: 1.5rem;
        margin: 5% 7.5%;
    }
    .xs-phone .card-part-3-3 {
        font-size: 1.7rem;
        margin: 5% 7.5%;
    }
    .xs-phone .card-part-3-3 p a {
        color: #63ffa5;
    }
    .xs-phone .card-part-3o {
        color: #191919;
        background-color: #191919;
    }

    /* ───────────  Social Media  ─────────── */
    .xs-phone .card-part-4 {
        align-items: center;
        justify-content: center;
        gap: 5rem;
        margin: 3.5% 20% 1% 20%;
        flex-direction: row;
    }

    /* ───────────  Business Card Overlay (Base) ─────────── */
    /* Modal Card Container */
    .xs-phone #businessModal .modal-content {
        padding: 0;
        margin: 0 1rem;
        top: 0rem;
        width: 90%;
        max-width: 90vw;
        height: 90%;
        max-height: 90vh;
    }

    .xs-phone .modal-header-bar {
        padding: 0.5rem 1rem;
        border-bottom: 1px solid #444;
        align-items: center;
    }

    .xs-phone .modal-header-bar .close-modal {
        font-size: 3rem;
        padding: 0 0.25rem;
    }

    /* Modal Typography */

    /* Optional: Divider Line */
    .xs-phone #businessModal hr {
        border: none;
        border-top: 1px solid #444;
        margin: 1.5rem 0;
    }

    /* ───────────  Business Card Layout Grid (Content) ─────────── */
    .xs-phone .modal-business-grid {
        grid-template-columns: 1fr;
    }

     /* Business Info 1 */
     .xs-phone .modal-business-info-1 {
        color: #E3D8BF;
        padding: 1rem 0 0 1rem;
        max-width: 330px;
    }
    .xs-phone .modal-business-header {
        font-size: 4rem;
        padding-top: 1rem;
    }
    .xs-phone .modal-business-services {
        font-size: 2.5rem;
        font-style: italic;
        margin-bottom: 0.5rem;
    }
    .xs-phone .modal-business-info-headings {
        color: #E3D8BF;
        font-size: 1.6rem;
        padding-top: 1rem;
    }
    .xs-phone .modal-business-info-address {
        font-size: 2rem;
    }
    .xs-phone .modal-business-info-phone {
        font-size: 2rem;
    }

     /* Business Website Link */
    .xs-phone .modal-business-info-website {
        margin: 2rem 0rem;
        padding: 0.5rem 1.25rem;
        background-color: #36c8a7;
        font-size: 1.8rem;
    }
    .xs-phone .modal-business-info-website:hover {
        color: #63ffa5;
        text-shadow: 0 0 0.5rem #63ffa5;
    }
    
     /* Business Image Gallery */
    .xs-phone .modal-business-gallery {
        max-width: 100%; /* 4 images * 64px + spacing */
        margin: 1rem 0;
    }
    .xs-phone .modal-business-gallery img {
        scroll-snap-align: start;
    }

    .xs-phone .modal-business-gallery img,
    .xs-phone .modal-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
    scroll-snap-align: start;
    border: 0 solid #333;
    transition: transform 0.2s ease, border 0.2s ease;
    cursor: pointer;
    }
    .xs-phone .modal-thumb {
        padding: 1rem;
    }

    .xs-phone .modal-business-gallery img:hover,
    .xs-phone .modal-thumb:hover {
    transform: scale(1);
    }

    /* Highlight Active Thumbnail */
    .xs-phone .modal-thumb.active {
    border: 2px solid #36c8a7;
    transform: scale(1);
    }

    /* Carousel Navigation Arrows */
    .xs-phone .carousel-nav-left {
        background: none;
        border: none;
        font-size: 2rem;
        color: #E3D8BF;
        cursor: pointer;
        transition: color 0.2s ease;
        margin: 0 2rem 0 0;
    }

    .xs-phone .carousel-nav-right {
        background: none;
        border: none;
        font-size: 2rem;
        color: #E3D8BF;
        cursor: pointer;
        transition: color 0.2s ease;
        margin: 0 0 0 2rem;
    }

    .xs-phone .carousel-nav:hover {
        color: #ffffff;
    }

    /* Main Zoomable Image */
    .xs-phone .modal-carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }

    .xs-phone #modal-carousel-img {
        max-height: 300px;
        border-radius: 0.75rem;
        transition: transform 0.35s ease;
    }

    .xs-phone .zoom-bounce {
        animation: zoomBounce 0.35s ease;
    }

    @keyframes zoomBounce {
        0%   { transform: scale(1); }
        50%  { transform: scale(1.12); }
        100% { transform: scale(1); }
    }

    /* Image Preview Modal */
    .xs-phone .image-preview-modal {
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        max-width: 90vw;
        max-height: 90vh;
        padding-top: 75%;
    }
    
    /* The actual preview image */
    .xs-phone #imagePreviewContent {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        justify-content: center;
        align-items: center;
    }
    
    .xs-phone #imagePreviewModal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .xs-phone #imagePreviewModal img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 1rem;
        box-shadow: 0 0 1rem rgba(0,0,0,0.6);
        
    }
    /* Scrollbar for WebKit browsers */
    .xs-phone .modal-business-gallery::-webkit-scrollbar {
        height: 8px;
    }
    .xs-phone .modal-business-gallery::-webkit-scrollbar-track {
        background: #1b1b1b;
    }
    .xs-phone .modal-business-gallery::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 4px;
    }

    /* Business Hours */
    .xs-phone .modal-business-hours {
        margin-top: 1rem;
    }

    .xs-phone .modal-business-hours p {
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .xs-phone .hours-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 2rem;
        color: #ddd;
    }

    .xs-phone .hours-table td {
        padding: 0.3rem 0.5rem;
    }

    .xs-phone .hours-table .day {
        font-weight: 600;
        color: #FFFFFF;
        width: 40%;
    }

    .xs-phone .hours-table .time {
        color: #aaa;
        text-align: right;
    }

    /* Business Info 2 */
    /* Business Map */
    .xs-phone .modal-business-map {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-right: 1rem; /* prevents overlap with close button */
        height: 250px;
    }
    .xs-phone .modal-business-map hr,
    .xs-phone .modal-business-map p,
    .xs-phone .modal-business-map ul {
        margin-left: 0.25rem;
    }

    
     /* Business Description */
    .xs-phone .modal-business-info-description {
        color: #FFFFFF;
        font-size: 2rem;
    }

    /* Modal Business Category Buttons */

    .xs-phone .modal-business-category-buttons-inline {
        gap: 2rem; /* 16px */
        padding: 0 2.5vw;
        flex-direction: column;
    }
    .xs-phone .modal-business-info-headings-services {
        padding-bottom: 1rem;
    }
    .xs-phone .modal-business-category-button {
        color: #E3D8BF;
        background-color: #191919;
        border: 0.125rem solid #303030;
        border-radius: 1rem; /* 20px */
        padding: 0.5rem 1.5rem; /* top-bottom 12px, sides 24px */
        font-size: 1.6rem;
        font-family: serif;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }
    .xs-phone .modal-business-category-button:hover {
        background-color: #1b1b1b;
        color: #36c8a7;
        box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
    }
    .xs-phone .modal-business-category-buttons-inline-ms .modal-business-category-button {
        background-color: #191919;
        color: #E3D8BF;
        border: 0.125rem solid #303030;
        border-radius: 1.25rem;
        padding: 0.375rem 0.875rem; /* 6px, 14px */
        font-size: 1.6rem;
        font-family: sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0 0 0.5rem 0.5rem;
    }
    .xs-phone .modal-business-category-buttons-inline-ms .modal-business-category-button:hover {
        background-color: #1b1b1b;
        color: #36c8a7;
        box-shadow: 0 0.125rem 0.125rem #36c8a7;
    }

    /* Main Services Page - Section 4 */
    /* Footer */
    .xs-phone .main-services-wrapper .page_content_main_services:nth-child(3) {
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   ─────────────────────────────────────────────────────────────
    NAVIGATION MENU BAR
   ───────────────────────────────────────────────────────────── 
   ───────────────────────────────────────────────────────────── */

@media(min-width: 401px) and (max-width: 600px) {
    /* ────────────────────────────────────────────────────────────────
   00. NAVIGATION MENU BAR
   ───────────────────────────────────────────────────────────── */
    .sm-phone .blb_logo {
        width: 8.5rem; /* 105.6px */
    }
    .sm-phone .menu_icon {    
        width: 5.8rem; /* 64px */
    }

    /* ────────────────────────────────────────────────────────────────
    Navigation
    ───────────────────────────────────────────────────────────── */
    .sm-phone .nav_main {
        padding: 2rem 2.75rem;
    }

    /* Side Menu */
    .sm-phone .sidebar-open #mySidenav {
        width: 75%; 
    }
    .sm-phone .nav_side {
        border-top-left-radius: 3rem;
        border-bottom-left-radius: 3rem;
    }

    .sm-phone .nav_content:nth-child(1) {
        align-items: center;
        justify-content: space-between; /* space between left and right */
        padding: 1.5rem;
        font-size: 5rem;
    }

    .sm-phone .a_left, .xs-phone .a_right {
        display: flex;
        align-items: center;
        width: auto;
    }

    .sm-phone .a_left {
        justify-content: flex-start;
    }

    .sm-phone .a_right {
        display: flex;
        justify-content: flex-end;
        align-items: center;   /* ✅ vertical centering */
        height: 100%;          /* make sure it has height context */
    }

    .sm-phone .closebtn_side {
        color: #FFFFFF;
        padding-left: 1.25rem;
        text-decoration: none;
    }

    .sm-phone .heartbtn_side {
        position: relative;
        color: #FF69B4;
        padding-right: 1.75rem;
        text-decoration: none;
        top: 0.15rem;
    }

    .sm-phone .heartbtn_side img {
    display: block;
    height: 2.75rem;          /* or whatever size you want */
    }

    .sm-phone .nav_content:nth-child(2) { 
        height: 10%;
        width: 100%;
        align-content: center;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .sm-phone .nav_content:nth-child(2) h1 {
        font-size: 5rem;
    }
    .sm-phone .nav_content:nth-child(3) { 
        align-items: flex-start;   /* Align items to the left*/
        flex-direction: column;
        justify-content: flex-start;
        gap: 1rem;
        padding: 2rem;
        font-size: 3.5rem;
    }
    .sm-phone .nav_content:nth-child(4) { 
        align-items: center;
        justify-content: center;
    }

    .sm-phone .nav_content:nth-child(3) a {
        font-size: 3rem;
    }

    /* Use flex-grow ratios — these will perfectly fill the height */
    /* Shared style for all sections */
    .sm-phone .nav_content {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3.5rem;
    }

    /* Social Media */
    .sm-phone .face_img_2 {
        width: 7rem; /* 64px */
    }

    .sm-phone .face_btn, .xs-phone .insta_btn, .xs-phone .blank_img {
        padding-bottom: 0.75rem;
    }
    .sm-phone .face_img, .xs-phone .insta_img, .xs-phone .blank_img {
        width: 2.5rem; /* 32px */
    }

    /* ────────────────────────────────────────────────────────────────
    Modal Overlay
    ───────────────────────────────────────────────────────────── */
    .sm-phone .modal-overlay {
        justify-content:center;
        align-items: flex-start;
    }

    /* Modal Content */
    .sm-phone .modal-content {
        top: 2.25rem;
        padding: 2.25rem;
    }

    /* Search Input */
    .sm-phone .search-input {
        font-size: 2.25rem;
        width: 100%;
        max-width: 90%;
    }

    /* Close Button */
    .sm-phone .close-modal {
        top: -0.75rem;
        right: -0.25rem;
        font-size: 3rem;
    }

    .sm-phone .suggestions-list {
        font-size: 2.25rem;
    }

    .sm-phone .suggestions-list li:hover {
        background-color: #2a2a2a;
    }

    .sm-phone .suggestions-list img {
        height: 1.4rem;
        width: auto;
        flex-shrink: 0;
    }

    .sm-phone .suggestions-list::-webkit-scrollbar {
        width: 8px;
    }
    .sm-phone .suggestions-list::-webkit-scrollbar-track {
        background: #1b1b1b;
    }
    .sm-phone .suggestions-list::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 4px;
    }

    .sm-phone .search-tooltip {
        top: 5.5rem;
        font-size: 1.4rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1A. HOME PAGE
    ───────────────────────────────────────────────────────────── */

    /* Home Page - Section 1 */
    /* Navigation Menu Bar */
    .sm-phone .page_content_home:nth-child(1) {
        align-items: center;
        justify-content: center;
    }

    /* Home Page - Section 2 */
    /* Header */
    .sm-phone .page_content_home:nth-child(2) {
        align-items: center;
        justify-content: center;
    }
    .sm-phone .section_home h1 {
        font-size: 6rem;
    }

    /* Home Page - Section 3 */
    /* Carousel Main Buttons */
    .sm-phone .page_content_home:nth-child(3) {
        height: 60%;
        width: 100%;
    }

    .sm-phone .carousel-wrapper {
        perspective: 1600px;
    }

    .sm-phone .carousel-item {
        margin: -8.40rem; /* -84px */
    }

    .sm-phone .a_home_box_1 img {
        filter: invert();
        width: 11.75rem; /* 100px */
        height: 11.75rem;
    }

    .sm-phone .a_home_box_1_text p{
        margin-top: 1rem;
        font-size: 2.25rem; 
    }

    /* Carousel Side Buttons */
    .sm-phone .carousel-button {
        height: 18.125rem; /* 290px */
        width: 32.125rem; /* 514px */
    }
    /* Home Page - Section 4 */
    /* Footer */
    .sm-phone .page_content_home:nth-child(4) {
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
    }

    /* ────────────────────────────────────────────────────────────────
   1A. CALENDAR PAGE
    ───────────────────────────────────────────────────────────── */
    .sm-phone .section_calendar {
        height: 100vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* Calendar Page - Section 1 */
    /* Navigation Menu Bar */
    .sm-phone .page_content_calendar:nth-child(1) {
        height: 10%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #262626;
    }

    /* Calendar Page - Section 2 */
    /* Header */
    .sm-phone .page_content_calendar:nth-child(2) {
        height: 20%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sm-phone .page_content_calendar:nth-child(2) h1 {
        position: relative;
        font-size: 5rem;
        text-align: center;
        padding-top: 2rem;
    }

    /* Calendar Page - Section 3 */
    /* Main Calendar */
    .sm-phone .page_content_calendar:nth-child(3) {
        height: 750%;
        width: 90%;
        padding: 2rem;
        padding-top: 4rem;
        filter: grayscale(50%);
        filter: hue-rotate(60deg);
    }

    .sm-phone .page_content_calendar:nth-child(3) iframe{
        background: #191919;
        background-color: #191919;
        filter: invert(0.9);
        backdrop-filter: hue-rotate(90deg);
        width: 430px; 
        height: 540px;
        border-radius: 1.25rem;
        outline: 0.5rem solid #ffffff;
    }

    /* Calendar Page - Section 4 */
    /* Footer */
    .sm-phone .page_content_calendar:nth-child(4) {
        height: 15%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 2rem;
        font-size: 2rem;
    }

    .sm-phone .page_content_calendar {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #E3D8BF;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. CATEGORY PAGE
    ───────────────────────────────────────────────────────────── */

    /* Category Page - Section 1 */
    /* Navigation Menu Bar */
    .sm-phone .page_content_category:nth-child(1) {
        align-items: center;
        justify-content: center;
    }

    /* Category Page - Section 2 */
    /* Header */
    .sm-phone .category-wrapper {
        padding-right: 0.25rem;
    }

    .sm-phone .category-wrapper .page_content_category:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .sm-phone .category-wrapper .page_content_category:nth-child(1) h1 {
        font-size: 6rem;
    }

    /* Category Page - Section 3 */
    /* Categories Groups */
    .sm-phone .category-wrapper .page_content_category:nth-child(2) {
        width: 100%;
    }
    .sm-phone .category-wrapper .page_content_category:nth-child(2) h2 {
        font-size: 4.25rem;
    }

    /* Category Buttons */
    .sm-phone .category-buttons-inline {
        gap: 2rem; /* 16px */
        padding: 0 2.5vw;
        flex-direction: column;
    }
    
    .sm-phone .category-button {
        border-radius: 1.5rem; /* 20px */
        font-size: 3rem;
    }

     .sm-phone .dropdown-header {
        padding: 0.75em;
        cursor: pointer;
        width: 100%;
        border: none;
        font-size: 3em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        background-color: #0C2721;
    }

    .sm-phone .dropdown-content {
        display: none;
        padding: 1em;
        background-color: #0C2721;
    }

     .sm-phone .dropdown-content.visible {
        display: block;
    }

     .sm-phone .category-button {
        display: inline-block;
        margin: 0.25em;
        padding: 0.5em 1em;
        border: none;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.75rem;
    }

     .sm-phone .category-button:hover {
            background-color: #1b1b1b;
            color: #36c8a7;
            box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
    }

    /* Category Page - Section 4 */
    /* Footer */
    .sm-phone .category-wrapper .page_content_category:nth-child(3) {
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
    }

    /* ################# About Page - Start ################ */
    /* About Page - Section 1 */
    /* Navigation Menu Bar */
    .sm-phone .page_content_about:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    /* About Page - Section 2 */
    /* Header */
    .sm-phone .about-wrapper {
        height: 90%;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: overlay; /* nice if supported */
        overflow-y: auto;    /* fallback */
        padding-right: 1rem;
        box-sizing: content-box;
    }
    .sm-phone .about-wrapper .page_content_about:nth-child(1) {
        width: 100%;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 7.5vh 0 5vh 0;
    }

    .sm-phone .section_about h1 {
        font-size: 6.5rem;
        text-align: center;
    }
    .sm-phone .section_about h2 {
        font-size: 5.25rem;
    }
    .sm-phone .section_about h3 {
        font-size: 4rem;
    }

    /* About Page - Section 3 */
    /* Content Description */
    .sm-phone .about-wrapper .page_content_about:nth-child(2) {
        width: 100%;
    }

    .sm-phone .about-wrapper-paragraphs {
        padding: 0 2.5vw 20vw 2.5vw;
    }

    /* Description Section */
    .sm-phone .about_p {
        padding: 0 1.5%; /* instead of 12.5rem / 200px */
        text-align: left;
        font-size: 2.7rem;
    }

    .sm-phone .about_p1 {
        text-align: left;
        padding: 2vh 3.5vw 0.75vh 3.5vw;
    }
    .sm-phone .about_p2 {
        text-align: left;
    }
    .sm-phone .about_p3 {
        text-align: left;
    }

    /* Call to Action Boxes */
    .sm-phone .contact_p_button {
        padding: 1.5vw 12.5vh; /* top-bottom 12px, sides 24px */
        font-size: 2.75rem;
        border-radius: 1.75rem;
    }
    .sm-phone .contact_p1 {
        font-size: 2rem;
    }
    .sm-phone .contact_p2 {
        font-size: 2.25rem;
        padding: 0 3rem;
    }

    /* About Page - Section 4 */
    /* Footer */
    .sm-phone .about-wrapper .page_content_about:nth-child(3) {
        position: relative;
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2.5rem;
        padding: 1vh 0 0 0;
        bottom: 3.5vh;
    }

    /* ################# Under Construction Page - Start ################ */
    /* Under Construction Page - Section 1 */
    /* Navigation Menu Bar */
    .sm-phone .page_content_underconstruction:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    /* Under Construction Page - Section 2 */
    /* Header */
    .sm-phone .page_content_underconstruction:nth-child(2) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .sm-phone .section_underconstruction h1 {
        font-size: 6rem;
    }
    .sm-phone .section_underconstruction h2 {
        font-size: 4.75rem;
    }
    .sm-phone .section_underconstruction h3 {
        font-size: 3.5rem;
    }

    /* Under Construction Page - Section 3 */
    /* Content Description */
    .sm-phone .page_content_underconstruction:nth-child(3) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .sm-phone .underconstruction-wrapper-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .sm-phone .underconstruction-wrapper-paragraphs {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 5vw;
        width: 100%;
        height: 63vh;
        box-sizing: border-box;
    }

    /* Description Section */
    .sm-phone .underconstruction_p {
        padding: 0 1.25%; /* instead of 12.5rem / 200px */
        text-align: center;
    }

    .sm-phone .underconstruction_p1 {
        font-size: 3rem;
    }
    .sm-phone .underconstruction_p2 {
        font-size: 3.25rem;
    }
    .sm-phone .underconstruction_p3 {
        font-size: 3.5rem;
    }

    /* Call to Action Boxes */
    .sm-phone .contact_underconstruction_p_button {
        padding: 1.5vw 12.5vh; /* top-bottom 12px, sides 24px */
        font-size: 2.75rem;
        border-radius: 1.75rem;
    }
    .sm-phone .contact_underconstruction_p1 {
        font-size: 2rem;
    }
    .sm-phone .contact_underconstruction_p2 {
        font-size: 2.25rem;
    }

    /* Under Construction Page - Section 4 */
    /* Footer */
    .sm-phone .page_content_underconstruction:nth-child(4) {
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2.5rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. MAIN SERVICES PAGE
        ───────────────────────────────────────────────────────────── */
    /* Main Services Page - Section 1 */
    /* Navigation Menu Bar */
    .sm-phone .page_content_main_services:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .xs-phone .main-services-wrapper {
        padding: 4rem 0;
    }

    /* Main Services Page - Section 2 */
    /* Header */
    .sm-phone .main-services-wrapper .page_content_main_services:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .sm-phone .main-services-wrapper .page_content_main_services:nth-child(1) h1 {
        font-size: 3.5rem;
    }

    /* Main Services Page - Section 3 */
    /* Categories Groups */
    .sm-phone .main-services-wrapper .page_content_main_services:nth-child(2) {
        width: 100%;
    }
        /* List Layout */
    .sm-phone .vertical-layout {
        display: flex;
        flex-direction: column;
        padding: 2rem 5vw;
    }
    .sm-phone .horizonal-layout {
        display: flex;
        margin: 4% 0 0 0;
    }

    /* ───────────  business logo  ─────────── */
    .sm-phone .card-part-1 {
        border-bottom-left-radius: 0;
        border-right: 1px solid #0C2721;
        border-bottom: 1px solid #0C2721;
        min-width: 15rem; /* 192px */
        max-width: 15rem;
        min-height: 15rem;
        max-height: 15rem;
    }

    /* ───────────  Description  ──────────── */
    .sm-phone .card-part-2 .p1 {
        font-size: 2rem;
    }
    .sm-phone .card-part-2 .p2 {
        font-size: 1.6rem;
    }
    .sm-phone .card-part-2 .p3 {
        font-size: 1.8rem;
        margin: 1.5rem 0.5rem;
    }
    .sm-phone .category-buttons-inline-ms .category-button-ms {
        font-size: 1.6rem;
    }

    /* ───────────  Location  ─────────── */
    .sm-phone .card-part-3 {
        background-color: #191919;
        border-top-right-radius: 3.125rem;
        border-right: 0;
    }
    .sm-phone .card-part-3-1 {
        font-size: 2.2rem;
        margin: 5% 7.5%;
    }
    .sm-phone .card-part-3-2 {
        font-size: 1.6rem;
        margin: 5% 7.5%;
    }
    .sm-phone .card-part-3-3 {
        font-size: 2rem;
        margin: 5% 7.5%;
    }
    .sm-phone .card-part-3-3 p a {
        color: #63ffa5;
    }
    .sm-phone .card-part-3o {
        color: #191919;
        background-color: #191919;
    }

    /* ───────────  Social Media  ─────────── */
    .sm-phone .card-part-4 {
        align-items: center;
        justify-content: center;
        gap: 5rem;
        margin: 3.5% 20% 1% 20%;
        flex-direction: row;
    }

    /* ───────────  Business Card Overlay (Base) ─────────── */
    /* Modal Card Container */
    .sm-phone #businessModal .modal-content {
        padding: 0;
        margin: 0 1rem;
        top: 0rem;
        width: 90%;
        max-width: 90vw;
        height: 90%;
        max-height: 90vh;
    }

    .sm-phone .modal-header-bar {
        padding: 0.5rem 1rem;
        border-bottom: 1px solid #444;
        align-items: center;
    }

    .sm-phone .modal-header-bar .close-modal {
        font-size: 3rem;
        padding: 0 0.25rem;
    }

    /* Modal Typography */

    /* Optional: Divider Line */
    .sm-phone #businessModal hr {
        border: none;
        border-top: 1px solid #444;
        margin: 1.5rem 0;
    }

    /* ───────────  Business Card Layout Grid (Content) ─────────── */
    .sm-phone .modal-business-grid {
        grid-template-columns: 1fr;
    }

     /* Business Info 1 */
    .sm-phone .modal-business-info-1 {
        color: #E3D8BF;
        padding: 1rem 0 0 1rem;
        max-width: 368px;
    }
    .sm-phone .modal-business-header {
        font-size: 4.25rem;
        padding-top: 1rem;
    }
    .sm-phone .modal-business-services {
        font-size: 2.75rem;
        font-style: italic;
        margin-bottom: 0.5rem;
    }
    .sm-phone .modal-business-info-headings {
        color: #E3D8BF;
        font-size: 1.85rem;
        padding-top: 1rem;
    }
    .sm-phone .modal-business-info-address {
        font-size: 2.25rem;
    }
    .sm-phone .modal-business-info-phone {
        font-size: 2.25rem;
    }

     /* Business Website Link */
    .sm-phone .modal-business-info-website {
        margin: 2rem 0;
        padding: 0.5rem 1.25rem;
        background-color: #36c8a7;
        font-size: 1.8rem;
    }
    .sm-phone .modal-business-info-website:hover {
        color: #63ffa5;
        text-shadow: 0 0 0.5rem #63ffa5;
    }
    
     /* Business Image Gallery */
    .sm-phone .modal-business-gallery {
        max-width: 100%; /* 4 images * 64px + spacing */
        margin: 1rem 0;
    }
    .sm-phone .modal-business-gallery img {
        scroll-snap-align: start;
    }

    .sm-phone .modal-business-gallery img,
    .sm-phone .modal-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
    scroll-snap-align: start;
    border: 0 solid #333;
    transition: transform 0.2s ease, border 0.2s ease;
    cursor: pointer;
    }
    .sm-phone .modal-thumb {
        padding: 1rem;
    }

    .sm-phone .modal-business-gallery img:hover,
    .sm-phone .modal-thumb:hover {
    transform: scale(1);
    }

    /* Highlight Active Thumbnail */
    .sm-phone .modal-thumb.active {
    border: 2px solid #36c8a7;
    transform: scale(1);
    }

    /* Carousel Navigation Arrows */
    .sm-phone .carousel-nav-left {
        background: none;
        border: none;
        font-size: 2rem;
        color: #E3D8BF;
        cursor: pointer;
        transition: color 0.2s ease;
        margin: 0 2rem 0 0;
    }

    .sm-phone .carousel-nav-right {
        background: none;
        border: none;
        font-size: 2rem;
        color: #E3D8BF;
        cursor: pointer;
        transition: color 0.2s ease;
        margin: 0 0 0 2rem;
    }

    .sm-phone .carousel-nav:hover {
        color: #ffffff;
    }

    /* Main Zoomable Image */
    .sm-phone .modal-carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }

    .sm-phone #modal-carousel-img {
        max-height: 340px;
        border-radius: 0.75rem;
        transition: transform 0.35s ease;
    }

    .sm-phone .zoom-bounce {
        animation: zoomBounce 0.35s ease;
    }

    @keyframes zoomBounce {
        0%   { transform: scale(1); }
        50%  { transform: scale(1.12); }
        100% { transform: scale(1); }
    }

    /* Image Preview Modal */
    .sm-phone .image-preview-modal {
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        max-width: 90vw;
        max-height: 90vh;
        padding-top: 75%;
    }
    
    /* The actual preview image */
    .sm-phone #imagePreviewContent {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        justify-content: center;
        align-items: center;
    }
    
    .sm-phone #imagePreviewModal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .sm-phone #imagePreviewModal img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 1rem;
        box-shadow: 0 0 1rem rgba(0,0,0,0.6);
        
    }
    /* Scrollbar for WebKit browsers */
    .sm-phone .modal-business-gallery::-webkit-scrollbar {
        height: 8px;
    }
    .sm-phone .modal-business-gallery::-webkit-scrollbar-track {
        background: #1b1b1b;
    }
    .sm-phone .modal-business-gallery::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 4px;
    }

    /* Business Hours */
    .sm-phone .modal-business-hours {
        margin-top: 1rem;
    }

    .sm-phone .modal-business-hours p {
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .sm-phone .hours-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 2rem;
        color: #ddd;
    }

    .sm-phone .hours-table td {
        padding: 0.3rem 0.5rem;
    }

    .sm-phone .hours-table .day {
        font-weight: 600;
        color: #FFFFFF;
        width: 40%;
    }

    .sm-phone .hours-table .time {
        color: #aaa;
        text-align: right;
    }

    /* Business Info 2 */
    /* Business Map */
    .sm-phone .modal-business-map {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-right: 1rem; /* prevents overlap with close button */
        height: 250px;
    }
    .sm-phone .modal-business-map hr,
    .sm-phone .modal-business-map p,
    .sm-phone .modal-business-map ul {
        margin-left: 0.25rem;
    }

    
     /* Business Description */
    .sm-phone .modal-business-info-description {
        color: #FFFFFF;
        font-size: 2rem;
    }

    /* Modal Business Category Buttons */

    .sm-phone .modal-business-category-buttons-inline {
        gap: 2rem; /* 16px */
        padding: 0 2.5vw;
        flex-direction: column;
    }
    .sm-phone .modal-business-info-headings-services {
        padding-bottom: 1rem;
    }
    .sm-phone .modal-business-category-button {
        color: #E3D8BF;
        background-color: #191919;
        border: 0.125rem solid #303030;
        border-radius: 1rem; /* 20px */
        padding: 0.5rem 1.5rem; /* top-bottom 12px, sides 24px */
        font-size: 1.6rem;
        font-family: serif;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }
    .sm-phone .modal-business-category-button:hover {
        background-color: #1b1b1b;
        color: #36c8a7;
        box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
    }
    .sm-phone .modal-business-category-buttons-inline-ms .modal-business-category-button {
        background-color: #191919;
        color: #E3D8BF;
        border: 0.125rem solid #303030;
        border-radius: 1.25rem;
        padding: 0.375rem 0.875rem; /* 6px, 14px */
        font-size: 1.6rem;
        font-family: sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0 0 0.5rem 0.5rem;
    }
    .sm-phone .modal-business-category-buttons-inline-ms .modal-business-category-button:hover {
        background-color: #1b1b1b;
        color: #36c8a7;
        box-shadow: 0 0.125rem 0.125rem #36c8a7;
    }

    /* Main Services Page - Section 4 */
    /* Footer */
    .sm-phone .main-services-wrapper .page_content_main_services:nth-child(3) {
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2.5rem;
    }
}

@media(min-width: 601px) and (max-width: 767px) {
   /* ────────────────────────────────────────────────────────────────
   00. NAVIGATION MENU BAR
   ───────────────────────────────────────────────────────────── */
    .lg-phone .blb_logo {
        width: 8.5rem; /* 105.6px */
    }
    .lg-phone .menu_icon {    
        width: 5.8rem; /* 64px */
    }

    /* ────────────────────────────────────────────────────────────────
    Navigation
    ───────────────────────────────────────────────────────────── */
    .lg-phone .nav_main {
        padding: 2rem 2.75rem;
    }

    /* Side Menu */
    .lg-phone .sidebar-open #mySidenav {
        width: 33%; 
    }
    .lg-phone .nav_side {
        border-top-left-radius: 3rem;
        border-bottom-left-radius: 3rem;
    }

    .lg-phone .nav_content:nth-child(1) {
        align-items: center;
        justify-content: space-between; /* space between left and right */
        padding: 1.5rem;
        font-size: 5rem;
    }

    .lg-phone .a_left, .xs-phone .a_right {
        display: flex;
        align-items: center;
        width: auto;
    }

    .lg-phone .a_left {
        justify-content: flex-start;
    }

    .lg-phone .a_right {
        display: flex;
        justify-content: flex-end;
        align-items: center;   /* ✅ vertical centering */
        height: 100%;          /* make sure it has height context */
    }

    .lg-phone .closebtn_side {
        color: #FFFFFF;
        padding-left: 1.25rem;
        text-decoration: none;
    }

    .lg-phone .heartbtn_side {
        position: relative;
        color: #FF69B4;
        padding-right: 1.75rem;
        text-decoration: none;
        top: 0.15rem;
    }

    .lg-phone .heartbtn_side img {
        display: block;
        height: 2.75rem;          /* or whatever size you want */
    }

    .lg-phone .nav_content:nth-child(2) { 
        height: 10%;
        width: 100%;
        align-content: center;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .lg-phone .nav_content:nth-child(2) h1 {
        font-size: 5rem;
    }
    .lg-phone .nav_content:nth-child(3) { 
        align-items: flex-start;   /* Align items to the left*/
        flex-direction: column;
        justify-content: flex-start;
        gap: 1rem;
        padding: 2rem;
    }
    .lg-phone .nav_content:nth-child(4) { 
        align-items: center;
        justify-content: center;
    }

    /* Use flex-grow ratios — these will perfectly fill the height */
    /* Shared style for all sections */
    .lg-phone .nav_content {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3.5rem;
    }

    /* Social Media */
    .lg-phone .face_img_2 {
        width: 7rem; /* 64px */
    }

    .lg-phone .face_btn, .lg-phone .insta_btn, .lg-phone .blank_img {
        padding: 1rem;
    }
    .lg-phone .face_img, .lg-phone .insta_img, .lg-phone .blank_img {
        width: 2.5rem; /* 32px */
    }

    /* ────────────────────────────────────────────────────────────────
    Modal Overlay
    ───────────────────────────────────────────────────────────── */
    .lg-phone .modal-overlay {
        justify-content:center;
        align-items: flex-start;
    }

    /* Modal Content */
    .lg-phone .modal-content {
        top: 2.25rem;
        padding: 2.25rem;
    }

    /* Search Input */
    .lg-phone .search-input {
        font-size: 2.25rem;
        width: 100%;
        max-width: 90%;
    }

    /* Close Button */
    .lg-phone .close-modal {
        top: -0.75rem;
        right: -0.25rem;
        font-size: 3rem;
    }

    .lg-phone .suggestions-list {
        font-size: 2.25rem;
    }

    .lg-phone .suggestions-list li:hover {
        background-color: #2a2a2a;
    }

    .lg-phone .suggestions-list img {
        height: 1.4rem;
        width: auto;
        flex-shrink: 0;
    }

    .lg-phone .suggestions-list::-webkit-scrollbar {
        width: 8px;
    }
    .lg-phone .suggestions-list::-webkit-scrollbar-track {
        background: #1b1b1b;
    }
    .lg-phone .suggestions-list::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 4px;
    }

    .lg-phone .search-tooltip {
        top: 5.5rem;
        font-size: 1.4rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1A. HOME PAGE
    ───────────────────────────────────────────────────────────── */

    /* Home Page - Section 1 */
    /* Navigation Menu Bar */
    .lg-phone .page_content_home:nth-child(1) {
        height: 12.5%;
        align-items: center;
        justify-content: center;
    }

    /* Home Page - Section 2 */
    /* Header */
    .lg-phone .page_content_home:nth-child(2) {
        align-items: center;
        justify-content: center;
    }
    .lg-phone .section_home h1 {
        font-size: 6rem;
    }

    /* Home Page - Section 3 */
    /* Carousel Main Buttons */
    .lg-phone .page_content_home:nth-child(3) {
        height: 60%;
        width: 100%;
    }

    .lg-phone .carousel-wrapper {
        perspective: 1600px;
    }

    .lg-phone .carousel-item {
        margin: -8.40rem; /* -84px */
    }

    .lg-phone .a_home_box_1 img {
        filter: invert();
        width: 11.75rem; /* 100px */
        height: 11.75rem;
    }

    .lg-phone .a_home_box_1_text p{
        margin-top: 1rem;
        font-size: 2.25rem; 
    }

    /* Carousel Side Buttons */
    .lg-phone .carousel-button {
        height: 18.125rem; /* 290px */
        width: 32.125rem; /* 514px */
    }
    /* Home Page - Section 4 */
    /* Footer */
    .lg-phone .page_content_home:nth-child(4) {
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
    }

    /* ────────────────────────────────────────────────────────────────
   1A. CALENDAR PAGE
    ───────────────────────────────────────────────────────────── */
    .lg-phone .section_calendar {
        height: 100vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* Calendar Page - Section 1 */
    /* Navigation Menu Bar */
    .lg-phone .page_content_calendar:nth-child(1) {
        height: 12.5%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #262626;
    }

    /* Calendar Page - Section 2 */
    /* Header */
    .lg-phone .page_content_calendar:nth-child(2) {
        height: 20%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .lg-phone .page_content_calendar:nth-child(2) h1 {
        position: relative;
        font-size: 4rem;
        text-align: center;
        top: 20%;
        padding-bottom: 4rem;
    }

    /* Calendar Page - Section 3 */
    /* Main Calendar */
    .lg-phone .page_content_calendar:nth-child(3) {
        height: 90%;
        width: 100%;
        padding: 0;
        padding-top: 0;
        filter: grayscale(50%);
        filter: hue-rotate(60deg);
    }

    .lg-phone .page_content_calendar:nth-child(3) iframe{
        background: #191919;
        background-color: #191919;
        filter: invert(0.9);
        backdrop-filter: hue-rotate(90deg);
        width: 580px; 
        height: 350px;
        border-radius: 1.25rem;
        outline: 0.5rem solid #ffffff;
        font-size: 8px;
    }

    /* Calendar Page - Section 4 */
    /* Footer */
    .lg-phone .page_content_calendar:nth-child(4) {
        height: 15%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 2rem;
        font-size: 2rem;
    }

    .lg-phone .page_content_calendar {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #E3D8BF;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. CATEGORY PAGE
    ───────────────────────────────────────────────────────────── */

    /* Category Page - Section 1 */
    /* Navigation Menu Bar */
    .lg-phone .page_content_category:nth-child(1) {
        height: 12.5%;
        align-items: center;
        justify-content: center;
    }

    /* Category Page - Section 2 */
    /* Header */
    .lg-phone .category-wrapper {
        padding-right: 0.25rem;
    }

    .lg-phone .category-wrapper .page_content_category:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .lg-phone .category-wrapper .page_content_category:nth-child(1) h1 {
        font-size: 6rem;
    }

    /* Category Page - Section 3 */
    /* Categories Groups */
    .lg-phone .category-wrapper .page_content_category:nth-child(2) {
        width: 100%;
    }
    .lg-phone .category-wrapper .page_content_category:nth-child(2) h2 {
        font-size: 4.25rem;
    }

    /* Category Buttons */
    .lg-phone .category-buttons-inline {
        gap: 2rem; /* 16px */
        padding: 0 2.5vw;
        flex-direction: column;
    }
    
    .lg-phone .category-button {
        border-radius: 1.5rem; /* 20px */
        font-size: 3rem;
    }

     .lg-phone .dropdown-header {
        padding: 0.75em;
        cursor: pointer;
        width: 100%;
        border: none;
        font-size: 3em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        background-color: #0C2721;
    }

    .lg-phone .dropdown-content {
        display: none;
        padding: 1em;
        background-color: #0C2721;
    }

     .lg-phone .dropdown-content.visible {
        display: block;
    }

     .lg-phone .category-button {
        display: inline-block;
        margin: 0.25em;
        padding: 0.5em 1em;
        border: none;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.75rem;
    }

     .lg-phone .category-button:hover {
            background-color: #1b1b1b;
            color: #36c8a7;
            box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
    }

    /* Category Page - Section 4 */
    /* Footer */
    .lg-phone .category-wrapper .page_content_category:nth-child(3) {
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. ABOUT PAGE
    ───────────────────────────────────────────────────────────── */
    /* About Page - Section 1 */
    /* Navigation Menu Bar */
    .lg-phone .page_content_about:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
        height: 12.5%;
    }

    /* About Page - Section 2 */
    /* Header */
    .lg-phone .about-wrapper {
        height: 90%;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: overlay; /* nice if supported */
        overflow-y: auto;    /* fallback */
        padding-right: 1rem;
        box-sizing: content-box;
    }
    .lg-phone .about-wrapper .page_content_about:nth-child(1) {
        width: 100%;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 16vh 0 10vh 0;
    }

    .lg-phone .section_about h1 {
        font-size: 6.5rem;
        text-align: center;
    }
    .lg-phone .section_about h2 {
        font-size: 5.25rem;
    }
    .lg-phone .section_about h3 {
        font-size: 4rem;
    }

    /* About Page - Section 3 */
    /* Content Description */
    .lg-phone .about-wrapper .page_content_about:nth-child(2) {
        width: 100%;
    }

    .lg-phone .about-wrapper-paragraphs {
        padding: 0 2.5vw 20vw 2.5vw;
    }

    /* Description Section */
    .lg-phone .about_p {
        padding: 0 1.5%; /* instead of 12.5rem / 200px */
        text-align: left;
        font-size: 2.5rem;
    }

    .lg-phone .about_p1 {
        text-align: left;
        padding: 2vh 3.5vw 0.75vh 3.5vw;
    }
    .lg-phone .about_p2 {
        text-align: left;
    }
    .lg-phone .about_p3 {
        text-align: left;
    }

    /* Call to Action Boxes */
    .lg-phone .contact_p_button {
        padding: 1.5vw 12.5vh; /* top-bottom 12px, sides 24px */
        font-size: 2.75rem;
        border-radius: 1.75rem;
    }
    .lg-phone .contact_p1 {
        font-size: 2.25rem;
    }
    .lg-phone .contact_p2 {
        font-size: 2.5rem;
        padding: 0 2rem;
    }

    /* About Page - Section 4 */
    /* Footer */
    .lg-phone .about-wrapper .page_content_about:nth-child(3) {
        position: relative;
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2.5rem;
        padding: 1vh 0 0 0;
        bottom: 3.5vh;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. UNDER CONSTRUCTION PAGE
    ───────────────────────────────────────────────────────────── */
    /* Under Construction Page - Section 1 */
    /* Navigation Menu Bar */
    .lg-phone .page_content_underconstruction:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
        height: 12.5%;
    }

    /* Under Construction Page - Section 2 */
    /* Header */
    .lg-phone .page_content_underconstruction:nth-child(2) {
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 6vh 0 10vh 0;
    }
    .lg-phone .section_underconstruction h1 {
        font-size: 6rem;
    }
    .lg-phone .section_underconstruction h2 {
        font-size: 4.75rem;
    }
    .lg-phone .section_underconstruction h3 {
        font-size: 3.5rem;
    }

    /* Under Construction Page - Section 3 */
    /* Content Description */
    .lg-phone .page_content_underconstruction:nth-child(3) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .lg-phone .underconstruction-wrapper-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .lg-phone .underconstruction-wrapper-paragraphs {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 5vw;
        width: 100%;
        height: 63vh;
        box-sizing: border-box;
    }

    /* Description Section */
    .lg-phone .underconstruction_p {
        padding: 0 1.25%; /* instead of 12.5rem / 200px */
        text-align: center;
    }

    .lg-phone .underconstruction_p1 {
        font-size: 3rem;
    }
    .lg-phone .underconstruction_p2 {
        font-size: 3.25rem;
    }
    .lg-phone .underconstruction_p3 {
        font-size: 3.5rem;
    }

    /* Call to Action Boxes */
    .lg-phone .contact_underconstruction_p_button {
        padding: 1.5vw 12.5vh; /* top-bottom 12px, sides 24px */
        font-size: 2.75rem;
        border-radius: 1.75rem;
    }
    .lg-phone .contact_underconstruction_p1 {
        font-size: 2rem;
    }
    .lg-phone .contact_underconstruction_p2 {
        font-size: 2.25rem;
    }

    /* Under Construction Page - Section 4 */
    /* Footer */
    .lg-phone .page_content_underconstruction:nth-child(4) {
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
        font-size: 2.5rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. MAIN SERVICES PAGE
        ───────────────────────────────────────────────────────────── */
    /* Main Services Page - Section 1 */
    /* Navigation Menu Bar */

    .lg-phone .main-services-wrapper {
        height: 90%;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: overlay; /* nice if supported */
        overflow-y: auto;    /* fallback */
        padding-right: 0;
        box-sizing: content-box;
        background-color: #0C2721;
    }
    .lg-phone .page_content_main_services:nth-child(1) {
        height: 12.5%;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    /* Main Services Page - Section 2 */
    /* Header */
    .lg-phone .main-services-wrapper .page_content_main_services:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .lg-phone .main-services-wrapper .page_content_main_services:nth-child(1) h1 {
        font-size: 5rem;
    }

    /* Main Services Page - Section 3 */
    /* Categories Groups */
    .lg-phone .main-services-wrapper .page_content_main_services:nth-child(2) {
        position: relative;
        display: flex;
        width: 80%;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin: 0 auto;  
    }


    .lg-phone .vertical-layout {
        flex-direction: column;
        padding: 0 5vw;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    /* List Layout */

    /* ───────────  business logo  ─────────── */
    .lg-phone .card-part-1 {
        flex: 2 1 6rem;
        border-bottom-left-radius: 0;
        border-right: 1px solid #0C2721;
        border-bottom: 1px solid #0C2721;
        min-width: 18rem;
        max-width: 18rem;
        min-height: 18rem;
        max-height: 18rem;
    }
    .lg-phone .card-part-2 {
        flex: 3 1 50rem;
        /*background-color: #193C35;*/
        background-color: #193C35;
        border-bottom: 1px solid #0C2721;
        border-bottom-left-radius: 3.125rem;
        border-bottom-right-radius: 3.125rem;
        flex-direction: column;
        padding: 0.5rem 0.5rem;
    }

    /* ───────────  Description  ──────────── */
    .lg-phone .card-part-2 .p1 {
        font-size: 2rem;
    }
    .lg-phone .card-part-2 .p2 {
        font-size: 1.35rem;
    }
    .lg-phone .card-part-2 .p3 {
        font-size: 1.55rem;
        margin: 1.5rem 0.5rem;
    }
    .lg-phone .category-buttons-inline-ms .category-button-ms {
        font-size: 1.6rem;
    }

    /* ───────────  Location  ─────────── */
    .lg-phone .card-part-3 {
        flex: 1 1 16rem;
        background-color: #191919;
        border-right: 0;
    }
    .lg-phone .card-part-3-1 {
        font-size: 2.5rem;
        margin: 5% 5%;
    }
    .lg-phone .card-part-3-2 {
        font-size: 2.1rem;
        margin: 5% 5%;
    }
    .lg-phone .card-part-3-3 {
        font-size: 2.1rem;
        margin: 5% 5%;
    }
    .lg-phone .card-part-3-3 p a {
        color: #63ffa5;
    }
    .lg-phone .card-part-3o {
        color: #191919;
        background-color: #191919;
    }

    /* ───────────  Social Media  ─────────── */
    .lg-phone .card-part-4 {
        border-top-right-radius: 3.125rem;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #191919;
        flex: 0 0  2rem;
        padding: 1% 0 1% 0;

        gap: 0rem;
        flex-direction: column;
    }

    /* ───────────  Business Card Overlay (Base) ─────────── */
    /* Modal Card Container */
    .lg-phone #businessModal .modal-content {
        padding: 0;
        margin: 0 1rem;
        top: 0rem;
        width: 90%;
        max-width: 90vw;
        height: 90%;
        max-height: 90vh;
    }

    .lg-phone .modal-header-bar {
        padding: 0.5rem 1rem;
        border-bottom: 1px solid #444;
        align-items: center;
    }

    .lg-phone .modal-header-bar .close-modal {
        font-size: 3rem;
        padding: 0 0.25rem;
    }

    /* Modal Typography */
    /* Optional: Divider Line */
    .lg-phone #businessModal hr {
        border: none;
        border-top: 1px solid #444;
        margin: 1.5rem 0;
    }

    /* ───────────  Business Card Layout Grid (Content) ─────────── */
    .lg-phone .modal-business-grid {
        grid-template-columns: 1fr;
    }

     /* Business Info 1 */
    .lg-phone .modal-business-info-1 {
        color: #E3D8BF;
        padding: 1rem 2rem 0 2rem;
        max-width: 655px;
    }
    .lg-phone .modal-business-header {
        font-size: 4.25rem;
        padding-top: 1rem;
    }
    .lg-phone .modal-business-services {
        font-size: 2.75rem;
        font-style: italic;
        margin-bottom: 0.5rem;
    }
    .lg-phone .modal-business-info-headings {
        color: #E3D8BF;
        font-size: 1.85rem;
        padding-top: 1rem;
    }
    .lg-phone .modal-business-info-address {
        font-size: 2.25rem;
    }
    .lg-phone .modal-business-info-phone {
        font-size: 2.25rem;
    }

     /* Business Website Link */
    .lg-phone .modal-business-info-website {
        margin: 1rem 0;
        padding: 0.5rem 1.25rem;
        background-color: #36c8a7;
    }
    .lg-phone .modal-business-info-website:hover {
        color: #63ffa5;
        text-shadow: 0 0 0.5rem #63ffa5;
    }
    
     /* Business Image Gallery */
    .lg-phone .modal-business-gallery {
        max-width: 100%; /* 4 images * 64px + spacing */
        margin: 1rem 0;
    }
    .lg-phone .modal-business-gallery img {
        scroll-snap-align: start;
    }

    .lg-phone .modal-business-gallery img,
    .lg-phone .modal-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
    scroll-snap-align: start;
    border: 0 solid #333;
    transition: transform 0.2s ease, border 0.2s ease;
    cursor: pointer;
    }
    .lg-phone .modal-thumb {
        padding: 1rem;
    }

    .lg-phone .modal-business-gallery img:hover,
    .lg-phone .modal-thumb:hover {
    transform: scale(1);
    }

    /* Highlight Active Thumbnail */
    .lg-phone .modal-thumb.active {
    border: 2px solid #36c8a7;
    transform: scale(1);
    }

    /* Carousel Navigation Arrows */
    .lg-phone .carousel-nav-left {
        background: none;
        border: none;
        font-size: 2rem;
        color: #E3D8BF;
        cursor: pointer;
        transition: color 0.2s ease;
        margin: 0 2rem 0 0;
    }

    .lg-phone .carousel-nav-right {
        background: none;
        border: none;
        font-size: 2rem;
        color: #E3D8BF;
        cursor: pointer;
        transition: color 0.2s ease;
        margin: 0 0 0 2rem;
    }

    .lg-phone .carousel-nav:hover {
        color: #ffffff;
    }

    /* Main Zoomable Image */
    .lg-phone .modal-carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }

    .lg-phone #modal-carousel-img {
        max-height: 340px;
        border-radius: 0.75rem;
        transition: transform 0.35s ease;
    }

    .lg-phone .zoom-bounce {
        animation: zoomBounce 0.35s ease;
    }

    @keyframes zoomBounce {
        0%   { transform: scale(1); }
        50%  { transform: scale(1.12); }
        100% { transform: scale(1); }
    }

    /* Image Preview Modal */
    .lg-phone .image-preview-modal {
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        max-width: 90vw;
        max-height: 90vh;
        padding-top: 75%;
    }
    
    /* The actual preview image */
    .lg-phone #imagePreviewContent {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        justify-content: center;
        align-items: center;
    }
    
    .lg-phone #imagePreviewModal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .lg-phone #imagePreviewModal img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 1rem;
        box-shadow: 0 0 1rem rgba(0,0,0,0.6);
        
    }
    /* Scrollbar for WebKit browsers */
    .lg-phone .modal-business-gallery::-webkit-scrollbar {
        height: 8px;
    }
    .lg-phone .modal-business-gallery::-webkit-scrollbar-track {
        background: #1b1b1b;
    }
    .lg-phone .modal-business-gallery::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 4px;
    }

    /* Business Hours */
    .lg-phone .modal-business-hours {
        margin-top: 1rem;
    }

    .lg-phone .modal-business-hours p {
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .lg-phone .hours-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 2rem;
        color: #ddd;
    }

    .lg-phone .hours-table td {
        padding: 0.3rem 0.5rem;
    }

    .lg-phone .hours-table .day {
        font-weight: 600;
        color: #FFFFFF;
        width: 40%;
    }

    .lg-phone .hours-table .time {
        color: #aaa;
        text-align: right;
    }

    /* Business Info 2 */
    /* Business Map */
    .lg-phone .modal-business-map {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-right: 1rem; /* prevents overlap with close button */
        height: 250px;
    }
    .lg-phone .modal-business-map hr,
    .lg-phone .modal-business-map p,
    .lg-phone .modal-business-map ul {
        margin-left: 0.25rem;
    }

     /* Business Description */
    .lg-phone .modal-business-info-description {
        color: #FFFFFF;
        font-size: 2rem;
    }

    /* Modal Business Category Buttons */
    .lg-phone .modal-business-category-buttons-inline {
        gap: 2rem; /* 16px */
        padding: 0 2.5vw;
        flex-direction: column;
    }
    .lg-phone .modal-business-info-headings-services {
        padding-bottom: 1rem;
    }
    .lg-phone .modal-business-category-button {
        color: #E3D8BF;
        background-color: #191919;
        border: 0.125rem solid #303030;
        border-radius: 1rem; /* 20px */
        padding: 0.5rem 1.5rem; /* top-bottom 12px, sides 24px */
        font-size: 1.6rem;
        font-family: serif;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }
    .lg-phone .modal-business-category-button:hover {
        background-color: #1b1b1b;
        color: #36c8a7;
        box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
    }
    .lg-phone .modal-business-category-buttons-inline-ms .modal-business-category-button {
        background-color: #191919;
        color: #E3D8BF;
        border: 0.125rem solid #303030;
        border-radius: 1.25rem;
        padding: 0.375rem 0.875rem; /* 6px, 14px */
        font-size: 1.6rem;
        font-family: sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0 0 0.5rem 0.5rem;
    }
    .lg-phone .modal-business-category-buttons-inline-ms .modal-business-category-button:hover {
        background-color: #1b1b1b;
        color: #36c8a7;
        box-shadow: 0 0.125rem 0.125rem #36c8a7;
    }

    /* Main Services Page - Section 4 */
    /* Footer */
    .lg-phone .main-services-wrapper .page_content_main_services:nth-child(3) {
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2.5rem;
    }
}

@media(min-width: 768px) and (max-width: 849px) {
   /* ────────────────────────────────────────────────────────────────
   00. NAVIGATION MENU BAR
   ───────────────────────────────────────────────────────────── */
    .xs-phone-land .blb_logo {
        width: 8.5rem; /* 105.6px */
    }
    .xs-phone-land .menu_icon {    
        width: 5.8rem; /* 64px */
    }

    /* ────────────────────────────────────────────────────────────────
    Navigation
    ───────────────────────────────────────────────────────────── */
    .xs-phone-land .nav_main {
        padding: 2rem 2.75rem;
    }

    /* Side Menu */
    .xs-phone-land .sidebar-open #mySidenav {
        width: 33%; 
    }
    .xs-phone-land .nav_side {
        border-top-left-radius: 3rem;
        border-bottom-left-radius: 3rem;
    }

    .xs-phone-land .nav_content:nth-child(1) {
        align-items: center;
        justify-content: space-between; /* space between left and right */
        padding: 1.5rem;
        font-size: 5rem;
    }

    .xs-phone-land .a_left, .xs-phone .a_right {
        display: flex;
        align-items: center;
        width: auto;
    }

    .xs-phone-land .a_left {
        justify-content: flex-start;
    }

    .xs-phone-land .a_right {
        display: flex;
        justify-content: flex-end;
        align-items: center;   /* ✅ vertical centering */
        height: 100%;          /* make sure it has height context */
    }

    .xs-phone-land .closebtn_side {
        color: #FFFFFF;
        padding-left: 1.25rem;
        text-decoration: none;
    }

    .xs-phone-land .heartbtn_side {
        position: relative;
        color: #FF69B4;
        padding-right: 1.75rem;
        text-decoration: none;
        top: 0.15rem;
    }

    .xs-phone-land .heartbtn_side img {
        display: block;
        height: 2.75rem;          /* or whatever size you want */
    }

    .xs-phone-land .nav_content:nth-child(2) { 
        height: 10%;
        width: 100%;
        align-content: center;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .xs-phone-land .nav_content:nth-child(2) h1 {
        font-size: 4rem;
    }
    .xs-phone-land .nav_content:nth-child(3) { 
        align-items: flex-start;   /* Align items to the left*/
        flex-direction: column;
        justify-content: flex-start;
        gap: 1rem;
        padding: 2rem;
    }

    .xs-phone-land .nav_content:nth-child(3) a { 
        font-size: 3rem;
    }

    .xs-phone-land .nav_content:nth-child(4) { 
        align-items: center;
        justify-content: center;
    }

    /* Use flex-grow ratios — these will perfectly fill the height */
    /* Shared style for all sections */
    .xs-phone-land .nav_content {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3.5rem;
    }

    /* Social Media */
    .xs-phone-land .face_img_2 {
        width: 4.5rem; /* 64px */
    }

    .xs-phone-land .face_btn, .xs-phone-land .insta_btn, .xs-phone-land .blank_img {
        padding: 1rem;
    }
    .xs-phone-land .face_img, .xs-phone-land .insta_img, .xs-phone-land .blank_img {
        width: 2.5rem; /* 32px */
    }

    /* ────────────────────────────────────────────────────────────────
    Modal Overlay
    ───────────────────────────────────────────────────────────── */
    .xs-phone-land .modal-overlay {
        justify-content:center;
        align-items: flex-start;
    }

    /* Modal Content */
    .xs-phone-land .modal-content {
        top: 2.25rem;
        padding: 2.25rem;
    }

    /* Search Input */
    .xs-phone-land .search-input {
        font-size: 2.25rem;
        width: 100%;
        max-width: 90%;
    }

    /* Close Button */
    .xs-phone-land .close-modal {
        top: -0.75rem;
        right: -0.25rem;
        font-size: 3rem;
    }

    .xs-phone-land .suggestions-list {
        font-size: 2.25rem;
    }

    .xs-phone-land .suggestions-list li:hover {
        background-color: #2a2a2a;
    }

    .xs-phone-land .suggestions-list img {
        height: 1.4rem;
        width: auto;
        flex-shrink: 0;
    }

    .xs-phone-land .suggestions-list::-webkit-scrollbar {
        width: 8px;
    }
    .xs-phone-land .suggestions-list::-webkit-scrollbar-track {
        background: #1b1b1b;
    }
    .xs-phone-land .suggestions-list::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 4px;
    }

    .xs-phone-land .search-tooltip {
        top: 5.5rem;
        font-size: 1.4rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1A. HOME PAGE
    ───────────────────────────────────────────────────────────── */

    /* Home Page - Section 1 */
    /* Navigation Menu Bar */
    .xs-phone-land .page_content_home:nth-child(1) {
        height: 16.5%;
        align-items: center;
        justify-content: center;
    }

    /* Home Page - Section 2 */
    /* Header */
    .xs-phone-land .page_content_home:nth-child(2) {
        align-items: center;
        justify-content: center;
    }
    .xs-phone-land .section_home h1 {
        font-size: 6rem;
    }

    /* Home Page - Section 3 */
    /* Carousel Main Buttons */
    .xs-phone-land .page_content_home:nth-child(3) {
        height: 60%;
        width: 100%;
    }

    .xs-phone-land .carousel-wrapper {
        perspective: 1600px;
    }

    .xs-phone-land .carousel-item {
        margin: -7.5rem; /* -84px */
    }

    .xs-phone-land .a_home_box_1 img {
        filter: invert();
        width: 9.75rem; /* 100px */
        height: 9.75rem;
    }

    .xs-phone-land .a_home_box_1_text p{
        margin-top: 0.5rem;
        font-size: 2.25rem; 
    }

    /* Carousel Side Buttons */
    .xs-phone-land .carousel-button {
        height: 18.125rem; /* 290px */
        width: 32.125rem; /* 514px */
    }
    /* Home Page - Section 4 */
    /* Footer */
    .xs-phone-land .page_content_home:nth-child(4) {
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

        /* ────────────────────────────────────────────────────────────────
   1A. CALENDAR PAGE
    ───────────────────────────────────────────────────────────── */
    .xs-phone-land .section_calendar {
        height: 100vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* Calendar Page - Section 1 */
    /* Navigation Menu Bar */
    .xs-phone-land .page_content_calendar:nth-child(1) {
        height: 16.5%;
        align-items: center;
        justify-content: center;
    }

    /* Calendar Page - Section 2 */
    /* Header */
    .xs-phone-land .page_content_calendar:nth-child(2) {
        height: 20%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .xs-phone-land .page_content_calendar:nth-child(2) h1 {
        position: relative;
        font-size: 0;
        text-align: center;
        top: 20%;
        padding-bottom: 4rem;
    }

    /* Calendar Page - Section 3 */
    /* Main Calendar */
    .xs-phone-land .page_content_calendar:nth-child(3) {
        height: 90%;
        width: 100%;
        padding: 0;
        padding-top: 0;
        filter: grayscale(50%);
        filter: hue-rotate(60deg);
    }

    .xs-phone-land .page_content_calendar:nth-child(3) iframe{
        background: #191919;
        background-color: #191919;
        filter: invert(0.9);
        backdrop-filter: hue-rotate(90deg);
        width: 680px; 
        height: 260px;
        border-radius: 1.25rem;
        outline: 0.5rem solid #ffffff;
        font-size: 8px;
    }

    /* Calendar Page - Section 4 */
    /* Footer */
    .xs-phone-land .page_content_calendar:nth-child(4) {
        height: 15%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 2rem;
        font-size: 2rem;
    }

    .xs-phone-land .page_content_calendar {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #E3D8BF;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. CATEGORY PAGE
    ───────────────────────────────────────────────────────────── */

    /* Category Page - Section 1 */
    /* Navigation Menu Bar */
    .xs-phone-land .page_content_category:nth-child(1) {
        height: 16.5%;
        align-items: center;
        justify-content: center;
    }

    /* Category Page - Section 2 */
    /* Header */
    .xs-phone-land .category-wrapper {
        padding-right: 0.25rem;
    }

    .xs-phone-land .category-wrapper .page_content_category:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .xs-phone-land .category-wrapper .page_content_category:nth-child(1) h1 {
        font-size: 6rem;
    }

    /* Category Page - Section 3 */
    /* Categories Groups */
    .xs-phone-land .category-wrapper .page_content_category:nth-child(2) {
        width: 100%;
    }
    .xs-phone-land .category-wrapper .page_content_category:nth-child(2) h2 {
        font-size: 4.25rem;
    }

    /* Category Buttons */
    .xs-phone-land .category-buttons-inline {
        gap: 2rem; /* 16px */
        padding: 0 2.5vw;
        flex-direction: column;
    }
    
    .xs-phone-land .category-button {
        border-radius: 1.5rem; /* 20px */
        font-size: 3rem;
    }

     .xs-phone-land .dropdown-header {
        padding: 0.75em;
        cursor: pointer;
        width: 100%;
        border: none;
        font-size: 3em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        background-color: #0C2721;
    }

    .xs-phone-land .dropdown-content {
        display: none;
        padding: 1em;
        background-color: #0C2721;
    }

     .xs-phone-land .dropdown-content.visible {
        display: block;
    }

     .xs-phone-land .category-button {
        display: inline-block;
        margin: 0.25em;
        padding: 0.5em 1em;
        border: none;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.75rem;
    }

     .xs-phone-land .category-button:hover {
        background-color: #1b1b1b;
        color: #36c8a7;
        box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
    }


    /* Category Page - Section 4 */
    /* Footer */
    .xs-phone-land .category-wrapper .page_content_category:nth-child(3) {
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. ABOUT PAGE
    ───────────────────────────────────────────────────────────── */
    /* About Page - Section 1 */
    /* Navigation Menu Bar */
    .xs-phone-land .page_content_about:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
        height: 16.5%;
    }

    /* About Page - Section 2 */
    /* Header */
    .xs-phone-land .about-wrapper {
        height: 90%;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: overlay; /* nice if supported */
        overflow-y: auto;    /* fallback */
        padding-right: 1rem;
        box-sizing: content-box;
    }
    .xs-phone-land .about-wrapper .page_content_about:nth-child(1) {
        width: 100%;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 24vh 0 18vh 0;
    }

    .xs-phone-land .section_about h1 {
        font-size: 6.5rem;
        text-align: center;
    }
    .xs-phone-land .section_about h2 {
        font-size: 5.25rem;
    }
    .xs-phone-land .section_about h3 {
        font-size: 4rem;
    }

    /* About Page - Section 3 */
    /* Content Description */
    .xs-phone-land .about-wrapper .page_content_about:nth-child(2) {
        width: 100%;
    }

    .xs-phone-land .about-wrapper-paragraphs {
        padding: 0 2.5vw 20vw 2.5vw;
    }

    /* Description Section */
    .xs-phone-land .about_p {
        padding: 0 1.5%; /* instead of 12.5rem / 200px */
        text-align: left;
        font-size: 2.5rem;
    }

    .xs-phone-land .about_p1 {
        text-align: left;
        padding: 2vh 3.5vw 0.75vh 3.5vw;
    }
    .xs-phone-land .about_p2 {
        text-align: left;
    }
    .xs-phone-land .about_p3 {
        text-align: left;
    }

    /* Call to Action Boxes */
    .xs-phone-land .contact_p_button {
        padding: 1.5vw 12.5vh; /* top-bottom 12px, sides 24px */
        font-size: 2.75rem;
        border-radius: 1.75rem;
    }
    .xs-phone-land .contact_p1 {
        font-size: 2rem;
    }
    .xs-phone-land .contact_p2 {
        font-size: 2.5rem;
        padding: 0 2rem;
    }

    /* About Page - Section 4 */
    /* Footer */
    .xs-phone-land .about-wrapper .page_content_about:nth-child(3) {
        position: relative;
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        padding: 1vh 0 0 0;
        bottom: 3.5vh;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. UNDER CONSTRUCTION PAGE
    ───────────────────────────────────────────────────────────── */
    /* Under Construction Page - Section 1 */
    /* Navigation Menu Bar */
    .xs-phone-land .page_content_underconstruction:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
        height: 12.5%;
    }

    /* Under Construction Page - Section 2 */
    /* Header */
    .xs-phone-land .page_content_underconstruction:nth-child(2) {
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 6vh 0 10vh 0;
    }
    .xs-phone-land .section_underconstruction h1 {
        font-size: 6rem;
    }
    .xs-phone-land .section_underconstruction h2 {
        font-size: 4.75rem;
    }
    .xs-phone-land .section_underconstruction h3 {
        font-size: 3.5rem;
    }

    /* Under Construction Page - Section 3 */
    /* Content Description */
    .xs-phone-land .page_content_underconstruction:nth-child(3) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .xs-phone-land .underconstruction-wrapper-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .xs-phone-land .underconstruction-wrapper-paragraphs {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 5vw;
        width: 100%;
        height: 63vh;
        box-sizing: border-box;
    }

    /* Description Section */
    .xs-phone-land .underconstruction_p {
        padding: 0 1.25%; /* instead of 12.5rem / 200px */
        text-align: center;
    }

    .xs-phone-land .underconstruction_p1 {
        font-size: 3rem;
    }
    .xs-phone-land .underconstruction_p2 {
        font-size: 3.25rem;
    }
    .xs-phone-land .underconstruction_p3 {
        font-size: 3.5rem;
    }

    /* Call to Action Boxes */
    .xs-phone-land .contact_underconstruction_p_button {
        padding: 1.5vw 12.5vh; /* top-bottom 12px, sides 24px */
        font-size: 2.75rem;
        border-radius: 1.75rem;
    }
    .xs-phone-land .contact_underconstruction_p1 {
        font-size: 2rem;
    }
    .xs-phone-land .contact_underconstruction_p2 {
        font-size: 2.25rem;
    }

    /* Under Construction Page - Section 4 */
    /* Footer */
    .xs-phone-land .page_content_underconstruction:nth-child(4) {
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
        font-size: 2rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. MAIN SERVICES PAGE
        ───────────────────────────────────────────────────────────── */
    /* Main Services Page - Section 1 */
    /* Navigation Menu Bar */

    .main-services-wrapper {
        height: 90%;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: overlay; /* nice if supported */
        overflow-y: auto;    /* fallback */
        padding-right: 0;
        box-sizing: content-box;
        background-color: #0C2721;
    }
    .xs-phone-land .page_content_main_services:nth-child(1) {
        height: 16.5%;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    /* Main Services Page - Section 2 */
    /* Header */
    .xs-phone-land .main-services-wrapper .page_content_main_services:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .xs-phone-land .main-services-wrapper .page_content_main_services:nth-child(1) h1 {
        font-size: 5rem;
    }

    /* Main Services Page - Section 3 */
    /* Categories Groups */
    .xs-phone-land .main-services-wrapper .page_content_main_services:nth-child(2) {
        position: relative;
        display: flex;
        width: 80%;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin: 0 auto;  
    }


    .xs-phone-land .vertical-layout {
        flex-direction: column;
        padding: 0 5vw;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    /* List Layout */

    /* ───────────  business logo  ─────────── */
    .xs-phone-land .card-part-1 {
        flex: 2 1 6rem;
        border-bottom-left-radius: 0;
        border-right: 1px solid #0C2721;
        border-bottom: 1px solid #0C2721;
        min-width: 19rem;
        max-width: 19rem;
        min-height: 19rem;
        max-height: 19rem;
    }
    .xs-phone-land .card-part-2 {
        flex: 3 1 50rem;
        /*background-color: #193C35;*/
        background-color: #193C35;
        border-bottom: 1px solid #0C2721;
        border-bottom-left-radius: 3.125rem;
        border-bottom-right-radius: 3.125rem;
        flex-direction: column;
        padding: 0.5rem 0.5rem;
    }

    /* ───────────  Description  ──────────── */
    .xs-phone-land .card-part-2 .p1 {
        font-size: 2rem;
    }
    .xs-phone-land .card-part-2 .p2 {
        font-size: 1.35rem;
    }
    .xs-phone-land .card-part-2 .p3 {
        font-size: 1.55rem;
        margin: 1.5rem 0.5rem;
    }
    .xs-phone-land .category-buttons-inline-ms .category-button-ms {
        font-size: 1.6rem;
    }

    /* ───────────  Location  ─────────── */
    .xs-phone-land .card-part-3 {
        flex: 1 1 16rem;
        background-color: #191919;
        border-right: 0;
    }
    .xs-phone-land .card-part-3-1 {
        font-size: 2.5rem;
        margin: 5% 5%;
    }
    .xs-phone-land .card-part-3-2 {
        font-size: 2.1rem;
        margin: 5% 5%;
    }
    .xs-phone-land .card-part-3-3 {
        font-size: 2.1rem;
        margin: 5% 5%;
    }
    .xs-phone-land .card-part-3-3 p a {
        color: #63ffa5;
    }
    .xs-phone-land .card-part-3o {
        color: #191919;
        background-color: #191919;
    }

    /* ───────────  Social Media  ─────────── */
    .xs-phone-land .card-part-4 {
        border-top-right-radius: 3.125rem;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #191919;
        flex: 0 0  2rem;
        padding: 1% 0 1% 0;

        gap: 0rem;
        flex-direction: column;
    }

    /* ───────────  Business Card Overlay (Base) ─────────── */
    /* Modal Card Container */
    .xs-phone-land #businessModal .modal-content {
        padding: 0;
        margin: 0 1rem;
        top: 0rem;
        width: 90%;
        max-width: 90vw;
        height: 90%;
        max-height: 90vh;
    }

    .xs-phone-land .modal-header-bar {
        padding: 0.5rem 1rem;
        border-bottom: 1px solid #444;
        align-items: center;
    }

    .xs-phone-land .modal-header-bar .close-modal {
        font-size: 3rem;
        padding: 0 0.25rem;
    }

    /* Modal Typography */
    /* Optional: Divider Line */
    .xs-phone-land #businessModal hr {
        border: none;
        border-top: 1px solid #444;
        margin: 1.5rem 0;
    }

    /* ───────────  Business Card Layout Grid (Content) ─────────── */
    .xs-phone-land .modal-business-grid {
        grid-template-columns: 1fr;
    }

     /* Business Info 1 */
    .xs-phone-land .modal-business-info-1 {
        color: #E3D8BF;
        padding: 1rem 2rem 0 2rem;
        max-width: 655px;
    }
    .xs-phone-land .modal-business-header {
        font-size: 4.25rem;
        padding-top: 1rem;
    }
    .xs-phone-land .modal-business-services {
        font-size: 2.75rem;
        font-style: italic;
        margin-bottom: 0.5rem;
    }
    .xs-phone-land .modal-business-info-headings {
        color: #E3D8BF;
        font-size: 1.85rem;
        padding-top: 1rem;
    }
    .xs-phone-land .modal-business-info-address {
        font-size: 2.25rem;
    }
    .xs-phone-land .modal-business-info-phone {
        font-size: 2.25rem;
    }

     /* Business Website Link */
    .xs-phone-land .modal-business-info-website {
        margin: 1rem 0;
        padding: 0.5rem 1.25rem;
        background-color: #36c8a7;
    }
    .xs-phone-land .modal-business-info-website:hover {
        color: #63ffa5;
        text-shadow: 0 0 0.5rem #63ffa5;
    }
    
     /* Business Image Gallery */
    .xs-phone-land .modal-business-gallery {
        max-width: 100%; /* 4 images * 64px + spacing */
        margin: 1rem 0;
    }
    .xs-phone-land .modal-business-gallery img {
        scroll-snap-align: start;
    }

    .xs-phone-land .modal-business-gallery img,
    .xs-phone-land .modal-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
    scroll-snap-align: start;
    border: 0 solid #333;
    transition: transform 0.2s ease, border 0.2s ease;
    cursor: pointer;
    }
    .xs-phone-land .modal-thumb {
        padding: 1rem;
    }

    .xs-phone-land .modal-business-gallery img:hover,
    .xs-phone-land .modal-thumb:hover {
    transform: scale(1);
    }

    /* Highlight Active Thumbnail */
    .xs-phone-land .modal-thumb.active {
    border: 2px solid #36c8a7;
    transform: scale(1);
    }

    /* Carousel Navigation Arrows */
    .xs-phone-land .carousel-nav-left {
        background: none;
        border: none;
        font-size: 2rem;
        color: #E3D8BF;
        cursor: pointer;
        transition: color 0.2s ease;
        margin: 0 2rem 0 0;
    }

    .xs-phone-land .carousel-nav-right {
        background: none;
        border: none;
        font-size: 2rem;
        color: #E3D8BF;
        cursor: pointer;
        transition: color 0.2s ease;
        margin: 0 0 0 2rem;
    }

    .xs-phone-land .carousel-nav:hover {
        color: #ffffff;
    }

    /* Main Zoomable Image */
    .xs-phone-land .modal-carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }

    .xs-phone-land #modal-carousel-img {
        max-height: 340px;
        border-radius: 0.75rem;
        transition: transform 0.35s ease;
    }

    .xs-phone-land .zoom-bounce {
        animation: zoomBounce 0.35s ease;
    }

    @keyframes zoomBounce {
        0%   { transform: scale(1); }
        50%  { transform: scale(1.12); }
        100% { transform: scale(1); }
    }

    /* Image Preview Modal */
    .xs-phone-land .image-preview-modal {
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        max-width: 90vw;
        max-height: 90vh;
        padding-top: 75%;
    }
    
    /* The actual preview image */
    .xs-phone-land #imagePreviewContent {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        justify-content: center;
        align-items: center;
    }
    
    .xs-phone-land #imagePreviewModal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .xs-phone-land #imagePreviewModal img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 1rem;
        box-shadow: 0 0 1rem rgba(0,0,0,0.6);
        
    }
    /* Scrollbar for WebKit browsers */
    .xs-phone-land .modal-business-gallery::-webkit-scrollbar {
        height: 8px;
    }
    .xs-phone-land .modal-business-gallery::-webkit-scrollbar-track {
        background: #1b1b1b;
    }
    .xs-phone-land .modal-business-gallery::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 4px;
    }

    /* Business Hours */
    .xs-phone-land .modal-business-hours {
        margin-top: 1rem;
    }

    .xs-phone-land .modal-business-hours p {
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .xs-phone-land .hours-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 2rem;
        color: #ddd;
    }

    .xs-phone-land .hours-table td {
        padding: 0.3rem 0.5rem;
    }

    .xs-phone-land .hours-table .day {
        font-weight: 600;
        color: #FFFFFF;
        width: 40%;
    }

    .xs-phone-land .hours-table .time {
        color: #aaa;
        text-align: right;
    }

    /* Business Info 2 */
    /* Business Map */
    .xs-phone-land .modal-business-map {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-right: 1rem; /* prevents overlap with close button */
        height: 250px;
    }
    .xs-phone-land .modal-business-map hr,
    .xs-phone-land .modal-business-map p,
    .xs-phone-land .modal-business-map ul {
        margin-left: 0.25rem;
    }

     /* Business Description */
    .xs-phone-land .modal-business-info-description {
        color: #FFFFFF;
        font-size: 2rem;
    }

    /* Modal Business Category Buttons */
    .xs-phone-land .modal-business-category-buttons-inline {
        gap: 2rem; /* 16px */
        padding: 0 2.5vw;
        flex-direction: column;
    }
    .xs-phone-land .modal-business-info-headings-services {
        padding-bottom: 1rem;
    }
    .xs-phone-land .modal-business-category-button {
        color: #E3D8BF;
        background-color: #191919;
        border: 0.125rem solid #303030;
        border-radius: 1rem; /* 20px */
        padding: 0.5rem 1.5rem; /* top-bottom 12px, sides 24px */
        font-size: 1.6rem;
        font-family: serif;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }
    .xs-phone-land .modal-business-category-button:hover {
        background-color: #1b1b1b;
        color: #36c8a7;
        box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
    }
    .xs-phone-land .modal-business-category-buttons-inline-ms .modal-business-category-button {
        background-color: #191919;
        color: #E3D8BF;
        border: 0.125rem solid #303030;
        border-radius: 1.25rem;
        padding: 0.375rem 0.875rem; /* 6px, 14px */
        font-size: 1.6rem;
        font-family: sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0 0 0.5rem 0.5rem;
    }
    .xs-phone-land .modal-business-category-buttons-inline-ms .modal-business-category-button:hover {
        background-color: #1b1b1b;
        color: #36c8a7;
        box-shadow: 0 0.125rem 0.125rem #36c8a7;
    }

    /* Main Services Page - Section 4 */
    /* Footer */
    .xs-phone-land .main-services-wrapper .page_content_main_services:nth-child(3) {
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
    }
}

@media(min-width: 850px) and (max-width: 979px) {
   /* ────────────────────────────────────────────────────────────────
   00. NAVIGATION MENU BAR
   ───────────────────────────────────────────────────────────── */
    .sm-phone-land .blb_logo {
        width: 8.5rem; /* 105.6px */
    }
    .sm-phone-land .menu_icon {    
        width: 5.8rem; /* 64px */
    }

    /* ────────────────────────────────────────────────────────────────
    Navigation
    ───────────────────────────────────────────────────────────── */
    .sm-phone-land .nav_main {
        padding: 2rem 2.75rem;
    }

    /* Side Menu */
    .sm-phone-land .sidebar-open #mySidenav {
        width: 33%; 
    }
    .sm-phone-land .nav_side {
        border-top-left-radius: 3rem;
        border-bottom-left-radius: 3rem;
    }

    .sm-phone-land .nav_content:nth-child(1) {
        align-items: center;
        justify-content: space-between; /* space between left and right */
        padding: 1.5rem;
        font-size: 5rem;
    }

    .sm-phone-land .a_left, .xs-phone .a_right {
        display: flex;
        align-items: center;
        width: auto;
    }

    .sm-phone-land .a_left {
        justify-content: flex-start;
    }

    .sm-phone-land .a_right {
        display: flex;
        justify-content: flex-end;
        align-items: center;   /* ✅ vertical centering */
        height: 100%;          /* make sure it has height context */
    }

    .sm-phone-land .closebtn_side {
        color: #FFFFFF;
        padding-left: 1.25rem;
        text-decoration: none;
    }

    .sm-phone-land .heartbtn_side {
        position: relative;
        color: #FF69B4;
        padding-right: 1.75rem;
        text-decoration: none;
        top: 0.15rem;
    }

    .sm-phone-land .heartbtn_side img {
        display: block;
        height: 2.75rem;          /* or whatever size you want */
    }

    .sm-phone-land .nav_content:nth-child(2) { 
        height: 10%;
        width: 100%;
        align-content: center;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .sm-phone-land .nav_content:nth-child(2) h1 {
        font-size: 4rem;
    }
    .sm-phone-land .nav_content:nth-child(3) { 
        align-items: flex-start;   /* Align items to the left*/
        flex-direction: column;
        justify-content: flex-start;
        gap: 1rem;
        padding: 2rem;
    }
    .sm-phone-land .nav_content:nth-child(3) a { 
        font-size: 3rem;
    }

    .sm-phone-land .nav_content:nth-child(4) { 
        align-items: center;
        justify-content: center;
    }

    /* Use flex-grow ratios — these will perfectly fill the height */
    /* Shared style for all sections */
    .sm-phone-land .nav_content {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3.5rem;
    }

    /* Social Media */
    .sm-phone-land .face_img_2 {
        width: 4.5rem; /* 64px */
    }

    .sm-phone-land .face_btn, .sm-phone-land .insta_btn, .sm-phone-land .blank_img {
        padding: 1rem;
    }
    .sm-phone-land .face_img, .sm-phone-land .insta_img, .sm-phone-land .blank_img {
        width: 2.5rem; /* 32px */
    }

    /* ────────────────────────────────────────────────────────────────
    Modal Overlay
    ───────────────────────────────────────────────────────────── */
    .sm-phone-land .modal-overlay {
        justify-content:center;
        align-items: flex-start;
    }

    /* Modal Content */
    .sm-phone-land .modal-content {
        top: 2.25rem;
        padding: 2.25rem;
    }

    /* Search Input */
    .sm-phone-land .search-input {
        font-size: 2.25rem;
        width: 100%;
        max-width: 90%;
    }

    /* Close Button */
    .sm-phone-land .close-modal {
        top: -0.75rem;
        right: -0.25rem;
        font-size: 3rem;
    }

    .sm-phone-land .suggestions-list {
        font-size: 2.25rem;
    }

    .sm-phone-land .suggestions-list li:hover {
        background-color: #2a2a2a;
    }

    .sm-phone-land .suggestions-list img {
        height: 1.4rem;
        width: auto;
        flex-shrink: 0;
    }

    .sm-phone-land .suggestions-list::-webkit-scrollbar {
        width: 8px;
    }
    .sm-phone-land .suggestions-list::-webkit-scrollbar-track {
        background: #1b1b1b;
    }
    .sm-phone-land .suggestions-list::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 4px;
    }

    .sm-phone-land .search-tooltip {
        top: 5.5rem;
        font-size: 1.4rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1A. HOME PAGE
    ───────────────────────────────────────────────────────────── */

    /* Home Page - Section 1 */
    /* Navigation Menu Bar */
    .sm-phone-land .page_content_home:nth-child(1) {
        height: 16.5%;
        align-items: center;
        justify-content: center;
    }

    /* Home Page - Section 2 */
    /* Header */
    .sm-phone-land .page_content_home:nth-child(2) {
        align-items: center;
        justify-content: center;
    }
    .sm-phone-land .section_home h1 {
        font-size: 6rem;
    }

    /* Home Page - Section 3 */
    /* Carousel Main Buttons */
    .sm-phone-land .page_content_home:nth-child(3) {
        height: 60%;
        width: 100%;
    }

    .sm-phone-land .carousel-wrapper {
        perspective: 1600px;
    }

    .sm-phone-land .carousel-item {
        margin: -8.40rem; /* -84px */
    }

    .sm-phone-land .a_home_box_1 img {
        filter: invert();
        width: 11.75rem; /* 100px */
        height: 11.75rem;
    }

    .sm-phone-land .a_home_box_1_text p{
        margin-top: 0.5rem;
        font-size: 2.25rem; 
    }

    /* Carousel Side Buttons */
    .sm-phone-land .carousel-button {
        height: 18.125rem; /* 290px */
        width: 32.125rem; /* 514px */
    }
    /* Home Page - Section 4 */
    /* Footer */
    .sm-phone-land .page_content_home:nth-child(4) {
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. CATEGORY PAGE
    ───────────────────────────────────────────────────────────── */

    /* Category Page - Section 1 */
    /* Navigation Menu Bar */
    .sm-phone-land .page_content_category:nth-child(1) {
        height: 16.5%;
        align-items: center;
        justify-content: center;
    }

    /* Category Page - Section 2 */
    /* Header */
    .sm-phone-land .category-wrapper {
        padding-right: 0.25rem;
    }

    .sm-phone-land .category-wrapper .page_content_category:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .sm-phone-land .category-wrapper .page_content_category:nth-child(1) h1 {
        font-size: 6rem;
    }

    /* Category Page - Section 3 */
    /* Categories Groups */
    .sm-phone-land .category-wrapper .page_content_category:nth-child(2) {
        width: 100%;
    }
    .sm-phone-land .category-wrapper .page_content_category:nth-child(2) h2 {
        font-size: 4.25rem;
    }

    /* Category Buttons */
    .sm-phone-land .category-buttons-inline {
        gap: 2rem; /* 16px */
        padding: 0 2.5vw;
        flex-direction: column;
    }
    
        .xs-phone-land .category-button {
        border-radius: 1.5rem; /* 20px */
        font-size: 3rem;
    }

     .sm-phone-land .dropdown-header {
        padding: 0.75em;
        cursor: pointer;
        width: 100%;
        border: none;
        font-size: 3em;
        font-weight: bold;
        transition: color 0.3s ease;
        background-color: #0C2721;
    }

    .sm-phone-land .dropdown-content {
        display: none;
        padding: 1em;
        background-color: #0C2721;
    }

     .sm-phone-land .dropdown-content.visible {
        display: block;
    }

     .sm-phone-land .category-button {
        display: inline-block;
        margin: 0.25em;
        padding: 0.5em 1em;
        border: none;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.75rem;
    }

     .sm-phone-land .category-button:hover {
            background-color: #1b1b1b;
            color: #36c8a7;
            box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
    }


    /* Category Page - Section 4 */
    /* Footer */
    .sm-phone-land .category-wrapper .page_content_category:nth-child(3) {
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. ABOUT PAGE
    ───────────────────────────────────────────────────────────── */
    /* About Page - Section 1 */
    /* Navigation Menu Bar */
    .sm-phone-land .page_content_about:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
        height: 16.5%;
    }

    /* About Page - Section 2 */
    /* Header */
    .sm-phone-land .about-wrapper {
        height: 90%;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: overlay; /* nice if supported */
        overflow-y: auto;    /* fallback */
        padding-right: 1rem;
        box-sizing: content-box;
    }
    .sm-phone-land .about-wrapper .page_content_about:nth-child(1) {
        width: 100%;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 16vh 0 10vh 0;
    }

    .sm-phone-land .section_about h1 {
        font-size: 6.5rem;
        text-align: center;
    }
    .sm-phone-land .section_about h2 {
        font-size: 5.25rem;
    }
    .sm-phone-land .section_about h3 {
        font-size: 4rem;
    }

    /* About Page - Section 3 */
    /* Content Description */
    .sm-phone-land .about-wrapper .page_content_about:nth-child(2) {
        width: 100%;
    }

    .sm-phone-land .about-wrapper-paragraphs {
        padding: 0 2.5vw 20vw 2.5vw;
    }

    /* Description Section */
    .sm-phone-land .about_p {
        padding: 0 1.5%; /* instead of 12.5rem / 200px */
        text-align: left;
        font-size: 2.5rem;
    }

    .sm-phone-land .about_p1 {
        text-align: left;
        padding: 2vh 3.5vw 0.75vh 3.5vw;
    }
    .sm-phone-land .about_p2 {
        text-align: left;
    }
    .sm-phone-land .about_p3 {
        text-align: left;
    }

    /* Call to Action Boxes */
    .sm-phone-land .contact_p_button {
        padding: 1.5vw 12.5vh; /* top-bottom 12px, sides 24px */
        font-size: 2.75rem;
        border-radius: 1.75rem;
    }
    .sm-phone-land .contact_p1 {
        font-size: 2rem;
    }
    .sm-phone-land .contact_p2 {
        font-size: 2.5rem;
        padding: 0 2rem;
    }

    /* About Page - Section 4 */
    /* Footer */
    .sm-phone-land .about-wrapper .page_content_about:nth-child(3) {
        position: relative;
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2.5rem;
        padding: 1vh 0 0 0;
        bottom: 3.5vh;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. UNDER CONSTRUCTION PAGE
    ───────────────────────────────────────────────────────────── */
    /* Under Construction Page - Section 1 */
    /* Navigation Menu Bar */
    .sm-phone-land .page_content_underconstruction:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
        height: 16.5%;
    }

    /* Under Construction Page - Section 2 */
    /* Header */
    .sm-phone-land .page_content_underconstruction:nth-child(2) {
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 6vh 0 10vh 0;
    }
    .sm-phone-land .section_underconstruction h1 {
        font-size: 6rem;
    }
    .sm-phone-land .section_underconstruction h2 {
        font-size: 4.75rem;
    }
    .sm-phone-land .section_underconstruction h3 {
        font-size: 3.5rem;
    }

    /* Under Construction Page - Section 3 */
    /* Content Description */
    .sm-phone-land .page_content_underconstruction:nth-child(3) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .sm-phone-land .underconstruction-wrapper-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .sm-phone-land .underconstruction-wrapper-paragraphs {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 5vw;
        width: 100%;
        height: 63vh;
        box-sizing: border-box;
    }

    /* Description Section */
    .sm-phone-land .underconstruction_p {
        padding: 0 1.25%; /* instead of 12.5rem / 200px */
        text-align: center;
    }

    .sm-phone-land .underconstruction_p1 {
        font-size: 3rem;
    }
    .sm-phone-land .underconstruction_p2 {
        font-size: 3.25rem;
    }
    .sm-phone-land .underconstruction_p3 {
        font-size: 3.5rem;
    }

    /* Call to Action Boxes */
    .sm-phone-land .contact_underconstruction_p_button {
        padding: 1.5vw 12.5vh; /* top-bottom 12px, sides 24px */
        font-size: 2.75rem;
        border-radius: 1.75rem;
    }
    .sm-phone-land .contact_underconstruction_p1 {
        font-size: 2rem;
    }
    .sm-phone-land .contact_underconstruction_p2 {
        font-size: 2.25rem;
    }

    /* Under Construction Page - Section 4 */
    /* Footer */
    .sm-phone-land .page_content_underconstruction:nth-child(4) {
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
        font-size: 2.5rem;
    }

    /* ────────────────────────────────────────────────────────────────
    1B. MAIN SERVICES PAGE
        ───────────────────────────────────────────────────────────── */
    /* Main Services Page - Section 1 */
    /* Navigation Menu Bar */

    .main-services-wrapper {
        height: 90%;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: overlay; /* nice if supported */
        overflow-y: auto;    /* fallback */
        padding-right: 0;
        box-sizing: content-box;
        background-color: #0C2721;
    }
    .sm-phone-land .page_content_main_services:nth-child(1) {
        height: 16.5%;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    /* Main Services Page - Section 2 */
    /* Header */
    .sm-phone-land .main-services-wrapper .page_content_main_services:nth-child(1) {
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .sm-phone-land .main-services-wrapper .page_content_main_services:nth-child(1) h1 {
        font-size: 5rem;
    }

    /* Main Services Page - Section 3 */
    /* Categories Groups */
    .sm-phone-land .main-services-wrapper .page_content_main_services:nth-child(2) {
        position: relative;
        display: flex;
        width: 80%;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin: 0 auto;  
    }


    .sm-phone-land .vertical-layout {
        flex-direction: column;
        padding: 0 5vw;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    /* List Layout */

    /* ───────────  business logo  ─────────── */
    .sm-phone-land .card-part-1 {
        flex: 2 1 6rem;
        border-bottom-left-radius: 0;
        border-right: 1px solid #0C2721;
        border-bottom: 1px solid #0C2721;
        min-width: 20rem;
        max-width: 20rem;
        min-height: 20rem;
        max-height: 20rem;
    }
    .sm-phone-land .card-part-2 {
        flex: 3 1 50rem;
        /*background-color: #193C35;*/
        background-color: #193C35;
        border-bottom: 1px solid #0C2721;
        border-bottom-left-radius: 3.125rem;
        border-bottom-right-radius: 3.125rem;
        flex-direction: column;
        padding: 0.5rem 0.25rem;
    }

    /* ───────────  Description  ──────────── */
    .sm-phone-land .card-part-2 .p1 {
        font-size: 2rem;
    }
    .sm-phone-land .card-part-2 .p2 {
        font-size: 1.35rem;
    }
    .sm-phone-land .card-part-2 .p3 {
        font-size: 1.55rem;
        margin: 1.5rem 0.5rem;
    }
    .sm-phone-land .category-buttons-inline-ms .category-button-ms {
        font-size: 1.6rem;
    }

    /* ───────────  Location  ─────────── */
    .sm-phone-land .card-part-3 {
        flex: 1 1 16rem;
        background-color: #191919;
        border-right: 0;
        padding: 0 0;
    }
    .sm-phone-land .card-part-3-1 {
        font-size: 2.5rem;
        margin: 5% 5%;
    }
    .sm-phone-land .card-part-3-2 {
        font-size: 2.1rem;
        margin: 5% 5%;
    }
    .sm-phone-land .card-part-3-3 {
        font-size: 2.1rem;
        margin: 5% 5%;
    }
    .sm-phone-land .card-part-3-3 p a {
        color: #63ffa5;
    }
    .sm-phone-land .card-part-3o {
        color: #191919;
        background-color: #191919;
    }

    /* ───────────  Social Media  ─────────── */
    .sm-phone-land .card-part-4 {
        border-top-right-radius: 3.125rem;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #191919;
        flex: 0 0  2rem;
        padding: 1% 0 1% 0;

        gap: 0rem;
        flex-direction: column;
    }

    /* ───────────  Business Card Overlay (Base) ─────────── */
    /* Modal Card Container */
    .sm-phone-land #businessModal .modal-content {
        padding: 0;
        margin: 0 1rem;
        top: 0rem;
        width: 90%;
        max-width: 90vw;
        height: 90%;
        max-height: 90vh;
    }

    .sm-phone-land .modal-header-bar {
        padding: 0.5rem 1rem;
        border-bottom: 1px solid #444;
        align-items: center;
    }

    .sm-phone-land .modal-header-bar .close-modal {
        font-size: 3rem;
        padding: 0 0.25rem;
    }

    /* Modal Typography */
    /* Optional: Divider Line */
    .sm-phone-land #businessModal hr {
        border: none;
        border-top: 1px solid #444;
        margin: 1.5rem 0;
    }

    /* ───────────  Business Card Layout Grid (Content) ─────────── */
    .sm-phone-land .modal-business-grid {
        grid-template-columns: 1fr;
    }

     /* Business Info 1 */
    .sm-phone-land .modal-business-info-1 {
        color: #E3D8BF;
        padding: 1rem 2rem 0 2rem;
        max-width: 655px;
    }
    .sm-phone-land .modal-business-header {
        font-size: 4.25rem;
        padding-top: 1rem;
    }
    .sm-phone-land .modal-business-services {
        font-size: 2.75rem;
        font-style: italic;
        margin-bottom: 0.5rem;
    }
    .sm-phone-land .modal-business-info-headings {
        color: #E3D8BF;
        font-size: 1.85rem;
        padding-top: 1rem;
    }
    .sm-phone-land .modal-business-info-address {
        font-size: 2.25rem;
    }
    .sm-phone-land .modal-business-info-phone {
        font-size: 2.25rem;
    }

     /* Business Website Link */
    .sm-phone-land .modal-business-info-website {
        margin: 1rem 0;
        padding: 0.5rem 1.25rem;
        background-color: #36c8a7;
    }
    .sm-phone-land .modal-business-info-website:hover {
        color: #63ffa5;
        text-shadow: 0 0 0.5rem #63ffa5;
    }
    
     /* Business Image Gallery */
    .sm-phone-land .modal-business-gallery {
        max-width: 100%; /* 4 images * 64px + spacing */
        margin: 1rem 0;
    }
    .sm-phone-land .modal-business-gallery img {
        scroll-snap-align: start;
    }

    .sm-phone-land .modal-business-gallery img,
    .sm-phone-land .modal-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
    scroll-snap-align: start;
    border: 0 solid #333;
    transition: transform 0.2s ease, border 0.2s ease;
    cursor: pointer;
    }
    .sm-phone-land .modal-thumb {
        padding: 1rem;
    }

    .sm-phone-land .modal-business-gallery img:hover,
    .sm-phone-land .modal-thumb:hover {
    transform: scale(1);
    }

    /* Highlight Active Thumbnail */
    .sm-phone-land .modal-thumb.active {
    border: 2px solid #36c8a7;
    transform: scale(1);
    }

    /* Carousel Navigation Arrows */
    .sm-phone-land .carousel-nav-left {
        background: none;
        border: none;
        font-size: 2rem;
        color: #E3D8BF;
        cursor: pointer;
        transition: color 0.2s ease;
        margin: 0 2rem 0 0;
    }

    .sm-phone-land .carousel-nav-right {
        background: none;
        border: none;
        font-size: 2rem;
        color: #E3D8BF;
        cursor: pointer;
        transition: color 0.2s ease;
        margin: 0 0 0 2rem;
    }

    .sm-phone-land .carousel-nav:hover {
        color: #ffffff;
    }

    /* Main Zoomable Image */
    .sm-phone-land .modal-carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }

    .sm-phone-land #modal-carousel-img {
        max-height: 340px;
        border-radius: 0.75rem;
        transition: transform 0.35s ease;
    }

    .sm-phone-land .zoom-bounce {
        animation: zoomBounce 0.35s ease;
    }

    @keyframes zoomBounce {
        0%   { transform: scale(1); }
        50%  { transform: scale(1.12); }
        100% { transform: scale(1); }
    }

    /* Image Preview Modal */
    .sm-phone-land .image-preview-modal {
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        max-width: 90vw;
        max-height: 90vh;
        padding-top: 75%;
    }
    
    /* The actual preview image */
    .sm-phone-land #imagePreviewContent {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        justify-content: center;
        align-items: center;
    }
    
    .sm-phone-land #imagePreviewModal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .sm-phone-land #imagePreviewModal img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 1rem;
        box-shadow: 0 0 1rem rgba(0,0,0,0.6);
        
    }
    /* Scrollbar for WebKit browsers */
    .sm-phone-land .modal-business-gallery::-webkit-scrollbar {
        height: 8px;
    }
    .sm-phone-land .modal-business-gallery::-webkit-scrollbar-track {
        background: #1b1b1b;
    }
    .sm-phone-land .modal-business-gallery::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 4px;
    }

    /* Business Hours */
    .sm-phone-land .modal-business-hours {
        margin-top: 1rem;
    }

    .sm-phone-land .modal-business-hours p {
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .sm-phone-land .hours-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 2rem;
        color: #ddd;
    }

    .sm-phone-land .hours-table td {
        padding: 0.3rem 0.5rem;
    }

    .sm-phone-land .hours-table .day {
        font-weight: 600;
        color: #FFFFFF;
        width: 40%;
    }

    .sm-phone-land .hours-table .time {
        color: #aaa;
        text-align: right;
    }

    /* Business Info 2 */
    /* Business Map */
    .sm-phone-land .modal-business-map {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-right: 1rem; /* prevents overlap with close button */
        height: 250px;
    }
    .sm-phone-land .modal-business-map hr,
    .sm-phone-land .modal-business-map p,
    .sm-phone-land .modal-business-map ul {
        margin-left: 0.25rem;
    }

     /* Business Description */
    .sm-phone-land .modal-business-info-description {
        color: #FFFFFF;
        font-size: 2rem;
    }

    /* Modal Business Category Buttons */
    .sm-phone-land .modal-business-category-buttons-inline {
        gap: 2rem; /* 16px */
        padding: 0 2.5vw;
        flex-direction: column;
    }
    .sm-phone-land .modal-business-info-headings-services {
        padding-bottom: 1rem;
    }
    .sm-phone-land .modal-business-category-button {
        color: #E3D8BF;
        background-color: #191919;
        border: 0.125rem solid #303030;
        border-radius: 1rem; /* 20px */
        padding: 0.5rem 1.5rem; /* top-bottom 12px, sides 24px */
        font-size: 1.6rem;
        font-family: serif;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }
    .sm-phone-land .modal-business-category-button:hover {
        background-color: #1b1b1b;
        color: #36c8a7;
        box-shadow: 0 0.125rem 0.125rem #36c8a7; /* Soft glow */
    }
    .sm-phone-land .modal-business-category-buttons-inline-ms .modal-business-category-button {
        background-color: #191919;
        color: #E3D8BF;
        border: 0.125rem solid #303030;
        border-radius: 1.25rem;
        padding: 0.375rem 0.875rem; /* 6px, 14px */
        font-size: 1.6rem;
        font-family: sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0 0 0.5rem 0.5rem;
    }
    .sm-phone-land .modal-business-category-buttons-inline-ms .modal-business-category-button:hover {
        background-color: #1b1b1b;
        color: #36c8a7;
        box-shadow: 0 0.125rem 0.125rem #36c8a7;
    }

    /* Main Services Page - Section 4 */
    /* Footer */
    .sm-phone-land .main-services-wrapper .page_content_main_services:nth-child(3) {
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 2.5rem;
    }
}
