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

*,
*::before,
*::after {
    box-sizing: inherit;
}

/* Ensure all sections fit within viewport */
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Prevent any element from causing horizontal scroll */
* {
    max-width: 100%;
}

img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Animation Classes */
.slide-in {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.slide-in.active {
    opacity: 1;
    transform: translateX(0);
}

/* Ensure images maintain layout during animation */
.hero-image.slide-in,
.service-item.slide-in,
.memberships-image.slide-in,
.product-card.slide-in {
    will-change: transform, opacity;
}

/* Header Styles */
.header {
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background-color: white;
    padding: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2000;
    overflow: visible;
    box-sizing: border-box;
}

.logo-container {
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.logo {
    max-width: 440px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.nav-menu {
    overflow: visible;
}

.nav-menu ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.nav-menu a {
    color: #323232;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
}

.nav-menu a:hover {
    color: #C6A349;
}

.cta-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.phone-button {
    background: #1a4d1a;
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 0.7rem 2.2rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.appointment-button {
    background: #C6A349;
    color: #323232;
    border: none;
    border-radius: 2px;
    padding: 0.7rem 2.2rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.phone-button:hover {
    background-color: #083119;
}

.appointment-button:hover {
    background-color: #B3934E;
}

/* Hero Section */
.hero {
    margin-top: 0;
    height: calc(100vh - 280px);
    width: 100%;
    max-width: 100%;
    background-image: url('images/bp-hero-banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Hero Content Section */
.hero-content-section {
    background-image: url('images/grey-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
}

.hero-content-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    background-image: url('images/grey-bg.png');
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    overflow-x: hidden;
}

.hero-text {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: rgba(34,34,34,0.85);
    color: white;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    align-self: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: #ffffff;
}

.hero-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-text-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
}

.hero-paragraph-box {
    background: rgba(34,34,34,0.7);
    padding: 0;
    margin-bottom: 2rem;
    border-radius: 0;
    max-width: 100%;
    position: relative;
}

.paragraph-content {
    position: relative;
    transition: max-height 0.5s ease-out;
    overflow: hidden;
}

.paragraph-content.collapsed {
    max-height: 150px;
}

.paragraph-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.show-more-btn {
    position: relative;
    display: block;
    margin: 1rem 0 0;
    background: none;
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-align: left;
}

.show-more-btn:hover {
    color: rgba(255,255,255,0.8);
}

.show-more-btn::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.hero-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #d1d1d1;
    margin: 0 0 1rem 0;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-text a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.book-online-btn {
    align-self: flex-start;
    background: #d1d1d1;
    color: #222222;
    border: none;
    padding: 0.8rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    margin-top: 1rem;
}

.book-online-btn:hover {
    background-color: #e1e1e1;
}

.hero-image {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 2rem 0;
}

.hero-image img {
    max-height: 85%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 1200px) and (min-width: 901px) {
    .hero-text {
        padding: 3rem;
    }
    
    .hero-paragraph-box {
        padding: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .hero-content-container {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .hero-text {
        padding: 2.5rem 2rem;
    }
    
    .hero-paragraph-box {
        padding: 1.2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        height: 50vh;
        padding: 1rem 0;
    }
}

/* Stats Section */
.stats {
    background-color: #000000;
    padding: 4rem 0;
    position: relative;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8rem;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.stats-headline {
    flex: 0 0 auto;
}

.stats-headline h2 {
    color: white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    border-bottom: 2px solid #0F4229;
    padding-bottom: 1rem;
}

.stats-icons {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-right: 2rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 100px;
    height: 100px;
    fill: #C6A349;
}

.stat-item p {
    color: white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Mission Section */
.mission-section {
    background-color: #1a1a1a;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.mission-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.mission-section h2 {
    color: white;
    font-family: 'Didot', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.mission-underline {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 2rem;
}

.mission-section p {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
}

.mission-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #C6A349, transparent);
}

/* Why Choose Section */
.why-choose-section {
    background-color: #C6A349;
    padding: 5rem 0;
    text-align: center;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.why-choose-section h2 {
    color: #1a1a1a;
    font-family: 'Didot', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-choose-underline {
    width: 80px;
    height: 3px;
    background-color: #0F4229;
    margin: 0 auto 2rem;
}

.why-choose-description {
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-box {
    background-color: #F5F5DC;
    padding: 2rem;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    fill: #1a1a1a;
}

.feature-box p {
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Want It Section */
.want-it-section {
    background-image: url('images/gold-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
}

.want-it-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(198, 163, 73, 0.05) 25%, 
        rgba(198, 163, 73, 0.02) 25%, 
        rgba(198, 163, 73, 0.02) 50%, 
        rgba(198, 163, 73, 0.05) 50%, 
        rgba(198, 163, 73, 0.05) 75%, 
        rgba(198, 163, 73, 0.02) 75%, 
        rgba(198, 163, 73, 0.02));
    background-size: 20px 20px;
    z-index: 1;
}

.want-it-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.want-it-section h2 {
    color: white;
    font-family: 'Didot', serif;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.want-it-underline {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background-color: white;
    margin: 0 auto;
}

.request-appointment-btn {
    background-color: #0F4229;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 1rem;
}

.request-appointment-btn:hover {
    background-color: #083119;
}

/* Services Section */
.services-section {
    background: #fff;
    padding: 4rem 0;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    overflow-x: hidden;
}

.services-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

.services-section h2 {
    color: #1a1a1a;
    font-family: 'Didot', serif;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}

.services-underline {
    width: 200px;
    height: 1px;
    background-color: #1a1a1a;
    margin: 0 auto 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0;
    max-width: 100%;
    margin: 0;
}

.service-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: block;
    min-height: 400px;
    background: #fff;
    padding: 4px;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.service-item:hover img {
    transform: scale(1.07);
}

.service-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: block;
    min-height: 400px;
    background: #fff;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);  /* Semi-transparent overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-overlay {
    background: rgba(0,0,0,0.7);  /* Darker on hover */
}

.service-dropdown {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.45rem;
    z-index: 1;
    padding-bottom: 60px;
}

/* Special styling for Botox and Duality dropdown */
.service-item:nth-child(1) .service-dropdown {
    top: 22%;
    transform: translateY(0);
    gap: 0.35rem;
    padding-bottom: 130px;
}

.service-item:nth-child(1) .service-dropdown a {
    font-size: 0.75rem;
    padding: 0.3rem 0;
}

.service-item:nth-child(1) .service-title {
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:nth-child(1):hover .service-title {
    transform: translate(-50%, -180px);
}

/* Special styling for Dermal Fillers dropdown */
.service-item:nth-child(2) .service-dropdown {
    top: 30%;
    transform: translateY(0);
    gap: 0.4rem;
    padding-bottom: 90px;
}

.service-item:nth-child(2) .service-title {
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:nth-child(2):hover .service-title {
    transform: translate(-50%, -150px);
}

/* Special styling for Facials dropdown */
.service-item:nth-child(3) .service-dropdown {
    top: 40%;
    transform: translateY(0);
    gap: 0.45rem;
    padding-bottom: 80px;
}

.service-item:nth-child(3) .service-title {
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:nth-child(3):hover .service-title {
    transform: translate(-50%, -110px);
}

/* Special styling for Laser Hair Removal dropdown */
.service-item:nth-child(4) .service-dropdown {
    top: 32%;
    transform: translateY(0);
    gap: 0.45rem;
    padding-bottom: 80px;
}

.service-item:nth-child(4) .service-title {
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:nth-child(4):hover .service-title {
    transform: translate(-50%, -140px);
}

/* Special styling for Liposuction dropdown */
.service-item:nth-child(6) .service-dropdown {
    top: 32%;
    transform: translateY(0);
    gap: 0.5rem;
    padding-bottom: 90px;
}

.service-item:nth-child(6) .service-title {
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:nth-child(6):hover .service-title {
    transform: translate(-50%, -145px);
}

/* Special styling for Body Sculpting dropdown */
.service-item:nth-child(7) .service-dropdown {
    top: 36%;
    transform: translateY(0);
    gap: 0.4rem;
    padding-bottom: 85px;
}

.service-item:nth-child(7) .service-title {
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:nth-child(7):hover .service-title {
    transform: translate(-50%, -130px);
}

/* Special styling for Weight Loss dropdown */
.service-item:nth-child(9) .service-dropdown {
    top: 45%;
    transform: translateY(0);
    gap: 0.45rem;
    padding-bottom: 70px;
}

.service-item:nth-child(9) .service-title {
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:nth-child(9):hover .service-title {
    transform: translate(-50%, -95px);
}

.service-dropdown a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.4rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.service-dropdown a:hover {
    color: #ffffff;
}

.service-item:hover .service-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-item:hover .service-overlay {
    background: rgba(0,0,0,0.7);
}

.service-item:hover img {
    transform: scale(1.05);
}

.service-arrow {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.service-arrow span {
    font-size: 1.2rem;
    color: #000;
}

.service-item:hover .service-arrow {
    transform: translateX(-50%) scale(1.1);
}

.service-title {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-align: center;
    text-transform: uppercase;
    max-width: 80%;
    line-height: 1.4;
    margin: 0;
    padding: 0 1rem;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
}

.service-item:hover .service-title {
    transform: translate(-50%, -140%);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .logo {
        max-width: 380px;
    }
    
    .logo-container {
        padding: 0 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    .service-item {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-section h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    
    .services-underline {
        width: 130px;
        margin: 0 auto 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .service-item {
        min-height: 350px;
        padding: 0;
    }
    
    .service-title {
        font-size: 1.15rem;
        letter-spacing: 0.12em;
        max-width: 90%;
        line-height: 1.5;
    }
    
    .service-arrow {
        width: 40px;
        height: 40px;
    }
    
    .service-overlay {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 2.5rem 0;
    }
    
    .services-section h2 {
        font-size: 2rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.6rem;
        padding: 0 1rem;
    }
    
    .services-underline {
        width: 120px;
        margin: 0 auto 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .service-item {
        min-height: 350px;
        margin-bottom: 0;
    }
    
    .service-title {
        font-size: 1.1rem;
        letter-spacing: 0.12em;
        max-width: 90%;
        line-height: 1.5;
    }
    
    .service-arrow {
        width: 38px;
        height: 38px;
    }
    
    .service-overlay {
        padding: 1rem;
    }
}

/* Memberships Section */
.memberships-section {
    background-image: url('images/grey-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.memberships-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    min-height: 700px;
    height: auto;
}

.memberships-content {
    flex: 0 0 50%;
    max-width: 800px;
    padding: 6rem;
    color: white;
    position: relative;
    z-index: 1;
}

.memberships-content h2 {
    font-family: 'Didot', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    color: white;
}

.memberships-underline {
    width: 200px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2.5rem;
}

.memberships-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.memberships-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.explore-btn {
    display: inline-block;
    background-color: #0F4229;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: background-color 0.3s ease;
}

.explore-btn:hover {
    background-color: #083119;
}

.memberships-image {
    position: absolute;
    width: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
    background: white;
}

.memberships-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (max-width: 1200px) {
    .memberships-section {
        overflow: visible;
    }
    
    .memberships-container {
        flex-direction: column;
        min-height: auto;
    }

    .memberships-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 4rem 2rem;
    }

    .memberships-image {
        position: relative;
        right: 0;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }
    
    .memberships-image img {
        object-fit: cover;
        object-position: center top;
    }
}

@media (max-width: 768px) {
    .memberships-container {
        flex-direction: column;
        align-items: center;
    }

    .memberships-content {
        padding: 3rem 1.5rem;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    .memberships-content h2 {
        font-size: 2rem;
        letter-spacing: 2px;
        text-align: center;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .memberships-underline {
        margin: 0 auto 2.5rem;
    }

    .memberships-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 480px) {
    .memberships-content h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
        padding: 0 0.5rem;
    }
}

/* Skincare Section */
.skincare-section {
    background-color: white;
    padding: 5rem 0;
    text-align: center;
}

.skincare-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.skincare-section h2 {
    font-family: 'Didot', serif;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.skincare-underline {
    width: 200px;
    height: 3px;
    background-color: #C6A349;
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.discover-btn {
    display: inline-block;
    background-color: #000000;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 4rem;
    transition: background-color 0.3s ease;
}

.discover-btn:hover {
    background-color: #333333;
}

.products-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.product-card {
    background-color: white;
    width: 350px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-radius: 10px;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 1200px) {
    .products-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .product-card {
        width: 90vw;
        max-width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .skincare-section h2 {
        font-size: 2.5rem;
    }
}

/* Patient Reviews Section */
.reviews-section {
    background-image: url('images/gold-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(198, 163, 73, 0.05) 25%, 
        rgba(198, 163, 73, 0.02) 25%, 
        rgba(198, 163, 73, 0.02) 50%, 
        rgba(198, 163, 73, 0.05) 50%, 
        rgba(198, 163, 73, 0.05) 75%, 
        rgba(198, 163, 73, 0.02) 75%, 
        rgba(198, 163, 73, 0.02));
    background-size: 20px 20px;
    pointer-events: none;
}

.reviews-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.reviews-section h2 {
    color: white;
    font-family: 'Didot', serif;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    white-space: normal;
    flex: 0 0 350px;
    width: 350px;
    margin: 0;
    z-index: 2;
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    min-width: 0;
}

.slider-arrow {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-radius: 4px;
    z-index: 2;
}

.slider-arrow:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.review-cards-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.review-cards {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.review-card {
    flex: 0 0 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    min-height: 200px;
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.review-text {
    color: white;
    font-family: 'Didot', serif;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

/* Desktop-specific adjustments for reviews */
@media (min-width: 1201px) {
    .reviews-container {
        padding: 0 4rem;
        gap: 4rem;
    }
    
    .reviews-section h2 {
        flex: 0 0 350px;
        width: 350px;
        min-width: 350px;
    }
    
    .reviews-slider {
        flex: 1;
        min-width: 0;
    }
}

.stars {
    color: #C6A349;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.reviewer-name {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .reviews-container {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        padding: 0 2rem;
    }
    
    .reviews-section h2 {
        margin-bottom: 0;
        white-space: normal;
        width: 100%;
        flex: 0 0 auto;
        text-align: center;
    }
    
    .reviews-slider {
        width: 100%;
    }
    
    .review-text {
        font-size: 1.2rem;
    }

    .review-card {
        padding: 2rem 2.5rem;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .reviews-section h2 {
        font-size: 2.5rem;
        text-align: center;
        width: 100%;
    }
    
    .review-card {
        padding: 2rem;
    }
}

/* Learn More About Section */
.learn-more-section {
    background-color: white;
    padding: 6rem 0;
    text-align: center;
}

.learn-more-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.learn-more-section h3 {
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.learn-more-section h2 {
    color: #1a1a1a;
    font-family: 'Didot', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin: 0.5rem 0 1rem;
    position: relative;
}

.learn-more-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.location {
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin: 1.5rem 0 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.phone-cta, .book-cta {
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.phone-cta {
    background-color: #0F4229;
    color: white;
}

.book-cta {
    background-color: #C6A349;
    color: #1a1a1a;
}

.phone-cta:hover {
    background-color: #083119;
}

.book-cta:hover {
    background-color: #B3934E;
}

@media (max-width: 768px) {
    .learn-more-section {
        padding: 4rem 0;
    }

    .learn-more-section h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .phone-cta, .book-cta {
        text-align: center;
        padding: 1rem 2rem;
    }
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    text-align: center;
    background-color: white;
}

.location-section h2 {
    color: #1a1a1a;
    font-family: 'Didot', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.location-underline {
    width: 100px;
    height: 2px;
    background-color: #C6A349;
    margin: 0 auto 4rem;
}

.location-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.map-container {
    flex: 1;
    height: 600px;
}

.location-info {
    flex: 0 0 400px;
    text-align: left;
    padding: 2rem;
}

.location-info h3 {
    font-family: 'Didot', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.address {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hours h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.request-btn, .phone-btn {
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.request-btn {
    background-color: #0F4229;
    color: white;
}

.phone-btn {
    background-color: #1a1a1a;
    color: white;
}

.request-btn:hover {
    background-color: #083119;
}

.phone-btn:hover {
    background-color: #333;
}

/* Spin & Win Modal */
.spin-win-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.spin-win-modal.active {
    display: flex;
}

.spin-win-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid #B8860B;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.spin-win-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.spin-win-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.spin-step {
    display: none;
    padding: 30px 30px 40px;
}

.spin-step.active {
    display: block;
}

#spin-step-1 {
    background: #0F4229;
    padding: 30px 30px 40px;
}

#spin-step-1 .spin-header {
    margin-bottom: 0;
}

#spin-step-1 .spin-description {
    margin: 30px 0;
}

#spin-step-1 .spin-cta-button {
    margin: 30px auto;
}

#spin-step-1 .wheel-container {
    margin: 0 auto 0;
}

#spin-step-2 {
    background: white;
    padding: 0;
    position: relative;
}

#spin-step-2 .spin-header {
    background: #0F4229;
    padding: 30px;
    margin: 0;
    border-radius: 12px 12px 0 0;
}

#spin-step-2 .wheel-container-small {
    background: #0F4229;
    padding: 0 30px 40px;
    margin: 0;
    max-width: none;
}

#spin-step-2 .wheel-container-small > * {
    max-width: 300px;
    margin: 0 auto;
}

#spin-step-2 .wheel-container-small .wheel-pointer {
    left: 50%;
    transform: translateX(-50%);
}

#spin-step-2 .prize-reveal {
    background: white;
    padding: 30px;
    margin: 0;
    border-radius: 0;
}

/* Header Section */
.spin-header {
    text-align: center;
    margin-bottom: 30px;
}

.crown-icon {
    margin-bottom: 15px;
    font-size: 3rem;
    color: #C6A349;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.spin-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #B8860B;
    margin: 0 0 15px 0;
}

.spin-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    letter-spacing: 0.05em;
}

.spin-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.spin-divider span {
    width: 80px;
    height: 1px;
    background: #B8860B;
}

/* Description */
.spin-description {
    background: white;
    padding: 25px 30px;
    margin: 0;
    text-align: center;
}

.spin-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #B8860B;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}


/* CTA Button */
.spin-cta-button {
    background: #B8860B;
    color: white;
    border: none;
    padding: 18px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 8px;
    display: block;
    margin: 30px auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    position: relative;
    z-index: 1;
}

.spin-cta-button:hover {
    background: #9a7209;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

/* Wheel Container */
.wheel-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 20px auto 40px;
    padding: 0;
    z-index: 1;
}

.wheel-container-small {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: -50px auto 0;
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid #000;
    z-index: 10;
}

#wheel-canvas,
#wheel-canvas-small {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 8px solid #B8860B;
}

#wheel-canvas {
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

/* Prize Reveal Section */
.prize-reveal {
    background: white;
    padding: 30px;
}

.congrats-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0F4229;
    text-align: center;
    margin: 0 0 20px 0;
}

.prize-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #0F4229;
    text-align: center;
    margin: 20px 0;
    font-weight: 400;
}

.prize-box {
    border: 3px solid #B8860B;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #B8860B;
    margin: 20px 0 30px;
    background: #fffef8;
}

/* Code Section */
.code-section {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.code-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #0F4229;
    text-align: center;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.code-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.code-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #B8860B;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
    background: white;
    color: #0F4229;
}

.copy-code-btn {
    background: #B8860B;
    color: white;
    border: none;
    padding: 15px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-code-btn:hover {
    background: #9a7209;
    transform: translateY(-2px);
}

.code-instructions {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* Email Section */
.email-section {
    margin: 30px 0;
}

.email-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #0F4229;
    text-align: center;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.email-container {
    display: flex;
    gap: 15px;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background: white;
}

.email-input::placeholder {
    color: #999;
}

.claim-prize-btn {
    background: #B8860B;
    color: white;
    border: none;
    padding: 15px 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.claim-prize-btn:hover {
    background: #9a7209;
    transform: translateY(-2px);
}

.rules-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #0F4229;
    text-decoration: underline;
}

.rules-link:hover {
    color: #B8860B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .spin-win-modal-content {
        max-width: 95%;
        border: 6px solid #B8860B;
    }
    
    .spin-step {
        padding: 25px 20px 35px;
    }
    
    #spin-step-1 {
        padding: 25px 20px 35px;
    }
    
    #spin-step-2 {
        padding: 0;
    }
    
    #spin-step-2 .spin-header {
        padding: 25px 20px;
        margin: 0;
    }
    
    #spin-step-2 .wheel-container-small {
        padding: 0 20px 30px;
    }
    
    #spin-step-2 .prize-reveal {
        padding: 25px 20px 35px;
    }
    
    .spin-subtitle {
        font-size: 2rem;
    }
    
    .spin-description {
        padding: 20px 25px;
    }
    
    .spin-description p {
        font-size: 1rem;
    }
    
    .wheel-container {
        max-width: 280px;
        margin: 15px auto;
    }
    
    .wheel-container-small {
        max-width: 250px;
    }
    
    .congrats-title {
        font-size: 2rem;
    }
    
    .prize-label {
        font-size: 1.5rem;
    }
    
    .prize-box {
        font-size: 1.5rem;
        padding: 20px;
    }
    
    .code-container {
        flex-direction: column;
    }
    
    .copy-code-btn {
        justify-content: center;
    }
    
    .email-container {
        flex-direction: column;
    }
    
    .claim-prize-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .spin-title {
        font-size: 1.1rem;
    }
    
    .spin-subtitle {
        font-size: 1.7rem;
    }
    
    .wheel-container {
        max-width: 240px;
        margin: 10px auto;
    }
    
    .wheel-container-small {
        max-width: 200px;
    }
    
    .congrats-title {
        font-size: 1.7rem;
    }
    
    .prize-box {
        font-size: 1.3rem;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 2rem;
    margin-top: auto;
    margin-bottom: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.footer-left {
    flex: 1;
}

.footer-brand {
    font-family: 'Didot', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-contact {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-center {
    text-align: center;
    margin: 0 2rem;
}

.rating {
    color: #C6A349;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.review-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #C6A349;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.accessibility-tools {
    display: flex;
    align-items: center;
}

.accessibility-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.accessibility-btn img {
    width: 30px;
    height: auto;
}

.footer-credit {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1200px) {
    .location-container {
        flex-direction: column;
    }

    .location-info {
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }

    .location-info {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .location-info h3 {
        text-align: center;
    }
    
    .address {
        text-align: center;
    }
    
    .hours {
        text-align: center;
    }
    
    .hours h4 {
        text-align: center;
    }
    
    .hours-grid {
        justify-content: center;
        margin: 0 auto 3rem auto;
        max-width: 280px;
    }
    
    .location-buttons {
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .footer-nav {
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .location-info h3 {
        font-size: 2rem;
    }
    
    .address {
        margin-bottom: 2.5rem;
    }
    
    .location-buttons {
        width: 100%;
        margin-top: 2.5rem;
    }
    
    .request-btn, .phone-btn {
        width: 100%;
    }
}

/* Text Us Button and Form */
.text-us-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background-color: #C6A349;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    animation: goldPulse 2s ease-in-out infinite;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2500;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-us-btn .chat-icon {
    width: 20px;
    height: 20px;
    opacity: 1;
}

.text-us-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(198, 163, 73, 0.3);
    background-color: #d4b05f;
}

.text-us-form {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 380px;
    max-width: 95vw;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    z-index: 3000;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.text-us-form.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.text-us-form .form-header {
    background: linear-gradient(135deg, #C6A349 0%, #D4B05F 100%);
    padding: 1.5rem 1.2rem 1.2rem;
    color: white;
    position: relative;
}

.text-us-form .form-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #323232;
}

.form-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    color: #000000;
    opacity: 1;
}

.form-options {
    padding: 1.5rem 1.2rem;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-option {
    display: flex;
    align-items: center;
    padding: 1.2rem 1rem;
    background-color: #f5f5f5;
    text-decoration: none;
    color: #323232;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.form-option:first-child {
    border-radius: 12px 12px 0 0;
}

.form-option:last-child {
    border-radius: 0 0 12px 12px;
    border-bottom: none;
}

.form-option:hover {
    background-color: #ebebeb;
    transform: translateX(4px);
}

.option-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    fill: #323232;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #323232;
}

.option-arrow {
    font-size: 1.3rem;
    color: #323232;
    margin-left: 0.5rem;
    font-weight: 300;
    flex-shrink: 0;
}

.close-form-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    font-size: 1.2rem;
    color: #323232;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.close-form-btn:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

.form-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: white;
    margin: 0 0 0.5rem;
    font-weight: 500;
}

.form-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

/* Accessibility Button Float */
.accessibility-btn-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2500;
}

.accessibility-btn-float:hover {
    transform: scale(1.05);
    background-color: #083119;
}

.accessibility-icon {
    width: 24px;
    height: 24px;
}

/* Accessibility Form - now above the icon */
.accessibility-form {
    position: fixed;
    left: 2rem;
    bottom: 5.5rem;
    width: 350px;
    max-width: 95vw;
    max-height: 70vh;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    display: none;
    overflow: hidden;
    flex-direction: column;
}

.accessibility-form.active {
    display: flex;
}

.form-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    position: relative;
    background-color: #6B2FBB;
    border-radius: 8px 8px 0 0;
    padding-right: 40px;
}

.tab-btn {
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tab-btn.active {
    opacity: 1;
    border-bottom: 2px solid white;
}

.close-accessibility-btn {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-content {
    display: none;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    overflow-y: auto;
    flex: 1 1 auto;
}

.tab-content.active {
    display: block;
}

/* Personalization Tab */
.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.tab-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin: 0;
}

.reset-btn {
    background: none;
    border: none;
    color: #6B2FBB;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
}

.structure-btn {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    background: white;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.keyboard-shortcuts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.keyboard-shortcuts span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

/* Language Selector */
.language-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 0.8rem 0;
}

.language-selector span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #323232;
}

.language-dropdown {
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    min-width: 120px;
}

.language-dropdown:focus {
    outline: 2px solid #C6A349;
    border-color: #C6A349;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #6B2FBB;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Tools Grid */
.tools-row {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.tools-top-box {
    display: flex;
    border: 1px solid #bfc8d6;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.tools-top-box .tool-item {
    flex: 1 1 0;
    border: none;
    border-right: 1px solid #bfc8d6;
    border-radius: 0;
    margin: 0;
    padding: 1.1rem 0.2rem 0.7rem 0.2rem;
    background: #fff;
    min-width: 0;
}
.tools-top-box .tool-item:last-child {
    border-right: none;
}

.tools-top-box .tool-item svg {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0 auto 0.2em auto;
    fill: #6b7a90;
    opacity: 0.8;
}

.tools-top-box .tool-item span {
    margin-top: 0.4em;
    color: #6b7a90;
    font-size: 0.95em;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
    text-align: center;
    display: block;
    width: 100%;
    word-break: break-word;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    border: 1px solid #bfc8d6;
    border-radius: 12px;
    padding: 0.5rem 0.5rem 0.2rem 0.5rem;
    background: #fff;
}

.tools-grid .tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0;
    padding: 1.1rem 0.2rem 0.7rem 0.2rem;
    background: #fff;
    min-width: 0;
}

.tools-grid .tool-item svg {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0 auto 0.2em auto;
    fill: #6b7a90;
    opacity: 0.8;
}

.tools-grid .tool-item span {
    margin-top: 0.4em;
    color: #6b7a90;
    font-size: 0.95em;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
    text-align: center;
    display: block;
    width: 100%;
    word-break: break-word;
}

/* Keyboard Info and Shortcut List */
.keyboard-info {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 1rem;
}

.keyboard-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin: 0 0 1rem;
}

.shortcut-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.shortcut-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: monospace;
    font-size: 0.95em;
    color: #444;
    font-weight: 500;
}

.shortcut-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92em;
    color: #222;
    margin-left: 0.5em;
    flex: 1 1 auto;
}

.shortcut-hint {
    font-size: 0.85em;
    color: #888;
    margin-left: auto;
    white-space: nowrap;
}

/* Report Tab */
.report-tab h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 1rem;
}

.report-tab p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.2rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.privacy-notice {
    font-size: 0.8rem !important;
    color: #666;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
}

.privacy-notice a {
    color: #6B2FBB;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: #8B5CF6;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.9rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #7C3AED;
}

@media (max-width: 480px) {
    .accessibility-form {
        left: 1vw;
        width: 98vw;
        min-width: 0;
        max-width: 98vw;
    }
    .tab-content {
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    .tools-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Modal Overlay and Content */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(34,34,34,0.45);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}
.modal-overlay[style*="display: flex"] {
    opacity: 1;
}
.modal-content {
    background: #fff;
    border-radius: 12px;
    min-width: 520px;
    max-width: 850px;
    width: 95vw;
    max-height: 85vh;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 2rem 3rem 2rem 3rem;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transform: translateY(-30px);
    opacity: 0;
    animation: slideInModal 0.4s ease-out forwards;
}

@keyframes slideInModal {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 163, 73, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(198, 163, 73, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(198, 163, 73, 0);
        transform: scale(1);
    }
}

@keyframes slideOutModal {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-30px);
        opacity: 0;
    }
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    background: none;
    border: none;
    font-size: 2rem;
    opacity: 0;
    animation: slideInFormItem 0.5s ease-out 0.2s forwards;
    color: #888;
    cursor: pointer;
    z-index: 10;
}
.appointment-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    overflow-y: auto;
}
.appointment-form h2 {
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.3rem;
    opacity: 0;
    animation: slideInFormItem 0.5s ease-out 0.1s forwards;
}
.appointment-form hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0.4rem 0 0.8rem 0;
    opacity: 0;
    animation: slideInFormItem 0.5s ease-out 0.15s forwards;
}
.form-row {
    display: flex;
    gap: 1rem;
}
.form-row .form-group {
    flex: 1;
}
.form-group {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    opacity: 0;
    animation: slideInFormItem 0.5s ease-out forwards;
}
.form-group:nth-child(1) { animation-delay: 0.2s; }
.form-group:nth-child(2) { animation-delay: 0.25s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.35s; }
.form-group:nth-child(5) { animation-delay: 0.4s; }
.form-group:nth-child(6) { animation-delay: 0.45s; }
.form-group:nth-child(7) { animation-delay: 0.5s; }
.form-group:nth-child(8) { animation-delay: 0.55s; }
.form-row .form-group { animation-delay: 0.3s; }
.form-group label {
    font-size: 1rem;
    color: #222;
    font-weight: 500;
    margin-bottom: 0.3rem;
    display: block;
}

@keyframes slideInFormItem {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.radio-group {
    gap: 1.2rem;
    font-size: 1rem;
}
input[type="text"], input[type="email"], input[type="tel"] {
    background: #ecf0ef;
    border: none;
    border-radius: 5px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #222;
    margin-bottom: 0.1rem;
}
.checkbox-group {
    font-size: 0.95rem;
    opacity: 0;
    animation: slideInFormItem 0.5s ease-out 0.5s forwards;
}
.checkbox-group label {
    font-size: 0.95rem;
}
.cta-btn {
    background: #f8e8dd;
    color: #e2bfa6;
    border: none;
    border-radius: 24px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    opacity: 0;
    animation: slideInFormItem 0.5s ease-out 0.6s forwards;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.cta-btn:not(:disabled) {
    background: #C6A349;
    color: #fff;
    cursor: pointer;
}

.cta-btn:not(:disabled):hover {
    background: #d4b05f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 163, 73, 0.3);
}
    font-weight: 500;
    cursor: not-allowed;
    margin-left: auto;
    margin-top: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 1;
    transition: background 0.2s, color 0.2s;
}
@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-content {
        min-width: 0;
        width: 92vw;
        max-width: 92vw;
        padding: 1.8rem 1.5rem;
        margin: 0 auto;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .cta-btn {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .modal-content {
        min-width: 0;
        width: 98vw;
        max-width: 98vw;
        max-height: 95vh;
        padding: 1.5rem 1.2rem;
        margin: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-btn {
        width: 100%;
        margin-left: 0;
        padding: 0.9rem 1.5rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.8rem;
    }
    
    .appointment-form h2 {
        font-size: 1.15rem;
    }
    
    .form-group label,
    input[type="text"], 
    input[type="email"], 
    input[type="tel"] {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .modal-content {
        width: 96vw;
        max-width: 96vw;
        padding: 1.2rem 1rem;
        margin: 0;
    }
    
    .appointment-form {
        gap: 0.6rem;
    }
    
    .appointment-form h2 {
        font-size: 1.1rem;
    }
    
    .form-group {
        margin-bottom: 0.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    input[type="text"], 
    input[type="email"], 
    input[type="tel"],
    select {
        font-size: 0.9rem;
        padding: 0.6rem 0.9rem;
    }
    
    .cta-btn {
        padding: 0.85rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .checkbox-group {
        font-size: 0.85rem;
    }
}

/* About Page Styles */
.about-hero-section {
    background: #000;
    padding: 2rem 0 1.2rem 0;
    text-align: center;
    min-height: unset;
}
.about-hero-header h1 {
    color: #fff;
    font-family: 'Didot', serif;
    font-size: 2.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.7rem;
}
.about-hero-header h2 {
    color: #d2d2d2;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0;
}
.about-content-section {
    background-image: url('images/grey-bg.png');
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding: 0 0 0 0;
}
.about-content-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    padding: 2.5rem 0;
    gap: 2.5rem;
}
.about-text-window,
.about-image-inner {
    background: rgba(34,34,34,0.32);
    border-radius: 16px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.2rem 1.5rem 2.2rem 2rem;
    margin: 0;
    height: 100%;
}
.about-text-window {
    flex: 1 1 0;
    max-width: 700px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.97;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-text-window a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}
.about-text-window p {
    font-size: 0.92rem;
    margin-bottom: 1.1em;
}
.about-request-btn {
    background: #e2c16b;
    color: #232323;
    border: none;
    border-radius: 24px;
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-top: 1.1rem;
    align-self: flex-start;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
}
.about-request-btn::after {
    content: '\2192';
    font-size: 1em;
    margin-left: 0.3em;
    color: #232323;
    transition: transform 0.2s;
    text-decoration: none;
}
.about-request-btn:hover {
    background: #c6a349;
    color: #fff;
    text-decoration: none;
}
.about-request-btn:hover::after {
    color: #fff;
    text-decoration: none;
}
.about-image-window {
    flex: 1 1 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.about-image-inner {
    flex: 1 1 0;
    padding: 2.2rem 1.5rem 2.2rem 2rem;
    background: rgba(34,34,34,0.32);
    border-radius: 16px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.10);
    height: 100%;
}
.about-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    display: block;
}
@media (max-width: 900px) {
    .about-content-container {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }
    .about-text-window {
        margin: 1.5rem 2vw 1rem 2vw;
        max-width: 98vw;
        min-width: 0;
        padding: 1.2rem 1rem 1.2rem 1.2rem;
    }
    .about-image-window {
        min-height: 180px;
        width: 100vw;
        justify-content: center;
    }
}

.about-top-black-section {
    background: #000;
    min-height: unset;
    width: 100vw;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 0;
    padding: 0 0 3rem 0;
}

.about-top-black-content {
    width: 100%;
    max-width: 1400px;
    padding: 2.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.about-top-title {
    color: #fff !important;
    font-family: 'Didot', serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1.2rem;
}
.about-top-subtitle {
    color: #d2d2d2 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 0;
}

.about-content-section {
    margin-top: 0;
    padding-top: 0;
}

/* Testimonials Page Styles */
.testimonials-hero-section {
    background: #232323;
    padding: 5rem 0 2.5rem 0;
    text-align: center;
}

.testimonials-title {
    color: #fff;
    font-family: 'Didot', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.share-feedback-btn {
    background: #e2c16b;
    color: #232323;
    border: none;
    border-radius: 24px;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.share-feedback-btn:hover {
    background: #c6a349;
    color: #fff;
}

.testimonials-cards-section {
    background-image: url('images/grey-bg.png');
    background-size: cover;
    background-position: center;
    padding: 4rem 0 2rem 0;
    display: flex;
    justify-content: center;
}

.testimonials-cards-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    max-width: 1600px;
}

.testimonial-card {
    background: #e5e5e5;
    border: 2px solid #232323;
    border-radius: 0;
    padding: 2.5rem 2rem 2rem 2rem;
    min-width: 340px;
    max-width: 420px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-family: 'Montserrat', serif;
}

.testimonial-text {
    color: #232323;
    font-family: 'Didot', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.5;
}

.testimonial-stars {
    color: #e2c16b;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.testimonial-name {
    color: #232323;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-top: auto;
}

@media (max-width: 1200px) {
    .testimonials-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .testimonial-card {
        min-width: 90vw;
        max-width: 98vw;
    }
}

/* SERVICES Dropdown Mega Menu */
.nav-dropdown {
    position: relative;
    overflow: visible;
}

.nav-dropdown:hover {
    /* Keep dropdown visible for a bit after mouse leaves */
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 2.5rem;
    background: transparent;
    pointer-events: none;
}

.services-link {
    position: relative;
    z-index: 100;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.services-dropdown {
    display: none;
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border-radius: 4px;
    padding: 2.5rem 2rem 2rem 2rem;
    min-width: 420px;
    max-width: 450px;
    flex-direction: row;
    gap: 2.5rem;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0s 0.5s;
    pointer-events: none;
}

.services-dropdown::before {
    content: '';
    position: absolute;
    top: -2.5rem;
    left: 0;
    right: 0;
    height: 2.5rem;
    background: transparent;
    pointer-events: none;
}

.nav-dropdown:hover .services-dropdown,
.nav-dropdown:focus-within .services-dropdown,
.nav-dropdown .services-dropdown:hover {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s ease, visibility 0s 0s;
}

/* Ensure services link stays clickable even when dropdown is visible */
.nav-dropdown:hover .services-link {
    pointer-events: auto !important;
    z-index: 100 !important;
}

.dropdown-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.services-dropdown a {
    color: #222;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding: 0.2rem 0.5rem;
    transition: color 0.18s, background 0.18s;
    border-radius: 2px;
    text-align: left;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
}

.services-dropdown a:hover {
    background: #f6f6f6;
    color: #C6A349;
}

@media (max-width: 700px) {
    .services-dropdown {
        flex-direction: column;
        min-width: 220px;
        max-width: 90vw;
        padding: 1.2rem 1rem;
        gap: 1.2rem;
    }
    .dropdown-col {
        gap: 0.5rem;
        min-width: auto;
    }
}

/* Service Page Styles */
.hero-section {
    background: #323232;
    color: #fff;
    padding: 4.5rem 0 3.5rem 0;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: 0.7rem;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.9);
}

.botox-gold-section {
    background-image: url('images/gold-bg.png');
    background-size: cover;
    background-position: center;
    padding: 0.5vw 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.botox-gold-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 2100px;
    min-height: 320px;
    align-items: stretch;
}

.botox-gold-image {
    flex: 1.35 1 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    margin-right: 0;
    background: none;
    min-width: 0;
}

.botox-gold-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.botox-gold-text {
    flex: 1 1 0;
    background: rgba(34,34,34,0.82);
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem 1.5rem;
    margin-left: 0;
    min-width: 320px;
    max-width: 100%;
}

.botox-gold-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 1.1rem;
    text-align: left;
}

.botox-gold-text hr {
    border: none;
    border-top: 1.2px solid rgba(255,255,255,0.4);
    margin-bottom: 1.1rem;
    width: 100%;
}

.botox-gold-text p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.93rem;
    line-height: 1.32;
    margin-bottom: 0;
    color: #fff;
    text-align: left;
}

@media (max-width: 900px) {
    .botox-gold-inner {
        flex-direction: column;
        width: 100%;
    }
    .botox-gold-image,
    .botox-gold-text {
        min-width: 0;
        max-width: 100%;
    }
    .botox-gold-text {
        padding: 1.2rem 1rem;
    }
}

.service-qa-section {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin: 3.5rem 0 1.5rem 0;
    text-align: center;
    color: #323232;
    padding: 0 2rem;
}

.service-qa-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2.2rem;
    margin-bottom: 0.7rem;
    color: #323232;
    padding: 0 1rem;
}

.service-qa-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #323232;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.service-qa-section ul {
    margin: 1rem 2rem 1.5rem 2rem;
    padding: 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

.service-qa-section li {
    margin-bottom: 1rem;
    padding-right: 1rem;
    color: #323232;
}

/* Mobile-specific overrides */
@media (max-width: 768px) {
    .service-qa-section {
        padding: 0 2rem !important;
    }
    
    .section-title {
        padding: 0 2rem !important;
        font-size: 1.3rem !important;
        margin: 2rem auto 1.5rem auto !important;
    }
    
    .service-qa-section p {
        padding: 0 1rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.7 !important;
    }
    
    .service-qa-section h3 {
        padding: 0 1rem !important;
        margin-top: 2rem !important;
    }
    
    .service-qa-section ul,
    .service-qa-section ol {
        margin: 1rem 2rem 1.5rem 2rem !important;
        padding: 0 1rem !important;
    }
    
    .service-qa-section li {
        margin-bottom: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Store Page Styles */
.store-hero {
    background: #323232;
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.store-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin: 0;
}

.store-hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-top: 1rem;
    letter-spacing: 0.1em;
}

.store-content {
    padding: 4rem 0;
    background: white;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.store-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #323232;
    margin-bottom: 1rem;
}

.store-container p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Feedback Form Modal Styles */
.feedback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 1rem;
}

.feedback-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    margin: auto;
}

.feedback-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #f5f5f5;
    border: none;
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.feedback-modal-close:hover {
    background: #e0e0e0;
    color: #323232;
    transform: rotate(90deg);
}

.feedback-form-container {
    padding: 2.5rem 3rem 3rem;
}

.feedback-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
    text-align: center;
}

.feedback-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #999;
    margin: 0 0 0.8rem 0;
    text-transform: uppercase;
    text-align: center;
}

.feedback-title {
    font-family: 'Didot', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    text-align: center;
}

.feedback-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0;
}

.feedback-form-row {
    display: flex;
    gap: 1.25rem;
    width: 100%;
}

.feedback-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feedback-form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #323232;
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
}

.feedback-form-group input,
.feedback-form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background: #f9fafb;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.feedback-form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.feedback-form-group input:focus,
.feedback-form-group textarea:focus {
    outline: none;
    border-color: #0F4229;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(15, 66, 41, 0.08);
}

.feedback-form-group input::placeholder,
.feedback-form-group textarea::placeholder {
    color: #9ca3af;
    font-size: 0.9rem;
}

.feedback-next-btn {
    background: #0F4229;
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: auto;
    min-width: 180px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 1.75rem auto 0;
    display: block;
}

.feedback-next-btn:hover:not(:disabled) {
    background: #083119;
}

.feedback-next-btn:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .feedback-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .feedback-form-container {
        padding: 2rem 1.5rem 2rem;
    }
    
    .feedback-title {
        font-size: 1.5rem;
    }
    
    .feedback-form-row {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .feedback-form {
        gap: 1.25rem;
    }
    
    .feedback-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .feedback-modal-content {
        width: 98%;
    }
    
    .feedback-form-container {
        padding: 1.75rem 1.25rem;
    }
    
    .feedback-header {
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feedback-title {
        font-size: 1.35rem;
    }
    
    .feedback-subtitle {
        font-size: 0.65rem;
    }
    
    .feedback-location {
        font-size: 0.8rem;
    }
    
    .feedback-form-group label {
        font-size: 0.75rem;
    }
    
    .feedback-form-group input,
    .feedback-form-group textarea {
        padding: 0.8rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .feedback-form-group textarea {
        min-height: 90px;
    }
    
    .feedback-form {
        gap: 1.1rem;
    }
    
    .feedback-form-row {
        gap: 1.1rem;
    }
    
    .feedback-next-btn {
        padding: 0.85rem 2rem;
        width: 100%;
        margin: 1.5rem 0 0;
        font-size: 0.9rem;
    }
}

/* Store Page Styles */
.store-welcome {
    background-color: #222222;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.store-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    border-bottom: 1px solid #eee;
}

.store-logo img {
    height: 50px;
}

.nav-links a {
    color: #222222;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.nav-icons button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-icons svg {
    width: 24px;
    height: 24px;
    fill: #222222;
}

/* Store Sections */
.store-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.store-section:not(:last-child) {
    border-bottom: 2px solid #C6A349;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
}

.store-section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #C6A349, transparent);
}

/* Special gold underline for Gift Cards section */
.store-section:last-child {
    border-bottom: 2px solid #B4945A;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
}

.store-section:last-child::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px; /* Slightly thinner to match image */
    background: linear-gradient(to right, transparent, #B4945A, transparent);
}

.store-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    color: #143d14;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(34,34,34,0.10), 0 1.5px 4px rgba(34,34,34,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 36px rgba(34,34,34,0.16), 0 2px 8px rgba(34,34,34,0.10);
}

.product-card img {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(34,34,34,0.10);
}

.product-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
    text-align: center;
    padding: 0 1rem;
}

.product-card .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #143d14;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Membership Cards - Special Styling */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-left: 12rem; /* Added margin to shift content right to align with 'M' */
}

.membership-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    padding: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-8px);
}

.membership-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 1.5rem;
}

.membership-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin: 1rem 0 0.5rem 0;
    text-align: center;
}

.membership-card .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #143d14;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        margin-left: 0; /* Reset margin on mobile */
    }
    
    .membership-card h3 {
        font-size: 1.3rem;
    }
    
    .membership-card .price {
        font-size: 1.2rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .store-section {
        padding: 3rem 1rem;
    }
    
    .store-section:not(:last-child),
    .store-section:last-child {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .store-section h2 {
        font-size: 1.75rem;
    }
    
    .product-card h3 {
        font-size: 1.1rem;
    }
    
    .product-card .price {
        font-size: 1rem;
    }
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #f8f8f8;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 24px;
    opacity: 0.6;
}

/* Store Footer */
.store-footer {
    text-align: center;
    padding: 2rem;
    background: white;
    border-top: 1px solid #eee;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666666;
}

.store-footer a {
    color: #222222;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .store-section {
        padding: 2rem 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .store-nav {
        padding: 1rem;
    }
    
    .nav-icons {
        gap: 0.5rem;
    }
    
    .product-card {
        padding: 0.5rem;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none; /* Hidden by default, shown in media query */
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3000;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #323232;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Breakpoints for Smooth Resizing */

/* Extra Large Screens */
@media (max-width: 1600px) {
    .stats-container,
    .reviews-container {
        max-width: 95%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .header {
        padding: 1rem 1rem 0 1rem;
    }
    
    .nav-menu ul {
        gap: 1.3rem;
    }
}

/* Large Desktop */
@media (max-width: 1400px) {
    .stats-container {
        gap: 6rem;
        max-width: 90%;
    }
    
    .reviews-container {
        max-width: 90%;
    }
    
    .hero-text {
        max-width: 700px;
    }
    
    .services-grid {
        padding: 0 2rem;
    }
    
    .memberships-container,
    .skincare-container,
    .learn-more-container {
        max-width: 90%;
        margin: 0 auto;
    }
}

/* Standard Desktop */
@media (max-width: 1280px) {
    .header {
        padding: 0.8rem 0 0 0;
    }
    
    .stats-container {
        gap: 4rem;
        padding: 0 3rem;
    }
    
    .stats-headline h2 {
        font-size: 2.2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    .reviews-section h2 {
        font-size: 3rem;
        width: 280px;
        flex: 0 0 280px;
    }
    
    .reviews-container {
        padding: 0 3rem;
    }
    
    .nav-menu ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 0.88rem;
        letter-spacing: 0.12em;
    }
    
    .logo {
        max-width: 380px;
    }
    
    .cta-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .phone-button,
    .appointment-button {
        padding: 0.65rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .hero-text {
        padding: 3rem 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.4rem;
    }
    
    .location-container {
        padding: 0 2rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .stats-headline {
        flex: 0 0 100%;
        text-align: center;
        margin-left: 0 !important;
        margin-bottom: 2rem;
    }
    
    .stats-headline h2 {
        margin: 0 auto;
        font-size: 2rem;
    }
    
    .stats-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        width: 100%;
    }
    
    .reviews-section h2 {
        font-size: 2.5rem;
        width: 250px;
        flex: 0 0 250px;
    }
    
    .reviews-container {
        padding: 0 2rem;
    }
    
    .nav-menu ul {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
    
    .hero-text {
        max-width: 90%;
        padding: 3rem 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .logo {
        max-width: 350px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 1rem auto;
    }
    
    .phone-button,
    .appointment-button {
        width: 100%;
    }
}

/* Tablet Portrait */
@media (max-width: 900px) {
    .stats-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 2rem;
        width: 100%;
    }
    
    .stats-icons {
        width: 100%;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-text {
        padding: 2.5rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.8rem;
    }
    
    .reviews-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .reviews-section h2 {
        width: 100%;
        text-align: center;
    }
    
    .memberships-content {
        padding: 4rem 2rem;
    }
    
    .skincare-container,
    .learn-more-container {
        padding: 0 2rem;
    }
}

/* Mobile Navigation Styles - Updated for Arrow Display */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .nav-menu {
        display: none; /* Hidden by default on mobile */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        z-index: 2500;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    .nav-menu.active {
        display: block;
        animation: slideIn 0.3s ease;
    }
    
    @keyframes slideIn {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        text-align: left;
    }
    
    .nav-dropdown .services-link {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
        width: 100% !important;
        padding-right: 3rem !important;
    }
    
    .nav-dropdown .services-link::after {
        content: '▾' !important;
        font-size: 1.5rem !important;
        font-weight: normal !important;
        font-family: Arial, sans-serif !important;
        transition: transform 0.3s ease !important;
        display: block !important;
        position: absolute !important;
        right: 2rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: #323232 !important;
        opacity: 1 !important;
        visibility: visible !important;
        line-height: 1 !important;
        z-index: 10 !important;
        pointer-events: none !important;
    }
    
    .nav-dropdown.active .services-link::after {
        transform: translateY(-50%) rotate(180deg) !important;
    }
    
    .services-dropdown {
        position: static;
        display: none; /* Hidden by default on mobile */
        transform: none;
        background: #f9f9f9;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        flex-direction: column;
        gap: 0;
    }
    
    .nav-dropdown.active .services-dropdown {
        display: flex;
    }
    
    .dropdown-col {
        gap: 0;
    }
    
    .services-dropdown a {
        padding: 1rem 2rem;
        font-size: 0.85rem;
        background: #f9f9f9;
        border-bottom: 1px solid #e5e5e5;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .services-dropdown a:hover {
        background: #efefef;
        padding-left: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
        margin-top: 1rem;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .phone-button, .appointment-button {
        width: auto;
        flex: 1;
        text-align: center;
        padding: 0.9rem 1rem;
        font-size: 0.85rem;
        font-weight: 500;
        white-space: nowrap;
        max-width: 50%;
        min-width: 0;
        letter-spacing: 0.05em;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Service page specific CTA adjustments */
    .header .cta-buttons {
        padding: 0.75rem 1.5rem;
        margin: 0.5rem auto 1rem auto;
        max-width: 100%;
    }
    
    /* Header adjustments for mobile */
    .header {
        padding: 0.5rem 0 0.5rem 0;
        position: relative;
    }
    
    .logo-container {
        margin-bottom: 0.5rem;
    }
    
    .logo {
        max-width: 200px !important;
    }
    
    /* Hero banner mobile adjustments */
    .hero {
        height: 50vh !important;
        min-height: 400px !important;
        max-height: 500px !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Hero section mobile adjustments */
    .hero-content-section {
        padding: 0 !important;
        min-height: auto !important;
        overflow: visible !important;
        align-items: flex-start !important;
    }
    
    .hero-content-container {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
    }
    
    .hero-text {
        padding: 2rem 1.5rem !important;
        text-align: center;
        width: 100% !important;
        order: 2 !important;
    }
    
    .hero-text h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-text p {
        font-size: 0.95rem !important;
        padding: 0 0.5rem;
    }
    
    .hero-image {
        min-height: auto !important;
        max-height: none !important;
        height: auto !important;
        width: 100% !important;
        overflow: visible !important;
        display: block !important;
        padding: 0 !important;
        flex: none !important;
        order: 1 !important;
    }
    
    .hero-image img {
        object-fit: contain !important;
        object-position: center top !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        display: block !important;
    }
    
    /* Stats section mobile - stacked layout */
    .stats {
        padding: 2rem 1rem !important;
        overflow-x: hidden !important;
    }
    
    .stats-container {
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .stats-headline {
        margin-left: 0 !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    .stats-headline h2 {
        font-size: 1.5rem !important;
        white-space: normal !important;
        text-align: center !important;
        border-bottom: 2px solid #0F4229 !important;
        padding-bottom: 1rem !important;
        margin-bottom: 0 !important;
    }
    
    .stats-icons {
        flex-direction: column !important;
        gap: 2.5rem !important;
        padding: 0 1rem !important;
        width: 100% !important;
        align-items: center !important;
    }
    
    .stat-item {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
    }
    
    .stat-icon {
        width: 80px !important;
        height: 80px !important;
        fill: #C6A349 !important;
    }
    
    .stat-item p {
        font-size: 0.9rem !important;
        white-space: normal !important;
        text-align: center !important;
    }
    
    /* Old stats-section for other pages */
    .stats-section {
        padding: 3rem 1rem !important;
        overflow-x: hidden !important;
    }
    
    .stat-card {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 1rem !important;
    }
    
    .stat-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
        width: 100% !important;
    }
    
    .stat-card p {
        font-size: 0.95rem !important;
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 350px !important;
    }
}

/* Force single-column services grid on mobile - Final Override */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
    }
} 