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

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background: 
        radial-gradient(ellipse at top right, rgba(199, 21, 133, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(199, 21, 133, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #faf8f9 0%, #f5f0f2 50%, #f8f5f6 100%);
    background-attachment: fixed;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    right: -150px;
    bottom: -100px;
    width: 550px;
    height: 750px;
    background-image: url("../palmtree.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    pointer-events: none;
    z-index: -1;
    opacity: 0.08;
    transform: scaleX(-1);
}

/* Typography */
h1, h2, h3 {
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Header styles */
.announcement-bar {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.top-bar {
    background-color: var(--fuschia-main);
    padding: 1.5rem 2rem;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-family: 'Alegreya', serif;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.2rem;
}

.logo-main {
    background: linear-gradient(135deg, #fff 0%, #ffd4e8 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo-amp {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: #ffd4e8;
    font-weight: 400;
    margin: 0 0.1rem;
}

.logo-spa {
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #fff;
}

.logo-sparkle {
    font-size: 0.7rem;
    color: #ffd4e8;
    animation: twinkle 2s ease-in-out infinite;
    opacity: 0.9;
}

.logo-sparkle:last-of-type {
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.logo-tagline {
    font-family: 'Alegreya', serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
}

.nav-container {
    border-top: none;
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
    background-color: #fff;
}

header {
    position: relative;
}

/* Service tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 0;
}

.service-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    position: relative;
}

.service-tab:hover {
    color: var(--fuschia-main);
    background-color: rgba(199, 21, 133, 0.05);
}

.service-tab.active {
    color: var(--fuschia-main);
    border-bottom-color: var(--fuschia-main);
    font-weight: 600;
}

/* Mobile menu toggle button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--fuschia-main);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: var(--fuschia-main);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--fuschia-main);
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: #000;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Search panel */
.search-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-panel.active {
    transform: translateY(0);
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-form {
    display: flex;
    gap: 1rem;
}

.search-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-bottom: 1px solid #000;
    font-size: 1rem;
    outline: none;
}

.close-search {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero section */
.hero-section {
    width: 100%;
    min-height: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 2rem 1rem;
}

#lift-tint-section {
    min-height: auto;
    padding: 3rem 2rem;
    justify-content: flex-start;
    align-items: center;
}

/* Lift & Tint Grid Panels */
.lift-tint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    width: 100%;
    padding: 0 2rem;
}

.lt-panel {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 2px solid var(--fuschia-main);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(199, 21, 133, 0.1);
}

.lt-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(199, 21, 133, 0.15);
}

.lt-panel h3 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.lt-panel:hover h3 {
    color: var(--fuschia-main);
}

.lt-panel-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fuschia-main);
    margin: 0;
    white-space: nowrap;
}

/* Facial Waxing Section */
#facial-waxing-section {
    min-height: auto;
    padding: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.waxing-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 800px;
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(199, 21, 133, 0.1);
}

.waxing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(199, 21, 133, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--fuschia-main);
    transition: all 0.3s ease;
}

.waxing-item:hover {
    background: rgba(199, 21, 133, 0.08);
    transform: translateX(5px);
}

.waxing-service {
    font-size: 0.95rem;
    color: #333;
    letter-spacing: 0.05em;
}

.waxing-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fuschia-main);
}

.waxing-featured {
    background: linear-gradient(135deg, rgba(199, 21, 133, 0.12) 0%, rgba(199, 21, 133, 0.05) 100%);
    border-left: 4px solid var(--fuschia-main);
    border: 2px solid var(--fuschia-main);
    border-left: 4px solid var(--fuschia-main);
}

.waxing-featured .waxing-service {
    font-weight: 600;
    color: var(--fuschia-main);
}

.waxing-featured .waxing-price {
    font-size: 1.05rem;
}

#extensions-section {
    display: flex;
    padding: 1rem 2rem 0;
    justify-content: flex-start;
    min-height: auto;
}

.section-title {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--fuschia-main);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--fuschia-main);
}

/* Appointment Notice */
.appointment-notice {
    text-align: center;
    margin: 0.25rem auto 0;
    padding: 0.5rem 2rem;
}

.appointment-notice p {
    font-family: 'Alegreya', serif;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: var(--fuschia-main);
    margin: 0;
    font-weight: 500;
}

.service-separator {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 0.5rem;
    padding: 0 2rem;
    text-align: center;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.25rem;
    margin-top: 0;
    color: var(--fuschia-main);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroll-indicator .arrow {
    font-size: 1.2rem;
    animation: bounce 1.5s infinite;
    margin-top: 0.25rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

.separator-title {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    color: var(--fuschia-main);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
}

.separator-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--fuschia-main);
}

