/* ============================================
   Siddhanath Fruit Supplier - Custom Styles
   ============================================ */

/* ============================================================
   Form Success Toast
   ============================================================ */
.form-success-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.25), 0 0 30px rgba(37,211,102,0.1);
    max-width: 400px;
    transform: translateY(120%) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form-success-toast.fst-show {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.fst-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fst-icon i {
    font-size: 22px;
    color: #fff;
}
.fst-body strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}
.fst-body p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}
.fst-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.fst-close:hover {
    color: #fff;
}
@media (max-width: 480px) {
    .form-success-toast {
        left: 12px;
        right: 12px;
        bottom: 16px;
        max-width: none;
    }
}

/* ======= GLOBAL FONT ======= */
html,
body,
p,
a,
span,
li,
td,
th,
input,
textarea,
select,
button,
label,
div {
    font-family: 'Poppins', sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif !important;
}

/* ============================================================
   GLOBAL PREMIUM BUTTON SYSTEM
   ============================================================ */

/* --- Base: Override template .link-v1 --- */
.link-v1 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    padding: 14px 36px !important;
    border-radius: 50px !important;
    border: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    cursor: pointer;
    z-index: 1;
}

/* --- Primary Orange (bg-brand) --- */
.link-v1.bg-brand {
    background: linear-gradient(135deg, #ea8800 0%, #f5a623 50%, #ea8800 100%) !important;
    background-size: 200% 200% !important;
    color: #fff !important;
    box-shadow: 0 6px 25px rgba(234,136,0,0.35), 0 2px 8px rgba(234,136,0,0.2) !important;
    border: none !important;
}
.link-v1.bg-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}
.link-v1.bg-brand:hover {
    background-position: 100% 0 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(234,136,0,0.45), 0 4px 15px rgba(234,136,0,0.3) !important;
    color: #fff !important;
}
.link-v1.bg-brand:hover::before {
    left: 100%;
}
.link-v1.bg-brand:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(234,136,0,0.3) !important;
}

/* --- Outline Style Override --- */
.link-v1.color-brand {
    background: transparent !important;
    color: #ea8800 !important;
    border: 2px solid #ea8800 !important;
    box-shadow: 0 4px 15px rgba(234,136,0,0.1) !important;
}
.link-v1.color-brand:hover {
    background: linear-gradient(135deg, #ea8800, #f5a623) !important;
    color: #fff !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(234,136,0,0.4) !important;
}

/* --- ALL generic buttons and .btn --- */
.btn {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative;
    overflow: hidden;
}
.btn-primary,
.btn-success {
    background: linear-gradient(135deg, #ea8800 0%, #f5a623 50%, #ea8800 100%) !important;
    background-size: 200% 200% !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(234,136,0,0.3) !important;
}
.btn-primary:hover,
.btn-success:hover {
    background-position: 100% 0 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(234,136,0,0.4) !important;
}

/* ======= REDESIGNED HEADER ======= */

/* --- Top utility bar --- */
#topbar.topbar-redesign {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
#header #topbar.topbar-redesign .inner-topbar {
    border-bottom: none !important;
    padding: 0 !important;
}
.topbar-flex {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 !important;
}
.topbar-left-info,
.topbar-right-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.topbar-contact-link {
    color: rgba(255,255,255,0.8) !important;
    font: 400 13px/20px "Roboto", sans-serif !important;
    text-decoration: none !important;
    transition: color 0.3s;
    letter-spacing: 0.3px;
    display: inline-block;
}
.topbar-contact-link:hover {
    color: #f5a623 !important;
}
.topbar-contact-link i {
    color: #f5a623;
    margin-right: 5px;
    font-size: 13px;
}
.topbar-divider {
    color: rgba(255,255,255,0.2) !important;
    font-size: 12px;
    display: inline-block;
}
.topbar-location {
    color: rgba(255,255,255,0.8) !important;
    font: 400 13px/20px "Roboto", sans-serif !important;
    letter-spacing: 0.3px;
    display: inline-block;
}
.topbar-location i {
    color: #f5a623;
    margin-right: 5px;
}
.topbar-social {
    display: flex;
    gap: 10px;
}
.topbar-social a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px !important;
    width: 28px;
    height: 28px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: all 0.3s;
    text-decoration: none !important;
    line-height: 28px !important;
}
.topbar-social a:hover {
    background: #f5a623;
    color: #fff !important;
    transform: translateY(-2px);
}

/* --- Brand bar with logo + tagline + CTA --- */
.brand-bar {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.brand-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand-identity {
    display: flex;
    align-items: center;
    gap: 18px;
}
.brand-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}
.brand-tagline {
    text-align: left;
    padding: 0;
    border-left: 3px solid #ea8800;
    padding-left: 18px;
}
.brand-tagline h2 {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.brand-tagline p {
    margin: 4px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #ea8800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}
.brand-cta-group {
    display: flex;
    gap: 10px;
    align-items: center;
}
.brand-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.brand-cta-btn:first-child {
    background: linear-gradient(135deg, #ea8800 0%, #f5a623 50%, #ea8800 100%);
    background-size: 200% 200%;
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(234,136,0,0.35);
}
.brand-cta-btn:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}
.brand-cta-btn:first-child:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(234,136,0,0.45);
    background-position: 100% 0;
}
.brand-cta-btn:first-child:hover::before {
    left: 100%;
}
.brand-cta-outline {
    background: transparent;
    color: #1a1a2e !important;
    border: 2px solid #1a1a2e;
    box-shadow: 0 2px 10px rgba(26,26,46,0.08);
}
.brand-cta-outline:hover {
    background: #1a1a2e;
    color: #fff !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(26,26,46,0.25);
}

/* --- Main navigation bar --- */
.nav-redesign {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    border: none !important;
}
.nav-redesign .mega-menu ul.navbar-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}
.nav-redesign .mega-menu ul.navbar-nav li {
    padding: 0 !important;
}
.nav-redesign .mega-menu ul.navbar-nav li a {
    color: rgba(255,255,255,0.85) !important;
    font-size: 13px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 15px 16px !important;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-redesign .mega-menu ul.navbar-nav li a .nav-icon {
    font-size: 14px;
    opacity: 0.7;
}
.nav-redesign .mega-menu ul.navbar-nav li a:hover {
    color: #f5a623 !important;
    background: rgba(255,255,255,0.05);
}
.nav-redesign .mega-menu ul.navbar-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #ea8800, #f5a623);
    border-radius: 3px 3px 0 0;
    transition: transform 0.3s ease;
}
.nav-redesign .mega-menu ul.navbar-nav li a:hover::after,
.nav-redesign .mega-menu ul.navbar-nav li.active a::after {
    transform: translateX(-50%) scaleX(1);
}
.nav-redesign .mega-menu ul.navbar-nav li.active a {
    color: #f5a623 !important;
}
/* Dropdown override for dark nav */
.nav-redesign .mega-menu .level1.dropdown .dropdown-menu {
    background: #1a1a2e !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    margin-top: 0;
}
.nav-redesign .mega-menu .level1.dropdown .dropdown-menu li {
    background: transparent !important;
}
.nav-redesign .mega-menu .level1.dropdown .dropdown-menu li a {
    color: rgba(255,255,255,0.8) !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex !important;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-redesign .mega-menu .level1.dropdown .dropdown-menu li a::after {
    display: none;
}
.nav-redesign .mega-menu .level1.dropdown .dropdown-menu li:last-child a {
    border-bottom: none;
}
.nav-redesign .mega-menu .level1.dropdown .dropdown-menu li a:hover {
    background: rgba(245,166,35,0.1) !important;
    color: #f5a623 !important;
}
.nav-redesign .mega-menu .level1.dropdown .dropdown-menu li a i {
    color: #f5a623;
    width: 18px;
    text-align: center;
}
/* Mobile hamburger for dark nav */
.nav-redesign .icon-menu-mobile {
    color: #fff;
}

/* Logo sizing (kept for pages that still use old layout) */
.logo img,
.logo-mobile img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

/* ============================================================
   HERO — VIDEO BACKGROUND SECTION
   ============================================================ */
.hero-video-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(26,26,46,0.88) 0%, rgba(15,22,41,0.75) 40%, rgba(234,136,0,0.25) 100%);
    z-index: 2;
}
.hero-video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 60px 30px 50px;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    color: #f5a623;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 8px 24px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title span {
    color: #f5a623;
    display: inline-block;
}
.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0 0 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-btn i {
    transition: transform 0.3s ease;
}
.hero-btn:hover i {
    transform: scale(1.2);
}
.hero-btn-primary {
    background: linear-gradient(135deg, #ea8800 0%, #f5a623 50%, #ea8800 100%);
    background-size: 200% 200%;
    color: #fff;
    box-shadow: 0 8px 30px rgba(234,136,0,0.4), 0 0 0 0 rgba(234,136,0,0.3);
    animation: heroGlow 3s ease-in-out infinite;
}
@keyframes heroGlow {
    0%, 100% { box-shadow: 0 8px 30px rgba(234,136,0,0.4), 0 0 0 0 rgba(234,136,0,0.2); }
    50% { box-shadow: 0 8px 30px rgba(234,136,0,0.4), 0 0 0 8px rgba(234,136,0,0); }
}
.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}
.hero-btn-primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 50px rgba(234,136,0,0.5);
    background-position: 100% 0;
    color: #fff;
    text-decoration: none;
}
.hero-btn-primary:hover::before {
    left: 100%;
}
.hero-btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}
.hero-btn-outline {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-4px) scale(1.04);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}
.hero-btn-outline:active {
    transform: translateY(-1px) scale(0.98);
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.hero-stat {
    text-align: center;
}
.hero-stat strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 900;
    color: #f5a623;
    line-height: 1.2;
}
.hero-stat span {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ============================================================
   TESTIMONIALS — Premium Video Background Section
   ============================================================ */
.testimonial-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}
.testimonial-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.testimonial-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(26,26,46,0.93) 0%, rgba(15,22,41,0.88) 40%, rgba(234,136,0,0.15) 100%);
    z-index: 1;
}
.testimonial-content-wrap {
    position: relative;
    z-index: 2;
}

/* Section Header */
.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}
.testimonial-badge {
    display: inline-block;
    background: rgba(245,166,35,0.12);
    border: 1px solid rgba(245,166,35,0.3);
    color: #f5a623;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.testimonial-title {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 15px;
    letter-spacing: -0.5px;
}
.testimonial-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    margin: 0;
}

