* {
    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-banner-01.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;
}
.video-container {
    flex: 1.5; /* Give more space to the video */
    border-radius: 15px;
    overflow: hidden; /* Ensures the iframe respects the border radius */
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
@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: 2rem 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;
    color:#333;
}

.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: 10px;
    color: white;
    width: 70%;
    justify-self: center;
    font-size: 10px;
    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 */
    }
    .capsule-section{
        background-image: none !important;
        /*color: white;*/
        padding: 50px !important;
    }
    .celebrities-section{
        padding: 50px !important;
    }
    .celebrities-container{
        display: block !important;
    }
    .left-content-wrapper {
        max-width: 100%;
        /* Text takes full width */
        margin-left: 0;
        text-align: center;
        /* Center text on mobile */
    }
    .skin-concerns-section{
        padding: 1rem !important;
    }
    .diagram-header{
        position: relative !important;
        right: 0 !important;
        padding-top: 10px;
    }
    .diagram-image-wrapper img{
        margin-top: 0px !important;
    }
    .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
; */
text-align: center;
align-items: center;
gap: 9px;
max-width: 280px;
}

.stat-number {
    /* font-size: 60px; */
    /* font-weight: 600; */
    color: #111;
    white-space: nowrap;
}
.stat-number img{
    width: 30px;
}

.plus {
    font-size: 28px;
    vertical-align: super;
    margin-left: 2px;
}

.stat-text {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.divider {
    width: 3px;
    height: 70px;
    background-color: #7a3c26;
}


.capsule-section {
    /* background-image: url(bg-dualsonic-01.png); */
    background-color: #e4e1dc;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px;
}
.celebrities-section {
    background-image: url(bg-celebrities-01.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    padding: 100px;
}

.left-info {
    max-width: 50%;
}

.left-info p{
    font-size: 20px;
}

.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;
}
.celebrities-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 100px;
    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;
        display: block !important;
    }

    .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%;
        text-align: left;
    }

    .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;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        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%;
    }
}

/* Kontainer Utama */
.skin-concerns-section {
    background-color: #1a1a1a;
    padding: 4rem 1rem; /* Padding untuk mobile */
}

.container {
    width: 100%;
    max-width: 1280px; /* Sesuai dengan max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Grid Utama untuk Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 kolom di mobile */
    align-items: center;
}

/* Panel Kiri: Teks Judul */
.left-panel {
    text-align: center; /* Teks rata tengah di mobile */
}

.left-panel .subtitle {
    font-size: 0.875rem; /* 14px */
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff; /* text-gray-400 */
    margin-bottom: 1rem;
}

.left-panel .title {
    font-size: 1.875rem; /* 30px */
    font-weight: 400;
    line-height: 1.2;
    color: #f9fafb; /* text-gray-100 */
    margin: 0;
}

/* Panel Kanan: Daftar Checklist */
.checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
    gap: 1rem 2rem; /* Jarak vertikal dan horizontal */
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Jarak antara ikon dan teks */
}

.checklist-item svg {
    width: 1.5rem; /* 24px */
    height: 1.5rem; /* 24px */
    color: #ffffff;
    flex-shrink: 0; /* Mencegah ikon menyusut */
}

.checklist-item span {
    font-size: 1.125rem; /* 18px */
    color: #d1d5db; /* text-gray-300 */
}

/* Aturan Responsif */

/* Untuk Tablet (sm: 640px) */
@media (min-width: 640px) {
    .skin-concerns-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .left-panel .title {
        font-size: 2.25rem; /* 36px */
    }
}

/* Untuk Desktop (lg: 1024px) */
@media (min-width: 1024px) {
    .main-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .left-panel {
        text-align: left; /* Teks rata kiri di desktop */
    }
}

