/* General Styling */
body {
    margin: 0;
    font-family: "Prompt", serif;
    line-height: 1.5;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    transition: background 0.3s, backdrop-filter 0.3s;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.social-media a {
    /* color: #000000;
    margin-right: 10px; */
    display: none;
}

.social-media {
    min-width: 167.21px;
}

.logo img {
    height: 180px;
}

.phone-button button {
    background: #000000;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 1rem;
}

nav {
    display: flex;
    justify-content: center;
    padding: 10px 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: initial;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 1.2rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 180px;

}



.dropdown-menu a:hover {
    background-color: #000000;
    color: white;
}


.dropdown:hover .dropdown-menu {
    display: block;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.content {
    margin-top: 260px;
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: auto;
    margin: auto;
    background: #f8e7dd;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    /* Keeps text and image side by side */
    gap: 40px;
    /* Adds space between text and image */
}

/* LEFT CONTENT */
.hero-content {
    flex: 1;
    /* Takes up 50% of the space */
    text-align: left;
}

/* Brand Name */
.brand-name {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Horizontal Line Dividers */
.divider {
    width: 300px;
    height: 3px;
    background: #000;
    margin: 15px 0;
}



/* FEATURE LIST */
.features {
    padding: 0;
    list-style: none;
}

.features li {
    font-size: 1.4rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
    /* Adds a structured look */
}

/* CALL-TO-ACTION BUTTON */
.cta-button {
    background: #000;
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    border: 2px solid #000;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.cta-button:hover {
    background: transparent;
    color: #000;
    transform: scale(1.05);
}

/* RIGHT IMAGE SECTION */
.hero-image {
    flex: 1;
    /* Takes up 50% of the space */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ead9cf;
    padding: 20px;
    border-radius: 12px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}


/* GENERAL STYLING */
.info-section {
    text-align: center;
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 20px;
}

.section-title span {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-family: "Cormorant Garamond", serif;
}

.section-subtitle {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    font-family: "Cormorant Garamond", serif;
    justify-content: center;
    margin-top: 40px;
}

.section-text span {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 10px auto;
    display: block;
    line-height: 1.6;
}


.big-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: "Dancing Script", cursive;
    color: #000;
    margin-right: 15px;
    line-height: 1;
}


.slider-container {
    position: relative;
    max-width: 600px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 10px;
}

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

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

.slide.active {
    display: block;
}

.slide img {
    width: 70%;
    border-radius: 10px;
}

.slide-caption {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-top: 10px;
    font-family: "Cormorant Garamond", serif;
}

/* NAVIGATION BUTTONS */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: rgb(90, 90, 90);
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background-color: black;
}



.video-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    padding: 40px 20px;
    gap: 30px;
}

.video-container {
    flex: 1;
    max-width: 50%;
}

.video-container video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-text {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.video-title span {
    font-size: 2.5rem;
    display: block;
    font-family: "Cormorant Garamond", serif;
    color: #222;
}

.video-description span {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-top: 10px;
}

.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    background-color: #efefef;
    /* Banner background color */
    color: rgb(0, 0, 0);
    padding: 0 20px;
    /* Adding some padding to avoid text touching edges */
}

.banner-content {
    text-align: center;
    max-width: 800px;
    /* Limiting the width to make it look better on larger screens */
    width: 100%;
}

.banner-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "Cormorant Garamond", serif;
    line-height: 1;
}

