/* Styles for About Us list */
.about-list {
    margin-left: 0;
    padding-left: 1.2rem;
}

.about-list li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: none;
}

.about-list li:before {
    content: "•";
    color: #6a994e; /* Using brand green color */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
}

/* Highlighted tagline styling */
.tagline-highlight {
    font-size: 1.2rem;
    color: #6a994e;
    padding: 15px 0;
    border-top: 1px solid rgba(106, 153, 78, 0.3); 
    border-bottom: 1px solid rgba(106, 153, 78, 0.3);
    text-align: center;
    font-weight: 500;
    margin-top: 2rem !important;
    font-style: italic;
}

/* Beautiful Social Icons */
.social-icons-container {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.pinterest {
    background: #bd081c;
}

/* Tighter contact information spacing */
.contact-items-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Creative Map Styling */
.contact-map-container {
    margin-top: 1.5rem;
}

.contact-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.map-visual {
    position: relative;
    width: 100%;
    height: 120px;
    background: #e9f1e4; /* Light green background */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(106, 153, 78, 0.05) 20px, rgba(106, 153, 78, 0.05) 40px),
               repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(106, 153, 78, 0.05) 20px, rgba(106, 153, 78, 0.05) 40px);
}

.map-pin {
    position: relative;
    z-index: 2;
    color: #6a994e;
    font-size: 2rem;
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
}

.map-pulse {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(106, 153, 78, 0.3);
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(0.8); opacity: 0; }
}

.map-address {
    position: absolute;
    bottom: 10px;
    background: white;
    border-radius: 20px;
    padding: 4px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.map-link {
    display: inline-block;
    color: #6a994e;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #6a994e;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.map-link:hover {
    background: #6a994e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(106, 153, 78, 0.3);
}

.map-link i {
    margin-right: 6px;
}

/* Services Page Styling */
.services-hero-section {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 2rem;
}

.services-hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.services-hero-content {
    text-align: center;
    color: white;
    padding: 1rem;
    z-index: 1;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    opacity: 0.9;
}

.service-card {
    position: relative;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.service-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 153, 78, 0.3) 0%, rgba(106, 153, 78, 0.1) 100%);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 3rem;
    position: relative;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(106, 153, 78, 0.1);
    line-height: 1;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-tagline {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #6a994e;
}

.service-description {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #6a994e;
    font-size: 1rem;
}

.service-btn {
    margin-top: 1.5rem;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(106, 153, 78, 0.2);
}

.services-cta {
    position: relative;
}