/* Kontainer Utama */
.main-container {
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Panel Kiri: Gambar Model */
.model-panel {
    flex: 1;
    max-width: 400px; /* Batasi lebar gambar */
    width: 100%;
    margin-bottom: 2rem; /* Jarak bawah di mobile */
}

.model-panel img {
    width: 100%;
    height: auto;
    display: block;
}

/* Panel Kanan: Diagram Kulit */
.diagram-panel {
    flex: 1.5; /* Beri lebih banyak ruang untuk diagram */
    width: 100%;
    text-align: center;
}

.diagram-header {
    margin-bottom: 1.5rem;
    position: absolute;
    right: 250px;
}

.diagram-header .subtitle {
    font-size: 0.875rem; /* 14px */
    font-weight: 400; /* Dibuat lebih ringan */
    color: #374151;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.diagram-header .title {
    font-size: 2rem; /* 32px, sedikit lebih besar */
    font-weight: 600; /* Disesuaikan agar tidak terlalu tebal */
    color: #111827;
    margin-top: 0.25rem;
    line-height: 1.2;
}

.diagram-image-wrapper {
    width: 100%;
}

.diagram-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 80px;
    padding-top: 50px;
}

/* Aturan Responsif untuk Desktop */
@media (min-width: 768px) {
    .main-container {
        align-items: center; /* Vertikal di tengah */
    }

    .model-panel {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
     .diagram-header .title {
        font-size: 2.5rem; /* 40px */
     }
}
.tech{

    background-color: #a19a91; /* Warna dari gambar, disesuaikan */
}
/* Kontainer Utama Section */
.tech-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column; /* Tumpuk di mobile */
}
.treatment-section {
    display: flex;
    flex-direction: column; /* Tumpuk di mobile */
    background-color: #ffffff; /* Warna dari gambar, disesuaikan */
}
/* Panel Kiri: Konten Teks */
.treatment-text-panel {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text-panel {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #f0ebe5; /* Warna teks yang lebih lembut */
}

.treatment-text-panel .subtitle {
    font-size: 0.8rem; /* 12.8px */
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
}

.treatment-text-panel .title {
    font-size: 2.5rem; /* 40px */
    font-weight: 300; /* Dibuat lebih ringan (light) */
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: #ffffff; /* Warna putih untuk kontras */
}

.treatment-text-panel .description {
    font-size: 1rem; /* 16px */
    font-weight: 400;
    line-height: 1.6;
    max-width: 300px;
    margin: 0;
}
.text-panel .subtitle {
    font-size: 0.8rem; /* 12.8px */
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
}

.text-panel .title {
    font-size: 2.5rem; /* 40px */
    font-weight: 300; /* Dibuat lebih ringan (light) */
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: #ffffff; /* Warna putih untuk kontras */
}

.text-panel .description {
    font-size: 1rem; /* 16px */
    font-weight: 400;
    line-height: 1.6;
    max-width: 300px;
    margin: 0;
}

/* Panel Kanan: Gambar/Video */
.video-panel {
    position: relative;
    min-height: 250px;
    padding: 1rem; /* Menambahkan padding di sekitar video */
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1rem; /* Sudut membulat */
    overflow: hidden; /* Pastikan video di dalam mengikuti sudut */
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 24px;
    height: 24px;
    color: #333;
    margin-left: 3px;
}

/* Aturan Responsif untuk Desktop */
@media (min-width: 768px) {
    .tech-section {
        flex-direction: row;
    }

    .text-panel {
        flex: 1;
        padding: 3rem 4rem;
    }

    .video-panel {
        flex: 1.3;
        padding: 1.5rem; /* Padding lebih besar di desktop */
    }
}

@media (min-width: 1024px) {
    .text-panel .title {
        font-size: 3rem; /* 48px */
    }
}

/* Kontainer Utama Section */
.clinical-data-section {
    background-color: #e4e1dc;
   
}
.clinical-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}


.clinical-data-section .main-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.clinical-data-section .subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
    margin-top: 3rem;
}

/* Styling Kartu */
.data-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.chart-image {
    width: 100%;
    max-width: 800px; /* Batasi lebar maksimum gambar */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Kontainer Utama */
.benefits-section {
    background-color: #A79B8B; /* Warna custom taupe */
}

.benefits-container {
    max-width: 1536px; /* Sesuai max-w-screen-2xl */
    margin-left: auto;
    margin-right: auto;
}

/* Grid Utama untuk Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 kolom di mobile */
    align-items: center;
}

