* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    /* font-size: 1.8rem; */
    /* font-weight: bold; */
    width: 120px;
    color: #8B4513;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #8B4513;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #8B4513;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 20px;
    height: 20px;
    background: #8B4513;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons img {
    width: 100%;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    background-image: url(BG-clinic.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 0 80px;
    /* min-height: 90vh; */
    height: 564px;
    margin: 82px 0px 0px 0px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 22rem;
    align-items: center;
}

.hero-text {
    padding-top: 115px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

/* .price {
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #2c2c2c;
        } */

.hero-text .highlight {
    color: #8B4513;
    font-weight: 600;
}

.hero-text p {
    font-size: 1.2rem;
    /* margin-bottom: 2rem; */
    color: #666;
    line-height: 1.8;
}

.price-tag {
    background: #8B4513;
    color: white;
    padding: 5px 20px;
    font-size: 12pt;
    font-weight: bold;
    display: inline-block;
    margin: 0px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.price-box {
    text-align: center;
    padding: 20px;
    width: fit-content;
}

.label {
    background-color: #763619;
    /* Cokelat gelap */
    color: white;
    font-size: 14px;
    padding: 4px 12px;
    display: inline-block;
    /* border-radius: 3px; */
    margin-bottom: 8px;
}

.price {
    font-size: 75px;
    font-weight: 600;
    color: #000;
    line-height: 1;
}

.currency {
    font-size: 32px;
    vertical-align: top;
    margin-right: -15px;
}

.original-price {
    font-size: 14px;
    color: #555;
    margin-top: 4px;
}


.signup-form {
    background: #a79b8b;
    width: 450px;
    padding: 2rem;
    margin-left: 40px;
    border-radius: 35px 0px 0px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.signup-form h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    /* text-align: center; */
    font-size: 16pt;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    /* margin: 0px 0px; */
    padding: 12px;
    border: 1px solid #e0e0e0;
    /* border-radius: 8px; */
    font-size: 9pt;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #8B4513;
}

.btn-primary {
    margin-top: 20px;
    background: black;
    color: white;
    width: 200px;
    padding: 15px 30px;
    border: none;
    /* border-radius: 8px; */
    cursor: pointer;
    font-size: 8pt;
    /* font-weight: 600; */
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

/* Stats Section */
.stats {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;

}

.features {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #8B4513;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.feature-text {
    color: #666;
    font-size: 14px;
}

/* Treatments Section */
.treatments {
    padding: 5rem 0;
    background: white;
}

.treatment-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.treatment-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.treatment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-10px);
}

.treatment-image {
    height: 200px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    position: relative;
    overflow: hidden;
}

.treatment-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.8);
}

.treatment-content {
    padding: 2rem;
}

.treatment-content h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.treatment-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.treatment-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
}

