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

:root {
    --primary: #2cd3b1;
    /* Aqua Teal from logo */
    --primary-dark: #1c3d9a;
    /* Deep Blue from logo */
    --secondary: #eefaf8;
    /* Light Aqua Tint */
    --accent: #ffab91;
    --text-main: #0f172a;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow: 0 10px 40px rgba(44, 211, 177, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

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

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(44, 211, 177, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 211, 177, 0.4);
}

/* --- Header & Nav --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

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

/* --- Modern Split-Hero Section --- */
.hero {
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}

/* Dynamic Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(44, 211, 177, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #0f172a;
}

.hero-content h1 span {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 550px;
}

/* Floating Visuals */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-wrapper {
    position: relative;
    z-index: 2;
    animation: floatingHero 6s ease-in-out infinite;
}

.main-hero-img {
    width: 100%;
    max-width: 480px;
    border-radius: 30px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 18px 25px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: floatingHeroReverse 5s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-1 {
    top: 15%;
    left: -15%;
}

.badge-2 {
    bottom: 20%;
    right: -10%;
}

.floating-badge i {
    width: 42px;
    height: 42px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.floating-badge .badge-text div:first-child {
    font-weight: 800;
    color: #0f172a;
    font-size: 16px;
}

.floating-badge .badge-text div:last-child {
    font-size: 12px;
    color: #64748b;
}

@keyframes floatingHero {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

@keyframes floatingHeroReverse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Sections Styling --- */
.section-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* --- Modern About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.about-visual-stack {
    position: relative;
    padding-bottom: 40px;
}

.about-main-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.about-floating-card {
    position: absolute;
    bottom: 0;
    right: -30px;
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 3;
    max-width: 220px;
    border: 1px solid #f0f0f0;
}

.about-floating-card .stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.about-floating-card .stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.about-content h2 {
    margin-bottom: 30px;
    text-align: left;
}

.about-content .lead-text {
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.5;
}

.about-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #475569;
}

.about-feat-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.mission-box {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 20px 20px 0;
}

.mission-box p {
    font-style: italic;
    color: #475569;
    font-size: 1.1rem;
}

/* --- Products --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* --- Why Choose Us --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feat-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
}

.feat-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.stars {
    color: #f1c40f;
    margin-bottom: 15px;
}

/* --- Contact Section Redesign --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 60px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.contact-info-panel h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.contact-form-panel {
    padding: 60px;
    background: var(--white);
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.modern-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.modern-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: #fafafa;
    transition: var(--transition);
    font-size: 15px;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(44, 211, 177, 0.05);
}

.modern-btn {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modern-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 211, 177, 0.2);
}

/* --- Map Enhancement --- */
.map-outer {
    margin-top: 80px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

/* --- Corporate Footer Redesign --- */
footer {
    background: #0f172a;
    /* Sophisticated Dark Navy */
    color: #94a3b8;
    padding: 100px 0 40px;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 25px;
    display: inline-block;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.newsletter-box {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-box input {
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: white;
    flex: 1;
    outline: none;
}

.newsletter-box button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-box button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* --- Ingredients --- */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ingredient-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    background: var(--secondary);
}

.ingredient-card i {
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* --- How to Use --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.step-card {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(44, 211, 177, 0.3);
}

/* --- FAQ --- */
.faq-container {
    max-width: 850px;
    margin: 60px auto 0;
    text-align: left;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    color: var(--text-main);
}

.faq-question:hover {
    color: var(--primary);
    background: var(--bg-light);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-answer {
    padding-bottom: 30px;
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
    font-size: 14px;
}

/* --- Skin Types Tag --- */
.skin-types-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.skin-tag {
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(44, 211, 177, 0.1);
}

/* --- Results Section --- */
.results-container {
    background: var(--white);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.result-image {
    width: 100%;
    border-radius: 30px;
}

.results-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: var(--secondary);
}

.stat-card h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

/* --- Skincare Routine --- */
.routine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.routine-card {
    position: relative;
    padding: 40px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid #f1f5f9;
}

.routine-card .step-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.routine-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.routine-card h3 {
    margin-bottom: 15px;
    color: #0f172a;
}

.routine-card p {
    font-size: 0.95rem;
    color: #64748b;
}

@media (max-width: 992px) {
    .results-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .routine-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Product Catalog --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--white);
    border-radius: 40px;
    padding: 0;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(44, 211, 177, 0.15);
}

.product-img-box {
    background: #fcfcfc;
    padding: 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-content {
    padding: 35px 30px 40px;
    /* Increased bottom padding for better balance */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-tag {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
    display: block;
}

.product-card h3 {
    font-size: 1.15rem;
    /* Reduced for more elegant look */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--text-main);
}

.product-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-dark);
}

.product-btn-minimal {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(44, 211, 177, 0.2);
    position: relative;
}

/* Move animation when card is hovered */
.product-card:hover .product-btn-minimal {
    transform: translateY(-5px);
    background: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(44, 211, 177, 0.4);
}

/* Extra playful bounce when specifically hovering the button */
.product-btn-minimal:hover {
    transform: translateY(-8px) scale(1.15) !important;
    background: var(--primary-dark);
}

.product-btn-minimal i {
    transition: transform 0.3s ease;
}

.product-btn-minimal:hover i {
    transform: rotate(90deg);
}

/* --- Skin Type Guide --- */
.skin-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.skin-type-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    text-align: center;
    position: relative;
}

.skin-type-card:hover {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-15px) scale(1.02);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px rgba(44, 211, 177, 0.12);
}

.skin-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(44, 211, 177, 0.1);
    transition: all 0.5s ease;
}

.skin-type-card:hover .skin-icon-circle {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.15) rotate(12deg);
    box-shadow: 0 15px 25px rgba(44, 211, 177, 0.3);
}

.skin-type-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.skin-type-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.skin-tag {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 20px;
    border: 1px solid rgba(44, 211, 177, 0.2);
}

/* --- Nav Actions & Mobile Toggle --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .nav-btn {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1000;
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        margin-top: 50px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .about-grid,
    .results-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .about-visual-stack {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .about-features-list {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 40px 25px;
    }

    .modern-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

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

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-tag {
        font-size: 0.75rem;
    }

    .badge-1,
    .badge-2 {
        display: none;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .skin-guide-grid {
        grid-template-columns: 1fr;
    }

    .ingredients-grid {
        grid-template-columns: 1fr 1fr;
    }

    .routine-grid {
        grid-template-columns: 1fr;
    }

    .results-container {
        padding: 40px 20px;
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .results-stats {
        grid-template-columns: 1fr !important;
    }

    .privacy-popup {
        padding: 20px;
        width: 95%;
    }
}

/* --- Privacy Popup --- */
.privacy-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px 35px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.privacy-popup.show {
    transform: translateX(-50%) translateY(0);
}

.privacy-content {
    flex: 1;
}

.privacy-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.privacy-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.privacy-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.privacy-actions {
    display: flex;
    gap: 15px;
}

.btn-accept {
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 211, 177, 0.3);
}

@media (max-width: 768px) {
    .privacy-popup {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        bottom: 20px;
    }

    .privacy-actions {
        width: 100%;
        justify-content: center;
    }
}