/* ClearCosmetics Website Styles */

/* Root Variables */
:root {
    --primary-color: #f5e6e0; /* Soft Nude/Blush */
    --secondary-color: #222222; /* Deep Charcoal */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --accent-pink: #f5e6e0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Mobile-First Spacing - Enhanced for mobile */
    --section-padding: 48px 0;
    --container-padding: 0 16px;
    --hero-spacing: 20px;
    --card-padding: 1.25rem;
    --text-spacing: 0.875rem;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;

    /* Mobile-Optimized Border Radius */
    --border-radius: 16px;
    --border-radius-small: 12px;

    /* Enhanced Mobile Shadows */
    --shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Image Styling */
.logo {
    height: 40px;
    width: auto;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Hero Professional Image */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-professional-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.hero-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 16px;
    border-radius: var(--border-radius-small);
    backdrop-filter: blur(10px);
}

.hero-image-text {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    display: block;
}

.result-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.treatment-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.clinic-image {
    margin-bottom: 15px;
}

.clinic-placeholder {
    width: 100%;
    height: 150px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    border: 2px dashed #ddd;
}

.clinic-placeholder i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.clinic-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--secondary-color);
    background-color: var(--white);
    overflow-x: hidden;
    padding-bottom: 80px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile-First Container */
.container {
    width: 100%;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Desktop enhancement */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 50px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.875rem, 5vw, 3rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.375rem, 4vw, 2rem);
    line-height: 1.3;
}

