/* ==========================================================================
   BIG FISH PRODUCE LTD - Light & Trendy Executive UI System
   Elevated Modern Organic Produce Trade Portal
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Luminous Light Theme Palette */
  --bg-main: #ffffff;
  --bg-light: #f8fbf9;
  --bg-surface: #ffffff;
  --bg-subtle: #f0fdf4;
  --bg-card: #ffffff;
  --bg-mesh: radial-gradient(at 10% 15%, rgba(209, 250, 229, 0.55) 0px, transparent 50%),
             radial-gradient(at 90% 10%, rgba(254, 243, 199, 0.45) 0px, transparent 45%),
             radial-gradient(at 80% 85%, rgba(220, 252, 231, 0.6) 0px, transparent 50%),
             #ffffff;

  /* Fresh Botanical & Forest Greens */
  --emerald-darkest: #042f2e;
  --emerald-dark: #064e3b;
  --emerald-main: #059669;
  --emerald-light: #10b981;
  --emerald-soft: #ecfdf5;
  --emerald-border: #a7f3d0;

  /* Warm Sunlight & Rich Amber Gold */
  --gold-light: #fef3c7;
  --gold-main: #d97706;
  --gold-vibrant: #f59e0b;
  --gold-dark: #b45309;
  --gold-soft: #fffbeb;
  --gold-glow: rgba(245, 158, 11, 0.25);

  /* Modern Neutral Text Hierarchy */
  --text-dark: #0f172a;
  --text-heading: #064e3b;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Borders & Dividers */
  --border-subtle: #e2e8f0;
  --border-emerald: rgba(16, 185, 129, 0.2);
  --border-gold: rgba(217, 119, 6, 0.25);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shape & Radii */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 9999px;

  /* Trendy Diffused Shadows */
  --shadow-xs: 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 14px rgba(6, 78, 59, 0.05);
  --shadow-md: 0 10px 28px rgba(6, 78, 59, 0.07);
  --shadow-lg: 0 20px 45px rgba(6, 78, 59, 0.1);
  --shadow-emerald: 0 8px 25px rgba(16, 185, 129, 0.22);
  --shadow-gold: 0 8px 25px rgba(245, 158, 11, 0.22);
  --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.15);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--emerald-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-ocean,
.text-forest {
  color: var(--emerald-dark) !important;
}

.text-emerald {
  color: var(--emerald-main) !important;
}

.text-gold {
  color: var(--gold-main) !important;
}

.text-gold-light {
  color: var(--gold-vibrant) !important;
}

.gold-divider {
  width: 65px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-vibrant), var(--gold-main));
  border-radius: var(--radius-pill);
  margin: 14px 0 24px 0;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

.gold-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* Top Announcement Bar - Trendy Light Edition */
.top-bar-bfp {
  background: #ffffff;
  color: var(--text-body);
  padding: 10px 0;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--border-subtle);
  font-weight: 500;
  box-shadow: var(--shadow-xs);
}

.top-bar-bfp a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.top-bar-bfp a:hover {
  color: var(--emerald-main);
}

.live-dot {
  width: 9px;
  height: 9px;
  background-color: var(--emerald-light);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--emerald-light);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* Navbar System - Frosted Glass & Light */
.navbar-bfp {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  padding: 14px 0;
  transition: var(--transition);
  z-index: 1040;
}

.navbar-bfp.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(16, 185, 129, 0.25);
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-navbar-logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-vibrant);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
  transition: var(--transition);
}

.brand-logo-container:hover .brand-navbar-logo {
  transform: scale(1.06) rotate(3deg);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--emerald-dark);
  line-height: 1.1;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold-main);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-link-bfp {
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 16px !important;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
}

.nav-link-bfp:hover,
.nav-link-bfp.active {
  color: var(--emerald-dark);
  background: var(--emerald-soft);
}

.webmail-link {
  color: var(--gold-main);
  font-size: 1.25rem;
  padding: 6px 12px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.webmail-link:hover {
  color: var(--emerald-dark);
  background: var(--gold-light);
  transform: scale(1.15);
}

/* Mobile Navbar */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 22px;
    margin-top: 14px;
    border: 1.5px solid var(--emerald-border);
    box-shadow: var(--shadow-lg);
  }

  .navbar-nav {
    align-items: flex-end !important;
    text-align: right;
    gap: 8px !important;
  }

  .nav-item {
    width: 100%;
    text-align: right;
  }

  .nav-link-bfp {
    display: block;
    width: 100%;
    text-align: right;
    padding: 10px 18px !important;
  }
}

