
/* Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,700&family=Montserrat:wght@700;800&display=swap');


/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8DC63F;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
}

.navbar-brand img {
    height: 45px;
    transition: all 0.3s ease;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler .fas {
    font-size: 24px;
    transition: all 0.3s ease;
    color: #333;
}

.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

.navbar-nav {
    align-items: center;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 8px 30px !important;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
}

.nav-link i {
    display: none;
    margin-right: 8px;
    font-size: 0.9em;
}

.nav-link:hover {
    color: #8DC63F !important;
    background-color: rgba(141, 198, 63, 0.1);
}

.nav-link.active {
    color: #fff !important;
    background-color: #8DC63F;
}

.language-dropdown {
    margin-left: 15px;
}

.language-dropdown .btn {
    border: none;
    padding: 8px 16px;
    background: rgba(141, 198, 63, 0.1);
    transition: all 0.3s ease;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.language-dropdown .btn:hover {
    background: rgba(141, 198, 63, 0.2);
}

.language-dropdown img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    animation: fadeIn 0.3s ease;
    padding: 8px;
    min-width: 180px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background-color: rgba(141, 198, 63, 0.1);
    transform: translateX(5px);
}

.dropdown-item img {
    margin-right: 10px;
}

/* Video Background Styles */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
    font-weight: 800;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
    max-width: 900px;
}

.hero-content h1 .highlight {
    color: #ffffff;
    position: relative;
    display: inline-block;
    /* font-family: 'Playfair Display', serif; */
    font-style: bold;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 15px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-content h1 .organic {
    color: #8DC63F;
    position: relative;
    display: inline-block;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease;
    animation-delay: 0.5s;
}

.hero-btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn i {
    margin-right: 10px;
    font-size: 1.1em;
}

.hero-btn.primary {
    background: #8DC63F;
    color: white;
}

.hero-btn.primary:hover {
    background: #7ab32f;
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Overlay for better text readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    cursor: pointer;
    z-index: 1;
    text-align: center;
    animation: bounceUpDown 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounceUpDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -20px);
    }
    60% {
        transform: translate(-50%, -10px);
    }
}

/* About Section Styles */
.about-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: #8DC63F;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 800;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.section-title .highlight {
    color: #8DC63F;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8DC63F;
    opacity: 0.3;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-text p {
    margin-bottom: 1.5rem;
}

.stats-container {
    margin: 4rem 0;
    padding: 2rem 0;
}

