@font-face {
    font-family: "Bodrum";
    src: url(src/BodrumSweet-14Regular.ttf);
}

body{
    font-family: "Bodrum";
}

/* ////////////////////////////////////////////////// */

.slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(to bottom, #ffffff 0%, #FFDEB1 100%);
}

.slide-item.slide-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-content-wrapper {
    flex: 1;
    z-index: 2;
    max-width: 600px;
}

.slide-item.slide-active .slide-content-wrapper {
    animation: slideContentFromRight 0.8s ease-out;
}

@keyframes slideContentFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slide-item.slide-active .slide-image-wrapper {
    animation: slideImageFromRight 0.8s ease-out 0.2s backwards;
}

@keyframes slideImageFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-description-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.slide-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c17f3a 0%, #d89b4d 100%);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 127, 58, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(193, 127, 58, 0.4);
    background: linear-gradient(135deg, #d89b4d 0%, #c17f3a 100%);
}

.slide-cta-btn::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.slide-cta-btn:hover::after {
    transform: translateX(5px);
}

.slide-product-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: transform 0.1s ease-out;
}

.slider-nav-controls {
    position: absolute;
    bottom: 50px;
    left: 8%;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot-indicator {
    width: 40px;
    height: 8px;
    background: rgba(193, 127, 58, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot-indicator.dot-active {
    background: #c17f3a;
    width: 60px;
}

.slider-dot-indicator:hover {
    background: rgba(193, 127, 58, 0.6);
}

.slider-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #c17f3a;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-arrow-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.slider-arrow-left {
    left: 30px;
}

.slider-arrow-right {
    right: 30px;
}

@media (max-width: 768px) {
    .slide-item {
        flex-direction: column;
        justify-content: center;
        padding: 0 5%;
    }

    .slide-main-heading {
        font-size: 2.5rem;
    }

    .slide-description-text {
        font-size: 1rem;
    }

    .slide-content-wrapper {
        text-align: center;
    }

    .slide-image-wrapper {
        margin-top: 2rem;
    }

    .slide-product-img {
        max-width: 400px;
    }

    .slider-nav-controls {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ////////////////////////////////////////////////// */

.navbar-brand img {
    height: 60px;
}
      
.navbar-nav .nav-link {
    color: #6c757d !important;
    font-weight: 500;
    margin-right: 1rem;
    transition: color 0.3s ease;
}
            
.navbar-nav .nav-link:hover {
    color: #B26900 !important;
}
            
.navbar-nav .nav-link.active {
    color: #B26900 !important;
}
            
.btn-quote {
    background-color: #A25E00;
    border-color: #A25E00;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
            
.btn-quote:hover {
    background-color: #B26900;
    border-color: #B26900;
    color: white;
}
            
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
}
            
.navbar-brand {
    font-weight: bold;
    color: #2c3e50 !important;
}

.stats-section {
    background: linear-gradient(135deg, #027900 0%, #027900 100%);
    padding: 30px;
}
        
.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}
        
.stat-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}
        
.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.stat-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.stat-content p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 991px) {
    .stat-content h2 {
        font-size: 2rem;
    }
    
    .stat-content p {
        font-size: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .stat-item {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .stat-content h2 {
        font-size: 1.8rem;
    }
}

/* ////////////////////////////////////////////////// */

.coconut-hero-section {
    background-color: #faf8f5;
    padding: 80px 0;
}

.coconut-hero-section .row > div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coconut-hero-image {
    max-width: 1000px;
    width: 100%;
    height: auto;
    display: block;
}

.coconut-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.coconut-hero-description {
    font-size: 1.1rem;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.coconut-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b8860b;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.coconut-hero-cta:hover {
    color: #8b6914;
    gap: 12px;
}

.coconut-hero-cta::after {
    content: '→';
    font-size: 1.2rem;
}

/* Mobile responsive */
@media (max-width: 767.98px) {
    .coconut-hero-section {
        padding: 40px 0;
    }

    .coconut-hero-title {
        font-size: 2.5rem;
    }

    .coconut-hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .coconut-hero-title {
        font-size: 2rem;
    }
}

/* Tablet and larger */
@media (min-width: 768px) and (max-width: 991.98px) {
    .coconut-hero-title {
        font-size: 3rem;
    }
    
    .coconut-hero-image {
        max-width: 400px;
    }
}

/* ////////////////////////////////////////////////// */

.products-section {
    background-color: #FFEFD8;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-image: url('src/tropical-leaves-colored-background.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: 1;
}

.products-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background-image: url('src/tr-leaves.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 1;
}

.products-bg-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 200px;
    background-image: url('src/coco-bottom-left.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 1;
}

.products-bg-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 350px;
    height: 200px;
    background-image: url('src/bottom-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 1;
}

.products-bg-middle-left {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    background-image: url('src/mid-left.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    z-index: 1;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.products-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.products-section-description {
    font-size: 1.1rem;
    color: #6b6b6b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.product-card {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.product-image-wrapper {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1rem;
    color: #6b6b6b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 50px;
}

.btn-view-product {
    background-color: #b8860b;
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-view-product:hover {
    background-color: #8b6914;
    color: white;
}

@media (max-width: 1199px) {
    .products-bg-middle-left {
        display: none;
    }
    
    .products-section::before,
    .products-section::after {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 991px) {
    .products-section::after {
        display: none;
    }
    
    .products-bg-bottom-right {
        width: 250px;
        height: 150px;
    }
    
    .products-section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .products-section::before,
    .products-section::after,
    .products-bg-bottom-left,
    .products-bg-bottom-right,
    .products-bg-middle-left {
        display: none;
    }
    
    .products-section {
        padding: 40px 0;
    }
    
    .products-section-title {
        font-size: 2rem;
    }
    
    .products-section-description {
        font-size: 1rem;
    }
    
    .product-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .products-section-title {
        font-size: 1.75rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
}

/* ////////////////////////////////////////////////// */

.sustainability-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sustainability-leaf-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('src/leaf-top-right-sust.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 1;
    opacity: 0.3;
}

.sections-divider-leaf {
    position: absolute;
    left: 0;
    width: 250px;
    height: 400px;
    background-image: url('src/leaf-middle-left-sust.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    z-index: 10;
    margin-top: -200px;
    opacity: 0.3;
}

.sustainability-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #6b6b6b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.sustainability-card {
    text-align: center;
    margin-bottom: 30px;
}

.sustainability-icon-wrapper {
    background: linear-gradient(180deg, #C8E6A0 0%, #97DC7C 100%);
    border-radius: 30px;
    width: 200px;
    height: 220px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.sustainability-icon-wrapper:hover {
    transform: translateY(-10px);
}

.sustainability-icon-wrapper img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.sustainability-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
}

.worldwide-section {
    background-color: #FFEFD8;
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

.worldwide-section .container {
    position: relative;
    z-index: 2;
}

.map-wrapper {
    text-align: center;
    margin-top: 40px;
}

.world-map {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 900px;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .sustainability-icon-wrapper {
        width: 170px;
        height: 190px;
    }
    
    .sustainability-icon-wrapper img {
        width: 80px;
        height: 80px;
    }
    
    .sustainability-leaf-top {
        width: 200px;
        height: 200px;
    }
    
    .sections-divider-leaf {
        width: 180px;
        height: 300px;
        margin-top: -150px;
    }
}

@media (max-width: 767px) {
    .sustainability-section,
    .worldwide-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .sustainability-icon-wrapper {
        width: 160px;
        height: 180px;
    }
    
    .sustainability-icon-wrapper img {
        width: 70px;
        height: 70px;
    }
    
    .sustainability-label {
        font-size: 1.1rem;
    }
    
    .sustainability-leaf-top,
    .sections-divider-leaf {
        display: none;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .sustainability-icon-wrapper {
        width: 140px;
        height: 160px;
    }
    
    .sustainability-icon-wrapper img {
        width: 60px;
        height: 60px;
    }
}

/* ////////////////////////////////////////////////// */

.partner-cta-section {
    background-color: #027900;
    padding: 40px 0 30px;
    position: relative;
    overflow: visible;
}

.partner-cta-leaves-top {
    position: absolute;
    top: -200px;
    right: 0;
    width: 400px;
    height: 300px;
    background-image: url('src/leaves-top-cta.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 1;
}

.partner-cta-section .container {
    position: relative;
    z-index: 2;
}

.partner-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.partner-cta-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-partner-quote {
    background-color: #ffffff;
    color: #027900;
    border: none;
    padding: 14px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-partner-quote:hover {
    background-color: #7cb342;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.partner-cta-image-wrapper {
    text-align: right;
    position: relative;
}

.partner-cta-image {
    position: absolute;
    top: -120px;
    right: 0;
    max-width: 80%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    z-index: 3;
}

.footer-section {
    background-color: #ffffff;
    padding: 60px 0 200px;
    position: relative;
    overflow: visible;
}

.footer-section .container {
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-brand-description {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6b6b6b;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7cb342;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-contact li {
    color: #6b6b6b;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-icon.whatsapp {
    background-color: #7cb342;
    color: #ffffff;
}

.social-icon.facebook {
    background-color: #7cb342;
    color: #ffffff;
}

.social-icon.linkedin {
    background-color: #7cb342;
    color: #ffffff;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-bottom-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 0;
}

.footer-bottom-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.3;
}

@media (max-width: 991px) {
    .partner-cta-title {
        font-size: 2.5rem;
    }
    
    .partner-cta-description {
        font-size: 1.1rem;
    }
    
    .partner-cta-leaves-top {
        width: 300px;
        height: 200px;
        top: -150px;
    }
    
    .partner-cta-image {
        top: -80px;
        max-width: 70%;
        max-height: 220px;
    }
}

@media (max-width: 767px) {
    .partner-cta-section {
        padding: 30px 0 20px;
        text-align: center;
    }
    
    .partner-cta-title {
        font-size: 2rem;
    }
    
    .partner-cta-description {
        font-size: 1rem;
    }
    
    .partner-cta-leaves-top {
        display: none;
    }
    
    .partner-cta-image {
        position: static;
        top: 0;
        max-width: 60%;
        max-height: 200px;
        margin: 0 auto;
        display: block;
    }
    
    .footer-section {
        padding: 40px 0 150px;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-top: 20px;
    }
    
    .footer-bottom-logo {
        height: 100px;
    }
    
    .footer-bottom-logo-img {
        opacity: 0.4;
    }
}

@media (max-width: 575px) {
    .partner-cta-title {
        font-size: 1.75rem;
    }
    
    .btn-partner-quote {
        width: 100%;
        text-align: center;
    }
    
    .footer-section {
        padding-bottom: 120px;
    }
    
    .footer-bottom-logo {
        height: 80px;
    }
    
    .footer-brand-description {
        color: #222222;
    }
    
    .footer-bottom-logo-img {
        opacity: 0.5;
    }
}


/* ///////// ALL PRODUCTS PAGE ///////////////////////// */

.all-products-section {
    background-color: #ffffff;
    background-image: url('src/all-products-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    min-height: 100vh;
}

.products-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.products-page-subtitle {
    font-size: 1.1rem;
    color: #6b6b6b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    color: #2d2d2d;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #FFEFD8;
    background-color: #FFEFD8;
}

.filter-btn.active {
    background-color: #FFEFD8;
    border-color: #FFEFD8;
    color: #2d2d2d;
}

.products-grid {
    margin-top: 40px;
}

.product-item {
    margin-bottom: 30px;
}

.product-box {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-box-image {
    background-color: #fafafa;
    padding: 40px 20px;
    text-align: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-box-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.product-box-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-box-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.product-box-description {
    font-size: 0.95rem;
    color: #6b6b6b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-box-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.product-box-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d2d;
}

.product-box-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-product-bag {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    background-color: #ffffff;
    color: #6b6b6b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product-bag:hover {
    border-color: #7cb342;
    background-color: #7cb342;
    color: #ffffff;
}

.btn-product-quote {
    background-color: #027900;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-product-quote:hover {
    background-color: #7cb342;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 121, 0, 0.3);
}

@media (max-width: 991px) {
    .products-page-title {
        font-size: 2.5rem;
    }
    
    .products-page-subtitle {
        font-size: 1rem;
    }
    
    .product-box-image {
        min-height: 240px;
    }
    
    .product-box-image img {
        max-height: 180px;
    }
}

@media (max-width: 767px) {
    .all-products-section {
        padding: 40px 0;
    }
    
    .products-page-title {
        font-size: 2rem;
    }
    
    .products-page-header {
        margin-bottom: 30px;
    }
    
    .products-filter {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .product-box-image {
        min-height: 220px;
        padding: 30px 20px;
    }
    
    .product-box-image img {
        max-height: 160px;
    }
    
    .product-box-content {
        padding: 20px;
    }
    
    .product-box-title {
        font-size: 1.2rem;
    }
    
    .product-box-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-box-actions {
        width: 100%;
    }
    
    .btn-product-quote {
        flex: 1;
    }
}

@media (max-width: 575px) {
    .products-page-title {
        font-size: 1.75rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}



/* ////////////////////////////////////////////////// */



/* Contact Section Styles */
.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
    position: relative;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    color: #7a7a7a;
    font-size: 1rem;
    margin-bottom: 3.5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-card {
    background: #FFF8EE;
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-description {
    color: #7a7a7a;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    border: none;
    background-color: #fff;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.15);
}

.form-control::placeholder {
    color: #b5b5b5;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.btn-send {
    background-color: #8B6914;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.btn-send:hover {
    background-color: #6d5410;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.green-icon {
    background-color: transparent;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.info-content p {
    color: #7a7a7a;
    margin: 0;
    font-size: 0.95rem;
}

.business-hours {
    background-color: rgba(139, 195, 74, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 2.5rem;
    text-align: center;
}

.business-hours p {
    margin: 0;
    color: #7a7a7a;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .contact-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.85rem;
    }

    .contact-card {
        padding: 1.8rem;
    }

    .contact-card h3 {
        font-size: 1.4rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon svg {
        width: 24px;
        height: 24px;
    }
}


/* ////////////////////////////////////////////////// */
/* ABOUT US PAGE STYLES */

.about-hero-section {
    background-color: #faf8f5;
    padding: 80px 0;
    position: relative;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: #027900;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-hero-description {
    font-size: 1.1rem;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-hero-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.mission-vision-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.mission-card {
    background-color: #FFEFD8;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #C8E6A0 0%, #97DC7C 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.mission-description {
    font-size: 1rem;
    color: #6b6b6b;
    line-height: 1.8;
    margin: 0;
}

.values-section {
    background-color: #FFEFD8;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.values-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('src/leaf-top-right-sust.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 1;
    opacity: 0.3;
}

.values-section .container {
    position: relative;
    z-index: 2;
}

.value-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(180deg, #C8E6A0 0%, #97DC7C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.1);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 0.95rem;
    color: #6b6b6b;
    line-height: 1.6;
    margin: 0;
}

.journey-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.journey-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #027900, #7cb342);
    transform: translateX(-50%);
}

.journey-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.journey-item:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-year {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #027900 0%, #7cb342 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(2, 121, 0, 0.3);
}

.journey-content {
    flex: 1;
    background-color: #FFEFD8;
    border-radius: 15px;
    padding: 30px;
    margin: 0 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.journey-item:nth-child(odd) .journey-content {
    margin-left: 60px;
}

.journey-item:nth-child(even) .journey-content {
    margin-right: 60px;
}

.journey-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0.75rem;
}

.journey-description {
    font-size: 1rem;
    color: #6b6b6b;
    line-height: 1.7;
    margin: 0;
}

.why-choose-section {
    background-color: #faf8f5;
    padding: 80px 0;
}

.why-choose-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 2.5rem;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-choose-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #027900 0%, #7cb342 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-choose-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.why-choose-content p {
    font-size: 1rem;
    color: #6b6b6b;
    line-height: 1.6;
    margin: 0;
}

.why-choose-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles for About Us Page */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.3rem;
    }

    .mission-title {
        font-size: 1.75rem;
    }

    .journey-timeline::before {
        left: 60px;
    }

    .journey-item {
        flex-direction: row !important;
    }

    .journey-year {
        width: 100px;
        height: 100px;
        font-size: 1.3rem;
    }

    .journey-content {
        margin-left: 30px !important;
        margin-right: 0 !important;
    }

    .why-choose-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .about-hero-section,
    .mission-vision-section,
    .values-section,
    .journey-section,
    .why-choose-section {
        padding: 40px 0;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    .mission-card {
        padding: 30px;
        margin-bottom: 30px;
    }

    .mission-icon {
        width: 70px;
        height: 70px;
    }

    .mission-title {
        font-size: 1.5rem;
    }

    .values-bg-decoration {
        display: none;
    }

    .value-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .value-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .journey-timeline::before {
        left: 50px;
    }

    .journey-year {
        width: 80px;
        height: 80px;
        font-size: 1.1rem;
    }

    .journey-content {
        padding: 20px;
        margin-left: 20px !important;
    }

    .journey-title {
        font-size: 1.3rem;
    }

    .why-choose-title {
        font-size: 2rem;
    }

    .why-choose-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .why-choose-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .about-hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .mission-card {
        padding: 25px;
    }

    .value-card {
        padding: 25px;
    }

    .journey-year {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }

    .journey-timeline::before {
        left: 35px;
    }

    .journey-content {
        margin-left: 15px !important;
        padding: 18px;
    }

    .why-choose-title {
        font-size: 1.75rem;
    }
}

/* ////////////////////////////////////////////////// */
/* LANGUAGE SWITCHER */

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher .form-select {
    width: auto;
    min-width: 140px;
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.language-switcher .form-select option {
    padding: 0.5rem;
}

.language-switcher .form-select:hover {
    border-color: #027900;
}

.language-switcher .form-select:focus {
    border-color: #027900;
    box-shadow: 0 0 0 0.2rem rgba(2, 121, 0, 0.15);
    outline: none;
}

/* RTL Support for Arabic */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .navbar-nav {
    flex-direction: row-reverse;
}

html[dir="rtl"] .language-switcher {
    margin-right: 0;
    margin-left: 1rem;
}

html[dir="rtl"] .whatsapp-float {
    left: 20px;
    right: auto;
}

html[dir="rtl"] .info-list li,
html[dir="rtl"] .why-choose-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .journey-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .journey-item:nth-child(even) {
    flex-direction: row;
}

@media (max-width: 767px) {
    .language-switcher {
        margin: 10px 0;
    }
    
    .language-switcher .form-select {
        width: 100%;
        min-width: auto;
    }
}

/* ////////////////////////////////////////////////// */
/* WHATSAPP FLOATING BUTTON */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 32px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 26px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

/* ////////////////////////////////////////////////// */
/* QUOTE PAGE STYLES */

.quote-section {
    background-color: #ffffff;
    padding: 80px 0;
    min-height: 100vh;
}

.quote-header {
    text-align: center;
    margin-bottom: 50px;
}

.quote-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.quote-subtitle {
    font-size: 1.1rem;
    color: #6b6b6b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.quote-form-card {
    background-color: #FFEFD8;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.form-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.form-section-description {
    font-size: 1rem;
    color: #6b6b6b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #027900;
    margin-bottom: 20px;
}

.quote-form-card .form-label {
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.quote-form-card .form-control,
.quote-form-card .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.quote-form-card .form-control:focus,
.quote-form-card .form-select:focus {
    border-color: #027900;
    box-shadow: 0 0 0 0.2rem rgba(2, 121, 0, 0.15);
    outline: none;
}

.product-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.product-checkboxes .form-check {
    background-color: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.product-checkboxes .form-check:hover {
    border-color: #027900;
    background-color: #f9f9f9;
}

.product-checkboxes .form-check-input {
    margin-top: 0.3rem;
    cursor: pointer;
}

.product-checkboxes .form-check-input:checked {
    background-color: #027900;
    border-color: #027900;
}

.product-checkboxes .form-check-label {
    cursor: pointer;
    font-weight: 500;
    color: #2d2d2d;
}

.btn-submit-quote {
    background: linear-gradient(135deg, #027900 0%, #7cb342 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 121, 0, 0.3);
}

.btn-submit-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(2, 121, 0, 0.4);
    background: linear-gradient(135deg, #7cb342 0%, #027900 100%);
}

.quote-info-card {
    background-color: #faf8f5;
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.info-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #6b6b6b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-list li i {
    color: #027900;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info-box {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #027900;
}

.contact-info-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.contact-info-box p {
    font-size: 0.95rem;
    color: #6b6b6b;
    margin-bottom: 8px;
}

.contact-info-box p strong {
    color: #2d2d2d;
}

.btn-contact-link {
    display: inline-block;
    margin-top: 15px;
    color: #027900;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-contact-link:hover {
    color: #7cb342;
    text-decoration: underline;
}

/* Responsive Styles for Quote Page */
@media (max-width: 991px) {
    .quote-title {
        font-size: 2.5rem;
    }
    
    .quote-info-card {
        position: static;
        margin-top: 30px;
    }
    
    .product-checkboxes {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 767px) {
    .quote-section {
        padding: 40px 0;
    }
    
    .quote-title {
        font-size: 2rem;
    }
    
    .quote-subtitle {
        font-size: 1rem;
    }
    
    .quote-form-card {
        padding: 30px 20px;
    }
    
    .form-section-title {
        font-size: 1.5rem;
    }
    
    .form-section-heading {
        font-size: 1.2rem;
    }
    
    .product-checkboxes {
        grid-template-columns: 1fr;
    }
    
    .quote-info-card {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .quote-title {
        font-size: 1.75rem;
    }
    
    .quote-form-card {
        padding: 25px 15px;
    }
}