@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-color: #FFE369;
    --button-color: #DF1E36;
    --button-outline: #047940;
    --white: #ffffff;
    --dark-text: #000;
    --gray-text: #555555;
    --font-baricolage: 'Bricolage Grotesque', sans-serif;
    --font-dm-sans: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-baricolage);
    background-color: #ffffff;
    color: var(--dark-text);
}

/* Global scrollbar */
::-webkit-scrollbar {
    width: 3.5px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #FFE369;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #eed254;
}

.two-wrapper {
    padding: 24px;
}

/* Global scrollbar end*/
/* Hero Container Card */
.hero-container {
    width: 100%;
    background: radial-gradient(circle at 50% -10%, #FFFDF0 0%, #FFFDF0 30%, #FFFFFF 85%);
    border-radius: 36px;
    /* border: 1px solid rgba(0, 0, 0, 0.06); */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;

}

/* Spotlights / Glowing effects */
.hero-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -5%;
    width: 350px;
    height: 450px;
    background: radial-gradient(circle, rgba(207, 186, 64, 0.308) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

.hero-container::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -5%;
    width: 350px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 235, 120, 0.459) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 48px;
    position: relative;
    z-index: 10;
    width: 100%;
}

.logo-wrapper {
    background: transparent;
    padding: 16px 0 0 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: translateY(2px);
}

.logo {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    background: var(--white);
    padding: 20px 40px 24px 40px;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
}

.nav-item {
    font-family: var(--font-dm-sans);
    font-weight: 500;
    text-decoration: none;
    color: #444444;
    font-size: 18px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: var(--dark-text);
    font-weight: 700;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 18px;
    height: 2px;
    background-color: var(--button-color);
    transition: transform 0.25s ease;
    border-radius: 2px;
}

.nav-item:hover::after,
.nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

.contact-wrapper {
    background: transparent;
    padding: 16px 0 0 0;
    display: flex;
    align-items: center;
    gap: 28px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
    font-family: var(--font-dm-sans);
    font-weight: 700;
    font-size: 18px;
    transition: color 0.25s ease;
}

.phone-link:hover {
    color: var(--button-color);
}

.phone-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    font-size: 13px;
    transition: background 0.25s ease;
}

.phone-link:hover .phone-icon-circle {
    background: rgba(223, 30, 54, 0.08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    font-family: var(--font-dm-sans);
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.btn-red {
    background: var(--button-color);
    color: var(--white);
    border: none;
}

.btn-red:hover {
    background: #c5162c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(223, 30, 54, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--button-outline);
    border: 2px solid var(--button-outline);
}

.btn-outline:hover {
    background: var(--button-outline);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 121, 64, 0.25);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-text);
    cursor: pointer;
    padding-top: 30px;
}

/* Mobile Drawer styles */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 100;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu-drawer.open {
    right: 0;
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dark-text);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-item {
    font-family: var(--font-dm-sans);
    font-size: 28px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    transition: color 0.25s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--button-color);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Content Area */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 50px;
    width: 100%;
}

.hero-text-section {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    padding: 10px 24px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-baricolage);
    font-size: 64px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--dark-text);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-dm-sans);
    font-size: 20px;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 36px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Giant background text "Berry Boss" with fade */
.bg-text-container {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.bg-text {
    font-family: var(--font-baricolage);
    font-size: 340px;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
    background: linear-gradient(to bottom,
            #c9ab1d 0%,
            #f3cb44 20%,
            #FFF5C0 45%,
            rgba(255, 255, 255, 0) 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -4px;
    opacity: 0.95;
}

/* Hero Image Section & Overlay Shade */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: -310px;
    z-index: 3;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
}

/* Shade Overlay on Hero Section / Image */
.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0) 60%);
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
    pointer-events: none;
    z-index: 4;
}

/* Scroll indicator overlaying the hero image bottom-left */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-dm-sans);
    font-size: 14px;
    font-weight: 600;
    z-index: 5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 0.8;
}

.scroll-indicator i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    animation: bounce 2s infinite;
    color: #5EA85E;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Scroll Animation Initial State */
.scroll-animate:not(.animated) {
    opacity: 0;
}

/* Farm Story Section */
.farm-story {
    background-color: var(--white);
    padding: 120px 48px;
    width: 100%;
}

