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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #F7FAFC;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1A202C;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #4A5568;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.logo-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.brand-name {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.hero-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    color: #E2E8F0;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #D69E2E;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #B7791F;
    transform: translateY(-2px);
}

/* Welcome Section */
.welcome {
    padding: 5rem 0;
    background: white;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.welcome-text h2 {
    color: #4F46E5;
    margin-bottom: 1.5rem;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.image-placeholder {
    background: #EDF2F7;
    border: 2px dashed #A0AEC0;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: #718096;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 300px;
    justify-content: center;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #F8FAFC;
}

.services h2 {
    text-align: center;
    color: #4F46E5;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
}

.service-icon {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.service-card h3 {
    color: #1A202C;
    margin-bottom: 1rem;
}

.service-card p {
    color: #718096;
    line-height: 1.5;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: white;
}

.products h2 {
    text-align: center;
    color: #4F46E5;
    margin-bottom: 3rem;
}

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

.product-card {
    background: white;
    border: 2px solid #E2E8F0;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    border-color: #4F46E5;
    transform: translateY(-5px);
}

.product-card.featured {
    border-color: #D69E2E;
    background: linear-gradient(135deg, #FFF8E1, #FFFBF0);
}

.product-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #D69E2E;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-card h3 {
    color: #1A202C;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 1.5rem;
}

.product-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.product-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #4A5568;
}

.product-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48BB78;
    font-weight: bold;
}

.product-button {
    display: inline-block;
    background: #4F46E5;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
    width: 100%;
}

.product-button:hover {
    background: #3730A3;
}

/* Why Choose Us Section */
.why-choose {
    padding: 5rem 0;
    background: #F8FAFC;
}

.why-choose h2 {
    text-align: center;
    color: #4F46E5;
    margin-bottom: 3rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    background: linear-gradient(135deg, #D69E2E, #F6AD55);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.feature h3 {
    color: #1A202C;
    margin-bottom: 1rem;
}

.feature p {
    color: #718096;
    line-height: 1.5;
}

/* Membership Section */
.membership {
    padding: 5rem 0;
    background: white;
}

.membership h2 {
    text-align: center;
    color: #4F46E5;
    margin-bottom: 3rem;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.membership-card {
    background: white;
    border: 2px solid #E2E8F0;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.membership-card:hover {
    border-color: #4F46E5;
    transform: translateY(-5px);
}

.membership-card.premium {
    border-color: #D69E2E;
    background: linear-gradient(135deg, #FFF8E1, #FFFBF0);
}

.membership-card h3 {
    color: #1A202C;
    margin-bottom: 1rem;
}

.membership-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 1rem;
}

.membership-price span {
    font-size: 1rem;
    color: #718096;
}

.membership-card p {
    margin-bottom: 1.5rem;
    color: #4A5568;
}

.membership-card ul {
    list-style: none;
    text-align: left;
}

.membership-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #4A5568;
}

.membership-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48BB78;
    font-weight: bold;
}

/* Pickup Service Section */
.pickup-service {
    padding: 5rem 0;
    background: #F8FAFC;
}

.pickup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pickup-text h2 {
    color: #4F46E5;
    margin-bottom: 1.5rem;
}

.pickup-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pickup-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pickup-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4A5568;
}

.pickup-feature svg {
    color: #4F46E5;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    color: #4F46E5;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #4F46E5;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #4A5568;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #1A202C;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #F8FAFC;
}

.contact h2 {
    text-align: center;
    color: #4F46E5;
    margin-bottom: 3rem;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #1A202C;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #4F46E5;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item address {
    font-style: normal;
    color: #4A5568;
    line-height: 1.5;
}

.contact-hours {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.contact-hours h3 {
    color: #1A202C;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    color: #4A5568;
    font-weight: 500;
}

.hours-item span:last-child {
    color: #1A202C;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1A202C;
    color: white;
    padding: 3rem 0 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo-brand {
    justify-content: flex-start;
}

.footer-brand .brand-name {
    color: white;
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2D3748;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #CBD5E0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pickup-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .membership-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .products-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
}