.banner-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.banner-button {
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.banner-button:hover {
    background-color: #626262;
}


.card {
    display: flex;
    margin: 20px 150px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.card-left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image {
    width: 50%;
    height: auto;
}

.card-right {
    padding: 20px;
    width: 50%;
    align-content: center;
}

.price-box {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 3px solid black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-right: 10px;
}

.price-info {
    font-size: 1.2rem;
    font-weight: normal;
    color: #555;
}



.description {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.1;
}

.lists {
    display: flex;
    justify-content: space-between;
}

.list {
    list-style-type: disc;
    margin-right: 20px;
}

.list li {
    font-size: 1rem;
}

.brochure-button-container {
    text-align: center;
    margin-top: 20px;
}

.brochure-button {
    display: inline-block;
    background-color: #000;
    /* Black button */
    color: white;
    font-size: 1.2rem;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.brochure-button:hover {
    background-color: #2d2d2d;
    transform: scale(1.05);
}

.image-section {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('./img/incontinence.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: flex-start;
    /* Aligns text to the right */
    align-items: center;
    padding: 20px;
}

/* Text Container */
.text-container {
    color: #000000;
    max-width: 500px;
    padding: 30px;
    border-radius: 10px;
}

/* Title */
.section-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 15px;
    font-family: "Cormorant Garamond", serif;
}

/* Description */
.section-description {
    font-size: 1.1em;
    margin-bottom: 15px;
}



.sculptface-section {
    display: flex;
    flex-direction: row;
    padding: 20px;
    gap: 20px;
    margin: 20px;
}

.sculptface-content {
    display: flex;

    width: 100%;
}

.image-container {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: auto;
}

.text-container {
    flex: 1 1 50%;
    padding: 20px;
}

.title {
    font-size: 2.5rem;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 10px;
}

.subtext {
    font-size: 16px;
    margin-bottom: 15px;
}

.bullet-list {
    list-style-type: disc;
    padding-left: 20px;
}

.bullet-list li {
    font-size: 16px;
    margin-bottom: 8px;
}

.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 500px;
    background-color: #f5f5f5;
    padding: 20px;
}


.image-container-imaginerie {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;

}

.image-container-imaginerie img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}

.text-container {
    width: 50%;
    color: #333;
    padding: 30px;
    margin-right: 20px;
}

.section-title {
    font-size: 2.5rem;

}

.section-description {
    font-size: 1.1em;
    line-height: 1.6;
    padding: 0px;
    margin: 0px;
}

/* Diagrams Section */
.diagrams-container {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.diagram {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.diagram h3 {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.before-after {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.before-after img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    background-color: #f0f0f0;
    padding: 10px;
}



.content-wrapper {

    margin: 30px;
}

.section-heading {
    font-size: 2.5rem;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 30px;
    justify-self: center;
}

.feature-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.icon-feature {
    width: 100px;
    height: 100px;

}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}





.feature-text {
    font-size: 1rem;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-txt {
    text-align: center;
}

.feature-text span {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
}

.results-container {
    max-width: 62.5rem;
    margin: 2rem auto;
    padding: 1rem;
}

.zone-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.zone img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.zone.selected img {
    border: 2px solid #000000;
}

.comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.results-container p {
    justify-self: center;
}

.comparison div {
    text-align: center;
}

.comparison img {
    width: 100%;
    max-width: 18rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.media-showcase {
    text-align: center;

}

.media-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
}


.media-container video {
    width: 60%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.business-growth-section {
    background-color: #e5e5e5;
    color: #333;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin-top: 50px;

}

.business-growth-container {
    max-width: 800px;
    text-align: center;
    padding: 20px;
    width: 100%;
    /* Ensures the container doesn't overflow on smaller screens */
}

/* Business Growth Title */
.business-growth-title {
    font-size: 2.5em;
    font-family: "Cormorant Garamond", serif;
    color: #000;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Business Growth Subtitles */
.business-growth-subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Business Growth CTA Button */
.business-growth-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.business-growth-cta-button:hover {
    background-color: #333;
}





.faq-section {
    max-width: 700px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;

}

.faq-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    font-family: "Cormorant Garamond", serif;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    color: #333;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #3c3c3c;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.faq-answer.open {
    display: block;
}

.icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.icon.open {
    transform: rotate(45deg);
}

.container-table {
    background: #ffffff;
    padding: 20px;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 8px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th,
.table td {
    border-bottom: 1px solid #d6d6d6;
    padding: 10px;
    text-align: left;
    background-color: white;
}

.table th {
    background: #f3f3f3;
}

.table-title {
    font-size: 2.5rem;
    font-family: "Cormorant Garamond", serif;

}

.form-div {
    display: flex;
    flex-direction: row;
}

.form-img {
    width: 50%;
}

.form {
    width: 50%;
}

.image-form {
    width: 100%;
}

.contact-title {
    font-size: 2.5rem;
    font-family: "Cormorant Garamond", serif;
    text-align: center;
}



/* Base styles for the section */
.skin-tone-carousel {
    width: auto;
    padding: 20px;
    text-align: center;

    /* Soft warm background color */
}

/* Styling the header */
.skin-tone-title {
    font-size: 2.5rem;
    color: #000000;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 10px;
}

.skin-tone-subtitle {
    font-size: 1.2rem;
    color: #000000;
    /* Lighter skin tone inspired color */
}

.skin-tones-img {
    width: 80%;
}

/* Slider container */
.tone-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 24px;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-arrow-left {
    left: 12%;
}

.carousel-arrow-right {
    right: 12%;
}

.tone-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.tone-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.tone-slide-image {
    width: 10%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.tone-slide-text {
    bottom: 20px;
    left: 20px;
    font-size: 1rem;
    color: #000000;
    padding: 0px 300px;
}

/* Base styles for the section */
.skin-tone-info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    /* Soft background color inspired by skin tones */
}

/* Image styling */
.skin-tone-info-left {
    flex: 1;
    padding-right: 20px;
}

.skin-tone-info-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}


.skin-tone-info-right {
    flex: 1;
    padding: 0px 30px;

}

/* Title styling */
.skin-tone-info-title {
    font-size: 2.5rem;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 10px;
    line-height: 1.1;
}

/* Subtitle styling */
.skin-tone-info-subtitle {
    font-size: 1.2rem;
    /* Lighter brown color */
    margin-bottom: 20px;
}

/* List styling */
.skin-tone-info-list {
    list-style-type: disc;
    padding-left: 0;
    font-size: 1rem;
    /* Dark brown color */
}

.skin-tone-info-list-item {
    margin-bottom: 10px;
}




/* Base section styles */
.skin-balance-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    /* Soft warm skin-tone inspired background */
}

/* Left side - Text */
.skin-balance-text {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

/* Title */
.skin-balance-title {
    font-size: 2.5rem;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 10px;
    line-height: 1.1;
}

/* Description */
.skin-balance-description {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
}

/* Right side - Image */
.skin-balance-image {
    flex: 1;
    display: flex;
}

/* Image styling */
.skin-balance-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Carousel Container */
.laser-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;

}

/* Carousel Slides Container */
.laser-carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.laser-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

/* Slide Image */
.laser-image {
    max-width: 40%;
    height: auto;
    border-radius: 10px;
}

/* Slide Title */
.laser-title {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #333;
}

/* Slide Text */
.laser-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Navigation Buttons */
.laser-carousel-prev,
.laser-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    width: 32px;
    transition: background-color 0.3s ease;
}

.laser-carousel-prev:hover,
.laser-carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.laser-carousel-prev {
    left: 10px;
}

.laser-carousel-next {
    right: 10px;
}

.spot-section {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.spot-header {
    padding: 10px 15px;
    font-size: 2.5rem;
    display: inline-block;
    font-family: "Cormorant Garamond", serif;

}

.spot-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    gap: 25px;
}

.spot-description {
    flex: 1;
    min-width: 300px;
}

.spot-image-container {
    flex: 1;
    text-align: center;
}

.spot-image-container img {
    max-width: 60%;
    height: auto;
}

.spot-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.spot-grid-item {
    text-align: center;
}

.spot-grid-item img {
    width: 80px;
    height: 40px;
    display: block;
    margin: 5px auto;
}

.laser-modes-section {
    max-width: 100%;
    /* Allow the section to take full width on mobile */
    margin: 20px auto;
    /* Reduce margin for smaller screens */
    background: white;
    padding: 15px;
    /* Reduce padding for smaller screens */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.laser-modes-title {
    font-size: 20px;
    /* Reduce font size for smaller screens */
    font-weight: bold;
    margin-bottom: 10px;
}

.laser-modes-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.laser-modes-slider {
    display: flex;
    width: 100%;
    /* 3 slides */
    transition: transform 0.5s ease-in-out;
}

.laser-modes-slide {
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 10px;
    /* Reduce padding for smaller screens */
    text-align: left;
}

.laser-modes-text {
    font-size: 14px;
    /* Reduce font size for smaller screens */
    line-height: 1.4;
    /* Adjust line height for better readability */
}

/* Hide default radio buttons */
input[name="slider"] {
    display: none;
}

/* Dots (Navigation) */
.laser-modes-controls {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.laser-modes-label {
    width: 10px;
    /* Reduce dot size for smaller screens */
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

/* Active dot */
input[id="slide1"]:checked~.laser-modes-controls label[for="slide1"],
input[id="slide2"]:checked~.laser-modes-controls label[for="slide2"],
input[id="slide3"]:checked~.laser-modes-controls label[for="slide3"] {
    background: #333;
}

/* Slide positioning */
input[id="slide1"]:checked~.laser-modes-carousel .laser-modes-slider {
    transform: translateX(0%);
}

input[id="slide2"]:checked~.laser-modes-carousel .laser-modes-slider {
    transform: translateX(-100%);
}

input[id="slide3"]:checked~.laser-modes-carousel .laser-modes-slider {
    transform: translateX(-200%);
}


.beam-focus-section {
    max-width: 700px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.beam-focus-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.beam-focus-title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 15px;
    color: #333;
}

.beam-focus-description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-top: 10px;
}

.coolsculpting-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.coolsculpting-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 50px;
}

.coolsculpting-text span {
    font-size: 2.5rem;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.1;
}

.coolsculpting-carousel-container {
    flex: 1;
    position: relative;
    max-width: 400px;
    overflow: hidden;
}

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

.coolsculpting-carousel img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 10px;
}

.coolsculpting-prev,
.coolsculpting-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    width: 32px;
    cursor: pointer;
    border-radius: 50%;
}

.coolsculpting-prev {
    left: 10px;
}

.coolsculpting-next {
    right: 10px;
}

.coolsculpting-toggle-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}



.coolsculpting-toggle-buttons button {
    padding: 10px 20px;
    border: 1px solid black;
    background: white;
    cursor: pointer;
    border-radius: 20px;
}

.coolsculpting-toggle-buttons button.active {
    background: black;
    color: white;
}

.media-showcase {
    text-align: center;

}

.media-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
}

