html, body{
    margin: 0;
    padding: 0;
    background-color: #8D807C;
    font-family: Arial, sans-serif;
    font-size: 16px;
    overflow-x:hidden;
    
}



/* ----------------------------------------------
   HEADER + NAVBAR
   ---------------------------------------------- */

.sb-header {
    width: 100%;
    background: #74675e; 
    padding: 18px 0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.sb-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BRAND AREA */
.sb-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sb-logo {
    width: 270px;
    max-width: 270px;
    height: auto;
    object-fit: contain;
}

.sb-brand-text {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #E8C6D2; /* soft pink */ 
    font-family: "Georgia", serif;
}

/* NAV LINKS */
.sb-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sb-nav a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #F3E7EA; /* blush white */
    transition: 0.25s ease;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

.sb-nav a:hover {
    color: #E8C6D2;  /* soft pink */
    border-bottom: 2px solid #CFA976; /* soft beige highlight */
}

.sb-nav a.active {
    color: #E8C6D2;
    border-bottom: 2px solid #CFA976;
}

/* MOBILE FRIENDLY */



/* --------INDEX----------------
/* ----------------------------------------------
   HOME HERO SECTION
---------------------------------------------- */

.hero {
    width: 100%;
    height: 50vh;
    background: linear-gradient(135deg, #8D807C 0%, #B39FA4 55%, #E8C6D2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
   
}

.hero-inner {
    max-width: 1400px;
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

/* LEFT IMAGE */
.hero-image img {
    max-width: 480px;
    max-height: 60vh;
    width: 100%;
    opacity: 0.9;
    height: auto;
}

/* RIGHT TEXT */
.hero-text {
    max-width: 100%;
    text-align: center;
    padding: 0 10px;
    color: #F9F6F5;
}

.hero-text h1 {
    font-family: Abril;
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    color: #F9F6F5;
    text-shadow: 0 3px 12px rgba(0,0,0,0.3);
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #F9F6F5;
    opacity: 0.95;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    background: #e69ac2;
    color: #FFFFFF;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #F9F6F5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}




/* ======================================
   SERVICES PREVIEW
====================================== */

.services-preview {
    background: #F3E7EA;
    padding: 80px 40px;
    text-align: center;
}

.services-preview h2 {
    color: #3f3634;
    font-size: 2.6rem;
    margin-bottom: 10px;
    font-family: 'Abril Fatface', serif;
}

.services-sub {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.service-card img {
    width: 60px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #3f3634;
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Button */
.section-btn {
    margin-top: 40px;
    display: inline-block;
    padding: 14px 28px;
    background: #e69ac2;
    color: #FFFFFF;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.section-btn:hover {
    background: #D7A2B8;
    filter: brightness(1.08);
    transform: translateY(-2px);
}


/* ==========================
   INDEX SMALL GALLERY (GRID)
============================= */

.gallery{
    background: #F3E7EA;
    padding: 70px 40px 90px;
    text-align: center;
}

.gallery-inner{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Tile */
.gallery-image{
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 3px solid rgba(207,169,118,0.25);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Image fills tile (this is what you were missing) */
.gallery-image img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.gallery-image:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

/* Responsive */
@media (max-width: 1000px){
    .gallery-inner{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .gallery{
        padding: 45px 18px 65px;
    }

    .gallery-inner{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    
    .gallery-image{
        padding-top: 75%; /* 4:3 */
    }
}


/* ======================================
   ABOUT SECTION
====================================== */

.about {
    background: #FFFFFF;
    padding: 80px 40px;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.about-text h2 {
    font-family: 'Abril Fatface', serif;
    font-size: 2.5rem;
    color: #3f3634;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.about-img img {
    width: 100%;
    max-height: 350px;
    height:50%;
    border: 3px solid rgba(207,169,118,0.35);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}


/* ======================================
   WHY CHOOSE US
====================================== */

.why {
    padding: 80px 40px;
    background: #E8C6D2;
    text-align: center;
}

.why h2 {
    font-family: 'Abril Fatface', serif;
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #3f3634;
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.why-card {
    background: #FFFFFF;
    border: 1px solid rgba(207,169,118,0.22);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    
    /*Equal heights*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-card h3 {
    color: #3f3634;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.why-card p {
    opacity: 0.85;
    font-size: 0.95rem;
}


/* ======================================
   CTA SECTION
====================================== */

.cta {
    background: #8D807C;
    padding: 90px 40px;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.cta p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 999px;
    background: #e69ac2;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #D7A2B8;
    filter: brightness(1.08);
    transform: translateY(-2px);
}







/* ----------------------------------------------
    GALLERY PAGE
-------------------------------------------------*/
.gal-hero{
  padding: 60px 24px 45px;
  text-align: center;
  background: #B9AAA3; /* warm taupe */
  color: #ffffff;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08);
}

.gal-hero-inner{
  max-width: 900px;
  margin: 0 auto;
}

.gal-hero h1{
  font-family: 'Sacramento', serif;
  font-size: 4.1rem;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.gal-hero p{
  font-family: 'Sacramento', serif;
  font-size: 2.05rem;
  opacity: 0.92;
}




.gal{
  background: #F3E7EA;
  padding: 60px 40px 80px;
}

.gal-inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* Masonry layout */
.masonry{
  column-count: 3;
  column-gap: 22px;
}

/* Each item must not break across columns */
.masonry-item{
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;

  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 3px solid rgba(207,169,118,0.25);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  transition: 0.25s ease;
}

/* Images keep their natural aspect ratio */
.masonry-item img{
  width: 100%;
  height: auto;
  display: block;
}

/* Nice hover, still subtle */
.masonry-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}

@media (max-width: 1000px){
  .masonry{ column-count: 2; }
}

@media (max-width: 600px){
  .gal{ padding: 45px 18px 65px; }
  .masonry{ column-count: 2; } /* was 1 */
}

@media (max-width: 400px){
  .masonry{ column-count: 1; } /* super small phones */
}



.gal-cta {
    background: #8D807C;
    padding: 90px 40px;
    text-align: center;
    color: white;
}

.gal-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.gal-cta p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.gal-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 999px;
    background: #e69ac2;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.gal-cta-btn:hover {
    background: #D7A2B8;
    filter: brightness(1.08);
    transform: translateY(-2px);
}

/* ------------------------------------------------------
    GALLERY END
---------------------------------------------------------*/

















/* ----------------------------------------------
   CONTACT PAGE
---------------------------------------------- */

.contact-hero {
    text-align: center;
    padding: 90px 20px 50px;
    background: linear-gradient(135deg, #8D807C 0%, #CAB8B1 100%);
    color: white;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-family: Abril;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Main container */
.contact-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 30px;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}


/* INDIVIDUAL CARD */
.contact-card {
    background: #f8f5f2;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 28px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card h3 {
    margin: 0 0 10px;
    color: #3b2e30;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-card p {
    margin: 0;
    font-size: 1.05rem;
    color: #4c3b37;
    line-height: 1.6;
}

.contact-card a {
    color: #8d3c63;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* MAP BOX */
.map-box {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 1.1rem;
    border: 1px solid rgba(0,0,0,0.15);
}















/* Appointment form container */

.appointment-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 400px;
    margin: 0;
    padding-top: 90px;
    
}

/* Appointment form content styles */


.appointment-form h2 {
    font-family: 'Abril Fatface', serif;
    color: #3f3634;
    margin-bottom: 25px;
    
}

.main_header{
    text-align: center;
}

.appointment-form > h2 {
    font-size: 2.5rem;
    margin-top: 10px;
    margin-bottom: 35px;
}


.appointment-form {

background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

/* Appointment form - appointment styles */

.accordion-item { 

    width: 100%;
    background: #fff4f8;
    padding: 14px;
    margin-top: 12px;
    border-radius: 8px;
    border: 1px solid #f0d0e0;
    text-align: left;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.08s ease;
    font-weight: 600;
    color: #4a3f3c;
    font-size: 1.1rem;
    cursor: pointer;


}


.accordion-item:hover {
    background-color: #f9d7ea;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.accordion-item.active {
    background: linear-gradient(135deg, #f5c7d6, #e69ac2);
    color: #ffffff;
    border-color: #d46ca2;
}



.appointment-form h2 {
    color: #3f3634;
    font-family: serif;
}


/* Form Panels styles */
/* Hide all panels by default */
.panel {
    padding: 14px 16px;
    margin-top: 6px;
    margin-bottom: 18px;
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    box-sizing: border-box;
    display: none;
}

.panel label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 18px;
    line-height: 1.3;
    font-size: 1rem;
    color: #4a3f3c;        /* softer brown-pink for premium feel */
    font-family: 'Poppins', sans-serif;
}

/* Show the panel once active*/
.panel.active{
    display: block;
}

.panel input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #d46ca2; 
}

.panel h3 {
    margin-top: 12px;
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
    color: #4a3f3c;
}


/*Multi-step form*/
/* Hide all steps by default */
.step{
    display: none;
}

/* Show the first step */
#step1 {
    display: block;
}



/* Next and Previous button styles */

/* ---------------------------
   Base Button Styles
---------------------------- */
.next-btn, .back-btn {
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    transition: 
        transform 0.15s ease,
        box-shadow 0.2s ease,
        filter 0.15s ease;
}

/* ---------------------------
   Primary Button (Continue / Next)
---------------------------- */
.next-btn {
    background: linear-gradient(135deg, #f5c7d6, #e69ac2);
    color: #fff;
    box-shadow: 0 6px 16px rgba(230, 154, 194, 0.35);
    margin-top: 12px;
    margin-left: 4px;
}

.next-btn:hover:not(:disabled) {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.next-btn:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(230, 154, 194, 0.25);
}

/* Disabled */
.next-btn:disabled {
    background: #e8dede;
    color: #a29a98;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}


/* ---------------------------
   Secondary Button (Back)
---------------------------- */
.back-btn {
    background: #e2d9d7;
    color: #544542;
    box-shadow: 0 4px 12px rgba(158, 140, 133, 0.2);
}

.back-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
}

.back-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(158, 140, 133, 0.2);
}



/* Month selector (Step 2) */
.month-label{
    display: block;
    margin-top: 10px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a3f3c;
}

.month-select{
    width: 100%;
    max-width: 320px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid #e0d0cb;
    background-color: #fff;
    color: #4a3f3c;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    appearance: none;         /* removes default arrow style */
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Fake dropdown arrow */
    background-image:
      linear-gradient(45deg, transparent 50%, #8d3c63 50%),
      linear-gradient(135deg, #8d3c63 50%, transparent 50%);
    background-position:
      calc(100% - 22px) 50%,
      calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.month-select:hover{
    background-color: #fff4f8;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.month-select:focus{
    border-color: #d46ca2;
    box-shadow: 0 0 0 4px rgba(212,108,162,0.18);
}

/* Mobile tweaks */
@media (max-width: 850px){
    .month-select{
        max-width: 100%;
    }
}


/* Day and time selection*/

.day-container, .time-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}


.day-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
    gap: 10px;
    justify-content: center;
}
    
.date-slot{
    flex: 0 0 calc(33.33% -10px); /* 3 per row */
    text-align: center;
    padding: 12px;
    border-radius: 8px;
}


/* Day and time slot pill style */
.day, .time-block {
    padding: 10px 15px;
    border-radius: 999px;
    border: 1px solid #e0d0cb;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

/* Hover effect */
.day:hover,
.time-block:hover {
    background-color: #f5c7d6;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

/* Selected state */
.day.selected, .time-block.selected {
    background-color: #d46ca2;
    color: white;
}

/* Blocked state */
.day.blocked, .time-block.blocked {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Consult Styles */

/* Input field styles */
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    margin-top: 8px;
    margin-bottom: 20px;
    border: 1px solid #d4c4c0;
    border-radius: 12px;
    box-sizing: border-box;
    background-color: #fdfafa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}




/* Submit button styles */

.submit-btn {
    background: linear-gradient(135deg, #f5c7d6, #e69ac2);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
        filter: brightness(1.04); 
    box-shadow: 0 8px 18px rgba(212,108,162,0.35);
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

/* Tooltips */

/* ============= INFO ICONS & TOOLTIPS ============= */
/* Row for label + icon */
.label-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

/* Info bubble icon */
.info-tip {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #a1798d;
    color: #a1798d;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

/* Text “i” inside the icon */
.info-tip::before {
    content: "i";
}

/* Tooltip */
.info-tip:hover::after {
    content: attr(data-tip);
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    padding: 12px 14px;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    font-size: 14px;
    line-height: 1.45;
    z-index: 20;
    white-space: normal;
}

/* Tooltip arrow */
.info-tip:hover::before {
    content: "i";  
}

.info-tip:hover::after {
    border: none;
}




/* ----------------------------------------------
   STARBLISS BEAUTY – LUXURY SPA SERVICE CARDS
   ---------------------------------------------- */

/* Page container */


/*-----------------------------------------
/*   STARBLISS BEAUTY – LUXURY SPA TEXT MENU
/*   ---------------------------------------------- */

.services-title{
    color: #3c2e2a;
    text-align: center;
    font-size: 2.4rem;
}

.services-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 50px 60px;
    background: #fff4f8;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Category headers */
.service-category {
    font-size: 1.9rem;
    font-weight: 700;
    margin-top: 55px;
    margin-bottom: 18px;
    color: #3c2e2a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-category::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #d3c5bb, transparent);
}

/* Individual treatment row */
.service-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Left side: name + description */
.service-left h3 {
    margin: 0 0 5px;
    font-size: 1.22rem;
    font-weight: 700;
    color: #2e1f1b;
}

.service-left p {
    margin: 0;
    font-size: 0.95rem;
    color: #5a4a44;
    max-width: 85%;
    line-height: 1.45;
}

/* Right side: duration + price */
.service-right {
    text-align: right;
    min-width: 140px;
}

.service-right .duration {
    display: block;
    font-size: 0.85rem;
    font-family: "Georgia", serif;
    opacity: 0.75;
    color: #3d2e2a;
}

.service-right .price {
    display: block;
    margin-top: 4px;
    font-size: 0.95rem;
    font-family: "Georgia", serif;
    font-weight: 700;
    color: #2e1f1b;
}

/* Remove border for last item in each category */
.service-row:last-child {
    border-bottom: none;
}













/* ----------------------------------------------
   MOBILE NAVBAR + PAGE FIXES
---------------------------------------------- */
@media (max-width: 850px) {

    /* Fix global section spacing */
    .services-preview,
    .hero,
    .about,
    .why,
    .cta,
    .services-container,
    .contact-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Header becomes stacked */
    .sb-header {
        width: 100%;
        padding: 12px 0;
        position: relative;
        top: 0;
        z-index: 10;
    }

    .sb-header-inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center;
    }



    .sb-header, 
    .sb-header-inner,
    .sb-nav ul {
    max-width: 100% !important;
    overflow-x: hidden !important;
    }




    .sb-brand {
        justify-content: center;
    }

    .sb-brand-text {
        font-size: 1.25rem;
        text-align: center;
    }

    .sb-nav ul {
        display: flex;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .sb-nav ul li {
    flex: 0 1 auto !important;
    text-align: center;
    margin: 0 6px;
    }

    
    /* ---------------- HERO (MOBILE) ----------------*/

    .hero {
        display: block;                      /* was flex */
        height: auto;
        padding: 8px 16px 22px;             /* 20px left/right */
        text-align: center;
    }

    .hero-inner {
        display: block;                      /* was flex */
        max-width: 420px;                    /* keeps content narrow */
        margin: 0 auto;   
        gap: 8px;                            
    }

    .hero-image {
        margin: 4px auto 8px;
        text-align: center;
    }

    .hero-image img {
        display: block;
        max-width: 200px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .hero-text {
        margin: 0 auto;
        text-align: center;
        max-width: 340px;
        box-sizing: border-box; 
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-text h1 {
        font-size: 1.7rem !important;        /* slightly smaller */
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 16px;
        margin-left: auto;         /* NEW: force proper centering */
        margin-right: auto;        /* NEW: force proper centering */
        max-width: 100%;           /* NEW: never exceed hero-text width */
        word-wrap: break-word;     /* safety if any long word appears */
    }

    .hero-btn {
        display: inline-block;
        margin: 0 auto;  
        padding: 10px 22px;
    }

    

    /* SERVICES GRID */
    .services-preview {
        padding: 50px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    
    /*ABOUT SECTION*/
    
    .about-inner{
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .about-img img {
        max-height: none;
        width:100% ;
    }
    
    

    /* WHY SECTION */
    
    .why {
    padding-left: 10px !important;
    padding-right: 10px !important;
    }

    
    .why-grid {
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    
    .why-card{
        width: 100% !important;
        box-sizing: border-box;
        margin: 0;
    }
    

    /* CONTACT PAGE */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    
    /*Appointments page styles*/
    
    .time-container{
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        justify-items: center;
    }
    
    .time-block{
        width: 100%;
        padding: 12px 0;
        text-align: center;
    }
    
    
        .day-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        justify-items: center;
        width: 100%;
        padding: 10px 0;
    }

    .day {
        width: 100%;
        padding: 12px 0;
        text-align: center;
        border-radius: 999px;
    }
    
    
    

} 