@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary-pink: #d43f7d;
    --dark-pink: #b83568;
    --light-pink: #fce4ec;
    --soft-pink: #ffe6f0;
    --white: #ffffff;
    --gray: #666666;
    --gold: #c9a96e;
    --shadow: 0 4px 20px rgba(212, 63, 125, 0.15);
    --shadow-hover: 0 8px 30px rgba(212, 63, 125, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Poppins', sans-serif; background: var(--white); color: #333; line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: #2d2d2d; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.bg-soft { background: #fef9fb; }

.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.logo { justify-self: start; }
.logo img { height: 50px; }
.nav-links {
    display: flex;
    list-style: none;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
    justify-self: center;
}
.nav-right { justify-self: end; margin-left: 0; }
@media (max-width: 768px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        gap: 18px;
        z-index: 1500;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        list-style: none;
        align-items: flex-start;
        display: none;
        justify-self: auto;
    }
    .nav-links.active { display: flex; right: 0; }
    .nav-right { margin-left: auto; }
}
.nav-links.active { right: 0; }.nav-links a { text-decoration: none; color: #555; font-weight: 500; font-size: 0.85em; transition: var(--transition); }
.nav-links a:hover { color: var(--primary-pink); }
.nav-links .btn-pink { padding: 8px 20px !important; font-size: 0.85em; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 2000; position: relative; }
.menu-toggle span { width: 25px; height: 3px; background: var(--primary-pink); border-radius: 3px; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
}
.hero-slider { position: relative; height: 100vh; min-height: 600px; overflow: hidden; margin-top: 80px; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; display: flex; align-items: center; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; opacity: 0.15; }
.hero-content { position: relative; z-index: 2; max-width: 600px; padding: 0 40px; }
.hero-badge { display: inline-block; background: rgba(212,63,125,0.1); color: var(--primary-pink); padding: 8px 20px; border-radius: 50px; font-size: 0.8em; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.hero-badge i { margin-right: 6px; }
.hero-content h1 { font-size: 3.2em; line-height: 1.2; margin-bottom: 20px; }
.hero-content h1 span { color: var(--primary-pink); }
.hero-content p { font-size: 1.05em; color: #666; margin-bottom: 35px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(212,63,125,0.3); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--primary-pink); width: 30px; border-radius: 6px; }

.btn { display: inline-block; padding: 14px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.95em; transition: var(--transition); cursor: pointer; border: none; text-align: center; }
.btn i { margin-right: 8px; }
.btn-pink { background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink)); color: white; box-shadow: 0 4px 15px rgba(212,63,125,0.3); }
.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212,63,125,0.4); }
.btn-outline { border: 2px solid var(--primary-pink); color: var(--primary-pink); background: transparent; }
.btn-outline:hover { background: var(--primary-pink); color: white; transform: translateY(-3px); }
.btn-white { background: white; color: var(--primary-pink); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-3px); }
.btn-sm { padding: 10px 22px; font-size: 0.85em; }