p {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Enhanced mobile typography and layout */
@media (max-width: 768px) {
    :root {
        --section-padding: 40px 0;
        --container-padding: 0 20px;
        --card-padding: 1rem;
    }

    h1, h2, h3 {
        margin-bottom: 0.875rem;
        text-align: center;
    }

    p {
        line-height: 1.65;
        margin-bottom: 1.125rem;
    }

    /* Better section spacing on mobile */
    .hero {
        padding: 60px 0 40px 0;
        min-height: auto;
    }

    .section {
        padding: 40px 0;
    }

    /* Improved card layouts */
    .card, .treatment-card, .service-card {
        margin-bottom: 20px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    /* Better button spacing */
    .btn {
        margin-bottom: 12px;
        font-size: 1rem;
        padding: 16px 24px;
    }

    /* Enquiry section mobile optimization */
    .enquiry-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .enquiry-buttons .btn {
        width: 100%;
    }

    /* Treatment grid mobile optimization */
    .treatment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Better mobile navigation */
    .navbar {
        padding: 12px 0;
    }

    /* Optimize images for mobile */
    img {
        border-radius: 12px;
    }

    /* Better contact form spacing */
    .contact-form {
        padding: 24px 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    /* Add breathing room at bottom for sticky buttons */
    body {
        padding-bottom: 90px;
    }

    /* Mobile performance optimizations */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Allow text selection for content */
    p, h1, h2, h3, h4, h5, h6, span, div:not(.btn) {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }

    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    /* Better image loading for mobile */
    img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        loading: lazy;
    }

    /* Optimize animations for mobile */
    *, *::before, *::after {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    :root {
        --container-padding: 0 16px;
        --section-padding: 32px 0;
    }

    h1 {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .mobile-sticky {
        padding: 12px 16px 16px 16px;
        gap: 8px;
    }

    .sticky-btn {
        padding: 12px 16px;
        font-size: 0.875rem;
        min-width: 70px;
    }

    .enquiry-buttons {
        gap: 16px;
    }

    .card, .treatment-card {
        padding: 16px;
    }

    /* Ensure treatment cards don't have pointer cursor - only buttons should */
    .treatment-card, .service-card {
        cursor: default !important;
    }

    .treatment-card .btn, .service-card .btn {
        cursor: pointer !important;
    }
}

/* Mobile-First Buttons */
.btn {
    display: block;
    width: 100%;
    padding: 18px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    background: none;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop button enhancement */
@media (min-width: 768px) {
    .btn {
        display: inline-block;
        width: auto;
        padding: 16px 32px;
        font-size: 1rem;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 24px;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Mobile-First Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 70px;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(245, 230, 224, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-brand h2 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.btn-nav {
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--border-radius-small);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Mobile-First Hero Section */
.hero {
    padding: 100px 0 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
    min-height: auto;
    text-align: center;
}

.hero-container {
    width: 100%;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

/* Desktop Hero Enhancement */
@media (min-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        text-align: left;
    }

    .hero-container {
        max-width: 800px;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
}

.hero-content {
    animation: fadeInUp 1s ease;
}

/* Rectangular Video Between Title and Subtitle */
.hero-video-container {
    margin: 2rem 0;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-rect-video {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid var(--white);
}

.hero-rect-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.rect-treatment-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 1;
    pointer-events: auto;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-rect-video:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-rect-video:hover .play-button {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.video-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    transition: var(--transition);
}

.hero-rect-video:hover .video-text {
    transform: translateY(-2px);
}

/* Mobile adjustments for rectangular video */
@media (max-width: 768px) {
    .hero-video-container {
        margin: 1.5rem 0;
        max-width: none;
    }

    .hero-rect-video {
        height: 180px;
        border-width: 2px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .video-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-video-container {
        margin: 1rem 0;
    }

    .hero-rect-video {
        height: 160px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .video-text {
        font-size: 0.9rem;
    }
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    opacity: 1;
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    transition: var(--transition);
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-modal video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
}

.video-modal-caption {
    padding: 1rem;
    text-align: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

/* Rectangular Video Pulse Animation */
@keyframes rectVideoPulse {
    0%, 100% {
        box-shadow: var(--shadow-hover);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(245, 230, 224, 0.4);
        transform: translateY(-2px);
    }
}

/* Mobile video modal adjustments */
@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .video-modal-close {
        top: 5px;
        right: 10px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }

    .video-modal-caption {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin: 1rem auto;
}

/* Desktop hero buttons */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
        max-width: none;
        margin: 0;
    }
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background: var(--light-gray);
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background: var(--light-gray);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 1.5rem;
    text-align: center;
}

.slide-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    pointer-events: all;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(34, 34, 34, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Mobile carousel adjustments */
@media (max-width: 768px) {
    .hero-carousel {
        height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slide-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 300px;
    }

    .slide-overlay {
        padding: 1rem;
    }

    .slide-text {
        font-size: 0.9rem;
    }
}

.hero-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

/* Improved mobile video display */
@media (max-width: 768px) {
    .hero-video {
        height: 300px;
        object-fit: contain;
        background-color: #f8f9fa;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-video {
        height: 280px;
        object-fit: contain;
        margin: 1.5rem 0;
    }
}

.hero-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed var(--primary-color);
}

.hero-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background-color: var(--white);
    margin-top: 0;
    padding-top: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.professional-headshot {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed var(--primary-color);
}

.about-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.highlight i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Treatments Section */
.treatments {
    background-color: var(--primary-color);
}

.treatments-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Desktop treatments grid */
@media (min-width: 768px) {
    .treatments-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

.treatment-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

.treatment-card .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.treatment-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.treatment-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.treatment-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.treatment-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.treatment-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.treatment-card p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

/* Results Section */
.results {
    background-color: var(--white);
}

.results-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.result-slide {
    display: none;
    text-align: center;
}

.result-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ba-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.before-after-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.before-after-img[src*="0.7ml lips after"] {
    object-position: center 30%;
}

.before-after-img[src*="0.7ml lips before"] {
    object-position: center 60%;
}


.ba-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.ba-placeholder {
    height: 300px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray);
    border: 2px dashed var(--primary-color);
}

.result-caption {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--primary-color);
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial-slide.text-only {
    grid-template-columns: 1fr;
    text-align: center;
}

.testimonial-screenshot {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.video-placeholder,
.message-placeholder {
    height: 250px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-color);
}

.video-placeholder i,
.message-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.testimonial-content cite {
    font-weight: 600;
    color: var(--gray);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 1rem;
}

.stars i {
    color: #ffd700;
}

/* Locations Section */
.locations {
    background-color: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.location-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.map-placeholder {
    height: 250px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 2px dashed var(--secondary-color);
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.location-info {
    padding: 2rem;
}

.location-info h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.location-details {
    margin-bottom: 2rem;
}

.location-details p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.location-details i {
    color: var(--primary-color);
    width: 20px;
}

/* Membership Section */
.membership {
    background-color: var(--primary-color);
    text-align: center;
}

.membership-content {
    max-width: 800px;
    margin: 0 auto;
}

.membership-badge {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

.membership-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
}

.membership-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* Enquiry Section */
.enquiry {
    background-color: var(--white);
    text-align: center;
}

.enquiry-content {
    max-width: 900px;
    margin: 0 auto;
}

.enquiry-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .enquiry-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .enquiry-content {
        padding: 0;
        margin: 0 auto;
    }

    .enquiry {
        padding-left: 0;
        padding-right: 0;
    }

    .enquiry .container {
        padding-left: 20px;
        padding-right: 20px;
        margin: 0 auto;
    }
}

.enquiry-card {
    background-color: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .enquiry-card {
        padding: 2rem 1.5rem;
    }
}

.enquiry-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.enquiry-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.enquiry-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.enquiry-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.enquiry-card p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.enquiry-note {
    background-color: var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.enquiry-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--gray);
}

.enquiry-note p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 500;
}

.enquiry-note i {
    color: var(--secondary-color);
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.booking-card {
    background-color: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.booking-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.booking-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.booking-card p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.booking-note {
    background-color: var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.booking-note p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 500;
}

.booking-note i {
    color: var(--secondary-color);
}

/* Booking Selector Styles */
.booking-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.selector-group {
    text-align: left;
}

.selector-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background-color: var(--white);
    transition: var(--transition);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Calendar Styles */
.calendar-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--primary-color);
}

.calendar-header h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.calendar-nav {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-nav:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.calendar-grid {
    padding: 1rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    margin-bottom: 1rem;
}

.weekday {
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--gray);
    background-color: var(--light-gray);
    border-radius: 4px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
}

.calendar-day:hover {
    background-color: var(--light-gray);
}

.calendar-day.other-month {
    color: var(--light-gray);
}

.calendar-day.available {
    background-color: var(--primary-color);
    color: var(--white);
}

.calendar-day.available:hover {
    background-color: var(--secondary-color);
}

.calendar-day.selected {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
}

.calendar-day.unavailable {
    color: var(--light-gray);
    cursor: not-allowed;
}

/* Time Slots Styles */
.time-slots-container {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: left;
}

.time-slots-container h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.time-slot {
    padding: 0.8rem 1rem;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--primary-color);
}

.time-slot:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.time-slot.selected {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.time-slot.unavailable {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    color: var(--gray);
    cursor: not-allowed;
}

/* Booking Form Styles */
.booking-form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    text-align: left;
}

.booking-summary {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.booking-summary h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.booking-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Form Buttons Container */
.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.whatsapp-contact-btn {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: var(--white) !important;
}

.whatsapp-contact-btn:hover {
    background-color: #1fa851 !important;
    border-color: #1fa851 !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .form-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .form-buttons .btn {
        flex: 1;
    }
}

/* Enquiry Section Buttons */
.enquiry-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.5rem;
}

.enquiry-buttons .btn {
    flex: 1;
}

.single-card {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .single-card {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .enquiry-card.single-card {
        margin: 0 auto;
        text-align: center;
    }

    .enquiry-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0;
        margin: 0 auto;
        max-width: 100%;
    }
}

.enquiry-buttons .btn i {
    margin-right: 0.5rem;
}

/* Payment Options Styles */
.payment-section {
    margin-top: 1rem;
}

.payment-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.payment-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--light-gray);
}

.payment-btn.selected {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--white);
}

.payment-btn i {
    font-size: 1.2rem;
}

.booking-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Payment Modal Styles */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.payment-modal {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.payment-modal h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.payment-modal p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.payment-modal-buttons {
    display: flex;
    gap: 1rem;
}

.payment-modal-buttons .btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
}

/* Stripe Card Container */
.stripe-card-container {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.stripe-card-container h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* PayPal Container */
.paypal-container {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.paypal-container h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

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

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-description {
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 25px;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

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

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-small);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23d4996b' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 45px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(245, 230, 224, 0.3);
}

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

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Bottom Button Bar */
.mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 16px 20px 20px 20px; /* Extra bottom padding for safe area */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 999;
    gap: 12px;
    /* Add safe area padding for newer phones */
    padding-bottom: max(20px, env(safe-area-inset-bottom));
}

.sticky-btn {
    padding: 14px 18px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px; /* Better touch target */
    min-width: 48px;
    flex: 1;
    max-width: 120px;
    min-width: 80px;
    background-color: #2c3e50;
    color: var(--white);
}

.book-btn {
    background-color: #2c3e50;
    color: var(--white);
    font-size: 0.9rem;
}

.whatsapp-btn {
    background-color: #2c3e50;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    min-width: 50px;
}

.chatbot-btn {
    background-color: #2c3e50;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    min-width: 50px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Chatbot */
.chatbot {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    height: 400px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.chatbot.active {
    display: flex;
}

.chatbot-header {
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1rem;
}

.chatbot-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.bot-message {
    background-color: var(--primary-color);
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-small);
    margin-bottom: 1rem;
}

.bot-message p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid var(--primary-color);
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-small);
    font-family: var(--font-body);
}

.chatbot-input button {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    color: var(--secondary-color);
}

/* Chatbot toggle is now integrated into bottom button bar */

/* Chatbot Assistant Popup */
.chatbot-assistant-popup {
    position: fixed;
    bottom: 140px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), #e6c2a6);
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.25);
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 250px;
    text-align: center;
    z-index: 998;
    border: 2px solid var(--secondary-color);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: none;
}

.chatbot-assistant-popup.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    animation: chatbotPulse 3s ease-in-out infinite;
}

.chatbot-assistant-popup::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--secondary-color);
}

