/* Hero Section Stylesheet - Boyomo */

:root {
  --brand-green: #8ac53e;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-dark);
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

/* Hero Section Base */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #000000;
  background-image: radial-gradient(circle at 60% 40%, rgba(255, 94, 20, 0.08) 0%, rgba(0, 0, 0, 0) 50%),
                    radial-gradient(circle at 80% 60%, rgba(138, 197, 62, 0.06) 0%, rgba(0, 0, 0, 0) 50%);
  display: flex;
  align-items: center;
  padding-top: 100px;
  
  overflow: visible;
  z-index: 3; /* Sit on top of next-section to make wave visible */
}

.hero-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px 0 80px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  align-items: center;
  z-index: 2;
}

/* Hero Left Column (Content) */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 2; /* Ensure text and brand logos stack on top of the overlapping bottle visual */
}

.hero-subtitle-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-subtitle-line {
  width: 40px;
  height: 2px;
  background-color: var(--brand-orange);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title .text-orange {
  color: var(--brand-orange);
}

.hero-title .text-green {
  color: var(--brand-green);
}

.hero-desc {
  color: var(--text-secondary);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 36px;
}

/* Explore CTA Button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-pink) 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  height: 48px;
  padding: 0 30px;
  border-radius: 100px;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 94, 20, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 56px;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 94, 20, 0.45);
  filter: brightness(1.05);
}

.cta-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
  transform: translateX(5px);
}

/* Available On Section */
.available-on {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.available-title {
  color: #55555a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 18px; /* Reduced gap to fit all items on one line */
  flex-wrap: nowrap; /* No wrapping on desktop */
}

.brand-logo {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.brand-logo:hover {
  transform: scale(1.08); /* Cool slight zoom on hover */
}

/* Brand Logo Image styles */
.brand-logo-img {
  height: 24px; /* Native size on dark background */
  max-width: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Hero Right Column (Image visual) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: -80px;
  z-index: 1;
}

.hero-img {
  max-width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
  animation: floatBottles 6s ease-in-out infinite;
}

@keyframes floatBottles {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Far Right Social Media Panel */
.follow-us-panel {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.follow-text {
  writing-mode: vertical-rl;
  color: #55555a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
  user-select: none;
}

.follow-line {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.12);
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #a0a0a5;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-link:hover {
  color: #ffffff;
  border-color: var(--brand-orange);
  background: rgba(255, 94, 20, 0.1);
  transform: translateY(-2px);
}

/* Bottom Wave Divider styling */
.hero-wave-divider {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  line-height: 0;
  margin-top: -30px;
  z-index: 5;
  pointer-events: none;
}

.wave-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 15px 12px rgba(0,0,0,0.3));
}

/* Next Section Layout (White Background transition) */
.next-section {
  background-color: #ffffff;
  color: #0d0d10;
  padding:200px 40px 0px;
  position: relative;
  z-index: 2;  
  text-align: center;
}

.next-section-container {
  max-width: 800px;
  margin: 0 auto;
}

.next-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.next-section p {
  color: #606065;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Features Capsule Card styling */
.features-capsule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 100px;
  padding: 20px 48px;
  max-width: 1100px;
  margin: 0 auto 60px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 10;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
  transition: transform 0.3s ease;
}

.features-capsule .feature-icon {
  width: 50px;
  height: 50px;
  border: 1.2px solid currentColor;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.features-capsule .feature-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-item:hover .feature-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.icon-green {
  border-color: #8ac53e;
  color: #8ac53e;
}

.feature-item:hover .icon-green {
  background-color: rgba(138, 197, 62, 0.04);
}

.icon-orange {
  border-color: #ff5e14;
  color: #ff5e14;
}

.feature-item:hover .icon-orange {
  background-color: rgba(255, 94, 20, 0.04);
}

.icon-pink {
  border-color: #ff2e93;
  color: #ff2e93;
}

.feature-item:hover .icon-pink {
  background-color: rgba(255, 46, 147, 0.04);
}

.icon-blue {
  border-color: #2196f3;
  color: #2196f3;
}

.feature-item:hover .icon-blue {
  background-color: rgba(33, 150, 243, 0.04);
}

.feature-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 1px;
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a20;
  letter-spacing: 0.8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.feature-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a20;
  letter-spacing: 0.8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.feature-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.06);
}


/* About & Quality Section styling */
.about-quality-section {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 100px auto 0;
  padding: 0 40px 40px;
  box-sizing: border-box;
  text-align: left;
  margin-top: -1px;
}

.about-quality-top {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;
}

.about-quality-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-subtitle-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.about-subtitle-decor {
  color: var(--brand-orange);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -2px;
  font-family: monospace;
}

.about-subtitle {
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.about-quality-section .about-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0d0d10;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.about-quality-section .about-title .text-orange {
  color: var(--brand-orange);
}

.about-quality-section .about-title .text-purple {
  color: #4f46e5;
}

.about-quality-section .about-desc {
  color: #606065;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}

.about-decor-line {
  width: 36px;
  height: 3px;
  background-color: var(--brand-orange);
  margin-bottom: 32px;
  border-radius: 10px;
}

.about-bullets {
  display: flex;
  gap: 28px;
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-bullet-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-bullet-item:hover .about-bullet-icon {
  transform: scale(1.08);
}

.icon-bg-orange {
  background-color: rgba(255, 94, 20, 0.07);
  color: var(--brand-orange);
}

.icon-bg-purple {
  background-color: rgba(79, 70, 229, 0.07);
  color: #4f46e5;
}

.about-bullet-text {
  font-size: 13px;
  font-weight: 750;
  color: #0d0d10;
  line-height: 1.25;
}

/* About Quality Right visual column */
.about-quality-visual {
  flex: 0.9;
  position: relative;
  display: flex;
  align-items: center;
}

.about-image-wrapper {
  border-radius: 28px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0,0,0,0.03);
}

.about-factory-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-factory-img {
  transform: scale(1.03);
}

/* Overlapping facilities card */
.facilities-card {
  position: absolute;
  right: -30px;
  bottom: -30px;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 16px 20px;
  width: 260px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
  box-sizing: border-box;
}

.facility-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.facility-card-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 10px;
}

.facility-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.facility-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.facility-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.facilities-card .facility-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #0d0d10;
  margin: 0;
}

.facilities-card .facility-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  color: #606065;
  line-height: 1.35;
  margin: 0;
}

