Css 


:root {
    /* Updated to lighter, more vibrant color palette */
    --primary-light: #2d7d5f;
    --primary-dark: #4fa878;
    --accent-light: #e8d5b7;
    --accent-gold: #f0d997;
    --text-light: #ffffff;
    --text-muted: #d4d4d4;
    --bg-light: #f8f8f8;
    --bg-medium: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Navigation styling - light background with green and gold accents */
.navbar {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-light);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.navbar-brand:hover img {
    filter: brightness(1.05);
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-dark) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-dark);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero section with lighter gradient */
.hero-section {
    background: linear-gradient(135deg, #e8f5f0 0%, #f0f9f7 100%);
    padding: 120px 0 80px;
    margin-top: 60px;
    border-bottom: 3px solid var(--primary-light);
    min-height: 100vh;
}

.hero-content {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
}

.hero-text {
    padding: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(79, 168, 120, 0.15));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

/* Button styling - light and vibrant */
.btn-gold {
    background-color: var(--primary-dark);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 168, 120, 0.3);
    color: #fff;
}

.btn-outline-gold {
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    background: transparent;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

/* Trust badges section */
.trust-badges-section {
    background: var(--primary-light);
    padding: 60px 0;
    border-bottom: 3px solid var(--primary-dark);
}

.badge-item {
    padding: 30px 20px;
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.badge-item p {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.05rem;
    margin: 0;
}

/* Section titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* About section with lighter cards */
.about-section {
    background: var(--bg-light);
    padding: 100px 0;
    border-bottom: 3px solid var(--primary-light);
}

.about-subtitle {
    font-size: 1.8rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.about-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.about-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-dark);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.about-card:hover {
    background: #fff;
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(79, 168, 120, 0.15);
}

.card-title {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.about-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.about-list {
    list-style: none;
    color: #666;
    line-height: 2;
}

.about-list li::before {
    content: "✓ ";
    color: var(--primary-dark);
    font-weight: bold;
    margin-right: 10px;
}

/* Products section */
.products-section {
    background: var(--bg-medium);
    padding: 100px 0;
    border-bottom: 3px solid var(--primary-light);
}

.product-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    border-color: var(--primary-dark);
    box-shadow: 0 12px 30px rgba(79, 168, 120, 0.2);
    transform: translateY(-10px);
}

.product-header {
    /*background: linear-gradient(135deg, #e8f5f0 0%, #d4ede5 100%);
    height: 120px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-dark);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.product-highlight {
    color: var(--primary-dark);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.product-features span {
    color: #666;
    font-size: 0.95rem;
}

.product-pricing {
    display: flex;
    gap: 12px;
    margin: 1.5rem 0;
    align-items: center;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95rem;
}

.price-sale {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Callout banner */
.callout-banner {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 3px solid var(--primary-dark);
}

.callout-banner h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.callout-banner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact section */
.contact-section {
    background: var(--bg-light);
    padding: 100px 0;
    border-bottom: 3px solid var(--primary-light);
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-item strong {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-item a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-item a:hover {
    color: #e8804d;
    text-decoration: underline;
}

/* Enhanced social links section with prominent Instagram link */
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-dark);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(79, 168, 120, 0.3);
    background: var(--primary-light);
}

.social-link i {
    font-size: 1.2rem;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.form-control {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    color: #333;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #fff;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(79, 168, 120, 0.1);
    color: #333;
}

.form-control::placeholder {
    color: #999;
}

/* Map section */
.map-section {
    background: var(--bg-light);
    padding: 60px 0;
    border-bottom: 3px solid var(--primary-light);
}

.map-section h3 {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Footer */
.footer {
    background: #fff;
    color: #666;
    padding: 50px 0 20px;
    border-top: 3px solid var(--primary-light);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.footer h5 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-dark);
}

.footer-social {
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.footer-social:hover {
    color: #e8804d;
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1.4rem;
    }

    .callout-banner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-gold, .btn-outline-gold {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link {
        margin: 0;
        padding: 0.5rem 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .callout-banner h2 {
        font-size: 1.6rem;
    }

    .contact-info, .contact-form {
        margin-bottom: 2rem;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .badge-item p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .btn-gold, .btn-outline-gold {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}