/* Trendy Buttons */
.btn-bfp-primary {
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-main) 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-emerald);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-bfp-primary:hover {
  background: linear-gradient(135deg, #34d399 0%, var(--emerald-light) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
  color: #ffffff !important;
}

.btn-bfp-gold {
  background: linear-gradient(135deg, var(--gold-vibrant) 0%, var(--gold-main) 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-bfp-gold:hover {
  background: linear-gradient(135deg, #fbbf24 0%, var(--gold-vibrant) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.4);
}

.btn-bfp-outline {
  background: #ffffff;
  color: var(--emerald-dark) !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--emerald-border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-bfp-outline:hover {
  background: var(--emerald-soft);
  border-color: var(--emerald-main);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* Hero Section - Airy & Sunlit Mesh */
.hero-section-minimal {
  padding: 95px 0 85px 0;
  background: var(--bg-mesh);
  border-bottom: 1px solid rgba(16, 185, 129, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  background: #ffffff;
  border: 1.5px solid var(--emerald-border);
  border-radius: var(--radius-pill);
  color: var(--emerald-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.hero-headline {
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--emerald-dark);
  margin-bottom: 22px;
}

.hero-headline .text-gold {
  background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-vibrant) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
  .hero-headline {
    font-size: 2.45rem;
  }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 34px;
  max-width: 600px;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: #ffffff;
  border: 1.5px solid var(--emerald-border);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.hero-image-container:hover {
  transform: translateY(-6px);
  border-color: var(--gold-vibrant);
  box-shadow: var(--shadow-lg), var(--shadow-emerald);
}

.hero-image-container img.hero-bg-img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

.badge-float-hub {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: #ffffff;
  border: 1.5px solid var(--emerald-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.badge-float-logo {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-vibrant);
}

/* Minimal Section Headers */
.section-header-minimal {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  color: var(--gold-main);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  display: block;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--emerald-dark);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }
}

/* Modern Minimalist Cards */
.card-minimal {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  height: 100%;
}

.card-minimal:hover {
  border-color: var(--emerald-main);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-emerald);
}

.icon-box-ocean {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--emerald-soft);
  border: 1.5px solid var(--emerald-border);
  color: var(--emerald-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.card-minimal:hover .icon-box-ocean {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald-main));
  color: #ffffff;
  border-color: var(--emerald-light);
  transform: scale(1.06);
}

/* About Logo Frame */
.about-logo-frame {
  padding: 30px;
  border: 1.5px solid var(--emerald-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: radial-gradient(circle, #ffffff 45%, #f0fdf4 100%);
  text-align: center;
  transition: var(--transition);
}

.about-logo-frame:hover {
  transform: translateY(-4px);
  border-color: var(--gold-vibrant);
  box-shadow: var(--shadow-lg), var(--shadow-emerald);
}

.about-logo-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 3px solid var(--gold-vibrant);
  box-shadow: 0 10px 30px rgba(6, 78, 59, 0.1);
}

/* Produce Catalog Section */
.produce-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 50%, #ffffff 100%);
}

.form-control-minimal {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-subtle);
  background: #ffffff;
  font-size: 0.94rem;
  transition: var(--transition);
}

.form-control-minimal:focus {
  border-color: var(--emerald-main);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
  background: #ffffff;
}

.filter-pills-minimal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.pill-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  color: var(--text-body);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

.pill-btn:hover {
  background: var(--emerald-soft);
  color: var(--emerald-dark);
  border-color: var(--emerald-border);
}

.pill-btn.active {
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-main) 100%);
  color: #ffffff;
  border-color: var(--emerald-light);
  box-shadow: var(--shadow-emerald);
}

/* Produce Cards */
.produce-card-minimal {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.produce-card-minimal:hover {
  border-color: var(--emerald-main);
  box-shadow: var(--shadow-md), var(--shadow-emerald);
  transform: translateY(-6px);
}

.produce-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
}

.produce-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.produce-card-minimal:hover .produce-img-box img {
  transform: scale(1.08);
}

.produce-origin-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  color: var(--emerald-dark);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs);
}

.produce-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.produce-cat {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--gold-main);
  margin-bottom: 6px;
  display: block;
}

.produce-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--emerald-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.produce-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Supply Chain Steps */
.step-number-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-vibrant), var(--gold-main));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 auto 18px auto;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

/* Contact & Trade Desk Section */
.contact-section-minimal {
  padding: 90px 0;
  background: #ffffff;
  position: relative;
}

.inquiry-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbf9 100%);
  border: 1.5px solid var(--emerald-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

/* Light & Trendy Executive Footer */
.footer-minimal {
  background: #f8faf9;
  color: var(--text-body);
  padding: 70px 0 30px 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.footer-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-light), var(--gold-vibrant), var(--emerald-main));
}

.footer-brand-title {
  color: var(--emerald-dark);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-brand-subtitle {
  color: var(--gold-main);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--emerald-main);
  padding-left: 5px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-copyright a {
  text-decoration: none;
  transition: var(--transition);
}

.footer-copyright a:hover {
  color: var(--emerald-dark);
}

/* Animation Utilities */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