/* Bottom Core Values & Stats Card styling */
.core-values-stats-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  padding: 28px 48px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
  margin-bottom: 40px;
}

.core-values-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.values-panel-title {
  font-size: 16px;
  font-weight: 800;
  color: #0d0d10;
  margin: 0 0 8px 0;
  letter-spacing: -0.2px;
}

.values-decor-line {
  width: 24px;
  height: 3px;
  background-color: var(--brand-orange);
  margin-bottom: 24px;
  border-radius: 10px;
}

.values-list {
  display: flex;
  gap: 28px;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.value-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon-circle {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.bg-light-purple {
  background-color: rgba(79, 70, 229, 0.05);
  color: #4f46e5;
}

.bg-light-orange {
  background-color: rgba(255, 94, 20, 0.05);
  color: var(--brand-orange);
}

.value-label {
  font-size: 11px;
  font-weight: 750;
  color: #0d0d10;
  white-space: nowrap;
}

.values-stats-divider {
  width: 1px;
  height: 90px;
  background-color: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

/* Stats panel wrapper with bottle splash */
.stats-panel-wrapper {
  flex: 1.25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.stats-bottle-visual {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -65px;
  margin-bottom: -65px;
  position: relative;
  z-index: 2;
}

.stats-bottle-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.12));
  transition: transform 0.3s ease;
}

.stats-bottle-visual:hover .stats-bottle-img {
  transform: translateY(-4px) scale(1.03);
}

.stats-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.stat-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: #606065;
  line-height: 1.3;
}

.stat-item-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.06);
}

/* Floating leaf decoration */
.about-floating-leaf {
  position: absolute;
  top: -10px;
  right: 60px;
  pointer-events: none;
  z-index: 1;
  animation: floatLeaf 5s ease-in-out infinite;
}

@keyframes floatLeaf {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Choose Your Refreshment Section styling */
.flavors-container {
  display: grid;
  grid-template-columns: 1.25fr 2.75fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 20px;
  text-align: left;
}

.flavors-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flavors-subtitle {
  color: #8ac53e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.flavors-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0d0d10;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.flavors-desc {
  color: #606065;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 320px;
}

.flavors-cta {
  display: inline-flex;
  align-items: center;
  background-color: #8ac53e;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  height: 48px;
  padding: 0 28px;
  border-radius: 100px;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(138, 197, 62, 0.2);
  transition: all 0.3s ease;
}

.flavors-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138, 197, 62, 0.35);
  filter: brightness(1.05);
}

/* Flavor Cards styling */
.flavor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.flavor-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.flavor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}



.flavor-card.is-full-image {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  aspect-ratio: 3 / 5;
}

.card-full-image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.card-full-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #ffffff;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.flavor-card.is-full-image:hover .card-full-img {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}



/* ==========================================================================
   New Partnership & Contact Section Styles
   ========================================================================== */
.partner-form-section {
  position: relative;
  max-width: 1440px;
  margin: 70px auto 60px;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: visible;
}

/* Decorative Background Elements */
.partner-bg-dots-left {
  position: absolute;
  bottom: -40px;
  left: 20px;
  z-index: 1;
  pointer-events: none;
}

.partner-bg-wave-right {
  position: absolute;
  bottom: -60px;
  right: 20px;
  z-index: 1;
  pointer-events: none;
}

.partner-floating-leaf-right {
  position: absolute;
  bottom: 40px;
  right: 60px;
  font-size: 24px;
  z-index: 1;
  pointer-events: none;
  animation: floatLeaf 4s ease-in-out infinite;
}

@keyframes floatLeaf {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(15deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.partner-section-container-v2 {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Main Box Card containing the grid */
.partner-box-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 36px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
  padding: 15px 80px;
  box-sizing: border-box;
  margin-bottom: 40px;
}

/* Decorative Bottom Left Wave */
.partner-box-wave-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  width: 35%;
  max-width: 320px;
  height: auto;
  border-bottom-left-radius: 36px;
}

.partner-box-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Left Column Styling */
.partner-box-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 2;
}

.partner-box-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0d0d10;
  letter-spacing: -0.8px;
  margin: 0 0 16px 0;
}

.partner-box-title .text-orange {
  color: var(--brand-orange);
}

.partner-box-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #606065;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.5;
  margin: 0 0 32px 0;
}

.partner-box-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff5e14 0%, #ff2e93 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 94, 20, 0.2);
}

.partner-box-btn svg {
  transition: transform 0.3s ease;
}

.partner-box-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 94, 20, 0.3);
}

.partner-box-btn:hover svg {
  transform: translateX(4px);
}

/* Center Column Styling (Bottle Image with Splash) */
.partner-box-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.partner-box-bottle-img {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 240%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  animation: floatBottleNew 6s ease-in-out infinite;
  z-index: 3;
}

@keyframes floatBottleNew {
  0% { transform: translateX(-50%) translateY(0px) rotate(0deg); }
  50% { transform: translateX(-50%) translateY(-10px) rotate(-1.5deg); }
  100% { transform: translateX(-50%) translateY(0px) rotate(0deg); }
}

@keyframes floatBottleNewMobile {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Right Column (Simple Form) Styling */
.partner-box-right {
  display: flex;
  flex-direction: column;
}

.partner-box-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.partner-form-field {
  position: relative;
  width: 100%;
}

.partner-form-input,
.partner-form-textarea {
  width: 100%;
  box-sizing: border-box;
  background-color: #f8f8fa;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #0d0d10;
  transition: all 0.3s ease;
  outline: none;
}

.partner-form-input::placeholder,
.partner-form-textarea::placeholder {
  color: #a0a0aa;
  font-weight: 500;
}

.partner-form-input:focus,
.partner-form-textarea:focus {
  background-color: #ffffff;
  border-color: rgba(255, 94, 20, 0.4);
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.05);
}