.services-cta-inner {
    background: linear-gradient(135deg, #6a994e 0%, #386641 100%);
    color: white;
    box-shadow: 0 15px 30px rgba(106, 153, 78, 0.2);
}

/* Homepage Services Preview Section */
.services-preview {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/* Updated Products Section Styling */
.products-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.product-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.product-list li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.product-ethics {
    font-style: italic;
    color: #666;
    border-left: 3px solid #6a994e;
    padding-left: 15px;
}

/* Product image containers - overrides parallax.css */
.product-image-container {
    aspect-ratio: 1/1;
    padding-top: 0 !important; /* Override the 75% padding from parallax.css */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    height: auto;
}

/* Product gallery images */
.product-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Button containers to prevent layout bounce */
.product-button-container,
.services-button-container {
    padding-bottom: 10px; /* Prevents layout bounce from hover effect */
}

/* Call to Action Section Styling */
.cta-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6a994e, #a7c957, #6a994e);
}

.cta-section .lead {
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
}

.cta-features {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cta-features p {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: #333;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.cta-features .icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(106, 153, 78, 0.1);
    border-radius: 50%;
    margin-right: 12px;
}

.cta-features i {
    font-size: 1.2rem;
    color: #6a994e;
}

.cta-buttons {
    margin-top: 2rem;
    padding-bottom: 10px; /* Prevents layout bounce from hover effect */
}

/* Custom Buttons for CTA Section */
.btn-custom {
    display: inline-block;
    min-width: 180px;
    padding: 12px 24px;
    text-align: center;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-custom span {
    position: relative;
    z-index: 2;
}

.btn-custom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: width 0.4s ease;
    z-index: 1;
}

.btn-custom:hover:before {
    width: 100%;
}

.btn-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Primary Custom Button - Green */
.btn-primary-custom {
    background: linear-gradient(45deg, #6a994e, #a7c957);
    color: white;
    border: none;
}

.btn-primary-custom:hover {
    color: white;
    background: linear-gradient(45deg, #5c8744, #96b84c);
}

/* Secondary Custom Button - Outlined */
.btn-secondary-custom {
    background: white;
    color: #6a994e;
    border: 2px solid #6a994e;
}

.btn-secondary-custom:hover {
    color: #5c8744;
    border-color: #5c8744;
}

/* Tertiary Custom Button - Special */
.btn-tertiary-custom {
    background: linear-gradient(45deg, #386641, #6a994e);
    color: white;
    border: none;
}

.btn-tertiary-custom:hover {
    color: white;
    background: linear-gradient(45deg, #2f5735, #5c8744);
}

/* Small Custom Buttons */
.btn-custom.btn-sm {
    min-width: auto;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Community Page Styling */
.community-coming-soon {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-icon {
    font-size: 5rem;
    color: #6a994e;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.community-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.community-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
}

.community-features {
    margin: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.community-feature {
    flex: 0 0 250px;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.community-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.community-feature-icon {
    font-size: 2rem;
    color: #6a994e;
    margin-bottom: 1rem;
}

.notify-form {
    max-width: 500px;
    margin: 2rem auto;
}

.notify-input-group {
    display: flex;
    gap: 0.5rem;
}

.notify-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.notify-input:focus {
    border-color: #6a994e;
    box-shadow: 0 0 0 3px rgba(106, 153, 78, 0.2);
}

.notify-btn {
    padding: 0.75rem 1.5rem;
    background: #6a994e;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background: #386641;
    transform: translateY(-2px);
}

.service-preview-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-preview-img {
    height: 180px;
    overflow: hidden;
}

.service-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-preview-card:hover .service-preview-img img {
    transform: scale(1.1);
}

.service-preview-body {
    padding: 1.5rem;
}

.service-preview-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.service-preview-text {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-preview-icon {
    width: 50px;
    height: 50px;
    background: #6a994e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.services-view-all {
    margin-top: 3rem;
    text-align: center;
}

/* FAQ Page Styling */
.faq-hero-section {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 2rem;
}

.faq-hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.faq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.faq-hero-content {
    text-align: center;
    color: white;
    padding: 1rem;
    z-index: 1;
}

.faq-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    opacity: 0.9;
}

.faq-nav {
    margin-bottom: 2rem;
}

.faq-nav .nav-link {
    color: #495057;
    border-radius: 20px;
    padding: 8px 16px;
    margin: 0 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-nav .nav-link:hover {
    background-color: rgba(106, 153, 78, 0.1);
}

.faq-nav .nav-link.active {
    background-color: #6a994e;
    color: white;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #6a994e;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(106, 153, 78, 0.25);
    border-color: #6a994e;
}

.accordion-button::after {
    filter: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(10);
}

.accordion-item {
    border: 1px solid rgba(0,0,0,.125);
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    border-radius: 8px;
    font-weight: 500;
}

.still-questions {
    background: linear-gradient(135deg, #e9f1e4 0%, #d7e6cd 100%);
    border-left: 4px solid #6a994e;
}

.contact-item {
    margin: 0;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    width: 16px;
    text-align: center;
    margin-right: 10px;
    font-size: 0.9rem;
    padding-top: 3px;
    color: #6a994e;
}

.contact-info h3 {
    margin-bottom: 0.6rem !important;
}