/* Panel Kiri: Gambar Model */
.left-panel {
    display: none; /* Sembunyi di mobile */
    /* height: 500px; */
}

.left-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center; /* Disesuaikan agar fokus ke wajah model */
}

/* Panel Kanan: Konten Manfaat */
.right-panel {
    padding: 4rem 1.5rem;
    text-align: center;
}

/* Judul Bagian */
.title-section {
    margin-bottom: 3rem;
    text-align: left;
}

.title-section .subtitle {
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #ffffff; /* Warna diubah menjadi putih */
}

.title-section .title {
    font-size: 2.25rem; /* 36px */
    font-weight: 600;
    color: #ffffff; /* Warna diubah menjadi putih */
    margin-top: 0.25rem;
}

/* Grid untuk Item Manfaat */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom di mobile */
    /* gap: 2rem 1rem; */
}

/* Item Manfaat Individual */
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-wrapper {
    width: 8rem; /* 96px */
    height: 8rem; /* 96px */
    background-color: #1F1B1C; /* Warna disesuaikan */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.icon-wrapper:hover {
    transform: scale(1.05);
}

.icon-wrapper svg {
    height: 3rem; /* 48px */
    width: 3rem; /* 48px */
    color: white;
}

.benefit-item p {
    font-weight: 500;
    color: #ffffff; /* Warna diubah menjadi putih */
    font-size: 1.3rem; /* 14px */
    line-height: 1.25;
    padding: 0 0.5rem;
    margin: 0;
}

/* Aturan Responsif */

/* Tablet (sm: 640px) */
@media (min-width: 640px) {
    .right-panel {
        padding: 4rem 2.5rem;
    }
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 kolom di tablet */
        /* gap: 1.5rem; */
    }
}

/* Desktop (lg: 1024px) */
@media (min-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr 2fr; /* 2 kolom di desktop */
    }
    .left-panel {
        display: block; /* Tampilkan gambar di desktop */
    }
    .right-panel {
        padding: 4rem;
    }
}

/* Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 100;
    cursor: pointer;
  }
  .whatsapp-icon {
    margin-top: 15px;
  }

  /* Popup Chat */
  .whatsapp-popup {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 99;
  }
  .popup-header {
    background: #25d366;
    color: white;
    padding: 10px;
    font-weight: bold;
  }
  .popup-body {
    padding: 10px;
    font-size: 14px;
    color: #333;
  }
  .popup-footer {
    text-align: center;
    padding: 10px;
  }
  .popup-footer a {
    background: #25d366;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
  }
  .popup-footer a:hover {
    background: #20ba5a;
  }

   /* --- Bagian Ulasan --- */
   .testimony-section{
    
    background: #DEDBD6;
   }
   .reviews-section {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 3rem;
}

.reviews-grid {
    display: grid;
    /* Membuat grid yang responsif */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 24px; /* Jarak antar kartu */
}

/* --- Kartu Ulasan --- */
.review-card-link {
    text-decoration: none; /* Menghapus garis bawah tautan */
    color: inherit; /* Mewarisi warna teks dari induk */
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efek hover untuk kartu */
.review-card-link:hover {
    transform: translateY(-6px); /* Mengangkat kartu sedikit */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    border: 1px solid #F0F0F0;
    height: 100%;
    box-sizing: border-box;
}

/* --- Header Kartu --- */
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #202124;
}

.menu-icon {
    color: #5F6368;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* --- Isi Kartu --- */
.review-body {
    /* Tidak ada gaya khusus yang dibutuhkan saat ini */
}

.star-rating {
    color: #FBBC05; /* Warna bintang emas Google */
    font-size: 16px;
    margin-bottom: 4px;
}

.review-age {
    font-size: 14px;
    color: #5F6368;
    margin: 0 0 12px 0;
}

.review-text {
    font-size: 15px;
    line-height: 1.5;
    color: #3C4043;
    margin: 0;
}