/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333333;
    background: #ffffff;
    overflow-x: hidden;
    direction: rtl;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333333;
}

/* Floating Background Elements */
.floating-clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 182, 217, 0.15) 0%, rgba(200, 180, 255, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
}

.cloud-1 {
    width: 180px;
    height: 180px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.cloud-2 {
    width: 120px;
    height: 120px;
    top: 65%;
    right: 15%;
    animation-delay: -8s;
}

.cloud-3 {
    width: 200px;
    height: 200px;
    top: 35%;
    left: 70%;
    animation-delay: -15s;
}

.cloud-4 {
    width: 90px;
    height: 90px;
    top: 80%;
    left: 25%;
    animation-delay: -20s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.7;
    }
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #fef7fb 100%);
    position: relative;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 182, 217, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(200, 180, 255, 0.06) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #333333;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #2c2c54;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666666;
    font-weight: 400;
}

.highlight {
    background: linear-gradient(45deg, #ffb6d9, #e8d5ff);
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #2c2c54;
    box-shadow: 0 2px 8px rgba(255, 182, 217, 0.3);
}

/* Professional SVG Icons */
.icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    fill: #ffb6d9;
}

.icon-small {
    width: 24px;
    height: 24px;
    fill: #4CAF50;
}

/* Product Image */
.product-mockup {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

.mockup-3d {
    max-width: 750px;
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: transparent;
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: none;
    transition: all 0.4s ease;
    animation: bounceUpDown 3s ease-in-out infinite;
}

.mockup-3d:hover .product-image {
    box-shadow: none;
}

@keyframes bounceUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .mockup-3d {
        max-width: 90%;
        border-radius: 15px;
    }
    
    .product-image {
        border-radius: 15px;
        box-shadow: none;
    }
    
    .product-mockup {
        margin-top: 2rem;
    }
    
    .hero {
        min-height: 80vh;
        padding: 2rem 0 1rem 0;
    }
}

/* Brand Logo */
.brand-logo {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #ffffff;
    padding: 10px;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c54;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ffb6d9, #e8d5ff);
    border-radius: 2px;
}

/* Benefits Section */
.benefits {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

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

.benefit-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #ffb6d9;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ffb6d9, #e8d5ff);
    border-radius: 20px 20px 0 0;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #2c2c54;
    font-weight: 600;
    margin-top: 1rem;
}

.benefit-card p {
    color: #666666;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* Ingredients Section */
.ingredients {
    background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
}

.ingredients-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.ingredient-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ingredient-item h3 {
    font-family: 'Poppins', sans-serif;
    color: #2c2c54;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.ingredient-item p {
    color: #666666;
    line-height: 1.6;
}

.result-highlight {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9, #a5d6a7);
    color: #1b5e20;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.25);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.result-highlight::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #4caf50, #81c784, #66bb6a, #4caf50);
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: greenGlow 3s ease-in-out infinite;
}

.result-highlight:hover::before {
    opacity: 1;
}

.result-highlight:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.35);
    background: linear-gradient(135deg, #f1f8e9, #dcedc8, #c5e1a5);
}

.result-highlight h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1b5e20;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(27, 94, 32, 0.1);
}