.partner-form-textarea {
  resize: vertical;
}

.partner-form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff5e14 0%, #ff2e93 100%);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 94, 20, 0.2);
  width: 100%;
}

.partner-form-submit-btn svg {
  transition: transform 0.3s ease;
}

.partner-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 94, 20, 0.3);
}

.partner-form-submit-btn:hover svg {
  transform: translateX(4px);
}

/* Bottom Stats Capsule styling */
.partner-stats-capsule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 100px;
  padding: 20px 48px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.partner-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partner-stat-icon {
  width: 50px;
  height: 50px;
  border: 1.2px solid currentColor;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.partner-stat-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.partner-stat-item:hover {
  transform: translateY(-2px);
}

.partner-stat-item:hover .partner-stat-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.partner-stat-item:hover .icon-green {
  background-color: rgba(138, 197, 62, 0.04);
}

.partner-stat-item:hover .icon-orange {
  background-color: rgba(255, 94, 20, 0.04);
}

.partner-stat-item:hover .icon-pink {
  background-color: rgba(255, 46, 147, 0.04);
}

.partner-stat-item:hover .icon-blue {
  background-color: rgba(33, 150, 243, 0.04);
}

.partner-stat-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 1px;
}

.partner-stat-val {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.partner-stat-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #606065;
  letter-spacing: 0.2px;
  line-height: 1.25;
}

.partner-stat-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   Bottom Benefits Capsule Styles
   ========================================================================== */
.benefits-capsule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  padding: 24px 48px;
  max-width: 1200px;
  margin: 50px auto 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.benefit-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.benefit-title.text-green { color: var(--brand-green); }
.benefit-title.text-orange { color: var(--brand-orange); }
.benefit-title.text-pink { color: var(--brand-pink); }
.benefit-title.text-blue { color: #2196f3; }

.benefit-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #707075;
  letter-spacing: 0.2px;
  line-height: 1.3;
  margin-top: 2px;
  max-width: 160px;
}

.benefit-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.08);
  margin: 0 24px;
  flex-shrink: 0;
}




/* ==========================================================================
   Why Boyomo Section Styles
   ========================================================================== */
.why-boyomo-container {
  max-width: 1440px;
  margin: 80px auto 40px;
  padding: 0 20px;
  text-align: center;
  position: relative;
  overflow: visible; /* Let the citrus and leaf absolute graphics show */
  box-sizing: border-box;
}

/* Background graphics positioning */
.why-bg-dots {
  position: absolute;
  top: -40px;
  left: -20px;
  opacity: 0.8;
  pointer-events: none;
}

.why-bg-citrus {
  position: absolute;
  top: -80px;
  right: -60px;
  opacity: 0.6;
  pointer-events: none;
}

.why-bg-leaf-left {
  position: absolute;
  top: 40%;
  left: -40px;
  font-size: 24px;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0.85;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
  pointer-events: none;
}

.why-bg-leaf-right {
  position: absolute;
  top: 15%;
  right: -20px;
  font-size: 28px;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.85;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
  pointer-events: none;
}

/* Header Text styling */
.why-subtitle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.why-subtitle-text {
  font-family: 'Poppins', sans-serif;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.why-sparkle {
  color: var(--brand-orange);
  font-size: 13px;
  display: flex;
  align-items: center;
  opacity: 0.95;
}

.why-leaf-icon {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.why-boyomo-container .why-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 900; /* Extra bold */
  line-height: 1.1;
  color: #0d0d10;
  letter-spacing: -0.8px;
  margin: 0 0 16px 0;
}

.why-boyomo-container .why-title .text-orange {
  color: var(--brand-orange);
}

.why-boyomo-container .why-desc {
  font-family: 'Poppins', sans-serif;
  color: #4a4a50; /* Slightly darker for better readability when bold */
  font-size: 15px;
  font-weight: 600; /* Bold font weight as requested */
  line-height: 1.6;
  margin: 0 auto 20px;
  max-width: 500px;
}

.why-title-line {
  width: 60px;
  height: 3px;
  background-color: var(--brand-orange);
  margin: 0 auto 60px;
  border-radius: 2px;
}

/* Feature Cards Grid */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: 100%;
}

.why-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 30px 16px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

/* Circle Icon Container */
.why-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.why-card:hover .why-icon-circle {
  transform: scale(1.08);
}

/* Card titles and desc text */
.why-boyomo-container .why-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  color: #0d0d10;
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
}

.why-boyomo-container .why-card-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; /* Made smaller for a cleaner, compact grid look */
  color: #7a7a80;
  line-height: 1.45;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

/* Bottom Card accent line */
.why-card-line {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  margin-top: auto;
  flex-shrink: 0;
}

/* Color definitions for features circles & bottom lines */
.why-icon-circle.icon-orange {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background-color: rgba(255, 94, 20, 0.05);
}
.why-card-line.line-orange {
  background-color: var(--brand-orange);
}

.why-icon-circle.icon-pink {
  border-color: var(--brand-pink);
  color: var(--brand-pink);
  background-color: rgba(236, 0, 118, 0.05);
}
.why-card-line.line-pink {
  background-color: var(--brand-pink);
}

.why-icon-circle.icon-purple {
  border-color: #7c3aed;
  color: #7c3aed;
  background-color: rgba(124, 58, 237, 0.05);
}
.why-card-line.line-purple {
  background-color: #7c3aed;
}

.why-icon-circle.icon-green {
  border-color: var(--brand-green);
  color: var(--brand-green);
  background-color: rgba(138, 197, 62, 0.05);
}
.why-card-line.line-green {
  background-color: var(--brand-green);
}

.why-icon-circle.icon-blue {
  border-color: #2196f3;
  color: #2196f3;
  background-color: rgba(33, 150, 243, 0.05);
}
.why-card-line.line-blue {
  background-color: #2196f3;
}

.why-icon-circle.icon-orange-red {
  border-color: #ff5722;
  color: #ff5722;
  background-color: rgba(255, 87, 34, 0.05);
}
.why-card-line.line-orange-red {
  background-color: #ff5722;
}