.service-tiles {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 0 1rem;
    margin-bottom: 0;
}


.service-item {
    text-align: center;
    flex: 1;
    max-width: 350px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
    border: 2px solid var(--fuschia-main);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 260px;
    box-shadow: 0 4px 12px rgba(199, 21, 133, 0.1);
    overflow: hidden;
}

/* Background image that fades in when expanded */
.service-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.service-item.content-pushed .service-bg-image {
    opacity: 0.12;
}

/* Ensure all content stays above the background */
.service-item h2,
.service-item p,
.service-item .pricing-section,
.service-item .learn-more-btn,
.service-item .service-description {
    position: relative;
    z-index: 1;
}

.service-item h2 {
    color: var(--fuschia-main);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(199, 21, 133, 0.15);
}

.service-item:hover h2 {
    color: var(--fuschia-main);
}

.service-item:hover p {
    color: #333;
}

/* When description is expanded, push content to top */
.service-item.content-pushed {
    justify-content: flex-start;
    padding-top: 2.5rem;
}

.service-item.content-pushed h2,
.service-item.content-pushed p,
.service-item.content-pushed .learn-more-btn {
    transition: all 0.4s ease;
}

.service-item img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.service-item h2 {
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}


.service-item p {
    color: #666;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
}


.service-price {
    color: #000;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.service-price strong {
    font-weight: 700;
}

/* Pricing Section with Refills */
.pricing-section {
    margin-bottom: 0.75rem;
}

.refills-btn {
    background: transparent;
    border: none;
    color: var(--fuschia-main);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    font-family: inherit;
}

.refills-btn:hover {
    color: var(--fuschia-dark);
}

.refills-btn[aria-expanded="true"] {
    color: var(--fuschia-dark);
}

.refills-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
    background: rgba(199, 21, 133, 0.05);
    border-radius: 6px;
    margin-top: 0;
}

.refills-menu.expanded {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.5rem;
    padding: 0.5rem;
}

.refill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(199, 21, 133, 0.1);
}

.refill-item:last-child {
    border-bottom: none;
}

.refill-item span:first-child {
    color: #555;
}

.refill-item span:last-child {
    font-weight: 600;
    color: var(--fuschia-main);
}

.learn-more-btn {
    display: inline-block;
    background: transparent;
    border: none;
    color: var(--fuschia-main);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--fuschia-main);
    padding-bottom: 2px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
}

.learn-more-btn:hover {
    color: var(--fuschia-dark);
    border-bottom-color: var(--fuschia-dark);
}

.learn-more-btn[aria-expanded="true"] {
    margin-bottom: 1rem;
}

.service-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: left;
}

.service-description.expanded {
    max-height: 500px;
    opacity: 1;
    margin-top: 1.5rem;
}

.service-description p {
    margin: 0;
    padding: 0;
}

.learn-more {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}

/* Services section */
.services-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}


.learn-more {
    display: inline-block;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Responsive adjustments */

/* Reviews section */
.reviews-section {
    position: relative;
    width: 100%;
    padding: 4rem 2rem;
    text-align: center;
    background: #fff;
    margin-top: -2rem;
}

.reviews-title {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--fuschia-main);
    position: relative;
    padding-bottom: 1rem;
    background: #fff;
    z-index: 3;
}

.reviews-scroll-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
    background: #fff;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

/* Add animation for continuous scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 5));
    }
}

/* Pause animation on hover */
.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    min-width: 280px;
    flex-shrink: 0;
}

/* Add a gradient fade effect on the edges */
.reviews-scroll-container::before,
.reviews-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #f5f5f5, transparent);
}

.reviews-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #f5f5f5, transparent);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-right: 1rem;
}

.reviewer-info h3 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.rating {
    color: #000;
    font-size: 0.75rem;
}

.review-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
}

/* Add smooth scrolling for the reviews */
.reviews-track {
    scroll-behavior: smooth;
}

/* ============================================
   TABLET STYLES (769px - 1024px)
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    .service-tiles {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .service-item {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        min-height: 260px;
    }

    .lift-tint-grid {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .waxing-menu {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    body::after {
        width: 400px;
        height: 550px;
        right: -100px;
        bottom: -50px;
        opacity: 0.06;
    }
}

/* ============================================
   MOBILE STYLES (768px and below)
   ============================================ */