.chatbot-assistant-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 31px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid var(--primary-color);
}

.chatbot-assistant-popup .popup-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.chatbot-assistant-popup .popup-close {
    position: absolute;
    top: -5px;
    right: 5px;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.chatbot-assistant-popup .popup-close:hover {
    opacity: 1;
}

@keyframes chatbotPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(44, 62, 80, 0.25);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 12px 40px rgba(44, 62, 80, 0.35);
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .chatbot-assistant-popup {
        bottom: 120px;
        right: 15px;
        max-width: 220px;
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }

    .chatbot-assistant-popup::before {
        right: 25px;
    }

    .chatbot-assistant-popup::after {
        right: 26px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 25px;
    }

    /* Enhanced Navigation for Mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        z-index: 1000;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        display: block;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0.5rem 1rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-link:active {
        background-color: var(--primary-color);
        transform: scale(0.98);
    }

    .btn-nav {
        background-color: var(--secondary-color);
        color: var(--white);
        margin: 1rem 2rem;
        padding: 1rem 2rem;
        border-radius: 25px;
        font-weight: 600;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        border: none;
        background: none;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
    }

    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background-color: var(--secondary-color);
        margin: 2px 0;
        transition: 0.3s ease;
        border-radius: 2px;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 120px 0 40px;
    }

    /* About */
    .about {
        margin-top: -60px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* About */
    .about {
        padding: 0 0 80px 0;
        margin: -60px 0 0 0;
    }
    .about .container {
        padding: 0 25px 40px 25px;
    }

    /* Enhanced Mobile Section Spacing */
    .treatments {
        margin-top: 60px;
        padding: 80px 0;
    }

    .results {
        margin-top: 40px;
        padding: 80px 0;
    }

    .testimonials {
        margin-top: 40px;
        padding: 80px 0;
    }

    .locations {
        margin-top: 40px;
        padding: 80px 0;
    }

    .membership {
        margin-top: 40px;
        padding: 80px 0;
    }

    .enquiry {
        margin-top: 40px;
        padding: 80px 0;
    }

    .contact {
        margin-top: 40px;
        padding: 80px 0;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    /* Increase spacing between treatment cards */
    .treatments-grid {
        gap: 2.5rem;
    }

    /* Add more space around section titles */
    .section-title {
        margin-bottom: 2rem;
        margin-top: 1rem;
    }

    /* Increase gap in hero content */
    .hero-content {
        gap: 2rem;
    }

    /* Add breathing room to hero video container */
    .hero-video-container {
        margin: 2rem 0;
    }

    /* No gap between hero and about sections */
    .hero {
        padding-bottom: 0;
    }

    .about-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    /* Treatments */
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .treatment-card {
        margin-bottom: 1rem;
    }

    /* Package Cards Mobile */
    .package-badge {
        top: 15px;
        right: 15px;
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .package-price {
        font-size: 1.8rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }

    .package-card {
        padding: 2.5rem 2rem;
        margin-bottom: 1rem;
    }

    /* Before & After */
    .before-after {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .ba-placeholder,
    .ba-image {
        height: 250px;
    }

    .gallery-grid {
        gap: 2rem;
        padding: 1rem 0;
    }

    .gallery-item {
        margin-bottom: 1.5rem;
    }

    /* Testimonials */
    .testimonial-slide {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 1.5rem;
        margin-bottom: 1rem;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }

    .location-card {
        margin-bottom: 1.5rem;
    }

    /* Membership */
    .membership-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .membership-feature {
        margin-bottom: 1rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Enhanced Mobile Sticky Bar */
    .mobile-sticky {
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sticky-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 25px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        border: none;
        cursor: pointer;
    }

    .sticky-btn:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .book-btn {
        flex: 1;
        background-color: var(--secondary-color);
        color: var(--white);
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: calc(100% - 60px);
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        background-color: #25D366;
        color: white;
        border-radius: 50%;
        font-size: 1.4rem;
        min-width: 50px;
        flex-shrink: 0;
        padding: 0;
    }

    .whatsapp-btn:hover,
    .book-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    /* Chatbot */
    .chatbot {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
    }


    /* Typography */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero {
        padding: 120px 0 40px;
        min-height: auto;
    }

    .hero-video {
        height: 300px;
        margin: 2rem 0;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-tagline {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    /* Results Slider Mobile */
    .results-slider {
        overflow-x: auto;
        padding: 1rem;
        margin: 1rem 0;
    }

    .slide {
        min-width: 300px;
        flex: 0 0 300px;
        padding: 0 0.8rem;
    }

    .before-after-container {
        gap: 1rem;
        flex-direction: column;
    }

    .before-after-img {
        height: 220px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .slide-caption {
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
        --container-padding: 0 20px;
    }

    .treatment-card,
    .booking-card {
        padding: 2.5rem 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-form {
        padding: 2.5rem 2rem;
    }

    .testimonial-slide {
        padding: 2rem 1.5rem;
    }

    .location-info {
        padding: 2rem;
    }

    /* Better image handling on small mobile */
    .hero-video {
        height: 280px;
        margin: 1.5rem 0;
    }

    .before-after-img {
        height: 200px;
    }

    .slide {
        min-width: 280px;
        flex: 0 0 280px;
    }

}

/* Package Cards */
.package-card {
    position: relative;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    text-align: center;
}

.package-includes {
    margin: 1.5rem 0;
    text-align: left;
}

.package-includes h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.package-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-includes li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-light);
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.package-disclaimer {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.package-disclaimer p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Additional Hover Effects */
.treatment-card,
.booking-card,
.location-card {
    position: relative;
    overflow: hidden;
}

.treatment-card::before,
.booking-card::before,
.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 230, 224, 0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: 1;
}

.treatment-card:hover::before,
.booking-card:hover::before,
.location-card:hover::before {
    left: 100%;
}

/* Smooth Scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .mobile-sticky,
    .chatbot,
    .chatbot-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero {
        page-break-inside: avoid;
    }
}

/* Waitlist Popup Styles */
.waitlist-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.waitlist-popup-content {
    position: relative;
    background-color: var(--white);
    margin: 2% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-hover);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.waitlist-popup-close {
    color: var(--gray);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.waitlist-popup-close:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.waitlist-popup h2 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-align: center;
}

.waitlist-popup p {
    font-family: var(--font-body);
    color: var(--gray);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.1rem;
}

/* Waitlist Form Styles */
.waitlist-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius-small);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(245, 230, 224, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 40px;
}

/* Checkbox Styles */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
    padding: 8px 0;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    background-color: var(--white);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 12px;
}

.checkbox-consent {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 25px;
}

.checkbox-consent .checkbox-label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-consent a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.checkbox-consent a:hover {
    color: var(--primary-color);
}

/* Submit Button */
.waitlist-submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.waitlist-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Success Message */
.waitlist-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.waitlist-success h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.waitlist-success p {
    font-family: var(--font-body);
    color: var(--gray);
    margin-bottom: 10px;
    line-height: 1.5;
}

.success-note {
    background: var(--light-gray);
    padding: 15px;
    border-radius: var(--border-radius-small);
    font-size: 0.95rem;
    margin-top: 20px;
}

.success-note strong {
    color: var(--secondary-color);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .waitlist-popup-content {
        margin: 5% auto;
        width: 95%;
        padding: 20px;
        max-height: 85vh;
    }

    .waitlist-popup h2 {
        font-size: 1.5rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .waitlist-submit {
        padding: 18px 24px;
        font-size: 1rem;
    }

    .waitlist-success h3 {
        font-size: 1.5rem;
    }

    .success-icon {
        font-size: 2.5rem;
    }
}