/* Testimonial Cards Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}
.testimonial-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px 32px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ea8800, #f5a623, #ea8800);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(245,166,35,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(234,136,0,0.08);
}
.testimonial-card:hover::before {
    opacity: 1;
}

/* Quote Icon */
.testimonial-quote-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(234,136,0,0.2), rgba(245,166,35,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.testimonial-quote-icon i {
    font-size: 20px;
    color: #f5a623;
}

/* Star Rating */
.testimonial-stars {
    margin-bottom: 16px;
}
.testimonial-stars i {
    color: #f5a623;
    font-size: 14px;
    margin-right: 2px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85) !important;
    margin: 0 0 24px;
    font-weight: 300;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ea8800, #f5a623);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 1px;
}
.testimonial-author-info h4 {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.3px;
}
.testimonial-author-info span {
    font-size: 13px;
    color: rgba(245,166,35,0.8) !important;
    font-weight: 400;
}

/* Trust Strip */
.testimonial-trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    padding: 28px 40px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}
.trust-item {
    text-align: center;
}
.trust-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #f5a623;
    line-height: 1.2;
}
.trust-item span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* Sticky Navbar - only the nav menu row */
#header .header-top {
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.whatsapp-float i {
    line-height: 60px;
}

/* Market Rates Table */
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #fdf8f0;
}
.table-bordered > thead > tr > th {
    border-color: #ea8800;
}
.table > thead > tr > th,
.table > tbody > tr > td {
    vertical-align: middle;
}

/* Fruit Info Cards — Attractive Redesign */
.fruit-info-card {
    background: #ffffff;
    padding: 20px 20px 20px 22px;
    border-radius: 12px;
    margin-bottom: 18px;
    border-left: 4px solid #ea8800;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.35s cubic-bezier(.25,.8,.25,1);
    position: relative;
    overflow: hidden;
}
.fruit-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234,136,0,0.04) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}
.fruit-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(234,136,0,0.18);
    border-left-color: #d47a00;
}
.fruit-info-card .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea8800, #f5a623);
    color: #fff;
    font-size: 16px;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(234,136,0,0.3);
}
.fruit-info-card .info-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.fruit-info-card .info-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.fruit-info-card p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    padding-left: 52px;
}
.fruit-info-card p small {
    color: #999;
    font-size: 12px;
}

/* Fruit tab heading style */
.fruit-tab-heading {
    color: #ea8800;
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}
.fruit-tab-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ea8800, #f5a623);
    border-radius: 2px;
}
.fruit-tab-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #555;
}

/* Fruit tab CTA button enhancement */
.fruit-tab-cta {
    margin-top: 20px;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 14px 36px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 25px rgba(234,136,0,0.35);
    position: relative;
    overflow: hidden;
}
.fruit-tab-cta::after {
    content: '\f061';
    font-family: FontAwesome !important;
    font-size: 13px;
    transition: transform 0.3s ease;
}
.fruit-tab-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(234,136,0,0.45);
}
.fruit-tab-cta:hover::after {
    transform: translateX(4px);
}

/* Fruit tab thumbnail row */
.fruit-thumb-row {
    margin-top: 12px;
}
.fruit-thumb-row .col-xs-4 {
    padding: 3px;
}
.fruit-thumb-row .tab-thumb-img {
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.fruit-thumb-row .tab-thumb-img:hover {
    border-color: #ea8800;
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(234,136,0,0.2);
}

/* Main fruit image enhancement — see consolidated .tab-main-img below */

/* Fix Fruits We Buy Tabs */
#fruits-we-buy .product-tab .tab-container .tab-content {
    height: 0;
    overflow: hidden;
    display: none;
}
#fruits-we-buy .product-tab .tab-container .tab-content.active {
    height: auto;
    overflow: visible;
    display: block;
}
#fruits-we-buy .product-tab .tabs-title {
    margin-bottom: 30px;
    padding-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    border-bottom: none;
}
#fruits-we-buy .product-tab .tabs-title li {
    cursor: pointer;
    padding: 10px 24px;
    border-right: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #555;
    background: #f5f5f5;
    transition: all 0.3s ease;
}
#fruits-we-buy .product-tab .tabs-title li:hover {
    background: #fff3e0;
    color: #ea8800;
}
#fruits-we-buy .product-tab .tabs-title li.active {
    background: linear-gradient(135deg, #ea8800, #f5a623);
    color: #fff;
    box-shadow: 0 4px 12px rgba(234,136,0,0.3);
}
#fruits-we-buy .product-tab .tabs-title li:last-child {
    border-right: none;
}
#fruits-we-buy .product-tab .tab-container {
    padding-top: 20px;
}
#fruits-we-buy .tab-content .row {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 991px) {
    #fruits-we-buy .tab-content .row > .col-md-5,
    #fruits-we-buy .tab-content .row > .col-md-7 {
        width: 100%;
    }
    #fruits-we-buy .tab-content .row > .col-md-5 {
        margin-bottom: 20px;
    }
}

/* How It Works Steps */
.step-card {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 10px;
    min-height: 250px;
    transition: all 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Form Styles for Sell Your Crop & Agent Partner */
.form-section {
    padding: 60px 0;
}
.form-section .form-group {
    margin-bottom: 20px;
}
.form-section .form-control {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 15px;
}
.form-section .form-control:focus {
    border-color: #ea8800;
    box-shadow: 0 0 0 0.2rem rgba(234,136,0,0.25);
}
.form-section textarea.form-control {
    height: auto;
    min-height: 120px;
}
.form-section .btn-submit {
    background: linear-gradient(135deg, #ea8800 0%, #f5a623 50%, #ea8800 100%);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    padding: 15px 48px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 25px rgba(234,136,0,0.35);
    position: relative;
    overflow: hidden;
}
.form-section .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}
.form-section .btn-submit:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(234,136,0,0.45);
}
.form-section .btn-submit:hover::before {
    left: 100%;
}
.form-section .btn-submit:active {
    transform: translateY(-1px) scale(0.98);
}
.form-section label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

/* Page Banner for inner pages */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    position: relative;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}
.page-banner h1 {
    color: #fff;
    position: relative;
    z-index: 1;
    font-size: 36px;
    margin-bottom: 10px;
}
.page-banner p {
    color: #fff;
    position: relative;
    z-index: 1;
    font-size: 18px;
}

/* ============================================
   Standards Page Styles
   ============================================ */

/* Section wrapper */
.std-section {
    padding: 50px 0;
}
.std-section-alt {
    background-color: #fdf8f0;
}

/* Section header with big number */
.std-section-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ea8800;
}
.std-section-number {
    font-size: 48px;
    font-weight: 800;
    color: #ea8800;
    line-height: 1;
    opacity: 0.35;
    font-family: Georgia, serif;
}
.std-section-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin: 0;
}
.std-section-intro {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

/* Intro text */
.std-intro-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: #ea8800;
    margin-bottom: 10px;
}
.std-intro-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Accordion */
.std-accordion .panel {
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.std-accordion .panel-heading {
    background: #fff;
    cursor: pointer;
    padding: 14px 20px;
    transition: background 0.2s ease;
}
.std-accordion .panel-heading:hover {
    background: #fff8ef;
}
.std-accordion .panel-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.std-accordion .panel-title .fa {
    color: #ea8800;
    margin-right: 10px;
    font-size: 14px;
}
.std-accordion .panel-body {
    padding: 20px 25px 25px;
    border-top: 1px solid #eee;
}

/* Spec table */
.std-spec-table {
    margin-bottom: 20px;
}
.std-spec-table td {
    padding: 10px 14px !important;
    font-size: 14px;
    border-top: 1px solid #eee !important;
    vertical-align: middle !important;
}
.std-spec-table .std-label {
    font-weight: 600;
    color: #333;
    width: 180px;
    white-space: nowrap;
    background: #fafafa;
}
.std-rejected {
    color: #d32f2f;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Grading box */
.std-grading-box {
    background: #f4fbf4;
    border-left: 4px solid #4CAF50;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 0 4px 4px 0;
}
.std-grading-box h5 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.std-grading-box h5 .fa {
    color: #ea8800;
    margin-right: 6px;
}
.std-grading-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.std-grading-box ul li {
    padding: 4px 0;
    font-size: 14px;
    color: #444;
}
.std-grade-spl {
    display: inline-block;
    background: #ea8800;
    color: #fff;
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 13px;
}
.std-grade-a1 {
    display: inline-block;
    background: #4CAF50;
    color: #fff;
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 13px;
}

/* Returns/Damage policy note */
.std-returns {
    font-size: 14px;
    color: #555;
    padding: 10px 14px;
    background: #fffbf0;
    border-left: 3px solid #ea8800;
    border-radius: 0 4px 4px 0;
    margin-bottom: 5px;
}
.std-returns .fa {
    color: #ea8800;
    margin-right: 6px;
}

/* Variety badges */
.std-varieties-row {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.std-variety-badge {
    display: inline-block;
    background: #ea8800;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Guava checklist */
.std-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.std-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: #f9f9f9;
    border-radius: 4px;
    font-size: 14px;
}
.std-check-item .fa {
    color: #4CAF50;
    font-size: 16px;
    margin-top: 2px;
}

/* Quality Commitment section */
.std-commitment {
    background: #fff;
    padding: 60px 0;
}
.std-commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}
.std-commit-item {
    text-align: center;
    padding: 25px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.std-commit-item:hover {
    border-color: #ea8800;
    box-shadow: 0 4px 12px rgba(234,136,0,0.12);
    transform: translateY(-3px);
}
.std-commit-item .fa {
    color: #ea8800;
    margin-bottom: 12px;
}
.std-commit-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}
.std-commit-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Standards page responsive */
@media (max-width: 768px) {
    .std-section-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    .std-section-number {
        font-size: 36px;
    }
    .std-section-header h2 {
        font-size: 20px;
    }
    .std-spec-table .std-label {
        width: auto;
        white-space: normal;
    }
    .std-checklist {
        grid-template-columns: 1fr;
    }
    .std-commitment-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Responsive adjustments (global)
   ============================================ */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float i {
        line-height: 50px;
    }
}

/* ============================================
   Fruit Gallery Section Styles
   ============================================ */

/* === TAB SECTION IMAGE SIZING === */
/* Main image in fruit tabs - fixed height, cropped to fit */
.tab-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: block;
    transition: transform 0.3s ease;
}
.tab-main-img:hover {
    transform: scale(1.02);
}

/* Thumbnail images below main tab image */
.tab-thumb-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.tab-thumb-img:hover {
    border-color: #ea8800;
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(234,136,0,0.2);
}

/* "Why Choose Us" center image */
.choose-center-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: block;
}