.stat-item {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(141, 198, 63, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(141, 198, 63, 0.05), rgba(141, 198, 63, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(141, 198, 63, 0.15);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #8DC63F;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.stat-text {
    display: block;
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-image-container {
    margin-top: 5rem;
    position: relative;
    padding: 0 15px;
}

.image-grid {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    margin: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    background-color: #f8f8f8;
    border: 1px solid rgba(141, 198, 63, 0.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #8DC63F;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(141, 198, 63, 0.2) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 15px;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(141, 198, 63, 0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Magnific Popup Customization */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    backface-visibility: hidden;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

/* Factory Section Styles */
.factory-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: url('../images/gallaryimages/img1.avif') no-repeat center center;
    background-size: cover;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.factory-content {
    width: 100%;
    position: relative;
    padding: 120px 0;
    color: #fff;
}

.factory-overlay {
    position: absolute;
        top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 58, 0, 0.9) 0%, rgba(0, 58, 0, 0.8) 100%);
    z-index: 0;
}

.factory-header {
    position: relative;
    margin-bottom: 40px;
}

.factory-section .section-subtitle {
    color: #8DC63F;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.factory-section .section-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.factory-section .section-title .highlight {
    color: #8DC63F;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.factory-separator {
    width: 150px;
    height: 5px;
    background: #8DC63F;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 3px;
}

.factory-separator::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #8DC63F;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 2px;
}

.factory-description {
    max-width: 900px;
    margin: 0 auto 60px;
}

.factory-description p {
        font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.factory-features {
    margin-bottom: 60px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 25px;
    transition: all 0.4s ease;
    height: 100%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    background: rgba(141, 198, 63, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(141, 198, 63, 0.3);
}

.feature-icon {
        font-size: 2.5rem;
    color: #8DC63F;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(141, 198, 63, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.feature-item:hover .feature-icon {
    animation: pulse 1.5s infinite;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.feature-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.factory-button {
    margin-top: 20px;
}

.btn-factory {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: #8DC63F;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid #8DC63F;
}

.btn-factory span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-factory i {
    margin-left: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

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

.btn-factory:hover {
    background: #78ab2a;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

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

.btn-factory:hover i {
    transform: translateX(5px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 120px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.gallery-header {
    margin-bottom: 50px;
}

.gallery-separator {
    width: 120px;
    height: 4px;
    background: #8DC63F;
    margin: 20px auto 30px;
    position: relative;
    border-radius: 2px;
}

.gallery-separator::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #8DC63F;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 1px;
}

.gallery-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.gallery-filter {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: none;
    border-radius: 30px;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    font-size: 0.95rem;
    border: 1px solid #eee;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #8DC63F;
    transition: all 0.3s ease;
    z-index: -1;
}

.filter-btn:hover, .filter-btn.active {
    color: #fff;
    border-color: #8DC63F;
}

.filter-btn:hover::before, .filter-btn.active::before {
    width: 100%;
}

.gallery-container {
    padding: 15px 0;
}

.gallery-column {
    padding: 15px;
}

.gallery-item-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 15px;
}

.gallery-item-wrapper:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 15px;
}

.gallery-item-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2.5rem;
    transform: scale(0);
    transition: all 0.3s ease;
}

.gallery-item-wrapper:hover .gallery-overlay i {
    transform: scale(1);
}

/* Plant Extract Section Styles */
.extract-section {
    position: relative;
    padding: 120px 0;
    background-color: #2B4A0F;
    color: #fff;
    overflow: hidden;
}

.extract-content {
    position: relative;
    z-index: 2;
}

.extract-header {
    margin-bottom: 30px;
}

.extract-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    position: relative;
}

.extract-title .highlight {
    color: #8DC63F;
    font-weight: 800;
    display: inline-block;
    position: relative;
}

.extract-title .percentage {
    display: block;
    font-size: 3rem;
    line-height: 1;
    margin-top: 10px;
    color: #fff;
}

.extract-description {
    max-width: 800px;
    margin: 0 auto;
}

.extract-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Partners Logo Slider Styles */
.partners-section {
    padding: 80px 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partner-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.partner-slider::before, 
.partner-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partner-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}

.partner-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}

.partner-slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partner-slide {
    width: 250px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-slide img {
    max-width: 100%;
    max-height: 80px;
    transition: all 0.3s ease;
}

.partner-slide:hover img {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6));
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
}

.contact-info-wrapper {
    margin-bottom: 40px;
}

.contact-info-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8BC249, #5E8E3E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card .icon-wrapper i {
    font-size: 24px;
    color: white;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 5px;
}

.contact-form-wrapper {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.form-floating .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 20px;
    height: calc(3.5rem + 2px);
    font-size: 16px;
}

.form-floating textarea.form-control {
    height: auto;
}

.form-floating label {
    padding: 1rem 1.25rem;
}

.form-check-label {
    color: #666;
    font-size: 14px;
}

.form-check-label .privacy-link {
    color: #8BC249;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-check-label .privacy-link:hover {
    color: #5E8E3E;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8BC249, #5E8E3E);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.btn-submit span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.btn-submit i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5E8E3E, #8BC249);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(94, 142, 62, 0.3);
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.contact-map-wrapper {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-header {
    text-align: center;
    padding: 30px;
    background-color: #f5f5f5;
}

.map-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.map-header p {
    color: #666;
    margin-bottom: 0;
}

.map-container {
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    border: none;
    height: 100%;
    width: 100%;
}

.social-media-wrapper {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-media-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8BC249, #5E8E3E);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(94, 142, 62, 0.3);
    background: linear-gradient(135deg, #5E8E3E, #8BC249);
}

@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-card .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-card .icon-wrapper i {
        font-size: 20px;
    }
    
    .form-header h2, .map-header h2 {
        font-size: 24px;
    }
    
    .btn-submit {
        padding: 10px 25px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .form-header, .map-header {
        margin-bottom: 20px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .social-media-wrapper {
        padding: 20px;
    }
}

/* Footer Styles */
.footer-section {
    padding: 20px 0;
    background: #333;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
}

.privacy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.privacy-link:hover {
    color: #8DC63F;
}

.privacy-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8DC63F;
    transition: all 0.3s ease;
}

.privacy-link:hover::after {
    width: 100%;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0.5rem 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-nav {
        margin: 0;
        padding: 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        display: block;
        color: #333;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
    }
} 

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #8DC63F;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top i {
    font-size: 1.2rem;
}

.back-to-top:hover {
    background: #2B4A0F;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.back-to-top:active {
    transform: translateY(0);
}