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

:root {
    --primary-color: #6b5b95;
    --secondary-color: #d64a8a;
    --accent-color: #ff6b9d;
    --purple-dark: #4a3c6b;
    --purple-light: #8b7bb8;
    --pink-primary: #e91e63;
    --pink-light: #f8bbd0;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-light: #faf5f8;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--light-color);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

/* Language Bar */
.language-bar {
    background: var(--purple-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.language-bar .container {
    display: flex;
    justify-content: flex-end;
}

.language-select {
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.language-select:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

/* Header */
.header {
    background: linear-gradient(to right, var(--purple-dark), var(--primary-color));
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

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

.brand-logo {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 5px;
}

.brand-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin-top: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 16px;
    position: relative;
    border-radius: 25px;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

.cta-nav {
    background: var(--secondary-color);
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(214, 74, 138, 0.3);
}

.cta-nav:hover {
    background: var(--pink-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 74, 138, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8b7bb8 0%, #d64a8a 100%);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

.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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: none;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Buttons */
.btn {
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background: #7a6ba0;
    color: white;
}

.btn-primary:hover {
    background: #6b5b95;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    color: white;
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.btn-white {
    background: white;
    color: var(--purple-dark);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--secondary-color);
}

.btn-whatsapp {
    background: #5a9b5f;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #4a8a4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 155, 95, 0.3);
}

.whatsapp-icon {
    font-size: 1.2em;
}

.btn-visit {
    background: #8d7bb0;
    color: white;
}

.btn-visit:hover {
    background: #7a6ba0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 123, 176, 0.3);
}

.btn-full {
    width: 100%;
}

/* Trust Section */
.trust-section {
    background: var(--gray-light);
    padding: 30px 0;
    border-bottom: 1px solid #f0e5ed;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 91, 149, 0.15);
}

.trust-icon {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.trust-text {
    font-weight: 500;
    color: var(--gray-dark);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    padding: 0 0px;
}

.product-card {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: var(--transition);
    border-radius: 20px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(107, 91, 149, 0.2);
}

.product-header {
    padding: 35px;
    color: white;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.product-header.pomegranate {
    background: linear-gradient(135deg, #d64a8a, #c2185b);
}

.product-header.verbena {
    background: linear-gradient(135deg, #8b7bb8, #6b5b95);
}

.product-header h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.product-content {
    padding: 30px;
}

.product-description {
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray-dark);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.btn-product {
    background: var(--purple-light);
    color: white;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 25px;
}

.btn-product:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--gray-light), white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 70px;
    padding: 0 0px;
}

.benefit-card {
    text-align: center;
    padding: 45px 25px;
    background: #eeeeee5e;
    transition: var(--transition);
    border-radius: 20px;
    border: 1px solid rgba(139, 123, 184, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 91, 149, 0.15);
    border-color: var(--purple-light);
}

.benefit-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.benefit-icon i {
    width: 48px;
    height: 48px;
    color: #a0a0a0 !important;
    stroke: #a0a0a0 !important;
    stroke-width: 1.5;
}

.benefit-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Professional Section */
.professional {
    padding: 100px 0;
    background: white;
}

.professional-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 20px;
}

.professional-info h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.professional-info p {
    color: var(--gray-medium);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.professional-benefits {
    margin-bottom: 30px;
}

.pro-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: var(--gray-dark);
}

.check {
    color: var(--success-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.testimonial-card {
    background: var(--gray-light);
    padding: 45px;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--purple-light);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--purple-light), var(--secondary-color));
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
}

.cta-section::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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    font-weight: 500;
}

.separator {
    opacity: 0.5;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 20px;
}

.contact-info h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray-medium);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    gap: 10px;
    color: var(--gray-dark);
}

.contact-item strong {
    min-width: 100px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.whatsapp-link {
    color: #25d366;
}

.whatsapp-link:hover {
    color: #1da851;
}

/* Forms */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    background: var(--gray-light);
    border-radius: 20px;
}

input, select, textarea {
    padding: 14px 20px;
    border: 1px solid #e5d5e0;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--purple-light);
    box-shadow: 0 0 0 3px rgba(139, 123, 184, 0.1);
}

textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(to right, var(--purple-dark), var(--primary-color));
    color: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 45px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-medium);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--dark-color);
}

.modal h2 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.modal p {
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .professional-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .brand-logo {
        height: 45px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Fix badge overlay issue on mobile */
    .product-badge {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.25);
        color: white;
        border: 1px solid rgba(255,255,255,0.3);
        backdrop-filter: blur(10px);
    }
    
    .product-card {
        position: relative;
    }
    
    .product-content {
        padding: 25px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border-radius: 0 0 20px 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Additional Beauty Fair inspired styles */
.container {
    max-width: 1280px;
}

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

/* Enhanced focus styles */
:focus-visible {
    outline: 2px solid var(--purple-light);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Success Message */
.success-message {
    background: var(--success-color);
    color: white;
    padding: 18px;
    text-align: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    max-width: 500px;
    z-index: 3000;
    animation: slideDown 0.3s ease;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.error-message {
    background: #e74c3c;
    color: white;
    padding: 18px;
    text-align: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    max-width: 500px;
    z-index: 3000;
    animation: slideDown 0.3s ease;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}