/* Before After Section */
.before-after {
    background: #333;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.before-after h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.before-after-grid {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ba-item {
    background: #e3e0db;
    /* border-radius: 15px; */
    overflow: hidden;
    padding: 20px 20px 0px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* .ba-images {
            display: flex;
        } */

.ba-image {
    width: 100%;
    /* height: 200px; */
    /* background: linear-gradient(45deg, #ffeaa7, #fdcb6e); */
    position: relative;
}

.ba-image img {
    width: 100%;
}

.ba-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.ba-label-after {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 75%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.ba-description {
    padding: 20px 20px;
    color: white;
    width: 70%;
    justify-self: center;
    font-size: 14px;
    background-color: #8a3921;
}

/* Testimonials */
.testimonials {
    background: #DEDBD6;
    padding: 5rem;
    margin: 0 auto;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    /* width: 400px; */
    height: auto;
    /* padding: 2rem; */
    border-radius: 20px 20px 0px 20px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    /* position: relative; */
}

.testimonial-card img {
    width: 100%;
}

/* .testimonial-card::before {
            content: '"';
            font-size: 4rem;
            color: #8B4513;
            position: absolute;
            top: -10px;
            left: 20px;
            line-height: 1;
        } */

.testimonial-text {
    margin-bottom: 1.5rem;
    color: #666;
    font-style: italic;
    padding-top: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: #333;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1rem;
}

footer {
    background: #1F1B1C;

}

.footer {
    /* background: #1F1B1C; */
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
    /* margin-top: 3rem; */
    color: white;
}

footer .footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-content {
    margin: 0 auto;
    max-width: 1200px;
}

footer .copyright {
    text-align: center;
    background: #1F1B1C;
    /* margin-top: 1rem; */
    font-size: 0.85rem;
    padding: 40px;
    color: white;
}

.footer a {
    color: white;
}

/* Overall Container for the section */
.main-section-container {
    display: flex;
    height: 620px;
    width: 100%;
    margin: 0 auto;
    background-color: #f8f8f8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slider-gallery-container {
    /* max-width: 1280px; */
    margin: auto;
    padding: 30px 20px;
    background-color: #eae9e5;
    font-family: sans-serif;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-item {
    border-radius: 12px;
    object-fit: cover;
    height: 180px;
    padding: 0 8px;
    box-sizing: border-box;
}

.gallery-controls {
    text-align: center;
    margin-top: 20px;
    color: #7c6653;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.gallery-controls button {
    background: none;
    border: none;
    font-size: 24px;
    color: #7c6653;
    cursor: pointer;
}

.pagination span {
    margin: 0 4px;
    cursor: pointer;
    font-weight: bold;
    color: #7c6653;
    padding: 2px 6px;
    border-radius: 4px;
}

.pagination span.active {
    background-color: #7c6653;
    color: white;
}


/* Left Half - Image and Text */
.left-half {
    /* flex: 1; */
    background-color: #f0ede9;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    /* height: 400px; */
    overflow: hidden;
    width: 40%;
}

.left-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: -183px;
    width: 100%;
    height: 100%;
    background-image: url(bg-woman.png);
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 0;
}

.left-content-wrapper {
    position: relative;
    /* Position relative to allow z-index to work for text */
    z-index: 1;
    /* Bring text to the front */
    text-align: left;
    max-width: 60%;
    /* Adjust width of the text content */
    margin-left: auto;
    /* Push text to the right if the image is on the left */
    color: #333;
    /* Default text color */
}

.left-content-wrapper h2 {
    font-size: 2.8em;
    /* Large font size for "LOREM IPSUM" */
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.1;
    color: #444;
    /* Darker color for headings */
}

.left-content-wrapper p {
    font-size: 1.1em;
    line-height: 1.5;
    color: #666;
    /* Slightly lighter color for body text */
}

/* Right Half - Video Player Area */
.right-half {
    flex: 1;
    /* Allows this half to grow and take available space */
    position: relative;
    background-color: #333;
    /* Dark background for the video area */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Ensures video stays within bounds */
    border-radius: 0 10px 10px 0;
    /* Rounded right corners for the entire section */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay with transparency */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    /* White text on overlay */
    text-align: center;
    z-index: 1;
    /* Above the video background */
}

.video-overlay h3 {
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: normal;
}

.video-overlay .boutique-title {
    font-size: 3.5em;
    /* Large font for "PRIVILEGE BOUTIQUE" */
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-overlay .elite-text {
    font-family: 'Playfair Display', serif;
    /* Use a script/elegant font for 'Elite' */
    font-size: 2em;
    font-style: italic;
    margin-top: 5px;
}

.play-button {
    width: 70px;
    /* Size of the play button icon */
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white background */
    border-radius: 50%;
    /* Circle shape */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
}

.play-button::before {
    content: '▶';
    /* Unicode play triangle */
    font-size: 30px;
    color: #fff;
    line-height: 1;
}

/* Background video or image for the right half */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the entire area */
    z-index: 0;
    /* Behind the overlay */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-section-container {
        flex-direction: column;
        /* Stack sections vertically on smaller screens */
    }

    .left-half,
    .right-half {
        width: 100%;
        padding: 30px;
        border-radius: 0;
        /* Remove rounded corners for full width */
    }

    .left-half::before {
        background-position: top center;
        /* Adjust image position for mobile */
    }

    .left-content-wrapper {
        max-width: 100%;
        /* Text takes full width */
        margin-left: 0;
        text-align: center;
        /* Center text on mobile */
    }

    .left-content-wrapper h2 {
        font-size: 2em;
    }

    .left-content-wrapper p {
        font-size: 1em;
    }

    .right-half {
        border-radius: 0 0 10px 10px;
        /* Rounded bottom corners when stacked */
    }

    .video-overlay .boutique-title {
        font-size: 2.5em;
    }

    .video-overlay .elite-text {
        font-size: 1.5em;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .treatment-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Gallery Styles */


/* FAQ Styles */
.faq {
    background: #B4A899;
    padding: 5rem 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question h4 {
    color: #333;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    gap: 20px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    /* padding: 40px 20px; */
    font-family: 'Poppins', sans-serif;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 280px;
}

.stat-number {
    font-size: 60px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
}

.plus {
    font-size: 28px;
    vertical-align: super;
    margin-left: 2px;
}

.stat-text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    text-align: left;
}

.divider {
    width: 4px;
    height: 80px;
    background-color: #7a3c26;
}


.capsule-section {
    display: flex;
    justify-content: space-between;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    flex-wrap: wrap;
}

.left-info {
    max-width: 50%;
}

.subheading {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.heading {
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 20px;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    border: 2px solid white;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
}

.video-thumb {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

.right-media .video-thumb {
    position: relative;
    border-radius: 30px 30px 0px 30px;
    overflow: hidden;
    width: 430px;
    height: 450px;
    margin-top: 20px;
    background-color: #ffffff;
}

.video-thumb img {
    width: 100%;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 10px 16px;
    color: white;
}

.benefit-section {
    display: flex;
    padding: 60px 40px;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    background-color: #fff;
}

.device-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
}

.treatment-section {
    padding: 30px 20px;
    background-color: #fff;
}

.treatment-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    position: relative;
    gap: 40px;
}

.treatment-left,
.treatment-right {
    flex: 1;
    min-width: 320px;
}

.treatment-left img {
    width: 100%;
    height: auto;
    border-radius: 30px 30px 0px 30px;
}

.treatment-right {
    position: relative;
    padding-right: 40px;
    padding-top: 60px;
}

.treatment-right h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #111;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.benefits-list .dot {
    width: 10px;
    height: 10px;
    background-color: #b9471e;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.reviews {
    text-align: center;
    padding: 40px;
}

.reviews span {
    background-color: #8a3921;
    padding: 2px;
    color: white;
}

/* Kapsul kanan bawah */
.capsule-wrapper {
    position: absolute;
    bottom: 0;
    right: -150px;
    transform: translateY(18%);
}

.capsule-wrapper img {
    width: 250px;
    height: auto;
    object-fit: contain;

}

/* Responsive Mobile */
@media (max-width: 768px) {
    .treatment-container {
        flex-direction: column;
    }

    .treatment-right {
        padding-right: 0;
        text-align: center;
    }

    .capsule-wrapper {
        position: static;
        transform: none;
        margin-top: 20px;
    }

    .capsule-wrapper img {
        /* width: 60px; */
        display: none;
    }
}

.awards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.awards img {
    height: 80px;
    object-fit: contain;
}

.capsule-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 300px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-conditions {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Aligns items to the top */
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsiveness for Gallery & FAQ */
@media (max-width: 768px) {
    .gallery-track {
        height: 300px;
    }

    .capsule-container {
        flex-direction: column;
        text-align: center;
    }

    .awards {
        justify-content: center;
    }

    .slide-overlay {
        padding: 2rem 1rem 1rem;
    }

    .slide-overlay h4 {
        font-size: 1.2rem;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .divider {
        display: none;
    }

}

/* Skin Conditions Section */
.skin-conditions {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.conditions-grid {
    /* max-width: 1000px; */
    /* margin: 50px auto 0; */
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.condition-item {
    /* background: white; */
    padding: 0px;


}

.condition-image {
    width: 100%;
    /* height: 120px;
            background: linear-gradient(45deg, #ffeaa7, #fdcb6e); */
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
    margin-bottom: 15px;
}

.condition-image img {
    width: 100%;
}

.condition-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.text-right {
    font-size: 14pt;
    padding-top: 80px;
    text-align: left;
}

/* Overlay */
.promo-popup {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

/* Popup box */
.popup-content {
    background-color: #fff;
    width: 360px;
    /* padding: 0 20px 30px; */
    border-radius: 4px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    z-index: 99;
    color: #333;
    cursor: pointer;
}

/* Image & Tag */
.product-image-section {
    position: relative;
    margin-top: 20px;
}

.product-img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.limited-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #8a3c1d;
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 2px;
    font-weight: 500;
}

/* Price Section */
.price-section {
    background-color: #231f20;
    color: white;
    padding: 20px 10px;
    margin-top: 20px;
    font-size: 16px;
}

.price-section .price {
    font-size: 32px;
    font-weight: bold;
    margin-left: 5px;
}

/* Description Section */
.description-section {
    color: #333;
    font-size: 14px;
    margin-top: 16px;
}

.description-section strong {
    font-weight: 600;
}

.worth-text {
    font-size: 13px;
    color: #666;
}

/* Button */
.claim-btn {
    background-color: #231f20;
    color: white;
    border: none;
    font-size: 16px;
    padding: 12px 24px;
    margin: 20px 0px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.claim-btn:hover {
    background-color: #444;
}

/* Responsive: Tablet */
@media (max-width: 992px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }

    .signup-form {
        width: 100%;
        margin: 0 auto;
        border-radius: 20px;
    }

    .hero-text {
        padding-top: 0;
    }

    .treatment-right {
        padding-top: 20px;
    }

    .text-conditions {
        flex-direction: column;
        text-align: center;
    }

    .text-right {
        padding-top: 20px;
        text-align: center;
    }

    .capsule-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: Mobile */
@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .price {
        font-size: 48px;
    }

    .signup-form h3 {
        font-size: 14pt;
    }

    .features {
        /* grid-template-columns: 1fr; */
        gap: 20px;
    }

    .faq-grid,
    .testimonials-grid,
    .treatment-grid,
    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .slider-gallery-container {
        padding: 10px;
    }

    .slider-track {
        flex-wrap: nowrap;
    }

    .gallery-item {
        height: auto;
        width: 100%;
    }

    .signup-form {
        border-radius: 20px;
    }

    .main-section-container {
        flex-direction: column;
    }

    .right-media video {
        width: 100%;
        height: auto;
    }

    .left-half::before {
        left: 0;
        background-position: center top;
    }

    .left-content-wrapper {
        text-align: center;
        margin-left: 0;
    }

    .footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .container,
    .hero-container,
    .capsule-container {
        padding: 0;
        margin: 0 auto;
        max-width: 100%;
    }

    /* Hero Section */
    .hero {
        height: auto;
        padding: 60px 0 40px;
        background-image: none;
        background-color: #fff8f0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text {
        text-align: -webkit-center;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .skin-conditions {
        padding: 80px 20px;
    }

    .left-info {
        max-width: 100%;
    }

    .left-half::before {
        background-image: none;
    }

    .left-half {
        display: block;
    }

    .awards {
        flex-wrap: nowrap;
    }

    .signup-form {
        width: 100%;
        padding: 1rem;
        border-radius: 15px;
    }

    .signup-form input,
    .signup-form .btn-primary {
        font-size: 14px;
    }

    /* Stats */
    .stats-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .divider {
        display: none;
    }

    /* Features section */
    .features {
        /* grid-template-columns: 1fr; */
        gap: 20px;
        padding: 0 10px;
    }

    /* Awards and capsule */
    .awards {
        justify-content: center;
        text-align: center;
    }

    .video-thumb {
        width: 100% !important;
        max-width: 100%;
        height: auto;
    }

    .treatment-left img,
    .capsule-wrapper img {
        width: 100%;
        height: auto;
    }

    .benefits-list li {
        font-size: 14px;
    }

    /* Skin conditions grid */
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .condition-name {
        font-size: 12px;
    }

    /* Before After */
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .ba-description {
        width: 100%;
        padding: 10px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-toggle {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    /* Typography fixes */
    h2.section-title {
        font-size: 1.5rem !important;
    }

    h4 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    display: block;
}

/* Responsive behavior */
@media (max-width: 768px) {
    nav.container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        right: 10px;
        background-color: #fff;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .social-icons {
        gap: 0.5rem;
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    .slider-track {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .gallery-item {
        flex: 0 0 auto;
        width: 80%;
        max-width: 300px;
        margin-right: 10px;
        border-radius: 12px;
        scroll-snap-align: start;
    }

    .gallery-controls {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 3rem;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .signup-form {
        width: 90%;
        max-width: 450px;
        margin: 0 auto;
        padding: 1rem;
        border-radius: 20px;
    }

    .signup-form input,
    .signup-form textarea {
        font-size: 14px;
    }

    .hero img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .price {
        font-size: 48px;
    }

    .capsule-wrapper img {
        display: none;
    }

    .capsule-container {
        gap: 150px;
    }

    nav.container {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .social-icons {
        margin-top: 0.5rem;
        justify-content: flex-end;
        flex: 1 1 100%;
    }
}