/* === GALLERY CARDS === */

/* Variety section heading */
.variety-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ea8800;
    display: inline-block;
}
.variety-title i {
    margin-right: 8px;
}

/* Gallery row */
.fruit-gallery-row {
    display: flex;
    flex-wrap: wrap;
}

/* Gallery item spacing */
.gallery-item {
    margin-bottom: 20px;
}

/* Fruit Card */
.fruit-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}
.fruit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

/* Card image container */
.fruit-card-img {
    position: relative;
    overflow: hidden;
}
.fruit-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.fruit-card:hover .fruit-card-img img {
    transform: scale(1.05);
}

/* Small card variant */
.fruit-card-sm .fruit-card-img img {
    height: 150px;
}

/* Overlay badge */
.fruit-card-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}
.fruit-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #ea8800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fruit-badge-green {
    background: #27ae60;
}
.fruit-badge-gold {
    background: #f39c12;
}
.fruit-badge-orange {
    background: #e67e22;
}
.fruit-badge-pink {
    background: #e84393;
}

/* Card info text */
.fruit-card-info {
    padding: 12px 15px;
}
.fruit-card-info h5 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}
.fruit-card-info p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

/* Small card info */
.fruit-card-sm .fruit-card-info {
    padding: 8px 12px;
}
.fruit-card-sm .fruit-card-info h5 {
    font-size: 13px;
    margin: 0;
}

/* Variety section styling */
.variety-section {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
}

/* Gallery CTA buttons */
#fruit-gallery .link-v1 {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 14px 38px !important;
    border-radius: 50px !important;
    text-decoration: none;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
#fruit-gallery .link-v1.bg-brand:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(234,136,0,0.45) !important;
}

/* About page slider images */
.slider-about img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* === RESPONSIVE IMAGE SIZING === */
@media (max-width: 1199px) {
    .tab-main-img {
        height: 240px;
    }
    .fruit-card-img img {
        height: 190px;
    }
    .fruit-card-sm .fruit-card-img img {
        height: 130px;
    }
}

@media (max-width: 991px) {
    .tab-main-img {
        height: 220px;
    }
    .tab-thumb-img {
        height: 60px;
    }
    .choose-center-img {
        max-height: 320px;
    }
    .fruit-card-img img {
        height: 180px;
    }
    .fruit-card-sm .fruit-card-img img {
        height: 120px;
    }
    .variety-section {
        padding: 20px 15px;
    }
}

@media (max-width: 767px) {
    .tab-main-img {
        height: 200px;
        margin-bottom: 15px;
    }
    .tab-thumb-img {
        height: 55px;
    }
    .choose-center-img {
        max-height: 250px;
        margin-bottom: 20px;
    }
    .fruit-card-img img {
        height: 160px;
    }
    .fruit-card-sm .fruit-card-img img {
        height: 110px;
    }
    .variety-title {
        font-size: 18px;
    }
    .gallery-item {
        margin-bottom: 15px;
    }
    .variety-section {
        padding: 15px 10px;
        margin-bottom: 30px !important;
    }
    .slider-about img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .tab-main-img {
        height: 170px;
    }
    .tab-thumb-img {
        height: 45px;
    }
    .choose-center-img {
        max-height: 200px;
    }
    .fruit-card-img img {
        height: 140px;
    }
    .fruit-card-sm .fruit-card-img img {
        height: 95px;
    }
    .slider-about img {
        height: 150px;
    }
}

/* ============================================================
   GALLERY PREVIEW CARDS (index.html)
   ============================================================ */
.gallery-preview-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}
.gallery-preview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.gallery-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 15px 12px;
    text-align: center;
}
.gallery-preview-overlay p {
    color: #fff;
    font-size: 13px;
    margin: 6px 0 0;
    opacity: 0.9;
}

/* ============================================================
   GALLERY PAGE (gallery.html) — Full Styles
   ============================================================ */
.gallery-page-container {
    padding: 0 15px;
}

/* Intro Section */
.gallery-intro {
    text-align: center;
    padding: 40px 20px 10px;
    max-width: 700px;
    margin: 0 auto;
}
.gallery-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Filter Buttons */
.gallery-filters {
    text-align: center;
    padding: 20px 0 30px;
}
.gallery-filter-btn {
    display: inline-block;
    padding: 8px 20px;
    margin: 5px 4px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    background: #fff;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}
.gallery-filter-btn:hover {
    border-color: #4caf50;
    color: #4caf50;
}
.gallery-filter-btn.active {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

/* Gallery Section Headers */
.gallery-section {
    margin-bottom: 50px;
}
.gallery-section:last-of-type,
.gallery-section:nth-last-of-type(2) {
    margin-bottom: 0 !important;
}
.gallery-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}
.gallery-section-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Gallery Tags */
.gallery-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
}

/* Gallery Grid — uses Bootstrap row/col, no CSS grid */
.gallery-grid {
    margin-left: -10px;
    margin-right: -10px;
}
.gallery-grid-item {
    position: relative;
    margin-bottom: 20px;
}

/* Gallery Cards */
.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #fff;
    width: 100%;
}
.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-card:hover img {
    transform: scale(1.05);
}
.gallery-card-label {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}
.gallery-card-caption {
    padding: 12px 14px;
}
.gallery-card-caption h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 3px;
}
.gallery-card-caption p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
.gallery-lightbox.active {
    display: flex;
}
.lightbox-inner {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    text-align: center;
}
.lightbox-img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 100000;
    opacity: 0.8;
    transition: opacity 0.2s;
    line-height: 1;
}
.lightbox-close:hover {
    opacity: 1;
}
.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    padding: 15px 18px;
    border-radius: 50%;
    z-index: 100000;
    opacity: 0.7;
    transition: opacity 0.2s, background 0.2s;
    line-height: 1;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255,255,255,0.2);
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}
.lightbox-caption {
    color: #fff;
    font-size: 15px;
    margin-top: 12px;
    opacity: 0.85;
}
.lightbox-counter {
    color: #aaa;
    font-size: 13px;
    margin-top: 5px;
}

/* CTA Section */
.gallery-cta-section {
    background: linear-gradient(135deg, #2d8f3e 0%, #1a6b2b 100%);
    padding: 50px 30px;
    border-radius: 16px;
    margin: 40px 0 50px;
    text-align: center;
    color: #fff;
}
.gallery-cta-inner h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}
.gallery-cta-inner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    color: #fff;
}
.gallery-cta-inner .link-v1 {
    margin: 0 8px 10px;
}
.gallery-cta-whatsapp {
    border: 2px solid #fff !important;
    color: #fff !important;
    background: transparent !important;
}
.gallery-cta-whatsapp:hover {
    background: rgba(255,255,255,0.15) !important;
}

/* Stats */
.gallery-stat {
    text-align: center;
    padding: 20px 10px;
}
.gallery-stat h4 {
    font-size: 36px;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 5px;
}
.gallery-stat p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ============================================================
   GALLERY PAGE — Responsive Breakpoints
   ============================================================ */
@media (max-width: 1199px) {
    .gallery-card img {
        height: 200px;
    }
}

@media (max-width: 991px) {
    .gallery-card img {
        height: 180px;
    }
    .gallery-section-header h3 {
        font-size: 19px;
    }
    .gallery-cta-inner h3 {
        font-size: 24px;
    }
    .gallery-stat h4 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .gallery-grid-item {
        margin-bottom: 15px;
    }
    .gallery-card img {
        height: 160px;
    }
    .gallery-filter-btn {
        padding: 6px 14px;
        font-size: 13px;
    }
    .gallery-preview-card img {
        height: 150px;
    }
    .lightbox-prev,
    .lightbox-next {
        font-size: 28px;
        padding: 10px 14px;
    }
    .gallery-cta-section {
        padding: 35px 20px;
        margin: 30px 0 40px;
    }
    .gallery-cta-inner h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid-item {
        margin-bottom: 12px;
    }
    .gallery-card img {
        height: 130px;
    }
    .gallery-card-caption {
        padding: 8px 10px;
    }
    .gallery-card-caption h5 {
        font-size: 12px;
    }
    .gallery-preview-card img {
        height: 120px;
    }
    .gallery-section-header h3 {
        font-size: 16px;
    }
    .gallery-filter-btn {
        padding: 5px 10px;
        font-size: 12px;
        margin: 3px;
    }
    .gallery-stat h4 {
        font-size: 24px;
    }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE — ALL PAGES
   ============================================================ */

/* --- Prevent horizontal overflow globally --- */
html, body {
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
}

/* --- Benefit / Step card class (replaces inline styles) --- */
.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    text-align: center;
    min-height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.14);
}
.benefit-card img {
    margin-bottom: 15px;
}
.benefit-card h4 {
    color: #ea8800;
}

/* Step card used in "How It Works" */
.step-card-box {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 10px;
    min-height: 250px;
}

/* Form container class (replaces inline on form wrapper) */
.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Section heading used in forms */
.form-section-heading {
    color: #333;
    border-bottom: 2px solid #ea8800;
    padding-bottom: 8px;
    margin-bottom: 20px;
}
.form-section-heading i {
    color: #ea8800;
}

/* Fruit detail info card (legacy alias — now using .fruit-info-card) */

/* ============================================================
   TABLET: 768px – 980px
   ============================================================ */