/* ==========================================================================
   Explore Our Range Section
   ========================================================================== */

.range-section-container {
  padding: 100px 0;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  
}

.range-subtitle-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.range-subtitle-sparkle {
  color: var(--brand-orange);
  font-size: 14px;
}

.range-subtitle-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--brand-orange);
}

.range-subtitle-leaf {
  font-size: 14px;
}

.range-section-container .range-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #0d0d10;
  letter-spacing: -0.8px;
  margin: 0 0 16px 0;
}

.range-section-container .range-section-title .text-orange {
  color: var(--brand-orange);
}

.range-section-container .range-section-desc {
  font-family: 'Poppins', sans-serif;
  color: #4a4a50;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 auto 20px;
  max-width: 600px;
}

.range-title-line {
  width: 60px;
  height: 3px;
  background-color: var(--brand-orange);
  margin: 0 auto 60px;
  border-radius: 2px;
}

.range-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 80px;
}

.range-product-card {
  background-color: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.04);
  border-radius: 28px;
  padding: 40px 24px 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-sizing: border-box;
  overflow: visible;
}

.range-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Card theme color variations */
.range-product-card.card-theme-orange {
  background: linear-gradient(180deg, rgba(255, 94, 20, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
  border-color: rgba(255, 94, 20, 0.08);
}
.range-product-card.card-theme-orange:hover {
  border-color: rgba(255, 94, 20, 0.25);
  box-shadow: 0 20px 45px rgba(255, 94, 20, 0.08);
}

.range-product-card.card-theme-purple {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
  border-color: rgba(124, 58, 237, 0.08);
}
.range-product-card.card-theme-purple:hover {
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.08);
}

.range-product-card.card-theme-gold {
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
  border-color: rgba(217, 119, 6, 0.08);
}
.range-product-card.card-theme-gold:hover {
  border-color: rgba(217, 119, 6, 0.25);
  box-shadow: 0 20px 45px rgba(217, 119, 6, 0.08);
}

/* Badge Icon styles */
.range-badge-icon {
  position: absolute;
  top: -22px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border: 2px solid #ffffff;
}

.range-badge-icon.icon-orange {
  background-color: var(--brand-orange);
  color: #ffffff;
}
.range-badge-icon.icon-purple {
  background-color: #7c3aed;
  color: #ffffff;
}
.range-badge-icon.icon-gold {
  background-color: #d97706;
  color: #ffffff;
}

/* Image Container styles */
.range-image-container {
  width: 100%;
  height: 350px; /* Increased from 240px to 310px for larger images */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.range-product-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.range-product-card:hover .range-product-img {
  transform: scale(1.08) translateY(-4px);
}

/* Title and Subtitle styles */
.range-product-card .range-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 850;
  margin: 0 0 6px 0;
  letter-spacing: -0.2px;
}

.card-theme-orange .range-card-title {
  color: var(--brand-orange);
}

.card-theme-purple .range-card-title {
  color: #7c3aed;
}

.card-theme-gold .range-card-title {
  color: #d97706;
}


.range-product-card .range-card-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
}

.text-orange {
  color: var(--brand-orange);
}
.text-purple {
  color: #7c3aed;
}
.text-gold {
  color: #d97706;
}

/* Card Features grid */
.range-card-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 100%;
  margin: 16px 0 28px;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}

.range-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.range-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.range-product-card:hover .range-feature-icon {
  transform: translateY(-2px);
}

.range-feature-icon.text-orange {
  background-color: rgba(255, 94, 20, 0.06);
  color: var(--brand-orange);
}
.range-feature-icon.text-purple {
  background-color: rgba(124, 58, 237, 0.06);
  color: #7c3aed;
}
.range-feature-icon.text-gold {
  background-color: rgba(217, 119, 6, 0.06);
  color: #d97706;
}

.range-feature-icon svg {
  width: 15px;
  height: 15px;
}

.range-feature-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9.5px;
  font-weight: 750;
  color: #55555c;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 25px;
}

/* Button style declarations */
.range-explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1.5px solid;
  margin-top: auto;
  width: auto;
}

.range-explore-btn svg {
  transition: transform 0.3s ease;
}

.range-explore-btn:hover svg {
  transform: translateX(4px);
}

.range-explore-btn.btn-theme-orange {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background-color: transparent;
}
.range-explore-btn.btn-theme-orange:hover {
  background-color: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.3);
}

.range-explore-btn.btn-theme-purple {
  border-color: #7c3aed;
  color: #7c3aed;
  background-color: transparent;
}
.range-explore-btn.btn-theme-purple:hover {
  background-color: #7c3aed;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.range-explore-btn.btn-theme-gold {
  border-color: #d97706;
  color: #d97706;
  background-color: transparent;
}
.range-explore-btn.btn-theme-gold:hover {
  background-color: #d97706;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

/* Bottom Features Capsule Bar */
.range-features-capsule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 10px 48px;
  max-width: 1250px;
  margin: 30px auto 0;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.range-features-capsule .range-feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
  transition: transform 0.3s ease;
}

.range-features-capsule .range-feature-icon {
  width: 50px;
  height: 50px;
  border: 1.2px solid currentColor;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.range-features-capsule .range-feature-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.range-features-capsule .range-feature-item:hover {
  transform: translateY(-2px);
}

.range-features-capsule .range-feature-item:hover .range-feature-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.range-features-capsule .range-feature-item:hover .icon-green {
  background-color: rgba(138, 197, 62, 0.04);
}

.range-features-capsule .range-feature-item:hover .icon-orange {
  background-color: rgba(255, 94, 20, 0.04);
}

.range-features-capsule .range-feature-item:hover .icon-pink {
  background-color: rgba(255, 46, 147, 0.04);
}

.range-features-capsule .range-feature-item:hover .icon-blue {
  background-color: rgba(33, 150, 243, 0.04);
}

.range-features-capsule .range-feature-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 1px;
}

.range-features-capsule .range-feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a20;
  letter-spacing: 0.8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.range-features-capsule .range-feature-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a20;
  letter-spacing: 0.8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.range-features-capsule .range-feature-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.06);
  margin: 0 24px;
  flex-shrink: 0;
}

