/* styles.css */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #2196F3;
    --accent-color: #FF9800;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #555;
    --text-light: #777;
    --border-color: #eaeaea;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #0b7dda;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .logo {
    font-size: 1.8rem;
    font-weight: 700;
} */

/* .logo i {
    color: var(--primary-color);
    margin-right: 8px;
   
} */
.logo {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    width: 50px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo i, .logo img {
    color: var(--primary-color);
    margin-right: 8px;
    height: 50px; /* Set a fixed height */
    width: 50px; /* Set a fixed width */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img.fas.fa-spa {
    margin-top: 0; /* Remove the margin-top that was causing misalignment */
    object-fit: cover; /* Ensure the image scales properly */
border-radius: 200%;
    background:transparent;
    width: 100%;
    height: 100%;
    

}
.logo img.fas.fa-spa1 {
    margin-top: 0; /* Remove the margin-top that was causing misalignment */
    object-fit: cover; /* Ensure the image scales properly */
width: 220px;
height: 50px;
    background:transparent;
  
    

}
.logo span {
    display: inline-flex;
    align-items: center;
    height: 100%;
    /* background:#0b7dda; */
}
.logo-highlight {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.nav-actions .btn {
    margin-left: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
/* Updated About Section Styles */
.about-image-centered {
    margin: 0 auto 50px;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image-centered img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-image-centered:hover img {
    transform: scale(1.02);
}

.about-text.philosophy {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-text.philosophy h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.about-text.philosophy h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-text.philosophy p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Key Features Grid */
.key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.key-features .feature {
    text-align: center;
    padding: 40px 25px;
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.key-features .feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #2E7D32);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.key-features .feature:hover::before {
    transform: scaleX(1);
}

.key-features .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

/* Feature Icons */
.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Sparkle icon for first feature */
.feature-icon .sparkle {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1.2rem;
    color: #FFD700;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Water droplet + plant combination */
.feature-icon .water-plant {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 1.5rem;
    color: #2196F3;
    opacity: 0.8;
}

/* Location pin + delivery box */
.feature-icon .delivery-box {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 1.2rem;
    color: #FF9800;
    transform: translate(5px, 5px);
}

/* Recycle + leaf combination */
.feature-icon .sustainable-leaf {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 1.8rem;
    color: #4CAF50;
    opacity: 0.7;
}

/* Feature Text */
.key-features .feature h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.key-features .feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-image-centered img {
        height: 350px;
    }
    
    .key-features {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-image-centered {
        margin: 0 auto 40px;
    }
    
    .about-image-centered img {
        height: 300px;
    }
    
    .about-text.philosophy {
        margin-bottom: 40px;
    }
    
    .about-text.philosophy p {
        font-size: 1rem;
    }
    
    .key-features {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .key-features .feature {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .about-image-centered img {
        height: 250px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .key-features .feature h4 {
        font-size: 1.2rem;
    }
}

/* Products Section */
.products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
/* Product Card Hover Effect */
.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Price Container for inline layout */
/* Price row */
.price-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* "Starts from" */
.starts-from {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    background: #f1f5f1;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Main price */
.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

/* Unit */
.price-unit {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-container {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .product-price {
        font-size: 1.4rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(76, 175, 80, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #ddd;
}

.faq-question {
    padding: 20px;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

/* Text center class */
.text-center {
    text-align: center;
}

/* FAQ Modal Styles */
.faq-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: center;
}

.faq-modal {
    background-color: white;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1;
}

.faq-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--dark-color);
}

.faq-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-modal-close:hover {
    color: var(--primary-color);
}

.faq-modal-content {
    padding: 30px;
}

/* Modal FAQ Items */
.modal-faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.modal-faq-item:hover {
    border-color: #ddd;
}

.modal-faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.modal-faq-question:hover {
    background-color: #f0f0f0;
}

.modal-faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
    flex: 1;
    padding-right: 20px;
}

.modal-faq-toggle {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.modal-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.modal-faq-answer p {
    padding: 20px 0;
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.modal-faq-item.active .modal-faq-answer {
    max-height: 500px;
}

.modal-faq-item.active .modal-faq-toggle i {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: #bbb;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-section h4 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #bbb;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 34px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Price unit styling */
.price-unit {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
}

/* Responsive adjustments for FAQ Modal */
@media (max-width: 768px) {
    .faq-modal {
        margin: 10px;
        max-height: 95vh;
    }
    
    .faq-modal-header {
        padding: 20px;
    }
    
    .faq-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-modal-content {
        padding: 20px;
    }
    
    .modal-faq-question {
        padding: 15px;
    }
    
    .modal-faq-question h3 {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        font-size: 28px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .nav-list li {
        margin: 0 0 25px 0;
    }
    
    .nav-actions {
        margin-left: 0;
        flex-direction: column;
        gap: 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* View All Container */
.view-all-container {
    text-align: center;
    margin-top: 60px;
  
}

.view-all-container .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* All Products Page Styles */
.all-products {
    padding: 100px 0 60px;
}

.all-products .section-title {
    margin-bottom: 15px;
}

.all-products .section-subtitle {
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Product Categories Filter */
.product-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 10px 20px;
    background: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* All Products Grid */
.all-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.all-products-grid .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.all-products-grid .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.all-products-grid .product-image {
    height: 200px;
    overflow: hidden;
}

.all-products-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.all-products-grid .product-card:hover .product-image img {
    transform: scale(1.05);
}

.all-products-grid .product-info {
    padding: 20px;
}

.all-products-grid .product-info h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.all-products-grid .product-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.all-products-grid .product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.all-products-grid .price-unit {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
}

.all-products-grid .btn-small {
    width: 100%;
    padding: 12px;
}

/* No Products Message */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-products i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-products h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.no-products p {
    color: var(--text-light);
}

/* Phone Link Styling */
.phone-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-color);
}

.phone-link-large {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 20px;
}

.phone-link-large:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.phone-link-large i {
    margin-right: 10px;
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .all-products {
        padding: 80px 0 40px;
    }
    
    .product-categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .all-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .view-all-container {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .product-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 200px;
        text-align: center;
    }
    
    .all-products-grid {
        grid-template-columns: 1fr;
    }
}


/* Location Section */
.location {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.location-content {
    display: flex;
    gap: 50px;
    align-items: stretch;
    margin-top: 40px;
}

.location-info {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.location-details h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details h3 i {
    font-size: 1.5rem;
}

.location-details p {
    margin-bottom: 25px;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.6;
}

.location-features {
    margin: 30px 0;
}

.location-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: var(--transition);
}

.location-feature:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.location-feature i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.location-feature h4 {
    margin-bottom: 8px;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.location-feature p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.tour-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.tour-link:hover {
    color: #2E7D32;
}

.location-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.location-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-container {
    flex: 1;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.google-map {
    width: 100%;
    height: 100%;
    position: relative;
}

.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design for Location Section */
@media (max-width: 992px) {
    .location-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .location-info {
        padding: 30px;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .location-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .location-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .location {
        padding: 60px 0;
    }
    
    .location-feature {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 25px 20px;
    }
    
    .location-feature i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .location-info {
        padding: 25px 20px;
    }
    
    .location-details h3 {
        font-size: 1.4rem;
    }
    
    .map-container {
        min-height: 250px;
    }
}

/* About Section - Enhanced Styling */
.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.intro-text {
    background: linear-gradient(145deg, #f9fff9, #f0f9f0);
    border-radius: 16px;
    padding: 40px;
    border-left: 5px solid #4CAF50;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* Story Container */
.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.story-column {
    display: flex;
}

.story-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(76, 175, 80, 0.15);
}

.story-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
}

.story-card h3 {
    color: #2E7D32;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: 'Roboto Slab', serif;
}

.story-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Excellence Section */
.excellence-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    margin: 80px 0;
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
    border-radius: 20px;
    padding: 50px;
        background: linear-gradient(145deg, #f9fff9, #f0f9f0);
    border-radius: 16px;
    padding: 40px;
    border-left: 5px solid #4CAF50;
}

.excellence-content h3 {
    color: #2E7D32;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Roboto Slab', serif;

}

.excellence-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.excellence-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.excellence-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.excellence-image:hover img {
    transform: scale(1.05);
}

/* Mission & Vision */
.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 80px 0;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #4CAF50;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 25px;
}

.mission-card h3, .vision-card h3 {
    color: #2E7D32;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mission-card h4, .vision-card h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Roboto Slab', serif;
}

.mission-card p, .vision-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Philosophy Statement */
.philosophy-statement {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.philosophy-statement::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 100 100" preserveAspectRatio="none" opacity="0.1"><path d="M0,0 L100,100 M100,0 L0,100" stroke="white" stroke-width="1"/></svg>');
}

.statement-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.statement-text {
    font-size: 24px;
    font-weight: 500;
    color: white;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    font-family: 'Roboto Slab', serif;
}

/* Join Section */
.join-section {
    background: linear-gradient(145deg, #f0f9f0, #e0f2e0);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 80px;
}

.join-content h3 {
    color: #2E7D32;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Roboto Slab', serif;
}

.join-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.join-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.join-cta .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-container,
    .excellence-section,
    .mission-vision-container {
        gap: 30px;
    }
    
    .excellence-section {
        padding: 40px;
    }
    
    .philosophy-statement {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .story-container,
    .excellence-section,
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-text {
        padding: 30px;
    }
    
    .story-card,
    .mission-card,
    .vision-card {
        padding: 30px;
    }
    
    .excellence-section {
        padding: 30px;
        margin: 50px 0;
    }
    
    .philosophy-statement {
        padding: 30px;
        margin: 50px 0;
    }
    
    .statement-text {
        font-size: 20px;
    }
    
    .join-section {
        padding: 40px 30px;
        margin-top: 50px;
    }
    
    .join-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .join-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .story-card,
    .mission-card,
    .vision-card {
        padding: 25px;
    }
    
    .story-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .statement-text {
        font-size: 18px;
    }
    
    .join-content h3 {
        font-size: 26px;
    }
    
    .join-content p {
        font-size: 16px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-intro,
.story-card,
.excellence-section,
.mission-card,
.vision-card,
.philosophy-statement,
.join-section {
    animation: fadeIn 0.8s ease-out;
}