.media-container {
    width: 60%;
    margin: 0 auto;
    /* Centers the video */
}

.media-container video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footer img {
    width: 120px;
    /* Adjust size as needed */
    margin-bottom: 10px;
}

.footer p {
    margin: 5px 0;
    font-size: 0.7rem;
    color: #b7b7b7;
    margin-top: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {


    .header-top {
        flex-direction: column;
        align-items: center;
    }

    .social-media {
        display: none;

    }

    .phone-button {
        margin-top: 10px;
    }

    nav {
        display: flex;
        justify-content: flex-start;
        margin-left: 20px;

    }

    .logo img {
        height: 135px;
    }

    .phone-button button {
        font-size: 0.7rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: contents;
        position: fixed;
    }

    .dropdown-menu {
        position: static;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        flex-wrap: wrap;
        max-width: 80%;
    }



    .hero-content,
    .hero-image {
        flex: 1 1 100%;
        /* Takes full width */
        text-align: center;
    }

    .hero-image {
        padding: 0;
    }

    .section-title span {
        font-size: 2rem;
        line-height: 1.1;
    }


    .image-row {
        flex-direction: column;
        align-items: center;
    }

    .image-box {
        width: 80%;
    }

    .section-subtitle {
        flex-direction: column;
        text-align: center;
    }

    .big-number {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .tone-slide-image {
        width: 26%;
    }

    .skin-tone-carousel {
        padding: 0px;
    }

    .carousel-arrow {
        position: absolute;
        top: 20%;
    }

    .info-section {
        margin: 0px;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .skin-tone-title {
        padding: 8px;
    }

    .skin-tone-info-section {
        padding: 10px;
    }

    .tone-slide-text {
        padding: 10px;
    }

    .slider-container {
        max-width: 100%;
    }

    .slide img {
        max-width: 100%;
    }

    .spot-section {
        margin: 0px;
    }

    .spot-header {
        text-align: center;
        font-size: 2rem;
        line-height: 1.1;
        padding: 0px;
    }

    .video-section {
        flex-direction: column;
        text-align: center;
        padding: 0px;
    }

    .video-title span {
        font-size: 2rem;

    }

    .video-container,
    .video-text {
        max-width: 100%;
    }

    .spot-image-container img {
        max-width: 43%;
    }

    .laser-modes-section {
        padding: 10px;
        /* Further reduce padding for very small screens */
    }

    .laser-modes-title {
        font-size: 18px;
        /* Further reduce title font size */
    }

    .laser-modes-slide {
        padding: 5px;
        /* Further reduce slide padding */
    }

    .laser-modes-text {
        font-size: 13px;
        /* Further reduce text font size */
    }

    .laser-modes-label {
        width: 10px;
        height: 10px;
    }

    .coolsculpting-container {
        padding: 0px;
    }

    .banner-title {
        font-size: 2.5rem;

    }

    .banner-subtitle {
        font-size: 1.2rem;
        /* Smaller subtitle */
    }

    .banner-button {
        font-size: 1rem;
        /* Smaller button text */
        padding: 8px 16px;
        /* Adjust button padding */
    }

    .spot-description {
        text-align: left;
    }

    .card {
        margin: 0px;
        flex-direction: column;
    }

    .card-left {
        width: 88%;
        margin-top: 50px;
        align-self: center;
    }

    .card-right {
        width: 88%;
    }

    .brochure-button {
        padding: 12px 18px;
        font-size: 16px;
    }

    .table-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .section-heading {
        font-size: 1.8rem;
        text-align: -webkit-center;
    }

    .results-container p {
        text-align: center;
    }

    .zone-selector {
        flex-direction: row;
        align-items: center;
    }

    .price {
        font-size: 2rem;
        /* Smaller price text */
    }

    .description {
        font-size: 1rem;
        /* Adjust description text size */
    }

    .lists {
        flex-direction: column;
        align-items: flex-start;
    }

    .list {
        margin-right: 0;
        margin-bottom: 10px;
        /* Space between the lists */
    }

    .sculptface-content {
        flex-direction: column;
    }

    .image-container,
    .text-container {
        flex: 1 1 100%;
    }

    .title {
        font-size: 20px;
    }

    .subtext {
        font-size: 14px;
    }

    .bullet-list li {
        font-size: 14px;
    }


    .feature-list {
        flex-direction: column;
    }

    .comparison {
        margin: 0px;
    }

    .comparison {
        flex-direction: column;
    }

    .media-container {
        width: 100%;
    }

    .business-growth-title {
        font-size: 2em;
    }

    .business-growth-subtitle {
        font-size: 1.1em;
    }

    .business-growth-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .image-section {
        height: auto;
        padding: 50px 20px;
        justify-content: center;
    }

    .text-container {
        max-width: 90%;
        text-align: left;
    }

    .split-section {
        flex-direction: column;
        height: auto;
    }

    .image-container,
    .text-container {
        width: 100%;
    }

    .image-container {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .image-container img {
        width: 48%;
    }

    .skin-tone-title {
        font-size: 1.8rem;
    }

    .skin-tone-subtitle {
        font-size: 1rem;
    }

    .tone-slide-text {
        font-size: 1rem;
        bottom: 10px;
        left: 10px;
    }

    .skin-tone-info-section {
        flex-direction: column;
        text-align: center;
    }

    .skin-tone-info-left {
        padding-right: 0;
        margin-bottom: 20px;
    }



    .skin-tone-info-title {
        font-size: 1.8rem;
    }

    .skin-tone-info-subtitle {
        font-size: 1rem;
    }

    .skin-tone-info-list-item {
        font-size: 0.9rem;
    }

    .skin-balance-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px;
    }

    .skin-balance-text {
        padding-right: 0;
        margin-top: 20px;
    }

    .skin-balance-title {
        font-size: 1.8rem;
    }

    .skin-balance-description {
        font-size: 1rem;
    }

    .skin-balance-image {
        justify-content: center;
    }

    .skin-balance-img {
        max-width: 100%;
    }

    .laser-carousel {
        max-width: 90%;
    }

    .laser-title {
        font-size: 1.2rem;
    }

    .laser-text {
        font-size: 0.9rem;
        padding: 0px 26px;
        text-align: initial;
    }

    .spot-content {
        flex-direction: column;
        text-align: center;
    }

    .faq-title {
        font-size: 1.8rem;
    }

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

    .form-img {
        width: 100%;
    }

    .form {
        width: 100%;
    }
}



@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
        /* Even smaller title on small screens */
    }

    .banner-subtitle {
        font-size: 1rem;
        /* Even smaller subtitle */
    }

    .banner-button {
        font-size: 0.9rem;
        /* Adjust button text size for small screens */
        padding: 6px 12px;
        /* Adjust button padding */
    }

    .price {
        font-size: 1.8rem;
        /* Even smaller price on small screens */
    }

    .description {
        font-size: 0.9rem;
        /* Smaller description text */
    }

    .lists {
        flex-direction: column;
        align-items: flex-start;
    }

    .list {
        margin-right: 0;
        margin-bottom: 10px;
        /* Space between the lists */
    }


    .business-growth-section {
        padding: 40px 15px;
        height: auto;
        /* Allowing height to adjust */
    }

    .business-growth-title {
        font-size: 1.8em;
        line-height: 1.1;
    }

    .business-growth-subtitle {
        font-size: 1em;
    }

    .business-growth-cta-button {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .section-description {
        font-size: 1em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .section-description {
        font-size: 1em;
    }

    .image-container {
        flex-direction: column;
    }

    .image-container img {
        width: 100%;
    }

    .skin-tone-title {
        font-size: 1.6rem;
    }

    .skin-tone-subtitle {
        font-size: 1rem;
    }

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