/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    line-height: 1.6;
    color: #2d5016;
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%), url('images/Honey Texture.webp');
    background-size: cover;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #2e7d32;
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Hind Siliguri', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #45a049, #5cb85c);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-secondary:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(240, 249, 240, 0.9), rgba(232, 245, 232, 0.9)), url('images/Hero Section Background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1b5e20;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a6741;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.honey-bottle-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(214, 140, 69, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honey-bottle-img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(214, 140, 69, 0.3);
}

/* Product Highlights Section */
.highlights {
    background: white;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #fff9f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.15);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1b5e20;
}

.highlight-item p {
    color: #4a6741;
    font-size: 1rem;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text p {
    font-size: 1.2rem;
    color: #4a6741;
    margin-bottom: 30px;
    line-height: 1.8;
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    color: #2d5016;
    position: relative;
    padding-left: 30px;
}

.why-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.natural-source-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.natural-source-img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.3);
}

/* Health Benefits Section */
.health-benefits {
    background: white;
}

.benefits-lifestyle {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.lifestyle-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.15);
    transition: transform 0.3s ease;
}

.lifestyle-img:hover {
    transform: translateY(-5px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff9f0, #fef3e2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1b5e20;
}

.benefit-card p {
    color: #4a6741;
    font-size: 0.95rem;
}

/* Product Details Section */
.product-details {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
}

.product-specs {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e8f5e8;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #2e7d32;
}

.spec-value {
    color: #4a6741;
}

/* Pricing Section */
.pricing {
    background: white;
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #f0f9f0, #e8f5e8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.15);
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-info {
    margin: 30px 0;
}

.price-label {
    display: block;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: #2e7d32;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(214, 140, 69, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.1);
}

.review-text {
    font-size: 1.1rem;
    color: #4a6741;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: #2e7d32;
    text-align: right;
}

.faq-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.faq-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.15);
    transition: transform 0.3s ease;
}

.faq-img:hover {
    transform: translateY(-5px);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f0f9f0;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e8f5e8;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #1b5e20;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #4CAF50;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

.final-cta .btn-primary {
    background: white;
    color: #4CAF50;
}

.final-cta .btn-primary:hover {
    background: #f0f9f0;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-lifestyle {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .highlights-grid,
    .benefits-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-item,
    .benefit-card,
    .review-card {
        padding: 25px 20px;
    }
    
    .product-specs {
        padding: 25px;
    }
}