@media (max-width: 768px) {
    /* Header and Navigation */
    header {
        position: relative;
    }

    .top-bar {
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo h1 {
        font-size: 0.9rem;
        letter-spacing: 0.08em;
        gap: 0.25rem;
    }

    .logo-amp {
        font-size: 1.3rem;
    }

    .logo-sparkle {
        font-size: 0.5rem;
    }

    .logo-tagline {
        font-size: 0.5rem;
        letter-spacing: 0.15em;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .menu-toggle span {
        background-color: #fff;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-container {
        padding: 4rem 2rem 2rem;
        height: 100%;
        overflow-y: auto;
        border-bottom: none;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-list a {
        font-size: 1rem;
        padding: 1rem 0;
        display: block;
        width: 100%;
        -webkit-tap-highlight-color: rgba(199, 21, 133, 0.1);
    }

    .nav-list a:active {
        background-color: rgba(199, 21, 133, 0.05);
    }

    .announcement-bar {
        padding: 0.3rem;
        font-size: 0.7rem;
    }

    /* Service Tabs - Always visible on mobile */
    .service-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        gap: 0;
    }

    .service-tab {
        flex: 1 1 auto;
        min-width: 33.33%;
        padding: 0.6rem 0.5rem;
        font-size: 0.65rem;
        letter-spacing: 0.05em;
        text-align: center;
        white-space: nowrap;
    }

    /* Hero Sections */
    .hero-section {
        padding: 1rem 0.75rem;
        min-height: auto;
    }

    #extensions-section {
        padding: 1rem 0.75rem;
    }

    #lift-tint-section {
        padding: 1.5rem 0.75rem;
    }

    #facial-waxing-section {
        padding: 1.5rem 0.75rem;
    }

    /* Service Tiles - Vertical stack on mobile */
    .service-tiles {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 0.5rem;
        align-items: stretch;
    }

    .service-item {
        max-width: 100%;
        min-height: auto;
        padding: 1rem 0.75rem;
        margin-bottom: 0;
    }

    .service-item:hover {
        transform: none;
    }

    .service-item.content-pushed {
        padding-top: 1rem;
    }

    .service-item h2 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .service-item p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .service-price {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    /* Refills section mobile */
    .pricing-section {
        margin-bottom: 0.5rem;
    }

    .refills-btn {
        font-size: 0.7rem;
    }

    .refills-menu.expanded {
        max-height: 180px;
        padding: 0.4rem;
    }

    .refill-item {
        padding: 0.3rem 0.4rem;
        font-size: 0.75rem;
    }

    /* Learn More button */
    .learn-more-btn {
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }

    .service-description {
        font-size: 0.75rem;
    }

    .service-description.expanded {
        margin-top: 0.5rem;
        max-height: 300px;
    }

    /* Separator */
    .service-separator {
        margin: 0.5rem auto;
        padding: 0 0.5rem;
    }

    .separator-title {
        font-size: 0.8rem;
    }

    .scroll-indicator {
        font-size: 0.6rem;
    }

    .scroll-indicator .arrow {
        font-size: 1rem;
    }

    /* Appointment Notice */
    .appointment-notice {
        padding: 0.25rem 0.5rem;
        margin: 0.25rem auto;
    }

    .appointment-notice p {
        font-size: 1.2rem;
    }

    /* Lift & Tint Grid - Single column on mobile */
    .lift-tint-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .lt-panel {
        padding: 0.75rem 1rem;
    }

    .lt-panel h3 {
        font-size: 0.7rem;
    }

    .lt-panel-price {
        font-size: 0.8rem;
    }

    /* Facial Waxing Grid - 2 columns on mobile */
    .waxing-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 1rem;
    }

    .waxing-item {
        padding: 0.75rem 0.75rem;
    }

    .waxing-service {
        font-size: 0.8rem;
    }

    .waxing-price {
        font-size: 0.85rem;
    }

    .waxing-featured {
        grid-column: span 2;
    }

    /* Palm tree - smaller and more faded on mobile */
    body::after {
        width: 300px;
        height: 400px;
        right: -100px;
        bottom: -50px;
        opacity: 0.04;
    }

    /* Section titles */
    .section-title {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Reviews section mobile */
    .reviews-section {
        padding: 2rem 1rem;
    }

    .reviews-track {
        gap: 1rem;
    }
    
    .review-card {
        min-width: 240px;
        padding: 1rem;
    }
}

:root {
    --fuschia-main: #C71585;
    --fuschia-light: #FF69B4;
    --fuschia-dark: #8B0A50;
}

/* Accent color for navigation hover states */
.nav-list a:hover {
    color: var(--fuschia-main);
    transition: color 0.3s ease;
}

.nav-list a.active {
    color: var(--fuschia-main);
    border-bottom: 1px solid var(--fuschia-main);
    padding-bottom: 2px;
}

