/* =======================
   FONTS
======================= */
@font-face {
    font-family: 'money-honey';
    src: url('../fonts/money-honey.ttf') format('truetype');
}

@font-face {
    font-family: 'bouncy';
    src: url('../fonts/bouncy.otf') format('opentype');
}

@font-face {
    font-family: 'neosans';
    src: url('../fonts/neosanspro-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'banano';
    src: url('../fonts/banano.otf') format('opentype');
}

/* =======================
   RESET
======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

body {
    font-family: 'neosans', sans-serif;
}

/* =======================
   COMMON
======================= */
.container-padding {
    padding: 0 300px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =======================
   NAVBAR
======================= */
.navbar-theme {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 15px 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;
    background-color: #E9DCC6;
}

.navbar-theme.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(187, 187, 187, 0.41);
    backdrop-filter: blur(8px);
    padding: 10px 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s ease;
}

.nav-links a:hover {
    color: #8cc63f;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* =======================
   HERO
======================= */
.hero {
    height: 100vh;
    background: url('../images/home/hero_banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    color: #fff;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(120, 70, 20, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px 300px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'neosans';
}

.hero-subtitle span {
    font-weight: 800;
}

.hero-title {
    font-size: 65px;
    font-family: 'money-honey';
}

/* =======================
   FLAVOURS
======================= */
.flavours {
    /* background: #e9dcc6; */
    background-image: url('../images/home/our_product_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
}

.flavours-container {
    max-width: 1300px;
    margin: auto;
}

.flavours-title {
    display: inline-block;
    font-family: 'banano';
    font-size: 30px;
    padding: 10px 25px;
    margin-bottom: 70px;
    letter-spacing: 1px;
    background-color: #5bb148;
    border-radius: 50px;
    color: #fff;
}

.flavour-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.flavour-card {
    width: 287px;
    height: 360px;
    border-radius: 30px;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: 0.3s;
    background: center/cover no-repeat;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.flavour-card img {
    position: absolute;
    top: -12px;
    width: 246px;
    transform: rotate(-15deg);
}

.flavour-card h3 {
    font-family: 'banano';
    font-size: 26px;
    margin-bottom: 5px;
    color: #fcfcfc;
    letter-spacing: 1px;
    text-shadow:
        4px 4px 0px rgba(0, 0, 0, 0.25);
}

.flavour-card button {
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.9px;
    color: #fff;
    cursor: pointer;
    font-family: 'neosans';
}

.flavour-card:hover {
    transform: translateY(-10px);
}

/* Background Variants */
.guava {
    background-image: url('../images/home/home-guva-bg.png');
}

.pineapple {
    background-image: url('../images/home/home-pineapple-bg.png');
}

.kokum {
    background-image: url('../images/home/home-kokum-bg.png');
}

.nimbu {
    background-image: url('../images/home/home-nimbu-bg.png');
}

/* =======================
   FOOTER
======================= */
.footer {
    /* background: url('../images/home/our_product_bg.png'); */
    background-color: #E9DCC6;
    padding: 40px 20px;
    text-align: left;
}

.footer-container {
    max-width: 1000px;
    margin: auto;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-links {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    margin: 0 5px;
}

.footer-links span {
    margin: 0 5px;
    color: #aaa;
}

.footer-social {
    color: #000;
}

.footer-social a i {
    transform: scale(1.2);
    color: #000;
    padding: 3px 5px;
}

.footer-social a {
    color: #000;
}

.footer-bottom {
    font-size: 12px;
    color: #888;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
}

.flavour-card>.product_one {
    transform: scale();
}

.product_curve_text {
    height: 50px;
}

.button-zing1 {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-family: 'bouncy';
    border: none;
    z-index: 1;
}

/* SVG BORDER */
.button-zing1 {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-family: 'bouncy';
    border: none;
    z-index: 1;
}

/* SVG BORDER */
.button-zing1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/home/guava_btn.png') no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
}

.button-zing2 {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-family: 'bouncy';
    border: none;
    z-index: 1;
}

/* SVG BORDER */
.button-zing2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/home/pineapple_btn.png') no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
}

.button-zing3 {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-family: 'bouncy';
    border: none;
    z-index: 1;
}

/* SVG BORDER */
.button-zing3::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/home/kokum_btn.png') no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
}

.button-zing4 {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-family: 'bouncy';
    border: none;
    z-index: 1;
}

/* SVG BORDER */
.button-zing4::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/home/nimbu_btn.png') no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
}

.main_margin {
    margin-top: 110px;
}

.product_hero_section {
    padding: 100px 0;
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.product_hero_section .product_thumbnail {
    height: 480px;
}

.product_hero_section .product_content h1 {
    font-family: 'banano';
    font-size: 70px;
    line-height: 0.8;
    color: #fff;
}

.product_hero_section .product_content h3 {
    font-family: 'bouncy';
    color: #fff;
}

.product_hero_section .product_content h4 {
    font-family: 'neosans';
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.one {
    background-image: url('../images/home/one.png');
}

.two {
    background-image: url('../images/home/two.png');
}

.three {
    background-image: url('../images/home/three.png');
}

.four {
    background-image: url('../images/home/four.png');
}

.product_title_bg {
    background-image: url('../images/home/Guava_Title_BG.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    height: 118px;
}

.product_hero_section .one {
    position: relative;
}

.product_hero_section_banner_element {
    position: absolute;
    top: 149px;
    right: 108px;
    height: 220px;
}

.product-page-hidden-title {
    position: absolute;
    left: -9999px;
}

.product-title-img {
    width: 300px;
}

.footer-social {
    margin-bottom: 15px;
}

.body-text {
    font-family: 'neosans';
}

/* DESKTOP ONLY */
@media (min-width: 768px) {
    .flavour-card {
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        transition: transform 0.3s ease;
    }

    /* PRODUCT IMAGE */
    .flavour-card img {
        position: relative;
        z-index: 2;
        transition: transform 0.4s ease, filter 0.4s ease;
    }

    /* POPUP EFFECT (ONLY PRODUCT, NOT BACKGROUND) */
    .flavour-card:hover img {
        transform: translateY(-25px) scale(1.1);
        filter: drop-shadow(0 25px 30px rgba(67, 67, 67, 0.3));
    }

    .flavour-card:hover {
        transform: scale(1.03);
    }

    #closeMenu {
        display: none;
    }
}

/* =======================
   MOBILE (MERGED)
======================= */
@media (max-width: 912px) {
    .hero {
        background: url('../images/home/hero_banner_mobile.png') center/cover no-repeat;
    }

    .navbar-theme,
    .hero-content {
        padding: 15px;
    }

    .logo img {
        height: 120px;
    }

    .navbar-theme .logo {
        margin-left: 127px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.9);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .flavour-card {
        width: 90%;
        max-width: 300px;
        padding: 8px;
    }

    .flavours-title {
        font-size: 20px;
        color: #fff;
        padding: 11px 35px;
    }

    .footer {
        margin-top: -36px;
        padding-top: 80px;
    }

    .footer-links {
        line-height: 1.8;
    }

    .footer-bottom {
        font-size: 11px;
    }

    .flavour-card h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .product_bg1 {
        background-image: url('../images/home/product_bg1.png');
        background-size: cover;
        position: relative;
        margin-top: -66px;
        background-repeat: no-repeat;
    }

    .product_contain_bg1 {
        background-image: url('../images/home/product_contain_bg1.png');
        height: 221px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        margin-top: -59px;
    }

    .product_bg2 {
        background-image: url('../images/home/product_bg2.png');
        background-size: cover;
        position: relative;
        margin-top: -66px;
        background-repeat: no-repeat;
        height: 423px;
    }

    .product_contain_bg2 {
        background-image: url('../images/home/product_contain_bg2.png');
        height: 221px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        margin-top: -47px;
    }

    .product_bg3 {
        background-image: url('../images/home/product_bg3.png');
        background-size: cover;
        position: relative;
        margin-top: -100px;
        background-repeat: no-repeat;
        height: 423px;
    }

    .product_contain_bg3 {
        background-image: url('../images/home/product_contain_bg3.png');
        height: 238px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        margin-top: -47px;
    }

    .product_bg4 {
        background-image: url('../images/home/product_bg4.png');
        background-size: cover;
        position: relative;
        margin-top: -73px;
        background-repeat: no-repeat;
        height: 457px;
    }

    .product_contain_bg4 {
        background-image: url('../images/home/product_contain_bg4.png');
        height: 221px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        margin-top: -61px;
    }

    .footer-container {
        text-align: left;
    }

    /* Navigation */
    .navbar-theme {
        position: absolute;
        top: 0;
        width: 100%;
        padding: 15px;
        z-index: 999;
        transition: all 0.3s ease;
    }

    /* When scrolled */
    .navbar-theme.fixed {
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(187, 187, 187, 0.41);
        backdrop-filter: blur(6px);
        padding: 10px 15px;
    }

    .navbar-theme.fixed .logo img {
        height: 55px;
        /* smaller logo */
    }

    .navbar-theme.fixed .logo {
        margin-left: 0;
    }

    .product_content {
        text-align: center;
        margin-top: 40px;
    }

    .flavour-card img {
        left: 10px;
        top: 16px;
    }

    .product_hero_section .product_thumbnail {
        width: 100%;
        height: auto !important;
    }

    .product_hero_section_banner_element {
        position: absolute;
        top: 159px;
        right: 10px;
        height: 131px;
    }

    .product_curve_text {
        width: 100%;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        z-index: 1001;
    }

    /* Fullscreen menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #5bb148;
        backdrop-filter: blur(12px);
        display: flex;
        flex-direction: column;
        transition: 0.4s ease;
        z-index: 1000;
        gap: 0;
        padding-top: 100px;
        text-transform: uppercase;
    }

    .nav-links a {
        color: #fff !important;
        font-size: 17px;
        margin: 15px 0;
        text-decoration: none;
        font-family: 'neosans';
    }

    /* Active state */
    .nav-links.active {
        right: 0;
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
    }

    body.menu-open .menu-toggle {
        display: none;
    }
}

/* Distributor page css */
/* =========================
HERO
========================= */

.distributor-hero {
    height: 100vh;
    background: url('../images/home/distributor-home.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(116, 70, 42, 0.75),
            rgba(116, 70, 42, 0.15));
}

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

.distribute-hero-content h1 {
    font-family: 'banano';
    font-size: 110px;
    color: #fff;
    line-height: 1;
    text-shadow:
        4px 4px 0 #78D65C,
        -2px -2px 0 #78D65C,
        2px -2px 0 #78D65C,
        -2px 2px 0 #78D65C;
}

.distribute-hero-stroke-text {
    position: absolute;
    bottom: -35px;
    right: 60px;
    font-size: 120px;
    font-family: 'banano';
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    opacity: .7;
}

/* =========================
INFO SECTION
========================= */

.distributor-info {
    position: relative;
}

.info-left {
    background: linear-gradient(135deg, #5BB148, #8DD47B);
    padding: 90px;
    height: 100%;
}

.info-left h3 {
    font-size: 40px;
    color: #2F2F2F;
    margin-bottom: 15px;
    font-family: 'neosans';
}

.info-left h2 {
    font-size: 80px;
    line-height: .9;
    color: #fff;
    font-family: 'banano';
    margin-bottom: 30px;
}

.info-left p {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    font-family: 'neosans';
    line-height: 1.2;
}

.info-left strong {
    font-size: 18px;
    color: #222;
    font-family: 'neosans';
    font-weight: 800;
}

.info-right {
    background: #FBF6EE;
    height: 100%;
    padding: 90px 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: 'neosans';
}

.feature-box img {
    width: 70px;
}

.feature-box h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #A1775B;
    font-family: 'neosans';
    font-weight: 800;
}

.feature-box p {
    font-size: 22px;
    line-height: 1.1;
    color: #8A684F;
    margin: 0;
    font-family: 'neosans';
    font-weight: 800;
}

/* =========================
REGION
========================= */

.own-region {
    padding: 120px 0;
    background-color: #fffdf9;
}

.section-title h2 {
    font-size: 90px;
    color: #9B6D52;
    font-family: 'banano';
    margin-bottom: 20px;
}

.section-title p {
    max-width: 850px;
    margin: auto;
    font-size: 18px;
    color: #5C4B3F;
    font-family: 'neosans';
}

.region-card {
    background: #fff;
    border-radius: 35px;
    padding: 45px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.region-card:hover {
    background: #A9775A;
    color: #fff;
}

.region-card:hover h4 {
    color: #fff;
}

.region-card img {
    height: 60px;
    margin-bottom: 25px;
}

.region-card h4 {
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 15px;
    font-family: 'neosans';
    color: #9B6D52;
}

.region-card h4 span {
    font-weight: 900;
}

.region-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
FORM SECTION
========================= */

.distributor-form-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/home/about_second_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-bg-shape {
    position: absolute;
    inset: 0;
    background: url('../img/wave-bg.png') center center/cover no-repeat;
    opacity: .2;
}

.form-wrapper {
    background: #fff;
    padding: 60px;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.form-heading {
    margin-bottom: 40px;
}

.form-heading h2 {
    font-size: 60px;
    color: #A1775B;
    margin-bottom: 10px;
    font-family: 'banano';
}

.form-heading p {
    font-size: 17px;
    color: #5C4B3F;
}

.form-group {
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #CFC7BE;
    padding: 15px 5px;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: #444;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}

.submit-btn {
    border: none;
    background: #B38465;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 16px;
    transition: .3s;
}

.submit-btn:hover {
    background: #8F654C;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px) {

    .distribute-hero-content h1 {
        font-size: 70px;
    }

    .hero-stroke-text {
        font-size: 70px;
        right: 20px;
    }

    .info-left {
        padding: 60px 30px;
    }

    .info-left h2 {
        font-size: 60px;
    }

    .info-right {
        grid-template-columns: 1fr;
        padding: 60px 30px;
    }

    .section-title h2 {
        font-size: 60px;
    }

    .form-wrapper {
        padding: 40px 25px;
    }

    .form-heading h2 {
        font-size: 42px;
    }

    .distribute-hero-stroke-text {
        display: none;
    }

    .info-left h3 {
        font-size: 29px;
    }
}

@media(max-width:767px) {

    .distributor-hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-stroke-text {
        display: none;
    }

    .info-left h2 {
        font-size: 50px;
    }

    .section-title h2 {
        font-size: 48px;
    }
}


/* contact us */
.contact-hero-section {
    position: relative;
    padding: 120px 0;
    background: #F7F3ED;
    overflow: hidden;
}

/* BACKGROUND WAVES */

.contact-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-radial-gradient(circle at 30% 30%,
            rgba(210, 202, 193, 0.28) 0px,
            rgba(210, 202, 193, 0.28) 55px,
            transparent 55px,
            transparent 120px);
    opacity: .8;
}

/* CONTENT */

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

.mini-title {
    display: block;
    font-size: 35px;
    line-height: 1;
    color: #222;
    margin-bottom: 18px;
    font-family: 'neosans';
}

.contact-content h1 {
    font-size: 60px;
    line-height: .92;
    color: #A97858;
    margin-bottom: 40px;
    font-family: 'banano';
}

.hero-desc {
    font-size: 20px;
    color: #413A36;
    margin-bottom: 70px;
    line-height: 1.6;
}

/* DETAILS */

.contact-details {
    max-width: 700px;
}

.contact-flex {
    display: flex;
    gap: 80px;
    margin: 45px 0;
}

.contact-block h4 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #1D1D1D;
    font-family: 'neosans';
    font-weight: 800;
}

.contact-block p,
.contact-block a {
    font-size: 19px;
    line-height: 1.7;
    color: #433C37;
    text-decoration: none;
    font-family: 'neosans';
}

/* SOCIAL */

.social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #111;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: .3s ease;
}

.social-icons a:hover {
    background: #A97858;
    border-color: #A97858;
    color: #fff;
    transform: translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .contact-hero-section {
        padding: 90px 0;
    }

    .mini-title {
        font-size: 42px;
    }

    .contact-content h1 {
        font-size: 75px;
    }

    .hero-desc {
        font-size: 18px;
        margin-bottom: 50px;
    }

    .contact-flex {
        gap: 40px;
    }
}

@media(max-width:767px) {

    .contact-content h1 {
        font-size: 58px;
    }

    .mini-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .contact-flex {
        flex-direction: column;
        gap: 30px;
    }

    .contact-block h4 {
        font-size: 24px;
    }

    .contact-block p,
    .contact-block a {
        font-size: 16px;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

.form-heading2 h2 {
    font-family: 'neosans' !important;
    font-size: 37px;
}