/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #f8f8f8;
    --dark-gray: #333333;
    --light-gray: #e5e5e5;
    --baby-pink: #FFD6E8;
    --soft-pink: #FFC4DD;
    --blush-pink: #FFF5F8; /* Changed to lighter pink */
    --rose: #FFB8D1;
    --cream: #FFF8F0;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, var(--blush-pink) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--cream) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--dark-gray);
    font-style: italic;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    background-color: var(--rose);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 184, 209, 0.3);
    border: 2px solid var(--rose);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 184, 209, 0.5);
    background-color: var(--white);
    color: var(--black);
}

/* Section Styling */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--black);
}

/* Products Section */
.products {
    background-color: var(--gray); /* Changed from blush-pink to gray */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--black);
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    background: var(--light-gray); /* Fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 3px solid var(--rose);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    position: relative;
}

.product-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.see-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: var(--rose);
    color: var(--black);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--rose);
}

.see-more-btn:hover {
    background: transparent;
    color: var(--rose);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 184, 209, 0.3);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--rose);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Order Form Section */
.order-form {
    background: var(--gray); /* Fixed typo and changed to gray */
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 2px solid var(--rose);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    background: var(--white);
    color: var(--black);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--white);
    color: var(--black);
    padding: 10px;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 184, 209, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background-color: var(--rose);
    color: var(--black);
    border: 2px solid var(--rose);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 184, 209, 0.4);
    background-color: var(--soft-pink);
    color: var(--black);
}

/* Contact Section */
.contact {
    background-color: var(--gray); /* Changed from blush-pink to gray */
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border: 2px solid var(--black);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-details {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 15px 35px;
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    border: 2px solid #25D366;
}

.whatsapp-button:hover {
    background-color: var(--white);
    color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.call-button {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 15px 35px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
}

.call-button:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    section {
        padding: 60px 5%;
    }
    
    .call-button,
    .whatsapp-button {
        display: flex;
        justify-content: center;
        margin: 10px auto;
        width: 80%;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}