/* ==========================================================================
   Bond Your Moment Section Styles
   ========================================================================== */
.bond-moment-section {
  position: relative;
  max-width: 1440px;
  margin: 60px auto 0;
  padding: 0 60px 0;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  margin-bottom: 50px;
}

/* Watermark Background */
.bond-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(10rem, 18vw, 20rem);
  font-weight: 900;
  color: rgba(13, 13, 16, 0.04);
  letter-spacing: 20px;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  white-space: nowrap;
}

/* Decorative Citrus, Leaf, Rings & Dots */
.bond-bg-citrus-left {
  position: absolute;
  top: 15%;
  left: -20px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.bond-bg-citrus-right {
  position: absolute;
  top: 20%;
  right: -20px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.bond-bg-dots-left {
  position: absolute;
  top: 5%;
  left: 40px;
  z-index: 1;
  pointer-events: none;
}

.bond-bg-dots-right {
  position: absolute;
  bottom: 10%;
  right: 40px;
  z-index: 1;
  pointer-events: none;
}

.bond-floating-leaf {
  position: absolute;
  top: 45%;
  right: 80px;
  font-size: 28px;
  z-index: 1;
  pointer-events: none;
  animation: floatLeaf-v2 5s ease-in-out infinite;
}

@keyframes floatLeaf-v2 {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-12px) rotate(20deg) scale(1.05); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}

.bond-floating-ring-1 {
  position: absolute;
  top: 30%;
  left: 12%;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 68, 255, 0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: floatRing 7s ease-in-out infinite;
}

.bond-floating-ring-2 {
  position: absolute;
  bottom: 35%;
  right: 15%;
  width: 10px;
  height: 10px;
  border: 2.2px solid rgba(255, 94, 20, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: floatRing 6s ease-in-out infinite 1s;
}

@keyframes floatRing {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.1); }
  100% { transform: translateY(0px) scale(1); }
}

/* Header styling */
.bond-moment-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.bond-subtitle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.bond-subtitle-line {
  width: 24px;
  height: 1.5px;
  background-color: var(--brand-orange);
  opacity: 0.6;
}

.bond-subtitle-text {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bond-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  color: #0d0d10;
  margin: 0 0 16px 0;
  letter-spacing: -4px;
  line-height: 1.0;
}

.bond-title .script-orange {
  font-family: 'Satisfy', cursive;
  color: var(--brand-orange);
  font-weight: bold;
  text-transform: none;
  font-size: 1.55em;
  margin-left: 12px;
  -webkit-text-stroke: 2px var(--brand-orange);
}

.bond-title .script-blue {
  font-family: 'Satisfy', cursive;
  color: #0044ff;
  font-weight: bold;
  text-transform: none;
  font-size: 1.55em;
  -webkit-text-stroke: 2px #0044ff;
}

.bond-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #55555a;
  margin: 0;
  letter-spacing: 0.2px;
}

/* Category grid styling */
.bond-categories-grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 22px 32px;
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
}

.category-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon-circle.icon-bg-orange {
  background-color: rgba(255, 94, 20, 0.06);
  color: var(--brand-orange);
}

.category-icon-circle.icon-bg-blue {
  background-color: rgba(0, 68, 255, 0.06);
  color: #0044ff;
}

.category-icon-circle.icon-bg-green {
  background-color: rgba(138, 197, 62, 0.08);
  color: var(--brand-green);
}

.category-icon-circle.icon-bg-orange-red {
  background-color: rgba(255, 59, 48, 0.06);
  color: #ff3b30;
}

.category-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
}

.category-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0d0d10;
  margin: 0;
}

.category-line {
  width: 20px;
  height: 2.2px;
  border-radius: 4px;
}

.category-line.line-orange {
  background-color: var(--brand-orange);
}

.category-line.line-blue {
  background-color: #0044ff;
}

.category-line.line-green {
  background-color: var(--brand-green);
}

.category-line.line-orange-red {
  background-color: var(--brand-orange);
}

/* Partnership Banner Card Styling */
.bond-partnership-banner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 28px;
  padding: 32px 52px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 1100px;
  margin: 0 auto;
  gap: 36px;
  box-sizing: border-box;
}

.banner-badge-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.banner-badge-circle {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 94, 20, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
}

.banner-badge-star {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: #ffcc00;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border: 2px solid #ffffff;
}

.banner-divider-vertical {
  width: 1px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.banner-text-content {
  flex: 1;
  text-align: left;
}

.banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0d0d10;
  margin: 0 0 8px 0;
}

.banner-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #606065;
  margin: 0;
  line-height: 1.5;
}

.banner-btn-become-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, var(--brand-orange) 0%, #0044ff 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  height: 56px;
  padding: 0 38px;
  border-radius: 100px;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(255, 94, 20, 0.25);
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.banner-btn-become-partner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 94, 20, 0.3);
  filter: brightness(1.05);
}

.banner-btn-arrow {
  transition: transform 0.3s ease;
}

.banner-btn-become-partner:hover .banner-btn-arrow {
  transform: translateX(4px);
}

/* Responsive Features Capsule */
@media (max-width: 992px) {
  .features-capsule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    border-radius: 24px;
    padding: 30px;
    margin: 0 auto 40px;
  }
  
  .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20%;
    gap: 12px;
  }
  
  .feature-text {
    text-align: left;
    align-items: flex-start;
  }
  
  .feature-divider {
    display: none;
  }

  /* Bond Your Moment Tablet responsive */
  .bond-moment-section {
    padding: 60px 24px;
    margin: 80px auto 40px;
  }

  .bond-watermark {
    font-size: 10rem;
    letter-spacing: 6px;
  }

  .bond-bg-citrus-left,
  .bond-bg-citrus-right,
  .bond-bg-dots-left,
  .bond-bg-dots-right,
  .bond-floating-leaf,
  .bond-floating-ring-1,
  .bond-floating-ring-2 {
    display: none;
  }

  .bond-categories-grid {
    gap: 20px;
  }

  .category-card {
    min-width: calc(50% - 10px);
    box-sizing: border-box;
    padding: 16px 20px;
  }

  .bond-partnership-banner {
    flex-direction: row;
    padding: 24px 30px;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .features-capsule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    padding: 24px 16px;
    gap: 24px 12px;
    margin: 0 auto 30px;
  }
  
  .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    gap: 10px;
  }
  
  .feature-text {
    text-align: left;
    align-items: flex-start;
  }
  
  .features-capsule .feature-icon,
  .range-features-capsule .range-feature-icon {
    width: 36px;
    height: 36px;
  }
  
  .features-capsule .feature-icon svg,
  .range-features-capsule .range-feature-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .feature-title,
  .feature-sub {
    font-size: 11px;
  }
}