@media (max-width: 980px) {
    /* Nav bar — white bar with hamburger in brand bar */
    #header,
    #header.header-v1,
    #header.header-v3 {
        position: relative !important;
    }
    .brand-bar {
        position: relative;
        z-index: 999;
        padding-right: 60px;
    }
    .nav-redesign {
        background: transparent !important;
        padding: 0 !important;
        position: static !important;
        box-shadow: none !important;
        border: none !important;
    }
    .nav-redesign .box {
        position: static !important;
        padding: 0 !important;
        display: block !important;
    }
    .nav-redesign .logo-mobile {
        display: none !important;
    }
    .nav-redesign .icon-menu-mobile {
        position: absolute !important;
        top: 12px;
        right: 15px;
        height: 60px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1002;
        padding: 0 8px !important;
        margin: 0 !important;
        float: none !important;
        width: auto !important;
    }
    .nav-redesign .icon-menu-mobile i {
        background: none !important;
        color: #1a1a2e !important;
        font-size: 26px !important;
        width: auto !important;
        height: auto !important;
    }
    .nav-redesign .icon-menu-mobile i::before {
        content: "\f0c9" !important;
        font-family: FontAwesome !important;
        color: #1a1a2e !important;
    }
    .nav-redesign .mega-menu ul.navbar-nav {
        border: none !important;
        background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
        border-top: 3px solid #ea8800;
    }
    .nav-redesign .mega-menu ul.navbar-nav li {
        padding: 0 !important;
    }
    .nav-redesign .mega-menu ul.navbar-nav li a {
        font-size: 13px !important;
        padding: 12px 20px !important;
        color: rgba(255,255,255,0.85) !important;
        display: flex !important;
        align-items: center;
        gap: 10px;
    }
    .nav-redesign .mega-menu ul.navbar-nav li a .nav-icon {
        display: inline-block !important;
        color: #f5a623;
    }
    .nav-redesign .mega-menu ul.navbar-nav li a::after {
        display: none;
    }
    .nav-redesign .mega-menu .level1.dropdown .dropdown-menu {
        background: rgba(0,0,0,0.2) !important;
        box-shadow: none;
        border: none;
    }
    .nav-redesign .mega-menu .level1.dropdown .dropdown-menu li a {
        padding: 8px 30px !important;
    }
    
    /* Brand bar — tablet */
    .brand-bar-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        text-align: center;
    }
    .brand-identity {
        justify-content: center;
    }
    .brand-tagline {
        padding: 0;
        padding-left: 15px;
    }
    .brand-tagline h2 {
        font-size: 20px;
    }
    .brand-cta-group {
        order: 3;
    }
    
    /* Top utility bar — tablet */
    .topbar-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .topbar-left-info,
    .topbar-right-info {
        gap: 8px;
    }
    
    /* Trust badges */
    .shipping-v2 h3 {
        font-size: 14px;
    }
    .shipping-v2 p {
        font-size: 11px;
    }
    
    /* Fruit Tabs */
    #fruits-we-buy .product-tab .tabs-title li {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    /* How It Works */
    .special-content h3 {
        font-size: 26px !important;
    }
    .special-content p {
        font-size: 15px !important;
    }
    .step-card-box {
        padding: 20px;
        min-height: auto;
    }
    
    /* Why Choose Us — stack on tablet */
    .choose-us .col-md-3,
    .choose-us .col-md-6 {
        width: 100%;
        float: none;
    }
    .choose-us .col-md-3 {
        display: flex;
        flex-wrap: wrap;
    }
    .choose-us .col-md-3 .text {
        width: 50%;
        padding: 10px;
        box-sizing: border-box;
    }
    .choose-us .col-md-6 {
        margin-bottom: 25px;
    }
    .choose-us .align-right .text {
        text-align: left !important;
    }
    .choose-center-img {
        max-height: 280px !important;
        margin: 0 auto 25px;
        display: block;
    }
    
    /* Footer */
    .footer-bottom .box {
        text-align: center;
    }
    .footer-bottom .float-left,
    .footer-bottom .float-right {
        float: none !important;
        text-align: center;
        width: 100%;
    }
    .footer-bottom .float-right {
        margin-top: 10px;
    }
    .menu-bottom-footer {
        display: inline-block;
    }
    .menu-bottom-footer li {
        display: inline-block;
    }
    
    /* Sell Your Crop / Agent forms */
    .form-card {
        padding: 25px;
    }
    
    /* Page banner */
    .page-banner {
        padding: 50px 0;
    }
    .page-banner h1 {
        font-size: 28px;
    }
    .page-banner p {
        font-size: 15px;
    }
    
    /* Benefits cards */
    .benefit-card {
        padding: 20px;
        min-height: auto;
        margin-bottom: 20px;
    }

    /* Market rates table — smaller text */
    .table > thead > tr > th,
    .table > tbody > tr > td {
        font-size: 13px;
        padding: 8px !important;
    }
}

/* ============================================================
   MOBILE: max-width 767px — PREMIUM WORLD-CLASS DESIGN
   ============================================================ */