@keyframes greenGlow {
    0%, 100% {
        background: linear-gradient(45deg, #4caf50, #81c784, #66bb6a, #4caf50);
    }
    25% {
        background: linear-gradient(45deg, #81c784, #66bb6a, #4caf50, #81c784);
    }
    50% {
        background: linear-gradient(45deg, #66bb6a, #4caf50, #81c784, #66bb6a);
    }
    75% {
        background: linear-gradient(45deg, #4caf50, #81c784, #66bb6a, #4caf50);
    }
}

/* Comparison Section */
.comparison {
    background: #ffffff;
}

.comparison-table {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #2c2c54, #40407a);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.our-product, .other-products {
    padding: 1.5rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
}

.our-feature, .other-feature {
    padding: 1.5rem;
    border-left: 1px solid #f0f0f0;
}

.our-feature {
    background: linear-gradient(135deg, rgba(255, 182, 217, 0.08), rgba(232, 213, 255, 0.05));
    color: #2c2c54;
    font-weight: 500;
}

.other-feature {
    background: #fafafa;
    color: #888888;
}

/* Awards Section */
.awards {
    background: #ffffff;
}

.awards-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.award-item {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.award-image {
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.award-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.award-item:hover .award-image img {
    transform: scale(1.05);
}

.award-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.award-content h3 {
    font-family: 'Poppins', sans-serif;
    color: #2c2c54;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}



.award-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.award-year {
    display: inline-block;
    background: #f5f5f5;
    color: #666666;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
}

.awards-highlight {
    background: #f8f9fa;
    color: #2c2c54;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.awards-highlight h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c54;
    margin: 0;
}

/* Usage Section */
.usage {
    background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
}

.usage-image, .ingredients-image, .benefits-image {
    text-align: center;
    margin-bottom: 3rem;
}

.usage-illustration, .ingredients-illustration, .benefits-illustration {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.usage-illustration {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ingredients-illustration {
    box-shadow: none;
}

.ingredients-image {
    width: 750px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: none;
    display: block;
    margin: 0 auto 2rem auto;
    transition: transform 0.3s ease;
}

.ingredients-image:hover {
    transform: translateY(-2px);
}

.benefits-illustration {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.usage-illustration:hover, .ingredients-illustration:hover, .benefits-illustration:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .usage-illustration, .ingredients-illustration, .benefits-illustration {
        max-width: 100%;
        border-radius: 15px;
    }
}

.usage-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #666666;
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #ffb6d9, #e8d5ff);
    color: #2c2c54;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 2rem;
    box-shadow: 0 4px 12px rgba(255, 182, 217, 0.3);
    font-family: 'Poppins', sans-serif;
}

.step h3 {
    color: #333333;
    font-size: 1.2rem;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #fff5f8 100%);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 182, 217, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(232, 213, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.guarantee-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555555;
    font-weight: 400;
}

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

.guarantee-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 182, 217, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 217, 0.1), transparent);
    transition: left 0.6s ease;
}

.guarantee-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 182, 217, 0.2);
    border-color: rgba(255, 182, 217, 0.3);
}

.guarantee-item:hover::before {
    left: 100%;
}

.guarantee-item svg {
    width: 32px;
    height: 32px;
    fill: #4CAF50;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.3));
}

.guarantee-item span {
    color: #2c2c54;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
    background: #ffffff;
}

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

.testimonial {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: #ffb6d9;
    font-family: 'Poppins', sans-serif;
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    color: #2c2c54;
    font-weight: 600;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* CTA Order Form Section */
.cta-order-form {
    background: linear-gradient(135deg, #2c2c54 0%, #40407a 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
}

.cta-order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 182, 217, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(232, 213, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-order-form .container {
    position: relative;
    z-index: 2;
}

.cta-order-form h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-price {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
}

.delivery-pricing {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.free-delivery {
    background: rgba(255, 182, 217, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
}

.cta-offers {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.offer-card input[type="radio"] {
    display: none;
}

.offer-card input[type="radio"]:checked + .offer-title {
    font-weight: 700;
}

.offer-card input[type="radio"]:checked {
    background: rgba(255, 255, 255, 0.2);
}

.offer-card label {
    display: block;
    cursor: pointer;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.offer-title {
    font-size: 1.1rem;
    display: block;
}

.offer-bonus {
    display: block;
    font-size: 0.85rem;
    color: #ffb6d9;
    font-weight: 500;
    margin-top: 0.3rem;
    opacity: 0.9;
}

.popular-offer {
    border-color: #ffb6d9;
    background: rgba(255, 182, 217, 0.15);
}

.selected-offer {
    border-color: #ffb6d9 !important;
    background: rgba(255, 182, 217, 0.2) !important;
    box-shadow: 0 8px 25px rgba(255, 182, 217, 0.3);
    transform: translateY(-3px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffb6d9;
    color: #2c2c54;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

.cta-fields {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-fields input {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333333;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Open Sans', sans-serif;
}

.cta-fields input::placeholder {
    color: #666666;
}

.cta-fields input:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(255, 182, 217, 0.3);
}

.confirmation-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

#submitBtn {
    background: linear-gradient(135deg, #ffb6d9, #e8d5ff);
    color: #2c2c54;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 182, 217, 0.3);
    font-family: 'Poppins', sans-serif;
}

#submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 182, 217, 0.4);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 4rem 0;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
}

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

.faq-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    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: max-height 0.3s ease, padding 0.3s ease;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
}

/* Footer */
.footer {
    background: #2c2c54;
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-family: 'Open Sans', sans-serif;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.slide-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Skincare Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 182, 217, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 182, 217, 0.6); }
}

/* Advanced Background Animations */
@keyframes pinkCloudFloat {
    0% { transform: translateX(-100px) translateY(0px) scale(0.8); opacity: 0.3; }
    25% { transform: translateX(25vw) translateY(-20px) scale(1); opacity: 0.6; }
    50% { transform: translateX(50vw) translateY(10px) scale(0.9); opacity: 0.4; }
    75% { transform: translateX(75vw) translateY(-15px) scale(1.1); opacity: 0.7; }
    100% { transform: translateX(calc(100vw + 100px)) translateY(5px) scale(0.8); opacity: 0.2; }
}

@keyframes floatingPoints {
    0% { 
        transform: translateY(100vh) translateX(0px) rotate(0deg); 
        opacity: 0; 
    }
    10% { 
        opacity: 1; 
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        transform: translateY(-100px) translateX(50px) rotate(360deg); 
        opacity: 0; 
    }
}

@-webkit-keyframes floatingPoints {
    0% { 
        -webkit-transform: translateY(100vh) translateX(0px) rotate(0deg); 
        opacity: 0; 
    }
    10% { 
        opacity: 1; 
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        -webkit-transform: translateY(-100px) translateX(50px) rotate(360deg); 
        opacity: 0; 
    }
}

@keyframes gentleWave {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Pink Clouds Background */
.pink-clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pink-cloud {
    position: absolute;
    background: radial-gradient(ellipse, rgba(255, 182, 217, 0.4) 0%, rgba(255, 182, 217, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(2px);
    animation: pinkCloudFloat linear infinite;
}

.pink-cloud:nth-child(1) {
    width: 120px;
    height: 60px;
    top: 10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.pink-cloud:nth-child(2) {
    width: 80px;
    height: 40px;
    top: 30%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.pink-cloud:nth-child(3) {
    width: 100px;
    height: 50px;
    top: 60%;
    animation-duration: 35s;
    animation-delay: -10s;
}

.pink-cloud:nth-child(4) {
    width: 90px;
    height: 45px;
    top: 80%;
    animation-duration: 28s;
    animation-delay: -15s;
}

/* Floating Points Background */
.floating-points {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    will-change: transform;
}

.floating-point {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 182, 217, 1) 0%, rgba(255, 182, 217, 0.8) 50%, rgba(255, 182, 217, 0.4) 100%);
    border-radius: 50%;
    -webkit-animation: floatingPoints linear infinite;
    animation: floatingPoints linear infinite;
    box-shadow: 0 0 10px rgba(255, 182, 217, 0.6);
    will-change: transform;
}

.floating-point:nth-child(1) {
    width: 6px;
    height: 6px;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.floating-point:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 25%;
    animation-duration: 12s;
    animation-delay: -2s;
}

.floating-point:nth-child(3) {
    width: 5px;
    height: 5px;
    left: 40%;
    animation-duration: 10s;
    animation-delay: -4s;
}

.floating-point:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 60%;
    animation-duration: 15s;
    animation-delay: -6s;
}

.floating-point:nth-child(5) {
    width: 6px;
    height: 6px;
    left: 75%;
    animation-duration: 9s;
    animation-delay: -8s;
}

.floating-point:nth-child(6) {
    width: 7px;
    height: 7px;
    left: 90%;
    animation-duration: 13s;
    animation-delay: -10s;
}

@keyframes skincare-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@-webkit-keyframes skincare-particle {
    0% {
        -webkit-transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}



@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 182, 217, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 182, 217, 0.8);
    }
}

/* Skincare Particles Background */
.skincare-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
    will-change: transform;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #ffb6d9, #e8d5ff);
    border-radius: 50%;
    -webkit-animation: skincare-particle 8s infinite linear;
    animation: skincare-particle 8s infinite linear;
    box-shadow: 0 0 8px rgba(255, 182, 217, 0.5);
    will-change: transform;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }

/* Enhanced 3D Product Mockup */
.mockup-3d {
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.mockup-3d:hover {
    transform: scale(1.02);
}

/* Benefit Cards 3D Effect */
.benefit-card {
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateZ(20px);
    animation: glow 2s ease-in-out infinite;
}

/* Ingredient Items 3D Animation */
.ingredient-item {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.ingredient-item:hover {
    transform: perspective(800px) rotateX(5deg) translateZ(15px);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

/* CTA Button Enhanced Animation */
#submitBtn {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

#submitBtn:hover {
    transform: perspective(1000px) rotateX(-10deg) translateZ(10px);
    animation: pulse-glow 1s ease-in-out infinite;
}

/* Testimonial Cards 3D Effect */
.testimonial {
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.testimonial:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(25px);
    animation: glow 2s ease-in-out infinite;
}

/* Floating Serum Drops Animation */
@keyframes serum-drop {
    0% {
        transform: translateY(-20px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(10px) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(40px) scale(0.6);
        opacity: 0;
    }
}

.serum-drops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.serum-drop {
    position: absolute;
    width: 8px;
    height: 12px;
    background: linear-gradient(180deg, rgba(255, 182, 217, 0.8), rgba(232, 213, 255, 0.6));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: serum-drop 3s infinite ease-in-out;
    box-shadow: 0 2px 8px rgba(255, 182, 217, 0.3);
}

.serum-drop:nth-child(1) { left: 15%; animation-delay: 0s; }
.serum-drop:nth-child(2) { left: 35%; animation-delay: 0.5s; }
.serum-drop:nth-child(3) { left: 55%; animation-delay: 1s; }
.serum-drop:nth-child(4) { left: 75%; animation-delay: 1.5s; }
.serum-drop:nth-child(5) { left: 85%; animation-delay: 2s; }

/* CTA Section Serum Drops - More Visible */
.cta-serum-drops {
    z-index: 5;
}

.cta-serum-drops .serum-drop {
    width: 10px;
    height: 15px;
    background: linear-gradient(180deg, rgba(255, 182, 217, 1), rgba(232, 213, 255, 0.9));
    box-shadow: 0 3px 12px rgba(255, 182, 217, 0.6);
    animation-duration: 2.5s;
}

.cta-serum-drops .serum-drop:nth-child(1) { left: 10%; animation-delay: 0s; }
.cta-serum-drops .serum-drop:nth-child(2) { left: 20%; animation-delay: 0.3s; }
.cta-serum-drops .serum-drop:nth-child(3) { left: 30%; animation-delay: 0.6s; }
.cta-serum-drops .serum-drop:nth-child(4) { left: 45%; animation-delay: 0.9s; }
.cta-serum-drops .serum-drop:nth-child(5) { left: 60%; animation-delay: 1.2s; }
.cta-serum-drops .serum-drop:nth-child(6) { left: 75%; animation-delay: 1.5s; }
.cta-serum-drops .serum-drop:nth-child(7) { left: 85%; animation-delay: 1.8s; }
.cta-serum-drops .serum-drop:nth-child(8) { left: 95%; animation-delay: 2.1s; }

/* CTA Section Floating Points */
.cta-floating-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}

.cta-floating-points .floating-point {
    background: radial-gradient(circle, rgba(255, 182, 217, 1) 0%, rgba(255, 182, 217, 0.9) 50%, rgba(255, 182, 217, 0.6) 100%);
    box-shadow: 0 0 15px rgba(255, 182, 217, 0.8);
    animation-duration: 6s;
}

.cta-floating-points .floating-point:nth-child(1) {
    width: 8px;
    height: 8px;
    left: 15%;
    animation-delay: 0s;
}

.cta-floating-points .floating-point:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 40%;
    animation-delay: -1.5s;
}

.cta-floating-points .floating-point:nth-child(3) {
    width: 10px;
    height: 10px;
    left: 65%;
    animation-delay: -3s;
}

.cta-floating-points .floating-point:nth-child(4) {
    width: 7px;
    height: 7px;
    left: 85%;
    animation-delay: -4.5s;
}

/* Enhanced Product Mockup with Realistic 3D */
.mockup-3d::before {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 182, 217, 0.3) 30%,
        rgba(232, 213, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.8) 100%);
    box-shadow: 
        inset 0 0 30px rgba(255, 182, 217, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 60px rgba(255, 182, 217, 0.3);
}

.mockup-3d::after {
    background: linear-gradient(45deg, 
        rgba(255, 182, 217, 0.1),
        rgba(232, 213, 255, 0.2));
    box-shadow: 
        inset 0 0 20px rgba(255, 182, 217, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Section Hover Effects */
.parallax-section {
    transition: all 0.3s ease;
}

.parallax-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Guarantee Items Enhanced 3D */
.guarantee-item {
    transform-style: preserve-3d;
}

.guarantee-item:hover {
    transform: perspective(800px) rotateX(5deg) translateZ(10px);
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Usage Steps 3D Animation */
.step {
    transform-style: preserve-3d;
}

.step:hover {
    transform: perspective(1000px) rotateX(3deg) translateX(-8px) translateZ(15px);
    animation: glow 2s ease-in-out infinite;
}

/* Subtle Parallax for Headlines */
.parallax-title {
    transition: transform 0.1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mockup-3d {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .product-image {
        box-shadow: none;
    }
    
    .logo-image {
        max-width: 150px;
    }
    
    .awards-grid {
        gap: 1.5rem;
    }
    
    .award-image {
        height: 120px;
    }
    
    .award-content {
        padding: 1rem;
    }
    
    .award-content h3 {
        font-size: 1.1rem;
    }
    
    .awards-highlight {
        padding: 1.5rem;
    }
    
    .awards-highlight h3 {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile 2-column comparison layout - keep 2 columns */
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 1fr;
        font-size: 0.9rem;
    }
    
    .our-product,
    .other-products {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .our-feature,
    .other-feature {
        padding: 1rem;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-left: 0;
        margin-bottom: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .award-item {
        margin-bottom: 1rem;
    }
    
    .award-image {
        height: 150px;
    }
    
    .award-content {
        padding: 1.5rem;
    }
    
    .award-content h3 {
        font-size: 1.2rem;
    }
    
    .awards-highlight {
        padding: 2rem;
    }
    
    .awards-highlight h3 {
        font-size: 1.2rem;
    }
    
    .cloud {
        display: none;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .parallax-section {
        padding: 60px 0;
    }
    
    .mockup-3d {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .product-image {
        box-shadow: none;
    }
    
    .logo-image {
        max-width: 120px;
        padding: 8px;
    }
    
    .brand-logo {
        margin-bottom: 1.5rem;
    }
    
    .cta-order-form h2 {
        font-size: 2rem;
    }
    
    .faq-section {
        padding: 2.5rem 0;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        padding-right: 0.5rem;
    }
    
    .faq-toggle {
        font-size: 1.3rem;
        min-width: 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

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

/* Thank You Page Styles - Simple & Fast */
.thank-you-page {
    background: white;
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.thankyou-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    color: #333;
}

.thankyou-container h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.thankyou-details {
    background: #f5f5f5;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
}

.thankyou-details p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.important-notice {
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.important-notice h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.important-notice p {
    color: #333;
    margin-bottom: 1rem;
}

.call-times {
    background: #f0f0f0;
    border: 1px solid #ccc;
    padding: 1rem;
    margin: 1rem 0;
    color: #333;
    font-weight: bold;
}

.urgent-note {
    background: #f8f8f8;
    border: 1px solid #ccc;
    padding: 1rem;
    color: #333;
    font-weight: bold;
}

.closing-note {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 1rem;
    color: #333;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .thankyou-container {
        padding: 1rem;
    }
    
    .thankyou-container h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .thankyou-container {
        padding: 0.5rem;
    }
    
    .thankyou-container h1 {
        font-size: 1.5rem;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffb6d9, #e8d5ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff9fcf, #dcc5f5);
}