.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-subtitle { display: inline-block; color: var(--primary-pink); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8em; margin-bottom: 10px; }
.section-subtitle i { margin-right: 6px; }
.section-title { font-size: 2.5em; margin-bottom: 15px; }
.section-description { color: #888; max-width: 600px; margin: 0 auto; }

.skin-issues-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 0 auto; }
.skin-issue-tag { background: white; color: var(--primary-pink); padding: 10px 20px; border-radius: 50px; font-weight: 500; font-size: 0.85em; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(212,63,125,0.2); }
.skin-issue-tag:hover { background: var(--primary-pink); color: white; transform: translateY(-3px); }
.skin-issue-tag i { margin-right: 6px; font-size: 0.6em; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.service-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-img { position: relative; height: 200px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-tag { position: absolute; top: 12px; right: 12px; background: var(--primary-pink); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.7em; font-weight: 600; }
.service-info { padding: 20px; }
.service-info h3 { font-size: 1.1em; margin-bottom: 8px; }
.service-info p { color: #888; font-size: 0.85em; margin-bottom: 15px; }

.transformations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.transformation-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); text-align: center; padding-bottom: 20px; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-image { position: relative; height: 220px; overflow: hidden; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; }
.ba-label { position: absolute; bottom: 8px; left: 8px; background: rgba(0,0,0,0.7); color: white; padding: 3px 10px; border-radius: 12px; font-size: 0.7em; font-weight: 600; }
.ba-label.after { background: var(--primary-pink); }
.transformation-card p { padding: 15px 20px 0; font-weight: 600; color: #444; font-size: 0.95em; }
.placeholder-note { color: #999; font-size: 0.85em; font-style: italic; }
.placeholder-note i { margin-right: 6px; color: var(--primary-pink); }

.about-section { background: linear-gradient(135deg, var(--soft-pink) 0%, white 100%); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image img { width: 100%; border-radius: 30px; box-shadow: var(--shadow); }
.about-text h2 { font-size: 2.3em; margin-bottom: 20px; }
.about-text p { color: #666; margin-bottom: 15px; font-size: 0.95em; }
.contact-details { margin: 20px 0; }
.contact-details p { color: #555; font-size: 0.85em; margin-bottom: 8px; }
.contact-details i { color: var(--primary-pink); margin-right: 8px; width: 16px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.gallery-item { border-radius: 15px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }

.testimonials-section { background: var(--soft-pink); }
.testimonial-card { background: white; border-radius: 20px; padding: 40px; box-shadow: var(--shadow); max-width: 600px; margin: 0 auto; text-align: center; }
.testimonial-stars { color: #ffd700; font-size: 1.1em; margin-bottom: 15px; }
.testimonial-text { font-style: italic; color: #666; font-size: 1em; margin-bottom: 20px; }
.testimonial-author { font-weight: 600; color: var(--primary-pink); }

.academy-section { background: linear-gradient(135deg, var(--dark-pink), var(--primary-pink)); color: white; text-align: center; }
.academy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.academy-card { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: 20px; overflow: hidden; transition: var(--transition); }
.academy-card:hover { transform: translateY(-5px); }
.academy-img { height: 160px; overflow: hidden; }
.academy-img img { width: 100%; height: 100%; object-fit: cover; }
.academy-card h3 { color: white; padding: 18px 18px 8px; font-size: 1.05em; }
.academy-card h3 i { margin-right: 8px; }
.academy-card p { color: rgba(255,255,255,0.8); padding: 0 18px 18px; font-size: 0.85em; }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; border-radius: 15px; margin-bottom: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question { padding: 16px 25px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); font-size: 0.95em; }
.faq-question:hover { color: var(--primary-pink); }
.faq-question::after { content: '+'; font-size: 1.3em; color: var(--primary-pink); transition: var(--transition); }
.faq-item.active .faq-question::after { content: '\2212'; }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: #666; font-size: 0.9em; }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 25px 18px; }

.footer { background: #2d1f26; color: #ccc; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-logo img { height: 40px; margin-bottom: 15px; }
.footer h4 { color: white; margin-bottom: 18px; font-size: 1em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; font-size: 0.85em; }
.footer-links a { color: #aaa; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-pink); padding-left: 5px; }
.footer-links i { margin-right: 8px; color: var(--primary-pink); width: 14px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85em; }
.social-links { display: flex; gap: 10px; margin-top: 15px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 1em; transition: var(--transition); }
.social-links a:hover { background: var(--primary-pink); transform: translateY(-3px); }

.whatsapp-float { position: fixed; bottom: 25px; right: 25px; width: 55px; height: 55px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4em; box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 999; transition: var(--transition); animation: pulse 2s infinite; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.3em; }
    .about-content { grid-template-columns: 1fr; }
    .section-title { font-size: 2em; }
    .hero-slider { min-height: 500px; }
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto; /* keeps bell + hamburger on the right */
    flex-shrink: 0;
}
a.notif-bell,
.notif-bell {
    position: relative;
    cursor: pointer;
    font-size: 1.25em;
    color: var(--primary-pink) !important; /* brand pink, not gold */
    z-index: 2001;
    padding: 6px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
a.notif-bell:hover,
.notif-bell:hover {
    color: var(--dark-pink) !important;
}
.notif-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    background: #e74c3c;
    color: white;
    font-size: 0.6em;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 4px;
    line-height: 1;
}
.notif-overlay { position: fixed; top: 0; right: 0; width: 360px; max-width: 100%; height: 100vh; background: white; z-index: 2500; box-shadow: -5px 0 30px rgba(0,0,0,0.15); transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto; padding: 80px 20px 20px; }
.notif-overlay.active { transform: translateX(0); }
.notif-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.3em; cursor: pointer; color: #999; z-index: 2501; }
.notif-close:hover { color: #d43f7d; }
.notif-overlay h3 { font-family: 'Playfair Display', serif; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #f0e0e8; }
.notif-item { padding: 12px 15px; border-radius: 12px; margin-bottom: 8px; background: #fef9fb; cursor: pointer; transition: all 0.3s; }
.notif-item:hover { background: #fce4ec; }
.notif-item.unread { background: #fff0f5; border-left: 3px solid #d43f7d; font-weight: 600; }
.notif-item p { font-size: 0.85em; color: #555; margin-bottom: 4px; }
.notif-item small { color: #999; font-size: 0.75em; }
.notif-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 2499; display: none; }
.notif-backdrop.active { display: block; }
.notif-empty { text-align: center; padding: 40px; color: #aaa; }
.notif-empty i { font-size: 3em; display: block; margin-bottom: 10px; }

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.5em; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .skin-issues-grid { gap: 6px; }
    .skin-issue-tag { padding: 8px 14px; font-size: 0.75em; }
    .section-title { font-size: 1.5em; }
    .navbar .btn-pink { padding: 6px 14px !important; font-size: 0.75em; }
}