/* Service cards learn more links */
.learn-more {
    color: var(--fuschia-dark);
    border-bottom: 1px solid var(--fuschia-dark);
}

.learn-more:hover {
    color: var(--fuschia-main);
    border-bottom-color: var(--fuschia-main);
}

/* Review section accents */
.reviewer-avatar {
    background: var(--fuschia-dark);
}

.rating {
    color: var(--fuschia-main);
}

/* Scroll buttons for reviews */
.scroll-button {
    display: none;
}

/* Optional: Add a subtle underline */
.reviews-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--fuschia-main);
}

/* Contact Section */
.contact-section {
    width: 100%;
    padding: 1.5rem 2rem 2rem 2rem;
    background: #fff;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: flex-start;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-title {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--fuschia-main);
    position: relative;
    padding-bottom: 1rem;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--fuschia-main);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--fuschia-main);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #000;
}

.contact-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.contact-item a {
    color: var(--fuschia-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--fuschia-dark);
    text-decoration: underline;
}

.map-container {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    position: relative;
}

/* ============================================
   CONTACT PAGE - Mobile styles
   ============================================ */
@media (max-width: 768px) {
    .contact-section {
        padding: 1rem 0.75rem;
    }

    .contact-container {
        padding: 0;
    }

    .contact-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-item {
        gap: 0.75rem;
    }

    .contact-item i {
        font-size: 1rem;
    }

    .contact-item h3 {
        font-size: 0.8rem;
    }

    .contact-item p {
        font-size: 0.75rem;
    }

    .contact-item a {
        font-size: 0.8rem;
        padding: 0.25rem 0;
        display: inline-block;
        -webkit-tap-highlight-color: rgba(199, 21, 133, 0.1);
    }

    .map-container {
        margin-top: 0;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* ============================================
   SMALL MOBILE (480px and below)
   ============================================ */
@media (max-width: 480px) {
    .top-bar {
        padding: 0.5rem 0.75rem;
    }

    .logo h1 {
        font-size: 0.85rem;
        letter-spacing: 0.08em;
    }

    /* Service tabs - stack nicely */
    .service-tab {
        min-width: 100%;
        padding: 0.5rem;
        font-size: 0.6rem;
        border-bottom: 1px solid #eee;
    }

    .service-tab:last-child {
        border-bottom: none;
    }

    .service-tab.active {
        border-bottom: 1px solid #eee;
    }

    /* Hero sections */
    .hero-section {
        padding: 0.75rem 0.5rem;
    }

    #lift-tint-section,
    #facial-waxing-section {
        padding: 1rem 0.5rem;
    }

    /* Service tiles */
    .service-tiles {
        gap: 0.5rem;
        padding: 0 0.25rem;
    }

    .service-item {
        padding: 0.75rem 0.5rem;
    }

    .service-item h2 {
        font-size: 0.75rem;
    }

    .service-item p {
        font-size: 0.7rem;
    }

    .service-price {
        font-size: 0.75rem;
    }

    .refills-btn {
        font-size: 0.65rem;
    }

    .refill-item {
        font-size: 0.7rem;
    }

    .learn-more-btn {
        font-size: 0.65rem;
    }

    /* Separator */
    .service-separator {
        margin: 0.5rem auto;
        padding: 0 0.25rem;
    }

    .separator-title {
        font-size: 0.7rem;
    }

    .scroll-indicator {
        font-size: 0.55rem;
    }

    /* Appointment notice */
    .appointment-notice p {
        font-size: 1rem;
    }

    /* Lift & Tint */
    .lift-tint-grid {
        gap: 0.4rem;
        padding: 0 0.25rem;
    }

    .lt-panel {
        padding: 0.6rem 0.75rem;
    }

    .lt-panel h3 {
        font-size: 0.65rem;
    }

    .lt-panel-price {
        font-size: 0.75rem;
    }

    /* Facial Waxing - single column on very small screens */
    .waxing-menu {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 0.75rem;
    }

    .waxing-item {
        padding: 0.6rem 0.75rem;
    }

    .waxing-service {
        font-size: 0.75rem;
    }

    .waxing-price {
        font-size: 0.8rem;
    }

    .waxing-featured {
        grid-column: span 1;
    }

    /* Contact */
    .contact-section {
        padding: 0.5rem;
    }

    .contact-title {
        font-size: 0.9rem;
    }

    .contact-item h3 {
        font-size: 0.75rem;
    }

    .contact-item p {
        font-size: 0.7rem;
    }

    .map-container iframe {
        height: 200px;
    }

    /* Palm tree - hide on very small screens */
    body::after {
        display: none;
    }
}
  