/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Fix scroll offset for navigation links */
html {
    scroll-padding-top: 40px;
}

section {
    scroll-margin-top: 40px;
}

/* Additional scroll behavior for smooth navigation */
html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.logo-text h2 {
    color: #e91e63;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: -5px;
}

.logo-text span {
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e91e63;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e91e63;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 137px 20px 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e91e63" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e91e63" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e91e63" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e91e63" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e91e63" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #e91e63;
    border-color: #e91e63;
}

.btn-secondary:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.serum-bottle {
    width: 450px;
    height: 375px;
    background: linear-gradient(45deg, #e91e63, #f06292);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
    animation: float 3s ease-in-out infinite;
}

.bottle-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #e91e63, #f06292);
    border-radius: 50px;
    opacity: 0.3;
    filter: blur(20px);
    animation: pulse 2s ease-in-out infinite;
}

.product-image {
    width: 80%;
    height: 80%;
    object-fit: contain;
    z-index: 2;
    border-radius: 15px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 500;
}

.feature i {
    color: #e91e63;
    font-size: 1.2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #e91e63, #f06292);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    position: relative;
    z-index: 10;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.mission-card i {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* Vision Section */
.vision {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 10;
}

.vision-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.vision-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.goal {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    border-radius: 10px;
}

.goal i {
    color: #e91e63;
    font-size: 1.2rem;
}

.goal span {
    color: #333;
    font-weight: 500;
}

.vision-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.vision-circle i {
    font-size: 4rem;
    color: white;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    position: relative;
    z-index: 10;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-bottle {
    width: 450px;
    height: 400px;
    background: linear-gradient(45deg, #e91e63, #f06292);
    border-radius: 40px 40px 15px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.3);
    animation: float 3s ease-in-out infinite;
}

.product-bottle-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 15px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.product-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.product-intro {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.product-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    border-radius: 8px;
    min-height: 60px;
    box-sizing: border-box;
}

.benefit i {
    color: #e91e63;
    font-size: 1rem;
}

.benefit span {
    color: #333;
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.3;
}

.product-results {
    margin: 3rem 0;
    text-align: center;
}

.product-results h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.results-gallery {
    display: flex;
    justify-content: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    padding-left: 0;
    margin-left: 0;
}

.result-image {
    background: white;
    border-radius: 15px;
    padding: 0.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1;
    max-width: 200px;
    min-width: 160px;
}

.result-image:hover {
    transform: translateY(-5px);
}

.result-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.result-image p {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.product-cta {
    color: #e91e63;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
}

.ingredients {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ingredients h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ingredient {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

.ingredient-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.ingredient-icon i {
    font-size: 2rem;
    color: white;
}

.ingredient h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.ingredient p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 10;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-card i {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 0.8rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

.contact-card p {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
    word-wrap: break-word;
}

.contact-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #d81b60;
    text-decoration: underline;
}

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

.social-media h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff000020, #ff000010);
    color: #ff0000;
    border: 2px solid #ff0000;
}

.social-link.youtube:hover {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
}

.social-link.tiktok {
    background: linear-gradient(135deg, #00000020, #00000010);
    color: #000000;
    border: 2px solid #000000;
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1rem;
    margin-left: 0;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border: 2px solid #e91e63;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.footer-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 10px;
}

.footer-logo-text h3 {
    color: #e91e63;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo-text span {
    color: #ccc;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question:hover {
    background: linear-gradient(135deg, #d81b60, #e91e63);
}

.faq-answer {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.customer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #e91e63, #f06292);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.customer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.customer-location {
    color: #999;
    font-size: 0.9rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    border-radius: 20px;
}

.cta-section h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-section p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .serum-bottle {
        width: 350px;
        height: 350px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-benefits {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .results-gallery {
        flex-direction: column;
        align-items: center;
    }
    
    .result-image {
        max-width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 15px 40px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .serum-bottle {
        width: 280px;
        height: 280px;
    }
    
    .logo-img {
        width: 80px;
        height: 80px;
    }
    
    .logo-text h2 {
        font-size: 1.4rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .mission-card,
    .ingredient,
    .contact-card {
        padding: 1.5rem;
    }
    
    .product-main,
    .ingredients {
        padding: 2rem 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #e91e63, #f06292);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e91e63;
}