/* ==========================================================================
   Media Queries (Responsive Layouts)
   ========================================================================== */

/* Laptop screens and smaller (General) */
@media (max-width: 1200px) {
  .partner-box-grid {
    gap: 20px;
  }

  .partner-box-card {
    padding: 40px 30px;
  }
}

/* Laptop screens and smaller */
@media (max-width: 1100px) {
  .hero-container {
    padding-right: 40px; /* Reset padding right since follow panel collapses */
  }
}

/* Tablet screens and smaller */
@media (max-width: 992px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 0 30px;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-subtitle-container {
    justify-content: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    margin-bottom: 40px;
  }

  .brand-logos {
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on mobile */
  }

  /* Hide vertical follow us panel on tablet and mobile */
  .follow-us-panel {
    display: none;
  }

  .hero-visual {
    margin-left: 0;
  }

  .hero-img {
    max-height: 420px;
  }

  .next-section {
    padding-top: 100px;
  }

  .hero-wave-divider {
    margin-top: -30px;
  }

  .flavors-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
  }

  .flavors-content {
    align-items: center;
    text-align: center;
  }

  .flavors-desc {
    max-width: 500px;
  }

  /* Partnership Section Tablet styling */
  .partner-form-section {
    margin-top: 80px;
    padding: 0 24px;
  }

  .partner-box-card {
    padding: 40px 30px;
  }

  .partner-box-wave-left {
    width: 50%;
    max-width: 200px;
    border-bottom-left-radius: 24px;
  }

  .partner-box-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .partner-box-left {
    align-items: center;
    text-align: center;
  }

  .partner-box-center {
    max-height: none;
  }

  .partner-box-bottle-img {
    position: relative;
    bottom: 0;
    left: auto;
    transform: none;
    max-width: 360px;
    width: 100%;
    animation: floatBottleNewMobile 6s ease-in-out infinite;
  }

  .partner-stats-capsule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    padding: 24px 16px;
    gap: 24px 12px;
  }

  .partner-stat-divider {
    display: none;
  }

  .partner-bg-dots-left,
  .partner-bg-wave-right,
  .partner-floating-leaf-right {
    display: none; /* Hide background elements on smaller viewports */
  }

  /* Why Boyomo Section Tablet styling */
  .why-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
  }

  .why-bg-dots,
  .why-bg-citrus,
  .why-bg-leaf-left,
  .why-bg-leaf-right {
    display: none;
  }

  /* Explore Our Range Section Tablet styling */
  .range-section-container {
    padding: 80px 0;
  }

  .range-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .range-product-card:nth-child(3) {
    grid-column: span 2;
    max-width: 500px;
    justify-self: center;
    width: 100%;
  }

  .range-features-capsule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    border-radius: 24px;
    padding: 30px;
    margin-top: 50px;
  }

  .range-features-capsule .range-feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20%;
    gap: 12px;
  }

  .range-features-capsule .range-feature-text {
    text-align: left;
    align-items: flex-start;
  }

  .range-features-capsule .range-feature-divider {
    display: none;
  }

  /* About Quality Tablet overrides */
  .about-quality-section {
    padding: 0 24px 80px;
    margin-top: 60px;
  }

  .about-quality-top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .about-quality-content {
    align-items: center;
    text-align: center;
  }

  .about-subtitle-container {
    justify-content: center;
  }

  .about-desc {
    max-width: 100%;
  }

  .about-bullets {
    justify-content: center;
  }

  .about-quality-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 540px;
  }

  .facilities-card {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    margin-top: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  }

  .core-values-stats-card {
    flex-direction: column;
    padding: 40px 30px;
    gap: 30px;
  }

  .values-stats-divider {
    display: none;
  }

  .core-values-panel {
    align-items: center;
    width: 100%;
  }

  .values-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 24px;
  }

  .stats-panel-wrapper {
    width: 100%;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .stats-bottle-visual {
    margin-top: 0;
    margin-bottom: 0;
    width: 120px;
  }

  .stats-list {
    justify-content: center;
    width: 100%;
    gap: 16px;
  }
}