@media (max-width: 767px) {

    /* ───── GLOBAL MOBILE RESET ───── */
    html,
    body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }
    body {
        font-size: 15px;
        -webkit-text-size-adjust: 100%;
        color: #333;
        line-height: 1.7;
        background: #fafafa;
    }
    * { -webkit-tap-highlight-color: transparent; }
    #wrappage {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container,
    .container-ver2 {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Premium spacing rhythm */
    .space-50 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
    .space-100 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .space-30 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    
    /* ═══════════════════════════════════════
       MOBILE HEADER — Elegant White Bar
       ═══════════════════════════════════════ */
    
    /* Hide utility bar */
    #topbar.topbar-redesign {
        display: none !important;
    }
    
    /* Header positioning */
    #header,
    #header.header-v1,
    #header.header-v3 {
        position: relative !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
    
    /* Brand bar — premium white header */
    .brand-bar {
        padding: 14px 0;
        padding-right: 60px;
        background: #fff;
        position: relative;
        z-index: 999;
        border-bottom: 1px solid rgba(234,136,0,0.15);
    }
    .brand-bar-inner {
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        text-align: left;
    }
    .brand-identity {
        flex-direction: row !important;
        gap: 14px;
        align-items: center;
    }
    .brand-logo img {
        height: 55px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
    }
    .brand-tagline {
        padding: 0;
        border-left: 3px solid #ea8800;
        padding-left: 14px;
        text-align: left;
    }
    .brand-tagline h2 {
        font-size: 16px;
        font-family: 'Playfair Display', Georgia, serif;
        font-weight: 800;
        color: #1a1a2e;
        letter-spacing: 0.3px;
        line-height: 1.15;
        margin: 0;
    }
    .brand-tagline p {
        font-size: 8.5px;
        letter-spacing: 2px;
        margin: 3px 0 0;
        color: #ea8800;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
    }
    .brand-cta-group {
        display: none;
    }
    
    /* Nav bar — transparent, holds hamburger + menu */
    .nav-redesign {
        background: transparent !important;
        padding: 0 !important;
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        z-index: 998;
    }
    .nav-redesign .box {
        position: static !important;
        padding: 0 !important;
        display: block !important;
    }
    .nav-redesign .logo-mobile {
        display: none !important;
    }
    
    /* Hamburger — premium dark icon on right */
    .nav-redesign .icon-menu-mobile {
        position: absolute !important;
        top: 0;
        right: 10px;
        height: 83px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1002;
        padding: 0 12px !important;
        margin: 0 !important;
        cursor: pointer;
        float: none !important;
        width: auto !important;
    }
    .nav-redesign .icon-menu-mobile i {
        background: none !important;
        color: #1a1a2e !important;
        font-size: 24px !important;
        width: auto !important;
        height: auto !important;
        transition: color 0.3s ease;
    }
    .nav-redesign .icon-menu-mobile i::before {
        content: "\f0c9" !important;
        font-family: FontAwesome !important;
        color: #1a1a2e !important;
    }
    .nav-redesign .icon-menu-mobile.active i::before {
        content: "\f00d" !important;
        color: #ea8800 !important;
    }
    
    /* Slide menu — elegant dark overlay */
    .nav-redesign .mega-menu {
        padding: 0 !important;
        width: 100%;
    }
    .nav-redesign .mega-menu ul.navbar-nav {
        border: none !important;
        background: linear-gradient(180deg, #1a1a2e 0%, #0f1629 100%);
        border-top: 3px solid #ea8800;
        margin: 0 !important;
        padding: 10px 0;
        box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    }
    .nav-redesign .mega-menu ul.navbar-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .nav-redesign .mega-menu ul.navbar-nav li:last-child {
        border-bottom: none;
    }
    .nav-redesign .mega-menu ul.navbar-nav li a {
        color: rgba(255,255,255,0.8) !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        padding: 14px 24px !important;
        display: flex !important;
        align-items: center;
        gap: 12px;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        line-height: 1.4 !important;
        text-transform: none;
        font-family: 'Poppins', sans-serif;
    }
    .nav-redesign .mega-menu ul.navbar-nav li a::after {
        display: none !important;
    }
    .nav-redesign .mega-menu ul.navbar-nav li a .nav-icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        color: #f5a623;
        font-size: 15px;
        width: 32px;
        height: 32px;
        background: rgba(245,166,35,0.1);
        border-radius: 8px;
        text-align: center;
        opacity: 1;
        transition: all 0.3s ease;
    }
    .nav-redesign .mega-menu ul.navbar-nav li.active a {
        color: #f5a623 !important;
        background: rgba(245,166,35,0.06);
        border-left: 3px solid #f5a623;
    }
    .nav-redesign .mega-menu ul.navbar-nav li.active a .nav-icon {
        background: rgba(245,166,35,0.2);
    }
    .nav-redesign .mega-menu ul.navbar-nav li a:hover {
        background: rgba(255,255,255,0.03);
        color: #f5a623 !important;
        padding-left: 28px !important;
    }
    
    /* Dropdown sub-menu */
    .nav-redesign .mega-menu .level1.dropdown .dropdown-menu {
        position: static !important;
        background: rgba(0,0,0,0.15) !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .nav-redesign .mega-menu .level1.dropdown .dropdown-menu li a {
        padding: 12px 24px 12px 68px !important;
        font-size: 13px !important;
        color: rgba(255,255,255,0.65) !important;
    }
    .nav-redesign .mega-menu .level1.dropdown .dropdown-menu li a::after {
        display: none !important;
    }
    .nav-redesign .mega-menu .level1.dropdown .dropdown-menu li a:hover {
        color: #f5a623 !important;
    }
    
    /* ═══════════════════════════════════════
       MOBILE HERO — VIDEO BACKGROUND
       ═══════════════════════════════════════ */
    .hero-video-section {
        min-height: 75vh;
    }
    .hero-video-content {
        padding: 40px 20px 35px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 6px 18px;
        margin-bottom: 18px;
        letter-spacing: 0.5px;
    }
    .hero-title {
        font-size: 38px;
        margin-bottom: 14px;
        line-height: 1.15;
    }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.7;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 35px;
    }
    .hero-btn {
        font-size: 14px;
        padding: 14px 28px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .hero-stats {
        gap: 30px;
    }
    .hero-stat strong {
        font-size: 24px;
    }
    .hero-stat span {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    /* Hide old slider if present */
    .tp-banner-container {
        display: none !important;
    }
    
    /* ═══════════════════════════════════════
       TRUST BADGES — Vibrant Colored Cards
       ═══════════════════════════════════════ */
    .shipping-v2.home3-shiping {
        padding: 20px 0 0 !important;
        background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    }
    .shipping-v2.home3-shiping .col-xs-6 {
        margin-bottom: 14px;
        padding-left: 6px;
        padding-right: 6px;
    }
    .shipping-v2.home3-shiping .col-xs-6 > div,
    .shipping-v2.home3-shiping .col-xs-6 {
        text-align: center;
        background: #fff;
        border-radius: 16px;
        padding: 16px 10px 14px;
        box-shadow: 0 4px 18px rgba(234,136,0,0.08);
        border: 1px solid rgba(234,136,0,0.08);
        position: relative;
        overflow: hidden;
    }
    .shipping-v2.home3-shiping .col-xs-6 > div::before,
    .shipping-v2.home3-shiping .col-xs-6::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ea8800, #f5a623);
        border-radius: 16px 16px 0 0;
    }
    .shipping-v2 img {
        max-width: 42px;
        margin-bottom: 10px;
        filter: drop-shadow(0 3px 6px rgba(234,136,0,0.25));
    }
    .shipping-v2 h3 {
        font-size: 12px;
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 2px;
        letter-spacing: 0.3px;
    }
    .shipping-v2 p {
        font-size: 8px;
        color: #ea8800;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 600;
    }
    
    /* ═══════════════════════════════════════
       SECTION HEADINGS — Bold & Dramatic
       ═══════════════════════════════════════ */
    .title-text-v2 {
        margin-bottom: 25px !important;
    }
    .title-text-v2 h3 {
        font-size: 26px;
        font-family: 'Playfair Display', Georgia, serif;
        font-weight: 900;
        color: #1a1a2e;
        position: relative;
        display: inline-block;
        padding-bottom: 16px;
        letter-spacing: -0.3px;
    }
    .title-text-v2 h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #ea8800, #f5a623, #ea8800);
        border-radius: 4px;
    }
    
    /* ═══════════════════════════════════════
       FRUIT TABS — Vibrant Pill Design
       ═══════════════════════════════════════ */
    #fruits-we-buy {
        padding-top: 15px;
        padding-bottom: 15px;
        background: #fff;
    }
    #fruits-we-buy .product-tab .tabs-title {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        padding-bottom: 18px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-bottom: none !important;
    }
    #fruits-we-buy .product-tab .tabs-title::-webkit-scrollbar {
        display: none;
    }
    #fruits-we-buy .product-tab .tabs-title li {
        padding: 10px 20px;
        font-size: 12px;
        font-weight: 700;
        border-right: none !important;
        border-radius: 30px;
        white-space: nowrap;
        flex-shrink: 0;
        color: #1a1a2e;
        background: #f5f5f5;
        margin-bottom: 0;
        transition: all 0.3s ease;
        letter-spacing: 0.3px;
        border: 2px solid transparent;
    }
    #fruits-we-buy .product-tab .tabs-title li.active {
        background: linear-gradient(135deg, #ea8800, #f5a623) !important;
        color: #fff !important;
        box-shadow: 0 6px 20px rgba(234,136,0,0.4);
        border-color: transparent;
        transform: scale(1.05);
    }
    #fruits-we-buy .tab-content .row {
        display: block;
    }
    #fruits-we-buy .tab-content h3 {
        font-size: 22px !important;
        margin-bottom: 10px !important;
        font-weight: 800 !important;
    }
    #fruits-we-buy .tab-content p {
        font-size: 14px !important;
        line-height: 1.8 !important;
        margin-bottom: 20px !important;
        color: #555;
    }
    
    /* Fruit info cards — Vibrant Colored Cards */
    .fruit-info-card {
        padding: 0;
        border-radius: 16px;
        margin-bottom: 14px;
        border-left: none;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.07);
        overflow: hidden;
        position: relative;
    }
    .fruit-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ea8800, #f5a623);
    }
    .fruit-info-card .info-header {
        display: flex;
        align-items: center;
        padding: 16px 16px 0;
        gap: 12px;
    }
    .fruit-info-card .info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 17px;
        margin-right: 0;
        border-radius: 12px;
        background: linear-gradient(135deg, #ea8800, #f5a623);
        box-shadow: 0 6px 16px rgba(234,136,0,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }
    .fruit-info-card .info-header h4 {
        font-size: 12px;
        font-weight: 800;
        color: #ea8800;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
    }
    .fruit-info-card p {
        font-size: 14px;
        padding: 10px 16px 14px;
        color: #1a1a2e;
        line-height: 1.5;
        font-weight: 600;
        margin: 0;
    }
    .fruit-info-card p small {
        font-weight: 400;
        color: #888;
        font-size: 11px;
    }
    
    /* Alternating card accent colors */
    .fruit-info-card:nth-child(2) .info-icon {
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        box-shadow: 0 6px 16px rgba(39,174,96,0.3);
    }
    .fruit-info-card:nth-child(2)::before {
        background: linear-gradient(90deg, #27ae60, #2ecc71);
    }
    .fruit-info-card:nth-child(2) .info-header h4 {
        color: #27ae60;
    }
    .fruit-info-card:nth-child(3) .info-icon {
        background: linear-gradient(135deg, #2980b9, #3498db);
        box-shadow: 0 6px 16px rgba(41,128,185,0.3);
    }
    .fruit-info-card:nth-child(3)::before {
        background: linear-gradient(90deg, #2980b9, #3498db);
    }
    .fruit-info-card:nth-child(3) .info-header h4 {
        color: #2980b9;
    }
    .fruit-info-card:nth-child(4) .info-icon {
        background: linear-gradient(135deg, #8e44ad, #9b59b6);
        box-shadow: 0 6px 16px rgba(142,68,173,0.3);
    }
    .fruit-info-card:nth-child(4)::before {
        background: linear-gradient(90deg, #8e44ad, #9b59b6);
    }
    .fruit-info-card:nth-child(4) .info-header h4 {
        color: #8e44ad;
    }
    
    .fruit-tab-heading {
        font-size: 24px !important;
        color: #1a1a2e !important;
        font-family: 'Playfair Display', Georgia, serif;
        font-weight: 800 !important;
    }
    .fruit-tab-heading::after {
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #ea8800, #f5a623);
    }
    .fruit-tab-desc {
        font-size: 14px !important;
        color: #555 !important;
        line-height: 1.7 !important;
    }
    .fruit-tab-cta {
        display: block !important;
        text-align: center;
        padding: 16px 20px;
        border-radius: 14px;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        box-shadow: 0 8px 25px rgba(234,136,0,0.35);
        margin-top: 20px;
        text-transform: uppercase;
    }
    
    /* Tab images — elegant framing */
    .tab-main-img {
        border-radius: 20px !important;
        box-shadow: 0 10px 35px rgba(0,0,0,0.15) !important;
        border: 3px solid rgba(234,136,0,0.1) !important;
    }
    .fruit-thumb-row {
        margin-top: 12px;
    }
    .tab-thumb-img {
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
        border: 2px solid rgba(234,136,0,0.08) !important;
    }
    
    /* ═══════════════════════════════════════
       GALLERY PREVIEW — Bold Visual Grid
       ═══════════════════════════════════════ */
    #fruit-gallery {
        background: linear-gradient(180deg, #1a1a2e 0%, #0f1629 100%);
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px 35px !important;
        width: calc(100% + 40px);
        max-width: none;
    }
    #fruit-gallery .title-text-v2 h3 {
        color: #fff !important;
    }
    #fruit-gallery .title-text-v2 h3::after {
        background: linear-gradient(90deg, #f5a623, #ea8800, #f5a623);
    }
    #fruit-gallery p {
        color: rgba(255,255,255,0.6) !important;
    }
    #fruit-gallery > .row {
        margin-left: -6px;
        margin-right: -6px;
    }
    .gallery-item {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
    .gallery-preview-card {
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        margin-bottom: 12px;
        display: block;
        position: relative;
        border: 2px solid rgba(245,166,35,0.15);
    }
    .gallery-preview-card img {
        height: 180px;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .gallery-preview-overlay {
        background: linear-gradient(transparent 10%, rgba(26,26,46,0.9) 100%);
        padding: 50px 14px 16px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .gallery-preview-overlay .gallery-tag {
        font-size: 10px;
        padding: 5px 14px;
        border-radius: 20px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        display: inline-block;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .gallery-preview-overlay p {
        font-size: 12px;
        color: rgba(255,255,255,0.85) !important;
        margin: 8px 0 0;
        font-weight: 500;
        letter-spacing: 0.3px;
    }
    #fruit-gallery .link-v1.bg-brand {
        background: transparent !important;
        border: 2px solid #f5a623 !important;
        color: #f5a623 !important;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 13px;
        padding: 14px 30px;
    }
    
    /* ═══════════════════════════════════════
       HOW IT WORKS — Bold Numbered Steps
       ═══════════════════════════════════════ */
    .special.bg-images {
        background-size: cover;
        background-attachment: scroll !important;
        padding: 45px 0 !important;
        position: relative;
    }
    .special.bg-images::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26,26,46,0.92), rgba(15,22,41,0.88));
    }
    .special-content h3 {
        font-size: 28px !important;
        margin-bottom: 10px !important;
        font-family: 'Playfair Display', Georgia, serif !important;
        font-weight: 900 !important;
        text-shadow: 0 2px 15px rgba(0,0,0,0.4);
    }
    .special-content p {
        font-size: 14px !important;
        margin-bottom: 28px !important;
        opacity: 0.85;
    }
    .step-card-box {
        padding: 30px 24px 26px;
        min-height: auto;
        margin-bottom: 16px;
        border-radius: 18px !important;
        background: #fff !important;
        box-shadow: 0 10px 35px rgba(0,0,0,0.15);
        border-bottom: none;
        border-top: 5px solid #ea8800;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .step-card-box::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(234,136,0,0.03) 0%, transparent 40%);
        pointer-events: none;
    }
    .step-card-box .icon-big {
        max-width: 55px !important;
        margin-bottom: 15px !important;
        filter: drop-shadow(0 4px 8px rgba(234,136,0,0.35));
    }
    .step-card-box h3 {
        font-size: 14px !important;
        font-weight: 900 !important;
        margin-bottom: 4px !important;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    .step-card-box h4 {
        font-size: 18px;
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 10px;
        font-family: 'Playfair Display', Georgia, serif;
    }
    .step-card-box p {
        font-size: 13px;
        line-height: 1.7;
        color: #666;
    }
    
    /* ═══════════════════════════════════════
       WHY CHOOSE US — Colored Feature Cards
       ═══════════════════════════════════════ */
    .choose-us {
        padding: 40px 0 !important;
        background: linear-gradient(180deg, #fdf8f0 0%, #fff 100%);
    }
    .choose-us .col-md-3,
    .choose-us .col-md-6 {
        width: 100%;
        float: none;
        padding: 0 20px;
    }
    .choose-us .col-md-3 {
        display: block;
    }
    .choose-us .col-md-3 .text {
        width: 100%;
        margin-bottom: 16px;
        padding: 22px 20px;
        background: #fff;
        border-radius: 16px;
        border-left: none;
        border-top: 4px solid #ea8800;
        box-shadow: 0 6px 22px rgba(0,0,0,0.06);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .choose-us .col-md-3 .text::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(234,136,0,0.02) 0%, transparent 30%);
        pointer-events: none;
    }
    .choose-us .col-md-3 .text:nth-child(2) {
        border-top-color: #27ae60;
    }
    .choose-us .col-md-3 .text:nth-child(2)::after {
        background: linear-gradient(180deg, rgba(39,174,96,0.02) 0%, transparent 30%);
    }
    .choose-us .col-md-3 .text:nth-child(3) {
        border-top-color: #2980b9;
    }
    .choose-us .col-md-3 .text:nth-child(3)::after {
        background: linear-gradient(180deg, rgba(41,128,185,0.02) 0%, transparent 30%);
    }
    .choose-us .title-choose {
        margin-bottom: 28px;
        padding: 0 20px;
    }
    .choose-us .title-choose h3 {
        font-size: 26px;
        font-family: 'Playfair Display', Georgia, serif;
        font-weight: 900;
        color: #1a1a2e;
    }
    .choose-us .title-choose p {
        font-size: 14px;
        line-height: 1.7;
        color: #555;
    }
    .choose-us .border-choose {
        margin: 15px 0;
    }
    .choose-us .align-right .text {
        text-align: left !important;
    }
    .choose-us .text .icon-choose {
        max-width: 44px;
        margin-bottom: 12px;
        filter: drop-shadow(0 4px 8px rgba(234,136,0,0.2));
    }
    .choose-us .text h3 {
        font-size: 17px;
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 8px;
        font-family: 'Playfair Display', Georgia, serif;
    }
    .choose-us .text p {
        font-size: 13px;
        line-height: 1.7;
        color: #666;
        margin-bottom: 0;
    }
    .choose-center-img {
        max-height: 260px !important;
        margin: 0 auto 25px;
        border-radius: 20px !important;
        box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
        border: 3px solid rgba(234,136,0,0.15) !important;
    }
    
    /* ═══════════════════════════════════════
       TESTIMONIALS — Mobile
       ═══════════════════════════════════════ */
    .testimonial-section {
        padding: 50px 0 40px;
    }
    .testimonial-header {
        margin-bottom: 30px;
    }
    .testimonial-title {
        font-size: 28px !important;
    }
    .testimonial-subtitle {
        font-size: 14px;
    }
    .testimonial-badge {
        font-size: 12px;
        padding: 6px 18px;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    .testimonial-grid-bottom {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .testimonial-card {
        padding: 24px 20px 20px;
        border-radius: 16px;
    }
    .testimonial-card:hover {
        transform: none;
    }
    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }
    .testimonial-trust-strip {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
        margin-top: 30px;
    }
    .trust-item strong {
        font-size: 22px;
    }
    .trust-item span {
        font-size: 10px;
    }
    .trust-divider {
        display: none;
    }
    
    /* Procurement Regions */
    .brand-content.owl-carousel {
        padding: 10px 0;
    }
    .brand-content .items img {
        opacity: 0.4;
        transition: opacity 0.3s;
        filter: brightness(3);
    }
    .brand-content .items img:hover {
        opacity: 0.8;
    }
    
    /* ═══════════════════════════════════════
       MARKET RATES — Card Layout on Mobile
       ═══════════════════════════════════════ */
    #market-rates {
        padding: 35px 0;
        background: linear-gradient(180deg, #fff 0%, #fdf8f0 100%);
    }
    #market-rates .title-text-v2 h3 {
        font-size: 24px;
    }
    .table-responsive {
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
        border: none;
        background: transparent;
    }
    
    /* Transform table into card layout */
    .table,
    .table thead,
    .table tbody,
    .table tr,
    .table th,
    .table td {
        display: block !important;
    }
    .table {
        border: none !important;
        background: transparent !important;
        margin-bottom: 0;
    }
    .table > thead {
        display: none !important;
    }
    .table > tbody > tr {
        background: #fff !important;
        border-radius: 18px;
        margin-bottom: 16px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.06);
        overflow: hidden;
        border: 1px solid rgba(234,136,0,0.08);
        position: relative;
    }
    .table > tbody > tr > td {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px !important;
        border: none !important;
        border-bottom: 1px solid #f5f5f5 !important;
        text-align: right !important;
        font-size: 14px;
        color: #444;
        white-space: normal !important;
    }
    .table > tbody > tr > td:last-child {
        border-bottom: none !important;
    }
    .table > tbody > tr > td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #1a1a2e;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: left;
        min-width: 100px;
        padding-right: 15px;
        flex-shrink: 0;
    }
    
    /* First cell = fruit name = card header */
    .table > tbody > tr > td:first-child {
        background: linear-gradient(135deg, #ea8800, #f5a623);
        padding: 14px 20px !important;
        border-bottom: none !important;
        border-radius: 18px 18px 0 0;
    }
    .table > tbody > tr > td:first-child::before {
        color: rgba(255,255,255,0.8);
        font-size: 11px;
    }
    .table > tbody > tr > td:first-child,
    .table > tbody > tr > td:first-child strong {
        color: #fff !important;
        font-size: 16px;
        font-weight: 800 !important;
        font-family: 'Playfair Display', Georgia, serif;
    }
    
    /* Grade cells with colored badges */
    .table > tbody > tr > td:nth-child(3),
    .table > tbody > tr > td:nth-child(4),
    .table > tbody > tr > td:nth-child(5) {
        font-weight: 700;
    }
    .table > tbody > tr > td:nth-child(3) {
        color: #27ae60;
    }
    .table > tbody > tr > td:nth-child(4) {
        color: #2980b9;
    }
    .table > tbody > tr > td:nth-child(5) {
        color: #e67e22;
    }
    .table > tbody > tr > td:nth-child(6) {
        background: #fdf8f0;
        border-radius: 0 0 18px 18px;
        font-weight: 600;
        color: #1a1a2e;
    }
    
    /* Alternate card subtle styling */
    .table > tbody > tr:nth-of-type(odd),
    .table > tbody > tr:nth-of-type(even) {
        background: #fff !important;
    }
    
    /* ═══════════════════════════════════════
       CTA BUTTONS — Premium Mobile
       ═══════════════════════════════════════ */
    .link-v1 {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px !important;
        font-weight: 700 !important;
        padding: 14px 30px !important;
        border-radius: 50px !important;
        letter-spacing: 0.8px !important;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
        box-shadow: 0 6px 25px rgba(234,136,0,0.35) !important;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
    }
    .link-v1.bg-brand {
        background: linear-gradient(135deg, #ea8800 0%, #f5a623 50%, #ea8800 100%) !important;
        background-size: 200% 200% !important;
    }
    .link-v1.bg-brand::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
        transition: left 0.6s ease;
    }
    .link-v1:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 35px rgba(234,136,0,0.45) !important;
    }
    .link-v1.bg-brand:hover::before {
        left: 100%;
    }
    .fruit-tab-cta {
        width: 100%;
        text-align: center;
        padding: 14px 24px !important;
    }
    .hero-btn {
        border-radius: 50px;
        font-weight: 700;
        letter-spacing: 0.8px;
    }
    
    /* ═══════════════════════════════════════
       FOOTER — Luxe Dark Gradient
       ═══════════════════════════════════════ */
    #footer.footer-v3 {
        background: linear-gradient(180deg, #1a1a2e 0%, #0a0d1a 100%) !important;
    }
    .footer-inner {
        padding-top: 40px !important;
    }
    .footer-inner .col-md-3,
    .footer-inner .col-md-2,
    .footer-inner .col-md-4 {
        margin-bottom: 30px;
    }
    .footer-inner .title-footer {
        font-size: 18px;
        font-family: 'Playfair Display', Georgia, serif;
        font-weight: 800;
        color: #fff !important;
        margin-bottom: 18px;
        position: relative;
        padding-bottom: 12px;
    }
    .footer-inner .title-footer::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #ea8800, #f5a623);
        border-radius: 3px;
    }
    .footer-inner p {
        font-size: 13px;
        color: rgba(255,255,255,0.65);
        line-height: 1.7;
    }
    .footer-inner .list-footer li a {
        color: rgba(255,255,255,0.6) !important;
        font-size: 13px;
        padding: 5px 0;
        display: block;
        transition: all 0.3s ease;
    }
    .footer-inner .list-footer li a:hover {
        color: #f5a623 !important;
        padding-left: 5px;
    }
    .footer-inner .social a {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: rgba(245,166,35,0.1);
        border: 1px solid rgba(245,166,35,0.15);
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        transition: all 0.3s ease;
    }
    .footer-inner .social a i {
        color: #f5a623;
        font-size: 17px;
    }
    .footer-inner .social a:hover {
        background: linear-gradient(135deg, #ea8800, #f5a623);
        border-color: transparent;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(234,136,0,0.3);
    }
    .footer-inner .social a:hover i {
        color: #fff;
    }
    .footer-inner .link-footer {
        color: #f5a623 !important;
        font-size: 13px;
        font-weight: 500;
    }
    
    /* Subscribe form premium */
    .subscribe {
        margin-top: 12px;
    }
    .subscribe .input-text {
        font-size: 13px;
        background: rgba(255,255,255,0.06) !important;
        border: 1px solid rgba(255,255,255,0.15) !important;
        color: #fff !important;
        border-radius: 10px !important;
        padding: 12px 15px !important;
        height: auto !important;
    }
    .subscribe .button {
        font-size: 13px;
        background: linear-gradient(135deg, #ea8800, #f5a623) !important;
        border-radius: 10px !important;
        border: none !important;
        padding: 12px 20px !important;
        margin-top: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    /* Footer bottom */
    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.06) !important;
        background: rgba(0,0,0,0.15) !important;
    }
    .footer-bottom .box {
        text-align: center;
        padding: 15px 0;
    }
    .footer-bottom .float-left,
    .footer-bottom .float-right {
        float: none !important;
        text-align: center;
        width: 100%;
    }
    .footer-bottom .float-left p {
        font-size: 12px;
        color: rgba(255,255,255,0.45);
    }
    .footer-bottom .float-right {
        margin-top: 10px;
    }
    .menu-bottom-footer li a {
        font-size: 12px;
        color: rgba(255,255,255,0.45) !important;
    }
    .language {
        margin-top: 8px;
    }
    .language span {
        color: rgba(255,255,255,0.45);
    }
    
    /* ═══════════════════════════════════════
       INNER PAGES — Premium Styles
       ═══════════════════════════════════════ */
    
    /* Page banner — gradient overlay */
    .page-banner {
        padding: 50px 20px;
        background-attachment: scroll !important;
    }
    .page-banner::before {
        background: linear-gradient(135deg, rgba(26,26,46,0.85), rgba(22,33,62,0.8)) !important;
    }
    .page-banner h1 {
        font-size: 26px;
        font-family: 'Playfair Display', Georgia, serif;
        font-weight: 800;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .page-banner p {
        font-size: 14px;
        opacity: 0.9;
    }
    
    /* Form pages — premium cards */
    .form-card {
        padding: 28px 22px;
        border-radius: 18px;
        box-shadow: 0 4px 25px rgba(0,0,0,0.06);
        border: 1px solid rgba(234,136,0,0.1);
    }
    .form-section {
        padding: 30px 0;
    }
    .form-section .form-control {
        font-size: 14px;
        height: 46px;
        border-radius: 10px;
        border: 1.5px solid #e8e8e8;
        transition: all 0.3s ease;
        padding: 10px 16px;
    }
    .form-section .form-control:focus {
        border-color: #ea8800;
        box-shadow: 0 0 0 3px rgba(234,136,0,0.1);
    }
    .form-section textarea.form-control {
        min-height: 100px;
        resize: vertical;
    }
    .form-section .btn-submit {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 12px;
        background: linear-gradient(135deg, #ea8800, #f5a623);
        box-shadow: 0 6px 20px rgba(234,136,0,0.3);
        letter-spacing: 0.5px;
    }
    .form-section label {
        font-size: 13px;
        font-weight: 600;
        color: #333;
        margin-bottom: 6px;
    }
    .form-section-heading {
        font-size: 18px;
        font-family: 'Playfair Display', Georgia, serif;
        font-weight: 700;
        color: #1a1a2e;
    }
    
    /* Benefit cards — premium */
    .benefit-card {
        padding: 24px 20px;
        min-height: auto;
        margin-bottom: 16px;
        border-radius: 16px;
        border: 1px solid rgba(234,136,0,0.1);
        box-shadow: 0 3px 15px rgba(0,0,0,0.04);
    }
    .benefit-card h4 {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a2e;
    }
    .benefit-card p {
        font-size: 13px;
        color: #666;
        line-height: 1.7;
    }
    .benefit-card img {
        max-width: 50px;
        filter: drop-shadow(0 3px 6px rgba(234,136,0,0.2));
    }
    
    /* About page */
    .slider-about img {
        height: 200px;
        border-radius: 14px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    /* Breadcrumb */
    .breadcrumb-section ol {
        font-size: 12px;
    }
    
    /* WhatsApp button */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 16px;
        font-size: 26px;
        box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    }
    
    /* ═══════════════════════════════════════
       STANDARDS PAGE — Mobile
       ═══════════════════════════════════════ */
    .std-section {
        padding: 30px 0;
    }
    .std-accordion .panel-heading {
        padding: 12px 16px;
    }
    .std-accordion .panel-title {
        font-size: 14px;
    }
    .std-accordion .panel-body {
        padding: 16px;
    }
    .std-variety-badge {
        font-size: 12px;
        padding: 5px 14px;
    }
    .std-grading-box {
        padding: 12px 16px;
    }
    .std-grading-box h5 {
        font-size: 14px;
    }
    
    /* FAQ page */
    .panel-group .panel {
        border-radius: 12px !important;
        overflow: hidden;
        margin-bottom: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }
    .panel-group .panel-heading {
        padding: 14px 18px;
    }
    .panel-group .panel-body {
        padding: 16px 18px;
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ============================================================
   SMALL MOBILE: max-width 480px — REFINED
   ============================================================ */
@media (max-width: 480px) {
    .container,
    .container-ver2 {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Hero */
    .hero-video-section {
        min-height: 70vh;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 13px;
    }
    .hero-badge {
        font-size: 10px;
        padding: 5px 14px;
    }
    .hero-stats {
        gap: 22px;
    }
    .hero-stat strong {
        font-size: 22px;
    }
    .hero-stat span {
        font-size: 9px;
    }
    
    /* Header */
    .brand-logo img {
        height: 48px;
    }
    .brand-tagline h2 {
        font-size: 14px;
    }
    .brand-tagline p {
        font-size: 7.5px;
        letter-spacing: 1.5px;
    }
    .brand-identity {
        gap: 10px;
    }
    .brand-tagline {
        padding-left: 10px;
        border-left-width: 2px;
    }
    .brand-bar {
        padding-right: 50px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .nav-redesign .icon-menu-mobile {
        height: 72px;
        right: 8px;
    }
    .nav-redesign .icon-menu-mobile i {
        font-size: 22px !important;
    }
    
    /* Headings */
    .title-text-v2 h3 {
        font-size: 20px;
    }
    
    /* Trust badges */
    .shipping-v2.home3-shiping .col-xs-6 {
        width: 50%;
    }
    .shipping-v2.home3-shiping .col-xs-6 > div,
    .shipping-v2.home3-shiping .col-xs-6 {
        padding: 14px 8px 12px;
    }
    .shipping-v2 h3 {
        font-size: 11px;
    }
    .shipping-v2 p {
        font-size: 7px;
    }
    .shipping-v2 img {
        max-width: 34px;
    }
    
    /* Fruit Tabs */
    #fruits-we-buy .product-tab .tabs-title li {
        padding: 6px 14px;
        font-size: 11px;
    }
    #fruits-we-buy .tab-content h3 {
        font-size: 18px !important;
    }
    .fruit-info-card .info-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 15px;
    }
    .fruit-info-card .info-header {
        padding: 14px 14px 0;
    }
    .fruit-info-card .info-header h4 {
        font-size: 11px;
    }
    .fruit-info-card p {
        font-size: 13px;
        padding: 8px 14px 12px;
    }
    .fruit-tab-heading {
        font-size: 20px !important;
    }
    
    /* How It Works */
    .special-content h3 {
        font-size: 22px !important;
    }
    .special-content p {
        font-size: 13px !important;
    }
    .step-card-box {
        padding: 22px 18px;
    }
    .step-card-box h3 {
        font-size: 15px !important;
    }
    .step-card-box h4 {
        font-size: 15px;
    }
    .step-card-box p {
        font-size: 12px;
    }
    
    /* Gallery Preview */
    .gallery-preview-card img {
        height: 140px;
    }
    .gallery-preview-overlay {
        padding: 30px 10px 12px;
    }
    .gallery-preview-overlay .gallery-tag {
        font-size: 9px;
        padding: 4px 10px;
    }
    .gallery-preview-overlay p {
        font-size: 11px;
    }
    
    /* Why Choose Us */
    .choose-us .title-choose h3 {
        font-size: 22px;
    }
    .choose-us .title-choose p {
        font-size: 13px;
    }
    .choose-us .text h3 {
        font-size: 15px;
    }
    .choose-us .text p {
        font-size: 12px;
    }
    .choose-us .col-md-3 .text {
        padding: 18px 16px;
    }
    .choose-center-img {
        max-height: 200px !important;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 20px 16px 18px;
    }
    .testimonial-text {
        font-size: 13px;
    }
    .testimonial-trust-strip {
        gap: 16px;
        padding: 16px;
    }
    
    /* Market Rates - Card layout */
    .table > tbody > tr > td {
        padding: 10px 16px !important;
        font-size: 13px;
    }
    .table > tbody > tr > td::before {
        font-size: 11px;
    }
    .table > tbody > tr > td:first-child,
    .table > tbody > tr > td:first-child strong {
        font-size: 15px !important;
    }
    
    /* Footer */
    .footer-inner .title-footer {
        font-size: 16px;
    }
    .footer-inner p,
    .footer-inner .list-footer li a {
        font-size: 12px;
    }
    .footer-bottom .float-left p {
        font-size: 11px;
    }
    
    /* Forms */
    .form-card {
        padding: 22px 16px;
        border-radius: 14px;
    }
    .form-section .form-control {
        font-size: 13px;
        height: 42px;
        padding: 8px 12px;
    }
    .form-section .btn-submit {
        font-size: 15px;
        padding: 12px 18px;
    }
    
    /* Benefit cards */
    .benefit-card {
        padding: 18px 14px;
        border-radius: 14px;
    }
    .benefit-card h4 {
        font-size: 15px;
    }
    .benefit-card p {
        font-size: 12px;
    }
    
    /* Page banner */
    .page-banner {
        padding: 40px 16px;
    }
    .page-banner h1 {
        font-size: 22px;
    }
    .page-banner p {
        font-size: 13px;
    }
    
    /* About page slider */
    .slider-about img {
        height: 160px;
    }
}

/* ============================================================
   EXTRA SMALL: max-width 360px — ULTRA COMPACT
   ============================================================ */
@media (max-width: 360px) {
    .container,
    .container-ver2 {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Hero */
    .hero-video-section {
        min-height: 60vh;
    }
    .hero-video-content {
        padding: 0 12px;
    }
    .hero-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    .hero-badge {
        font-size: 9px;
        padding: 4px 12px;
        margin-bottom: 14px;
    }
    .hero-cta-group {
        gap: 10px;
    }
    .hero-btn-primary,
    .hero-btn-outline {
        font-size: 12px;
        padding: 10px 18px;
    }
    .hero-stats {
        gap: 16px;
        margin-top: 24px;
        padding-top: 18px;
    }
    .hero-stat strong {
        font-size: 18px;
    }
    .hero-stat span {
        font-size: 8px;
    }
    
    /* Header */
    .brand-logo img {
        height: 42px;
    }
    .brand-tagline h2 {
        font-size: 13px;
    }
    .brand-tagline p {
        font-size: 7px;
        letter-spacing: 1px;
    }
    .brand-bar {
        padding-right: 45px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .nav-redesign .icon-menu-mobile {
        height: 62px;
        right: 6px;
    }
    .nav-redesign .icon-menu-mobile i {
        font-size: 20px !important;
    }
    
    /* Headings */
    .title-text-v2 h3 {
        font-size: 18px;
    }
    
    /* Fruit tabs */
    #fruits-we-buy .product-tab .tabs-title li {
        font-size: 10px;
        padding: 5px 10px;
    }
    .fruit-tab-heading {
        font-size: 18px !important;
    }
    .fruit-info-card .info-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 13px;
    }
    .fruit-info-card .info-header h4 {
        font-size: 10px;
    }
    .fruit-info-card p {
        font-size: 12px;
    }
    
    /* Gallery */
    .gallery-preview-card img {
        height: 110px;
    }
    .gallery-preview-card {
        border-radius: 14px;
    }
    
    /* How it works */
    .special-content h3 {
        font-size: 22px !important;
    }
    .step-card-box {
        padding: 22px 16px 18px;
    }
    .step-card-box h4 {
        font-size: 15px;
    }
    
    /* Why Choose */
    .choose-us .title-choose h3 {
        font-size: 20px;
    }
    .choose-center-img {
        max-height: 170px !important;
    }
    
    /* Testimonials */
    .testimonial-section {
        padding: 35px 0 25px;
    }
    .testimonial-card {
        padding: 18px 14px 16px;
    }
    .testimonial-text {
        font-size: 12px;
    }
    .testimonial-quote-icon {
        width: 36px;
        height: 36px;
    }
    .testimonial-trust-strip {
        gap: 12px;
        padding: 14px;
    }
    .trust-item strong {
        font-size: 18px;
    }
    
    /* Table Cards */
    .table > tbody > tr {
        border-radius: 14px;
        margin-bottom: 14px;
    }
    .table > tbody > tr > td {
        padding: 9px 14px !important;
        font-size: 12px;
    }
    .table > tbody > tr > td::before {
        font-size: 10px;
        min-width: 80px;
    }
    .table > tbody > tr > td:first-child {
        padding: 12px 14px !important;
        border-radius: 14px 14px 0 0;
    }
    .table > tbody > tr > td:first-child,
    .table > tbody > tr > td:first-child strong {
        font-size: 14px !important;
    }
    .table > tbody > tr > td:nth-child(6) {
        border-radius: 0 0 14px 14px;
    }
    
    /* Forms */
    .form-card {
        padding: 18px 14px;
        border-radius: 12px;
    }
    
    /* Page banner */
    .page-banner h1 {
        font-size: 20px;
    }
    
    /* Footer */
    .footer-bottom .float-left p {
        font-size: 10px;
    }
    .menu-bottom-footer li a {
        font-size: 10px;
    }
}

/* ============================================================
   SITE ENHANCEMENTS
   ============================================================ */

/* ─── SCROLL PROGRESS BAR ─── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #ea8800, #f5a623, #ea8800);
    z-index: 99999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ─── SCROLL REVEAL ─── */
.sr {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.sr.sr-left { transform: translateX(-50px); }
.sr.sr-right { transform: translateX(50px); }
.sr.sr-scale { transform: scale(0.9); }
.sr-visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
}
/* staggered children */
.sr-stagger > *:nth-child(1) { transition-delay: 0s; }
.sr-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.sr-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.sr-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.sr-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.sr-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ─── ANIMATED COUNTERS SECTION ─── */
.counter-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1629 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(234,136,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.counter-item {
    text-align: center;
    padding: 30px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.counter-item:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
    border-color: rgba(245,166,35,0.2);
}
.counter-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(234,136,0,0.2), rgba(245,166,35,0.1));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.counter-icon i {
    font-size: 24px;
    color: #f5a623;
}
.counter-num {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}
.counter-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
}

/* ─── SOCIAL PROOF NOTIFICATION ─── */
#social-proof {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    max-width: 340px;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#social-proof.sp-show {
    transform: translateX(0);
    opacity: 1;
}
.sp-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sp-icon i { font-size: 20px; color: #fff; }
.sp-body { min-width: 0; }
.sp-name { font-weight: 700; font-size: 14px; color: #1a1a2e; line-height: 1.2; }
.sp-detail { font-size: 12px; color: #666; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-time { font-size: 11px; color: #999; margin-top: 2px; }
.sp-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    padding: 2px;
    line-height: 1;
}
.sp-close:hover { color: #999; }

/* ─── QUICK INQUIRY POPUP ─── */
#qi-toggle {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9990;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea8800, #f5a623);
    border: none;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 24px rgba(234,136,0,0.35);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#qi-toggle:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(234,136,0,0.45); }
#qi-toggle.qi-active { transform: rotate(45deg); background: #333; }
#qi-panel {
    position: fixed;
    bottom: 170px;
    right: 24px;
    z-index: 9991;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 56px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
    padding: 28px 24px;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#qi-panel.qi-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.qi-head { margin-bottom: 18px; }
.qi-head h4 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin: 0 0 4px; }
.qi-head p { font-size: 12px; color: #888; margin: 0; }
#qi-close { position: absolute; top: 12px; right: 14px; background: none; border: none; color: #bbb; font-size: 18px; cursor: pointer; }
#qi-close:hover { color: #666; }
.qi-field { margin-bottom: 12px; }
.qi-field input, .qi-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border 0.3s;
    background: #fafafa;
}
.qi-field input:focus, .qi-field select:focus { border-color: #ea8800; background: #fff; }
.qi-field input::placeholder { color: #bcbcbc; }
.qi-submit {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ea8800, #f5a623);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 4px;
}
.qi-submit:hover { box-shadow: 0 6px 20px rgba(234,136,0,0.3); }

/* QI Toast */
.qi-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    opacity: 0;
    z-index: 99999;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}
.qi-toast.qi-toast-show { transform: translateX(-50%) translateY(0); opacity: 1; }
.qi-toast i { margin-right: 6px; }

/* ─── SEASONAL AVAILABILITY SECTION ─── */
.season-section {
    padding: 70px 0;
    background: #f8f8f8;
}
.season-section .title-text-v2 h3 { color: #1a1a2e; }
.season-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.season-fruit-btn {
    padding: 8px 18px;
    border-radius: 25px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.season-fruit-btn:hover { border-color: #ea8800; color: #ea8800; }
.season-fruit-btn.active { background: #ea8800; color: #fff; border-color: #ea8800; }
.season-chart {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.season-row {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    gap: 14px;
}
.season-row:last-child { margin-bottom: 0; }
.season-fruit-label {
    width: 130px;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    flex-shrink: 0;
}
.season-months {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4px;
    flex: 1;
}
.season-month {
    height: 32px;
    border-radius: 6px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #bbb;
    transition: all 0.3s;
}
.season-month.in-season {
    background: linear-gradient(135deg, #ea8800, #f5a623);
    color: #fff;
}
.season-month.peak-season {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}
.season-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}
.season-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.season-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    display: inline-block;
}

/* ─── DOWNLOAD RATE CARD BUTTON ─── */
.btn-download-rate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-download-rate:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
.btn-download-rate i { font-size: 16px; }

/* ─── MOBILE STICKY CTA BAR ─── */
#mobile-sticky-cta {
    position: fixed;
    bottom: -70px;
    left: 0;
    right: 0;
    z-index: 9980;
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    gap: 10px;
}
#mobile-sticky-cta.msc-show { bottom: 0; }
.msc-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s;
}
.msc-btn-primary { background: linear-gradient(135deg, #ea8800, #f5a623); color: #fff; }
.msc-btn-call { background: #25D366; color: #fff; }
.msc-btn i { font-size: 15px; }

/* ─── TRUST MARQUEE ─── */
.trust-marquee {
    background: linear-gradient(135deg, #ea8800, #f5a623);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}
.trust-marquee-inner {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}
.trust-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.trust-marquee-item i { font-size: 16px; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── ENHANCEMENT RESPONSIVE ─── */
@media (max-width: 1024px) {
    .counter-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    #mobile-sticky-cta { display: flex; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .counter-section { padding: 50px 15px; }
    .counter-num { font-size: 34px; }
    .counter-item { padding: 22px 8px; }
    #social-proof { left: 14px; right: 14px; max-width: none; bottom: 80px; }
    #qi-panel { right: 14px; left: 14px; width: auto; bottom: 160px; }
    #qi-toggle { right: 16px; bottom: 88px; width: 50px; height: 50px; font-size: 20px; }
    .season-chart { padding: 18px 14px; }
    .season-fruit-label { width: 90px; font-size: 12px; }
    .season-month { height: 26px; font-size: 9px; }
    .season-row { gap: 8px; }
    .trust-marquee-item { font-size: 13px; padding: 0 24px; }
}
@media (max-width: 480px) {
    .counter-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .counter-num { font-size: 28px; }
    .counter-icon { width: 44px; height: 44px; }
    .counter-icon i { font-size: 20px; }
    .counter-label { font-size: 11px; }
    .season-fruit-label { width: 72px; font-size: 11px; }
    .season-month { height: 22px; font-size: 8px; border-radius: 4px; }
    .season-months { gap: 2px; }
    .season-legend { font-size: 11px; gap: 12px; }
    .qi-field input, .qi-field select { padding: 9px 12px; font-size: 13px; }
    #social-proof { bottom: 72px; padding: 12px 14px; }
    .sp-name { font-size: 13px; }
    .sp-detail { font-size: 11px; }
}