.farm-story-container {
    max-width: 1344px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.farm-story-left {
    flex: 1.1;
}

.farm-story-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leaf-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leaf-bg {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.circular-fresh-wrapper {
    position: absolute;
    width: 76%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 14px solid var(--white);
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); */
    display: flex;
    justify-content: center;
    align-items: center;
    top: 74%;
    left: 17%;
    transform: translate(-50%, -50%);
}

.circular-fresh-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.circular-fresh-img.active {
    opacity: 1;
    z-index: 2;
}

/* Farm About Section */
.farm-about {
    background-color: var(--white);
    padding: 120px 48px;
    width: 100%;
}

.farm-about-container {
    max-width: 1344px;
    margin: 0 auto;
}

.about-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.farm-about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-content-row {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.about-col-left {
    flex: 1;
    text-align: left;
}

.about-col-right {
    flex: 1.5;
    text-align: left;
}

.about-badge {
    color: var(--button-color);
    font-family: var(--font-dm-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.about-title {
    font-family: var(--font-baricolage);
    font-size: 54px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--dark-text);
}

.about-divider-line {
    width: 100%;
    height: 2px;
    background-color: var(--button-outline);
    margin-bottom: 24px;
}

.about-p {
    font-family: var(--font-dm-sans);
    font-size: 18px;
    line-height: 1.7;
    color: #2E332E;
    margin-bottom: 24px;
    text-align: justify;
}

.about-p:last-child {
    margin-bottom: 0;
}

/* Farm Farmers Section */
.farm-farmers {
    background-color: #F4F0E6;
    padding: 120px 48px;
    width: 100%;
}

.farmers-container {
    max-width: 1344px;
    margin: 0 auto;
    text-align: center;
}

.farmers-badge {
    color: var(--button-color);
    font-family: var(--font-dm-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.farmers-title {
    font-family: var(--font-baricolage);
    font-size: 54px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 60px;
}

.farmers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.farmer-card {
    text-align: left;
}

.farmer-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.farmer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.farmer-card:hover .farmer-img {
    transform: scale(1.05);
}

.farmer-role {
    font-family: var(--font-dm-sans);
    font-size: 11px;
    font-weight: 700;
    color: #6E756E;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.farmer-name {
    font-family: var(--font-baricolage);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-text);
}

/* News Posts Section */
.news-posts {
    background-color: var(--white);
    padding: 120px 48px;
    width: 100%;
}

.news-container {
    max-width: 1344px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 24px;
}

.news-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.news-card:hover {
    transform: translateY(-6px);
}

.news-card-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.news-card:hover .news-card-img {
    transform: scale(1.05);
}

.news-card-date {
    font-family: var(--font-dm-sans);
    font-size: 11px;
    font-weight: 700;
    color: #8C998C;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

.news-card-title {
    font-family: var(--font-baricolage);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.35;
    transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
    color: var(--button-color);
}

/* News Detail Section */
.news-detail-section {
    background-color: var(--white);
    padding: 80px 48px;
    width: 100%;
}

.news-detail-container {
    max-width: 1220px;
    margin: 0 auto;
    text-align: left;
}

.blog-intro p,
.blog-section-header p,
.blog-conclusion p {
    font-family: var(--font-dm-sans);
    font-size: 19px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 24px;
}

.blog-wide-image-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.blog-wide-img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-h2 {
    font-family: var(--font-baricolage);
    font-size: 36px;
    font-weight: 500;
    color: var(--dark-text);
    margin: 40px 0 20px 0;
}

.blog-key-signs-banner {
    background-color: #F4F0E6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 60px 0 40px 0;
}

.blog-key-signs-banner h3 {
    font-family: var(--font-baricolage);
    font-size: 24px;
    font-weight: 500;
    color: var(--dark-text);
    margin: 0;
}

.blog-sign-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    margin-bottom: 60px;
}

.blog-sign-image {
    flex: 1;
}

.blog-img-border {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.blog-sign-content {
    flex: 1.2;
}

.blog-sign-title {
    font-family: var(--font-baricolage);
    font-size: 28px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.blog-sign-content p,
.blog-card-item p {
    font-family: var(--font-dm-sans);
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 16px;
}

.blog-sub-title {
    font-family: var(--font-baricolage);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 20px 0 8px 0;
}

.blog-ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-ul li {
    position: relative;
    padding-left: 24px;
    font-family: var(--font-dm-sans);
    font-size: 16px;
    color: #444444;
}

.blog-ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--button-outline);
    font-weight: bold;
    font-size: 18px;
    top: -2px;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.blog-card-item {
    background-color: #F4F0E6;
    border-radius: 16px;
    padding: 32px 24px;
}

.blog-card-title {
    font-family: var(--font-baricolage);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.blog-quality-banner {
    background-color: #1a2d54;
    border-radius: 20px;
    padding: 48px;
    color: var(--white);
    margin-bottom: 60px;
    text-align: center;
}

.blog-quality-banner .banner-title {
    font-family: var(--font-baricolage);
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
}

.blog-quality-banner p {
    font-family: var(--font-dm-sans);
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 16px auto;
}

.blog-quality-banner p:last-child {
    margin-bottom: 0;
}

/* Contact Us Section */
.contact-us-section {
    background-color: var(--white);
    padding: 120px 0 0 0;
    width: 100%;
}

.contact-container {
    max-width: 1344px;
    margin: 0 auto 120px auto;
    padding: 0 48px;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-badge {
    font-family: var(--font-dm-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--button-color);
    display: block;
    margin-bottom: 12px;
}

.contact-title {
    font-family: var(--font-baricolage);
    font-size: 48px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 24px;
    line-height: 1.15;
}

.contact-desc {
    font-family: var(--font-dm-sans);
    font-size: 19px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    font-size: 20px;
    color: var(--button-outline);
    margin-top: 4px;
}

.contact-info-text h4 {
    font-family: var(--font-baricolage);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
}

.contact-info-text p {
    font-family: var(--font-dm-sans);
    font-size: 19px;
    line-height: 1.5;
    color: #444444;
    margin: 0;
}

/* Contact Form styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #F4F5F3;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: var(--font-dm-sans);
    font-size: 15px;
    color: var(--dark-text);
    outline: none;
    transition: box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8C867A;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 2px var(--button-outline);
}

.form-submit-btn {
    align-self: flex-start;
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.contact-map-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 80px;
    line-height: 0;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Grow Sliding Section */
.grow-sliding-section {
    width: 100%;
    background-color: transparent;
    padding: 0;
    margin: 0px 0;
}

.grow-slider-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1400px) {
    .grow-slider-container {
        max-width: 1344px;
        margin: 0 auto;
        border-radius: 36px;
    }

    .grow-sliding-section {
        margin-top: 80px;
    }
}

.grow-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.grow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

.grow-slide.active {
    opacity: 1;
    z-index: 2;
}

.grow-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grow-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 48px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    color: var(--white);
    text-align: left;
    z-index: 3;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.3s;
}

.grow-slide.active .grow-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.grow-slide-title {
    font-family: var(--font-baricolage);
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--white);
}

.grow-slide-text {
    font-family: var(--font-dm-sans);
    font-size: 19px;
    line-height: 1.6;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.9);
}

.grow-slider-indicators {
    position: absolute;
    bottom: 30px;
    right: 48px;
    display: flex;
    gap: 12px;
    z-index: 5;
}

.grow-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.grow-indicator.active {
    background-color: var(--white);
    transform: scale(1.2);
    width: 28px;
    border-radius: 5px;
}

/* Our Story Section */
.berry-story-section {
    background-color: var(--white);
    padding: 120px 48px;
    width: 100%;
}

.story-container {
    max-width: 1344px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.story-left {
    flex: 1;
    max-width: 580px;
    text-align: left;
}

.story-badge {
    color: var(--button-color);
    font-family: var(--font-dm-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.story-title {
    font-family: var(--font-baricolage);
    font-size: 54px;
    font-weight: 500;
    line-height: 1.15;
    color: #0C2556;
    margin-bottom: 30px;
}

.story-paragraphs {
    margin-bottom: 40px;
}

.story-p {
    font-family: var(--font-dm-sans);
    font-size: 19px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 20px;
}

.story-p:last-child {
    margin-bottom: 0;
}

.btn-green {
    background-color: var(--button-outline);
    color: var(--white);
    border: none;
}

.btn-green:hover {
    background-color: #035e32;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 121, 64, 0.25);
}

.story-right {
    flex: 1.1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    text-align: left;
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Seamless Continuous 360deg Rotation */
.rotating-icon {
    animation: rotateSeamless 12s linear infinite;
}

@keyframes rotateSeamless {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature-title {
    font-family: var(--font-baricolage);
    font-size: 23px;
    font-weight: 700;
    color: #0C2556;
    margin-bottom: 12px;
}

.feature-desc {
    font-family: var(--font-dm-sans);
    font-size: 19px;
    line-height: 1.6;
    color: #555555;
}

/* About the Farm Section */
.berry-about-section {
    background-color: var(--white);
    padding: 80px 48px 120px 48px;
    width: 100%;
}

.about-container {
    /* max-width: 1344px; */
    margin: 0 auto;
}

.about-images-row {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
    height: 520px;
    width: 100%;
}

.about-left-slideshow {
    flex: 1;
    position: relative;
    overflow: hidden;
    /* border-radius: 16px; */
    height: 100%;
    background-color: #000;
}

.left-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.left-slide.active {
    opacity: 1;
    z-index: 2;
}

.left-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.left-slide-caption {
    position: absolute;
    bottom: 0px;
    /* left: 32px;
    right: 32px; */
    width: 100%;
    background: rgba(0, 0, 0, 0.78);
    padding: 20px 24px;
    /* border-radius: 12px; */
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;

    /* Animation: slide up smoothly */
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 0.6s ease 0.2s;
}

.left-slide.active .left-slide-caption {
    transform: translateY(0);
    opacity: 1;
}

.caption-line {
    font-family: var(--font-dm-sans);
    font-weight: 500;
    color: var(--white);
    font-size: 16px;
    line-height: 1.4;
}

.about-right-slider {
    flex: 2;
    position: relative;
    overflow: hidden;
    /* border-radius: 16px; */
    height: 100%;
}

.slider-wrapper {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.right-slide {
    width: 25%;
    height: 100%;
}

.right-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content-row {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    text-align: left;
}

.content-col {
    flex: 1;
}

.col-left {
    flex: 0.9;
}

.about-badge {
    color: var(--button-color);
    font-family: var(--font-dm-sans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.about-title {
    font-family: var(--font-baricolage);
    font-size: 57px;
    font-weight: 500;
    line-height: 1.15;
    color: #1E1E1C;
}

.col-divider-line {
    height: 2px;
    background-color: #047940;
    margin-bottom: 24px;
    width: 92%;
    margin-left: 40px;
}

.about-p {
    font-size: 19px;
    color: #2E332E;
    line-height: 1.6;
    padding-left: 40px;
    text-align: justify;
}

/* Products Grow Section */
.berry-grow-product-section {
    background-color: #F1EFDD;
    padding: 100px 48px;
    width: 100%;
}

.product-container {
    max-width: 1344px;
    margin: 0 auto;
    text-align: center;
}

.product-badge {
    color: var(--button-color);
    font-family: var(--font-dm-sans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.product-title {
    font-family: var(--font-baricolage);
    font-size: 54px;
    font-weight: 500;
    line-height: 1.15;
    color: #1E1E1C;
    margin-bottom: 60px;
}

.product-slider-container {
    position: relative;
    width: 100%;
    margin-bottom: 48px;
}

/* Nav Arrows */
.nav-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #047940;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-arrow:hover {
    background-color: #047940;
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.prev-arrow {
    left: -27px;
}

.next-arrow {
    right: -27px;
}

/* Track and Cards */
.product-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.product-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.product-card {
    flex: 0 0 calc(25% - 18px);
    /* 4 visible cards on desktop */
    background: #F1EFDD;
    padding: 0px;
    border-radius: 0px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}

.product-image {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    font-family: var(--font-dm-sans);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    z-index: 2;
}

.badge-out {
    background-color: #2E332E;
    color: var(--white);
}

.product-brand {
    font-family: var(--font-dm-sans);
    font-size: 12px;
    font-weight: 700;
    color: #999999;
    letter-spacing: 1px;
    display: block;
}

.product-name {
    font-family: var(--font-baricolage);
    font-size: 24px;
    font-weight: 600;
    color: #1E1E1C;
    margin: 8px 0 12px 0;
}

.product-desc {
    font-family: var(--font-dm-sans);
    font-size: 19px;
    line-height: 1.65;
    color: #1E1E1C;
}

.product-action {
    margin-top: 24px;
}

/* Testimonials Section */
.berry-testimonals-section {
    background-color: var(--white);
    padding: 120px 48px;
    width: 100%;
    position: relative;
    overflow: hidden;

    /* Background Flower Styling */
    background-image: url('../assets/testibg.svg');
    background-repeat: no-repeat;
    background-position: right 10% center;
    background-size: 400px;
}

.testimonials-container {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stars-row {
    color: #FF9900;
    font-size: 18px;
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 30px;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: slideFadeIn 0.6s ease-in-out;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-quote {
    font-family: var(--font-dm-sans);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6;
    color: #1E1E1C;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.author-name {
    font-family: var(--font-baricolage);
    font-size: 19px;
    font-weight: 700;
    color: #1E1E1C;
    margin-bottom: 4px;
}

.author-title {
    font-family: var(--font-dm-sans);
    font-size: 14px;
    color: #888888;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 44px;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E6E6E3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    width: 24px;
    border-radius: 8px;
    background-color: #047940;
}

/* Fresh Approach Section */
.berry-fresh-section {
    /* padding: 0 48px 80px 48px; */
    background-color: var(--white);
    width: 100%;
}

.fresh-container {
    /* max-width: 1344px; */
    /* margin: 0 auto; */
    display: flex;
    background-color: #047940;
    /* border-radius: 36px; */
    overflow: hidden;
    height: auto;
}

.fresh-left {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.fresh-left-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.fresh-badge {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-dm-sans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
}

.fresh-title {
    font-family: var(--font-baricolage);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-top: 16px;
}

.fresh-illustration-container {
    margin: 20px 0;
}

.fresh-illustration {
    width: 280px;
    height: auto;
    opacity: 0.85;
    display: block;
}

.fresh-desc {
    font-family: var(--font-dm-sans);
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 24px;
}

.btn-yellow {
    background-color: #FFE369;
    color: #000000;
    border: none;
    align-self: flex-start;
}

.btn-yellow:hover {
    background-color: #ffd726;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 227, 105, 0.25);
}

.fresh-right {
    flex: 1;
    display: flex;
}

.fresh-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gallery Section */
.berry-gallery-section {
    background-color: var(--white);
    padding: 80px 0 100px 0;
    width: 100%;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-badge {
    color: var(--button-color);
    font-family: var(--font-dm-sans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.gallery-title {
    font-family: var(--font-baricolage);
    font-size: 54px;
    font-weight: 500;
    line-height: 1.15;
    color: #1E1E1C;
}

.gallery-marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeSeamless 56s linear infinite;
}

.gallery-marquee-track:hover {
    animation-play-state: paused;
}

.gallery-marquee-list {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding-right: 24px;
}

.gallery-img {
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 0 !important;
    /* strictly not curved */
    display: block;
}

/* Alternating small and big sizes as in design */
.gallery-img.size-1 {
    width: 320px;
    height: 270px;
}

.gallery-img.size-2 {
    width: 270px;
    height: 380px;
}

.gallery-img.size-3 {
    width: 240px;
    height: 240px;
}

.gallery-img.size-4 {
    width: 300px;
    height: 380px;
}

@keyframes marqueeSeamless {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* FAQ Section */
.berry-faq-section {
    background-color: var(--white);
    padding: 0 48px 120px 48px;
    width: 100%;
}

.faq-container {
    max-width: 1344px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #F5EEDB;
    border-radius: 0;
    /* strictly not curved */
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
    background: none;
    padding: 28px 36px;
    font-family: var(--font-baricolage);
    font-size: 22px;
    font-weight: 700;
    color: #1E1E1C;
    text-align: left;
    cursor: pointer;
}

.faq-toggle-icon {
    font-size: 16px;
    color: #555555;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* expands smoothly */
}

.faq-answer-inner {
    padding: 0 36px 28px 36px;
    font-size: 19px;
}

/* Brand Logos Section */
.berry-brand-section {
    background-color: var(--white);
    padding: 80px 48px;
    width: 100%;
}

.brand-container {
    max-width: 1344px;
    margin: 0 auto;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.brand-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
}

.brand-logo {
    max-width: 90%;
    max-height: 105%;
    object-fit: contain;
    display: block;
}

/* Footer Content Section */
.berry-footer-content {
    background-color: var(--white);
    padding-top: 80px;
    width: 100%;
}

.footer-top {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px 60px 48px;
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-label {
    color: #A0A09B;
    font-family: var(--font-dm-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-time {
    font-family: var(--font-baricolage);
    font-size: 38px;
    font-weight: 500;
    color: #1E1E1C;
    margin: 0;
    line-height: 1.25;
}

.address-text {
    font-family: var(--font-dm-sans);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #1E1E1C;
    margin-bottom: 12px;
}

.footer-map-link {
    font-family: var(--font-dm-sans);
    font-size: 15px;
    font-weight: 700;
    color: #047940;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    margin-bottom: 32px;
    width: fit-content;
}

.footer-map-link:hover {
    color: #035a30;
}

.footer-email {
    font-family: var(--font-baricolage);
    font-size: 38px;
    font-weight: 500;
    color: #1E1E1C;
    margin: 0;
    line-height: 1.25;
}

.social-capsules {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-dm-sans);
    font-size: 14px;
    font-weight: 700;
    color: #1E1E1C;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-btn:hover {
    background-color: #1E1E1C;
    color: var(--white);
    border-color: #1E1E1C;
    transform: translateY(-2px);
}

.footer-banner-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.footer-banner-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Footer Banner Overlay (Privacy Policy, Terms & Copyright) */
.footer-banner-overlay {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    padding: 0 24px;
    text-align: center;
}

.footer-overlay-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-overlay-link {
    font-family: var(--font-dm-sans);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
}

.footer-overlay-link:hover {
    color: #e2f9e5;
    text-decoration: underline;
}

.footer-overlay-divider {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.footer-overlay-copyright {
    font-family: var(--font-dm-sans);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Animated Tick SVG for Contact Form Success */
.success-checkmark-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(4, 121, 64, 0.15);
    animation: fadeInUp 0.5s ease-out forwards;
}

.animated-tick-svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.animated-tick-svg .checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #047940;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.animated-tick-svg .checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #047940;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: stroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.footer-over-badge {
    position: absolute;
    right: 48px;
    bottom: 48px;
    width: 280px;
    height: auto;
    z-index: 5;
}

.scroll-to-top-btn {
    position: absolute;
    right: 48px;
    top: -30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3E4D3E;
    border: none;
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
}

.scroll-to-top-btn:hover {
    background-color: var(--button-color);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Floating Sidebar Navigation */
.floating-sidebar {
    display: none;
    /* Hidden by default on mobile/smaller devices */
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(100px);
    background-color: rgba(26, 26, 26, 0.95);
    border-radius: 16px;
    padding: 16px 10px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-sidebar.visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.sidebar-logo-wrapper {
    margin-bottom: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.sidebar-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.sidebar-item:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.sidebar-item.active {
    color: var(--button-color) !important;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(223, 30, 54, 0.3);
}

.sidebar-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 54px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: var(--font-dm-sans);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-item:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (min-width: 992px) {
    .floating-sidebar {
        display: flex;
    }
}

/*MEDIA QUERIES FOR RESPONSIVENESS */

/* 1. LARGE LAPTOPS & DESKTOPS */
@media (min-width: 1200px) and (max-width: 1439px) {
    .bg-text {
        font-size: 210px;
    }

    .hero-title {
        font-size: 58px;
    }

    .hero-image-container {
        margin-top: -70px;
    }
}

/* 2. MINI DESKTOPS & LANDSCAPE TABLETS */
@media (min-width: 992px) and (max-width: 1199px) {
    .header {
        padding: 20px 32px 0 32px;
    }

    .logo {
        height: 52px;
    }

    .btn {
        padding: 13px 26px;
        font-size: 14px;
    }

    .nav-links {
        gap: 22px;
        padding: 12px 28px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .bg-text {
        font-size: 170px;
    }

    .hero-image-container {
        margin-top: -55px;
    }

    .berry-story-section {
        padding: 80px 32px;
    }

    .story-container {
        gap: 40px;
    }

    .story-title {
        font-size: 42px;
    }

    .features-grid {
        gap: 32px;
    }

    .berry-about-section {
        padding: 60px 32px 80px 32px;
    }

    .about-images-row {
        height: 420px;
        gap: 16px;
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 38px;
    }

    .about-content-row {
        gap: 32px;
    }

    .berry-grow-product-section {
        padding: 80px 32px;
    }

    .product-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .product-card {
        flex: 0 0 calc(33.333% - 16px);
    }

    .berry-testimonals-section {
        padding: 90px 32px;
        background-size: 320px;
    }

    .testimonial-quote {
        font-size: 22px;
    }

    .berry-fresh-section {
        padding: 0 32px 60px 32px;
    }

    .fresh-container {
        height: 500px;
    }

    .fresh-left {
        padding: 40px;
    }

    .fresh-title {
        font-size: 40px;
    }

    .fresh-illustration {
        width: 240px;
    }

    .gallery-title {
        font-size: 42px;
    }

    .faq-question {
        font-size: 20px;
        padding: 24px 30px;
    }

    .faq-answer-inner {
        padding: 0 30px 24px 30px;
        font-size: 15px;
    }

    .brand-card {
        height: 120px;
    }

    .footer-time,
    .footer-email {
        font-size: 32px;
    }

    .footer-banner-img {
        height: 380px;
    }

    .footer-over-badge {
        width: 180px;
        right: 32px;
        bottom: 32px;
    }

    .scroll-to-top-btn {
        right: 32px;
    }

    .floating-sidebar {
        display: flex;
    }

    .farm-story {
        padding: 80px 32px;
    }

    .farm-story-container {
        gap: 40px;
    }

    .farm-about {
        padding: 80px 32px;
    }

    .about-image-wrapper {
        margin-bottom: 40px;
    }

    .about-content-row {
        gap: 40px;
    }

    .about-title {
        font-size: 42px;
    }

    .farm-farmers {
        padding: 80px 32px;
    }

    .farmers-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .farmers-grid {
        gap: 16px;
    }

    .grow-slider-container {
        height: 480px;
    }

    .grow-slide-content {
        padding: 40px 32px;
    }

    .grow-slide-title {
        font-size: 32px;
    }

    .grow-slide-text {
        font-size: 16px;
    }

    .news-posts {
        padding: 80px 32px;
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 20px;
    }
}

/* 3. PORTRAIT TABLETS */
@media (min-width: 577px) and (max-width: 991px) {
    body {
        padding: 16px;
    }

    .hero-container {
        border-radius: 24px;
    }

    .header {
        padding: 16px 24px 0 24px;
    }

    .logo {
        height: 44px;
    }

    /* Hide nav links on tablet and show mobile menu button */
    .nav-links,
    .contact-wrapper {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        padding-top: 10px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .bg-text {
        font-size: 120px;
    }

    .hero-image-container {
        margin-top: -35px;
    }

    .berry-story-section {
        padding: 60px 24px;
    }

    .story-container {
        flex-direction: column;
        gap: 50px;
    }

    .story-left {
        max-width: 100%;
        text-align: center;
    }

    .story-title {
        font-size: 38px;
    }

    .story-paragraphs {
        max-width: 700px;
        margin: 0 auto 30px auto;
    }

    .btn-green {
        display: inline-flex;
    }

    .story-right {
        width: 100%;
    }

    .berry-about-section {
        padding: 50px 24px 70px 24px;
    }

    .about-images-row {
        height: 350px;
        gap: 16px;
        margin-bottom: 30px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-content-row {
        flex-direction: column;
        gap: 30px;
    }

    .col-left {
        max-width: 100%;
        text-align: center;
        width: 100%;
    }

    .about-badge {
        margin-bottom: 12px;
    }

    .col-divider-line {
        margin-bottom: 16px;
    }

    .berry-grow-product-section {
        padding: 60px 24px;
    }

    .product-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .product-card {
        flex: 0 0 calc(50% - 12px);
    }

    .nav-arrow {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }

    .prev-arrow {
        left: -15px;
    }

    .next-arrow {
        right: -15px;
    }

    .berry-testimonals-section {
        padding: 80px 24px;
        background-size: 260px;
        background-position: right 2% center;
    }

    .testimonial-quote {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .berry-fresh-section {
        padding: 0 24px 50px 24px;
    }

    .fresh-container {
        height: 440px;
    }

    .fresh-left {
        padding: 30px;
    }

    .fresh-title {
        font-size: 32px;
    }

    .fresh-illustration {
        width: 180px;
    }

    .fresh-desc {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .gallery-title {
        font-size: 36px;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px 24px;
    }

    .faq-answer-inner {
        padding: 0 24px 20px 24px;
        font-size: 15px;
    }

    .berry-faq-section {
        padding: 0 24px 80px 24px;
    }

    .berry-brand-section {
        padding: 60px 24px;
    }

    .brand-grid {
        gap: 16px;
    }

    .brand-card {
        height: 110px;
    }

    .berry-footer-content {
        padding-top: 60px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px 40px 24px;
    }

    .footer-label {
        margin-bottom: 12px;
    }

    .footer-time,
    .footer-email {
        font-size: 30px;
    }

    .footer-banner-img {
        height: 320px;
    }

    .footer-over-badge {
        width: 150px;
        right: 24px;
        bottom: 24px;
    }

    .scroll-to-top-btn {
        right: 24px;
        width: 50px;
        height: 50px;
        font-size: 16px;
        top: -25px;
    }

    .floating-sidebar {
        display: none !important;
    }

    .farm-story {
        padding: 60px 24px;
    }

    .farm-story-container {
        flex-direction: column;
        gap: 50px;
    }

    .farm-story-left,
    .farm-story-right {
        width: 100%;
        max-width: 100%;
    }

    .farm-about {
        padding: 60px 24px;
    }

    .about-image-wrapper {
        margin-bottom: 30px;
    }

    .about-content-row {
        flex-direction: column;
        gap: 30px;
    }

    .about-col-left,
    .about-col-right {
        width: 100%;
    }

    .about-title {
        font-size: 36px;
    }

    .farm-farmers {
        padding: 60px 24px;
    }

    .farmers-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .farmers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .grow-slider-container {
        height: 400px;
    }

    .grow-slide-content {
        padding: 30px 24px;
    }

    .grow-slide-title {
        font-size: 28px;
    }

    .grow-slide-text {
        font-size: 15px;
    }

    .news-posts {
        padding: 60px 24px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }

    .news-card-title {
        font-size: 16px;
    }

    .news-detail-section {
        padding: 60px 24px;
    }

    .blog-sign-row {
        flex-direction: column;
        gap: 32px;
    }

    .blog-sign-row.image-right {
        flex-direction: column-reverse;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-quality-banner {
        padding: 32px 24px;
    }

    .contact-us-section {
        padding: 80px 0 0 0;
    }

    .contact-container {
        padding: 0 24px;
        margin-bottom: 80px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 60px;
    }

    .contact-map-wrapper {
        height: 450px;
        margin-top: 60px;
    }
}

/* 4. MOBILE */
@media (max-width: 576px) {
    .two-wrapper {
        padding: 16px;
    }

    .hero-container {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        border: none;
        box-shadow: none;
        /* min-height: 100vh; */
    }

    .header {
        padding: 12px 16px 0 16px;
    }

    .logo {
        height: 42px;
    }

    .nav-links,
    .contact-wrapper {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        padding-top: 8px;
        font-size: 26px;
    }

    .hero-content {
        padding-top: 30px;
    }

    .hero-text-section {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .hero-title br,
    .hero-subtitle br {
        display: none;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    .bg-text-container {
        top: 80%;
    }

    .bg-text {
        font-size: 68px;
        letter-spacing: -2px;

    }

    .hero-image-container {
        margin-top: -15px;
    }

    .hero-image {
        border-radius: 0;
    }

    .hero-image-container::after {
        border-radius: 0;
    }

    .hero-container::after,
    .hero-container::before {
        background: none;
    }

    .scroll-indicator {
        bottom: 20px;
        left: 20px;
        font-size: 11px;
        gap: 8px;
    }

    .scroll-indicator i {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .berry-story-section {
        padding: 50px 16px;
    }

    .story-container {
        flex-direction: column;
        gap: 40px;
    }

    .story-left {
        max-width: 100%;
        text-align: center;
    }

    .story-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .story-paragraphs {
        margin-bottom: 24px;
    }

    .story-p {
        font-size: 15px;
    }

    .story-right {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon-wrapper {
        margin-bottom: 12px;
    }

    .feature-title {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .feature-desc {
        font-size: 14px;
    }

    .berry-about-section {
        padding: 40px 16px 60px 16px;
    }

    .about-images-row {
        flex-direction: column;
        height: auto;
        gap: 20px;
        margin-bottom: 30px;
    }

    .about-left-slideshow,
    .about-right-slider {
        height: 300px;
        width: 100%;
    }

    .about-content-row {
        flex-direction: column;
        gap: 24px;
    }

    .col-left {
        max-width: 100%;
        text-align: center;
        width: 100%;
    }

    .about-badge {
        margin-bottom: 10px;
    }

    .about-title {
        font-size: 26px;
    }

    .col-divider-line {
        margin-bottom: 12px;
    }

    .left-slide-caption {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 12px 16px;
    }

    .caption-line {
        font-size: 13px;
    }

    .berry-grow-product-section {
        padding: 50px 16px;
    }

    .product-title {
        font-size: 28px;
        margin-bottom: 24px;
        line-height: 1.25;
    }

    .product-slider-container {
        margin-bottom: 24px;
    }

    .product-track-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .product-track-wrapper::-webkit-scrollbar {
        display: none;
    }

    .product-track {
        gap: 16px;
        width: auto;
    }

    .product-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        /* padding: 16px; */
    }

    .product-image-container {
        height: 200px;
        margin-bottom: 16px;
    }

    .product-name {
        font-size: 20px;
        margin: 6px 0 8px 0;
    }

    .product-desc {
        font-size: 14px;
    }

    .nav-arrow {
        display: none;
    }

    .berry-testimonals-section {
        padding: 60px 16px;
        background-image: none;
    }

    .testimonial-quote {
        font-size: 18px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .author-avatar {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }

    .author-name {
        font-size: 17px;
    }

    .testimonial-dots {
        margin-top: 30px;
    }

    .berry-fresh-section {
        padding: 0 16px 40px 16px;
    }

    .fresh-container {
        flex-direction: column-reverse;
        height: auto;
        border-radius: 24px;
    }

    .fresh-left {
        padding: 40px 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fresh-left-content {
        align-items: center;
    }

    .fresh-right {
        height: 280px;
        width: 100%;
    }

    .fresh-title {
        font-size: 28px;
    }

    .fresh-illustration {
        width: 200px;
        margin: 20px auto;
    }

    .fresh-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-yellow {
        align-self: center;
    }

    .gallery-title {
        font-size: 28px;
    }

    .gallery-header {
        margin-bottom: 30px;
    }

    .gallery-img.size-1 {
        width: 220px;
        height: 180px;
    }

    .gallery-img.size-2 {
        width: 180px;
        height: 250px;
    }

    .gallery-img.size-3 {
        width: 160px;
        height: 160px;
    }

    .gallery-img.size-4 {
        width: 200px;
        height: 250px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-answer-inner {
        padding: 0 20px 18px 20px;
        font-size: 14px;
    }

    .berry-faq-section {
        padding: 0 16px 60px 16px;
    }

    .berry-brand-section {
        padding: 40px 16px;
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .brand-card {
        height: 100px;
        padding: 12px;
        border-radius: 12px;
    }

    .berry-footer-content {
        padding-top: 50px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 16px 30px 16px;
    }

    .footer-label {
        margin-bottom: 10px;
    }

    .footer-time,
    .footer-email {
        font-size: 26px;
    }

    .address-text {
        font-size: 16px;
    }

    .footer-map-link {
        margin-bottom: 24px;
    }

    .footer-banner-img {
        height: 240px;
    }

    .footer-over-badge {
        width: 120px;
        right: 16px;
        bottom: 16px;
    }

    .scroll-to-top-btn {
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 14px;
        top: -22px;
    }

    .floating-sidebar {
        display: none !important;
    }

    .logo-wrapper {
        padding: 0;
    }

    .about-p {
        padding-left: 0;
    }

    .col-divider-line {
        margin-left: 0;
    }

    .farm-story {
        padding: 50px 16px;
    }

    .farm-story-container {
        flex-direction: column;
        gap: 40px;
    }

    .farm-story-left,
    .farm-story-right {
        width: 100%;
        max-width: 100%;
    }

    .leaf-wrapper {
        max-width: 300px;
    }

    .farm-about {
        padding: 50px 16px;
    }

    .about-image-wrapper {
        margin-bottom: 24px;
    }

    .about-content-row {
        flex-direction: column;
        gap: 24px;
    }

    .about-col-left,
    .about-col-right {
        width: 100%;
    }

    .about-title {
        font-size: 30px;
    }

    .farm-farmers {
        padding: 50px 16px;
    }

    .farmers-title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .farmers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .farmer-name {
        font-size: 16px;
    }

    .farm-story-right {
        margin-right: -25px;
    }

    .grow-slider-container {
        height: 350px;
    }

    .grow-slide-content {
        display: none !important;
    }

    .grow-slider-indicators {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }

    .news-posts {
        padding: 50px 16px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-card-title {
        font-size: 22px;
    }

    .news-detail-section {
        padding: 50px 16px;
    }

    .blog-sign-row {
        flex-direction: column;
        gap: 24px;
    }

    .blog-sign-row.image-right {
        flex-direction: column-reverse;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-quality-banner {
        padding: 24px 16px;
    }

    .blog-h2 {
        font-size: 28px;
    }

    .blog-sign-title {
        font-size: 22px;
    }

    .blog-quality-banner .banner-title {
        font-size: 24px;
    }

    .contact-us-section {
        padding: 60px 0 0 0;
    }

    .contact-container {
        padding: 0 16px;
        margin-bottom: 60px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 48px;
    }

    .contact-title {
        font-size: 36px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .contact-map-wrapper {
        height: 350px;
        margin-top: 48px;
    }
}

@media (min-width: 992px) and (max-width: 1475px) {
    .header {
        padding: 0 20px;
    }
    .header .phone-number {
        display: none !important;
    }
    .nav-links {
        gap: 12px;
        padding: 16px 20px 18px 20px;
    }
    .nav-item {
        font-size: 15px;
    }
    .contact-wrapper {
        gap: 14px;
    }
    .btn.contact-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (min-width: 1476px) and (max-width: 1580px) {
    .header {
        padding: 0 28px;
        flex-wrap: nowrap;
    }
    .nav-links {
        gap: 20px;
        padding: 16px 28px 20px 28px;
    }
    .nav-item {
        font-size: 16px;
    }
    .contact-wrapper {
        gap: 18px;
    }
    .phone-link {
        font-size: 16px;
    }
    .btn.contact-btn {
        padding: 12px 22px;
        font-size: 16px;
    }
}

@media (min-width: 1440px) and (max-width: 1700px) {
    .bg-text {
        font-size: 300px;
        white-space: nowrap;
    }
}