/* Mobile screens and smaller */
@media (max-width: 576px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-container {
    padding: 0 16px;
    gap: 36px;
  }

  .why-boyomo-container {
    margin: 40px auto 0;
    padding: 0;
  }

  .flavors-container {
    margin-top: 40px;
    padding: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .hero-cta {
    height: 44px;
    padding: 0 24px;
    font-size: 13px;
  }

  .brand-logos {
    gap: 20px;
  }

  .hero-img {
    max-height: 320px;
  }

  .next-section {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-wave-divider {
    margin-top: -15px;
  }

  .flavor-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 24px;
  }

  /* Partnership Section Mobile styling */
  .partner-form-section {
    margin-top: 40px;
    padding: 0;
  }

  .partner-flagship-title {
    font-size: 2rem;
  }

  .partner-box-card {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .partner-box-wave-left {
    width: 60%;
    max-width: 160px;
    border-bottom-left-radius: 24px;
  }

  .partner-box-title {
    font-size: 2.0rem;
  }

  .partner-box-subtitle {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .partner-box-bottle-img {
    max-width: 290px;
  }

  .partner-stats-capsule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    padding: 20px 12px;
    gap: 20px 8px;
  }

  .partner-stat-item {
    justify-content: flex-start;
    gap: 8px;
  }

  .partner-stat-icon {
    width: 38px;
    height: 38px;
  }

  .partner-stat-icon svg {
    width: 18px;
    height: 18px;
  }

  .partner-stat-val {
    font-size: 13px;
  }

  .partner-stat-lbl {
    font-size: 9.5px;
    line-height: 1.2;
  }

  /* Why Boyomo Section Mobile styling */
  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
  }

  .why-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    text-align: left;
    gap: 4px 16px;
    padding: 16px;
    border-radius: 16px;
  }

  .why-boyomo-container .why-card-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 13.5px;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.2px;
  }

  .why-boyomo-container .why-card-text {
    grid-column: 2;
    grid-row: 2;
    font-size: 11.5px;
    margin: 0;
    line-height: 1.35;
  }

  .why-icon-circle {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    align-self: center;
  }

  .why-icon-circle svg {
    width: 20px;
    height: 20px;
  }

  .why-card-line {
    display: none;
  }

  /* Explore Our Range Section Mobile styling */
  .range-section-container {
    padding: 40px 0 0 0;
  }

  .range-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
  }

  .range-product-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }

  .range-product-card {
    padding: 36px 16px 24px;
  }

  .range-image-container {
    height: 200px;
    margin-bottom: 16px;
  }

  .range-card-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 10px;
    margin: 12px 0 20px;
    padding-top: 16px;
  }

  .range-feature-label {
    font-size: 9px;
    height: auto;
  }

  .range-features-capsule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    padding: 16px 12px;
    gap: 20px 8px;
    margin-top: 40px;
  }

  .range-features-capsule .range-feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    gap: 8px;
  }

  .range-features-capsule .range-feature-icon {
    width: 38px;
    height: 38px;
  }

  .range-features-capsule .range-feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .range-features-capsule .range-feature-text {
    text-align: left;
    align-items: flex-start;
  }

  .range-features-capsule .range-feature-title,
  .range-features-capsule .range-feature-sub {
    font-size: 10px;
  }

  .range-features-capsule .range-feature-divider {
    display: none;
  }

  /* About Quality Mobile overrides */
  .about-quality-section {
    padding: 0;
    margin-top: 40px;
  }

  .about-quality-section .core-values-stats-card {
    margin-bottom: 0;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-bullets {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .about-bullet-item {
    width: auto;
    justify-content: center;
  }

  .value-icon-circle {
    width: 44px;
    height: 44px;
  }

  .value-label {
    font-size: 10.5px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 10.5px;
  }

  .stats-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    width: 100%;
  }

  .stat-item {
    align-items: center;
    text-align: center;
  }

  .stat-item-divider {
    display: none;
  }

  .about-floating-leaf {
    right: 20px;
    top: -20px;
  }

  /* Bond Your Moment Mobile responsive */
  .bond-moment-section {
    padding: 40px 16px;
    margin: 40px auto 0;
  }

  .bond-watermark {
    font-size: 6rem;
    letter-spacing: 4px;
  }

  .bond-title {
    font-size: 2.2rem;
  }

  .bond-categories-grid {
    gap: 16px;
  }

  .category-card {
    min-width: 100%;
    padding: 14px 20px;
  }

  .bond-partnership-banner {
    flex-direction: column;
    padding: 30px 20px;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .banner-divider-vertical {
    width: 80%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
  }

  .banner-text-content {
    text-align: center;
  }

  .banner-btn-become-partner {
    width: 100%;
    box-sizing: border-box;
  }

  .by-partner-container {
    padding: 0 16px;
  }
}

/* ==========================================================================
   Boyomo Partner Portal Section Styles
   ========================================================================== */

.by-partner-portal {
  position: relative;
  background-color: #ffffff;
  padding: 40px 0; /* Reduced from 120px to make it compact */
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.by-partner-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr; /* Shifted columns: narrower right column for compact width */
  gap: 40px;
  align-items: start; /* Align elements to top */
  position: relative;
  z-index: 5;
}

/* Left Content Styles */
.by-partner-left {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr; /* Shift text wider and bottle narrower */
  gap: 20px;
  align-items: start; /* Align contents to top */
  position: relative;
  padding-top: 15px; /* Align with form card start */
}

.by-partner-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
}

.by-flagship-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.by-flagship-leaf-icon {
  color: var(--brand-orange);
  animation: byPulseLeaf 2s infinite ease-in-out;
}

@keyframes byPulseLeaf {
  0% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(5deg); }
  100% { transform: scale(1); }
}

.by-partner-main-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem); /* Reduced slightly */
  font-weight: 900;
  line-height: 1.15;
  color: #0d0d10;
  letter-spacing: -0.5px;
  margin: 0 0 14px 0; /* Reduced margin */
  text-transform: uppercase;
}

.by-text-orange {
  color: var(--brand-orange);
}

.by-partner-desc {
  color: #606065;
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0 0 20px 0; /* Reduced margin */
  max-width: 320px;
}

.by-partner-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px; /* Reduced gap */
  width: 100%;
}

.by-bullet-row {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s ease;
}

.by-bullet-row:hover {
  transform: translateX(4px);
}

.by-bullet-icon {
  width: 32px; /* Reduced icon size from 40px */
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 94, 20, 0.08);
  color: var(--brand-orange);
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 1px solid rgba(255, 94, 20, 0.15);
}

.by-bullet-icon svg {
  width: 14px; /* Scaled down SVGs */
  height: 14px;
}

.by-bullet-row:hover .by-bullet-icon {
  background-color: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 94, 20, 0.2);
  transform: scale(1.08);
}

.by-bullet-text {
  font-size: 13.5px; /* Reduced slightly */
  font-weight: 700;
  color: #1a1a20;
}

/* Bottle Visual Styles */
.by-partner-bottle-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -30px; /* Shift closer to text for natural overlap */
}

.by-partner-bottle-img {
  max-width: 135%; /* Zoomed in / enlarged */
  width: auto;
  height: auto;
  max-height: 500px; /* Increased vertical limit to allow zooming in */
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
  animation: byFloatBottle 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes byFloatBottle {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Right Column (Form Card) Styles */
.by-partner-right {
  display: flex;
  justify-content: center;
  width: 100%;
}

.by-partner-form-card {
  background-color: #ffffff;
  border-radius: 16px; /* More compact rounding */
  padding: 18px 16px; /* Incredibly compact padding */
  width: 100%;
  max-width: 480px; /* Reduced width limit */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.by-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px; /* Extra compact margin */
}

.by-handshake-icon-wrapper {
  width: 36px; /* Reduced badge size from 44px */
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 94, 20, 0.08);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 94, 20, 0.12);
}

.by-handshake-icon-wrapper svg {
  width: 16px;
  height: 16px;
}

.by-form-title-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.by-form-title {
  font-size: 16px; /* Shrunk title from 18px */
  font-weight: 800;
  color: #1a1a20;
  margin: 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.by-form-title-underline {
  width: 35px;
  height: 2px;
  background-color: var(--brand-orange);
  border-radius: 1px;
}

/* Form Layout Styles */
.by-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 14px; /* Reduced from 16px */
  row-gap: 6px; /* Even tighter row-gap from 8px */
  margin-bottom: 10px; /* Reduced margin */
}

.by-input-field {
  display: flex;
  flex-direction: column;
  gap: 2px; /* Minimal label-to-input gap */
  text-align: left;
}

.by-full-width {
  grid-column: span 2;
}

.by-field-label {
  font-size: 11px; /* Shrunk label text from 12px */
  font-weight: 700;
  color: #1a1a20;
}

.by-req {
  color: var(--brand-orange);
  margin-left: 2px;
}

.by-field-input,
.by-field-textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1.2px solid #e2e8f0;
  border-radius: 6px; /* Reduced radius from 8px */
  padding: 6px 10px; /* Reduced padding from 8px 12px */
  font-size: 12.5px; /* Reduced font size from 13px */
  color: #1a1a20;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.by-field-input:focus,
.by-field-textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 2px rgba(255, 94, 20, 0.08);
}

.by-field-input::placeholder,
.by-field-textarea::placeholder {
  color: #a0a0a5;
  font-size: 12px;
}

/* Custom Dropdown Styling */
.by-select-container {
  position: relative;
  width: 100%;
}

.by-field-select {
  width: 100%;
  background-color: #ffffff;
  border: 1.2px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 24px 6px 10px; /* Reduced padding from 8px 28px */
  font-size: 12.5px;
  color: #1a1a20;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
}

.by-field-select:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 2px rgba(255, 94, 20, 0.08);
}

.by-select-container::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #55555a;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.by-select-container:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Custom Checkbox Group Styling */
.by-checkbox-group {
  display: flex;
  gap: 14px; /* Shrunk checkbox group gap from 18px */
  margin-top: 2px;
  flex-wrap: wrap;
}

.by-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px; /* Tighter gap */
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  color: #1a1a20;
  user-select: none;
  position: relative;
}

.by-checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.by-checkbox-custom {
  width: 16px; /* Reduced checkbox size from 20px */
  height: 16px;
  background-color: #ffffff;
  border: 1.2px solid #cbd5e0;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.by-checkbox-wrapper:hover input ~ .by-checkbox-custom {
  border-color: var(--brand-orange);
}

.by-checkbox-wrapper input:checked ~ .by-checkbox-custom {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
  box-shadow: 0 2px 6px rgba(255, 94, 20, 0.15);
}

.by-checkbox-custom::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1.5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.by-checkbox-wrapper input:checked ~ .by-checkbox-custom::after {
  display: block;
}

.by-checkbox-text {
  font-size: 12.5px; /* Shrunk from 14px */
  color: #55555a;
  font-weight: 700;
  transition: color 0.25s ease;
}

.by-checkbox-wrapper input:checked ~ .by-checkbox-text {
  color: #1a1a20;
}

/* Submit and Security Footer Styles */
.by-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 8px; /* Reduced margin */
  border-top: 1px solid #f1f5f9;
  padding-top: 12px; /* Reduced padding */
}

.by-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-orange);
  color: #ffffff;
  border: none;
  font-size: 12.5px; /* Reduced from 13.5px */
  font-weight: 800;
  height: 38px; /* Reduced height from 44px */
  padding: 0 24px; /* Reduced padding */
  border-radius: 100px;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(255, 94, 20, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  flex-shrink: 0;
  text-transform: uppercase;
}

.by-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 94, 20, 0.25);
  filter: brightness(1.05);
}

.by-submit-btn:active {
  transform: translateY(-1px);
}

.by-submit-btn svg {
  transition: transform 0.3s ease;
  width: 12px;
  height: 12px;
}

.by-submit-btn:hover svg {
  transform: translateX(3px);
}

.by-security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.by-shield-icon {
  color: #a0a0a5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background-color: #f8fafc;
  padding: 6px; /* Reduced from 8px */
  border-radius: 50%;
  border: 1px solid #f1f5f9;
}

.by-shield-icon svg {
  width: 14px;
  height: 14px;
}

.by-security-text {
  font-size: 11.5px; /* Reduced from 12px */
  font-weight: 600;
  color: #606065;
  line-height: 1.45;
  max-width: 250px;
}

/* ==========================================================================
   Responsive Styles for Boyomo Partner Portal Section
   ========================================================================== */

@media (max-width: 1200px) {
  .by-partner-container {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 850px;
  }
  .by-partner-left {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 768px) {
  .by-partner-portal {
    padding: 40px 0 0 0;
  }
  
  .by-partner-container {
    padding: 0 24px;
  }
  
  .by-partner-left {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .by-partner-left-content {
    align-items: center;
  }
  
  .by-partner-bullets {
    align-items: flex-start;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .by-partner-desc {
    max-width: 100%;
  }
  
  .by-partner-bottle-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .by-partner-bottle-img {
    max-width: 100%;
  }
  
  .by-form-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  
  .by-full-width {
    grid-column: span 1;
  }
  
  .by-form-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding-top: 24px;
  }
  
  .by-submit-btn {
    width: 100%;
  }
  
  .by-security-badge {
    justify-content: center;
  }
  
  .by-security-text {
    max-width: 100%;
  }
}

